/* ==========================================================================
   BlckSheep Studio - Main Stylesheet
   ========================================================================== */

/* Base Styles */
html {
    margin: 0;
    padding: 0;
    line-height: 1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #ff6b9d;
    color: #ffffff;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 2000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

main, section, div, header, nav {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

body {
    background: linear-gradient(
        45deg,
        #000000 0%,
        #2a1020 20%,
        #1a1a1a 40%,
        #301025 60%,
        #151515 80%,
        #000000 100%
    );
    background-size: 800% 800%;
    animation: gradientShift 12s ease-in-out infinite;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1;
}

/* Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 0%;
    }
    20% {
        background-position: 100% 0%;
    }
    40% {
        background-position: 100% 100%;
    }
    60% {
        background-position: 0% 100%;
    }
    80% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseVibrant {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 107, 157, 0.3);
    }
    100% {
        text-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(2deg);
    }
    66% {
        transform: translateY(10px) rotate(-2deg);
    }
}

/* Variations d'animation flottante avec différentes vitesses */
@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(1deg);
    }
    66% {
        transform: translateY(8px) rotate(-1deg);
    }
}

@keyframes floatGentle {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(1.5deg);
    }
}

/* Utility Classes */
.fade-in {
    animation: fadeIn 1.5s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 1s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 1s ease-out forwards;
}

.pulse-vibrant {
    animation: pulseVibrant 2s ease-in-out infinite;
}

.text-glow {
    animation: textGlow 3s ease-in-out infinite alternate;
}

.floating-element {
    animation: float 10s ease-in-out infinite;
}

.floating-element-slow {
    animation: floatSlow 15s ease-in-out infinite;
}

.floating-element-gentle {
    animation: floatGentle 20s ease-in-out infinite;
}

/* Layout */
.main-content {
    margin-left: 0;
    padding: 0;
    margin-top: 0;
}

/* Top Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.navbar-logo {
    width: 48px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.3));
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.6));
    transform: scale(1.05);
}

.navbar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 20px 0;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav a:hover,
.navbar-nav a.active {
    color: #ff6b9d;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b9d, #e91e63);
    transition: width 0.3s ease;
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
    width: 100%;
}

.navbar-cta {
    display: flex;
    align-items: center;
    margin-left: 40px; /* Ajout de marge pour séparer du menu */
}

/* Hero Section - Full Width */
.hero-carousel {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    width: 100%;
    z-index: 1;
    padding-top: 80px;
}

/* Sections */
.section {
    padding: 96px 48px;
    position: relative;
}

.section-transparent {
    background: transparent;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-container.center {
    text-align: center;
}

/* Overlays */
.vibrant-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(255, 107, 157, 0.05) 25%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(255, 107, 157, 0.03) 75%,
        rgba(0, 0, 0, 0.4) 100%
    );
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.overlay-light {
    opacity: 0.1;
}

.overlay-medium {
    opacity: 0.15;
}

.overlay-strong {
    opacity: 0.2;
}

/* Sidebar Navigation */
.sidebar {
    display: none;
}

/* Logo */
.logo-container {
    background: transparent;
    border-radius: 8px;
    padding: 20px;
    position: relative;
    transition: all 0.6s ease;
    cursor: pointer;
    margin-bottom: 16px;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 50%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    opacity: 0;
}

.logo-container:hover::before {
    width: 200px;
    height: 200px;
    opacity: 1;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

.logo-container:hover .logo-image {
    filter: brightness(1.3) contrast(1.3) drop-shadow(0 0 15px rgba(255, 107, 157, 0.4));
}

/* Hero Slide */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    margin: 0;
    border: none;
    outline: none;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.hero-slide.winter {
    justify-content: center;
}

.hero-background {
    background: 
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.1) 0%, 
            rgba(255, 107, 157, 0.02) 20%,
            rgba(0, 0, 0, 0.05) 40%, 
            rgba(255, 107, 157, 0.03) 70%,
            rgba(0, 0, 0, 0.15) 100%),
        url('imgs/accueilBgTop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-background-winter {
    background: 
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.15) 0%, 
            rgba(255, 107, 157, 0.03) 20%,
            rgba(0, 0, 0, 0.1) 40%, 
            rgba(255, 107, 157, 0.02) 70%,
            rgba(0, 0, 0, 0.2) 100%),
        url('imgs/hero2winter.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.winter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at 30% 50%,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.8) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.winter-content {
    position: relative;
    z-index: 2;
    max-width: 1152px;
    width: 100%;
    text-align: left;
}

.winter-content .hero-description {
    max-width: 600px;
}

/* Remove diagonal overlay styles */
.winter-diagonal-overlay {
    display: none;
}

.hero-content {
    max-width: 1152px;
    width: 100%;
}

.hero-content.winter {
    max-width: 768px;
    text-align: right;
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 30;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 107, 157, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #ff6b9d;
    border-color: #ff6b9d;
    box-shadow: 0 0 15px rgba(255, 107, 157, 0.5);
}

.hero-dot:hover {
    background: rgba(255, 107, 157, 0.7);
    border-color: #ff6b9d;
}

/* Typography */
.hero-title-main {
    color: #ffffff;
    text-shadow: 
        0 0 30px rgba(255, 107, 157, 0.6),
        0 0 50px rgba(255, 107, 157, 0.3),
        3px 3px 6px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(0, 0, 0, 0.8);
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: clamp(3rem, 8vw, 9rem);
    line-height: 0.9;
    margin-bottom: 16px;
}

.hero-title-sub {
    background: linear-gradient(135deg, #ffffff 0%, #ff6b9d 50%, #ffb3d1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0 0 25px rgba(255, 107, 157, 0.5),
        0 0 40px rgba(255, 107, 157, 0.2);
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    letter-spacing: 0.05em;
    animation: textGlow 4s ease-in-out infinite alternate;
    font-size: clamp(2rem, 6vw, 7rem);
    margin-bottom: 32px;
}

.section-title {
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    font-size: clamp(3rem, 7vw, 7rem);
    color: #ffffff;
    margin-bottom: 32px;
}

.section-subtitle {
    color: #ff6b9d;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.text-vibrant-glow {
    color: #ffffff;
    text-shadow: 
        0 0 25px rgba(255, 107, 157, 0.5),
        0 0 40px rgba(255, 107, 157, 0.3),
        3px 3px 6px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(0, 0, 0, 0.7);
}

.enhanced-glow {
    text-shadow: 
        0 0 20px rgba(255, 107, 157, 0.8),
        0 0 35px rgba(255, 107, 157, 0.4),
        0 0 50px rgba(255, 107, 157, 0.2),
        2px 2px 4px rgba(0, 0, 0, 0.9);
}

/* Cards */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    margin-top: 64px;
}

.vibrant-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 107, 157, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.5s ease;
}

.vibrant-card:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(255, 107, 157, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Hover spécifique pour la carte Evolia - effet givrage noir */
.evolia-card:hover {
    background: rgba(0, 0, 0, 0.7) !important;
    border-color: rgba(0, 255, 136, 0.4) !important;
    backdrop-filter: blur(25px) !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2) !important;
}

.card-image {
    height: 192px;
    border-radius: 8px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.card-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.card-description {
    color: #d1d5db;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-top: 32px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #d1d5db;
}

.service-features li::before {
    content: '▸';
    color: #ff6b9d;
    margin-right: 12px;
    font-weight: 700;
}

/* Buttons */
.btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.btn-primary {
    background: #ff6b9d;
    color: #ffffff;
}

.btn-primary:hover {
    background: #e91e63;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(255, 107, 157, 0.1);
    border-color: rgba(255, 107, 157, 0.5);
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 24px;
    font-size: 14px;
}

.button-group {
    display: flex;
    gap: 24px;
    margin-top: 48px;
}

.button-group.right {
    justify-content: flex-end;
}

/* Forms */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.form-group {
    position: relative;
    margin-bottom: 32px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-input:focus {
    outline: none;
    border-color: #ff6b9d;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 0 0 3px rgba(255, 107, 157, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: -8px;
    left: 16px;
    font-size: 12px;
    color: #ff6b9d;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.6);
    padding: 0 8px;
    border-radius: 4px;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 24px;
}

.form-textarea + .form-label {
    top: 28px;
}

.form-textarea:focus + .form-label,
.form-textarea:not(:placeholder-shown) + .form-label {
    top: -8px;
}

.form-submit-group {
    text-align: center;
    margin-top: 48px;
}

.form-submit-btn {
    background: linear-gradient(135deg, #ff6b9d 0%, #e91e63 100%);
    color: #ffffff;
    border: none;
    padding: 18px 48px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 14px rgba(255, 107, 157, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 107, 157, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.16);
}

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 8px rgba(255, 107, 157, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.12);
}

/* Contact Form Container */
.contact-form-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(248, 250, 252, 0.25) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 157, 0.05) 0%, 
        rgba(255, 107, 157, 0.02) 50%, 
        rgba(0, 0, 0, 0.03) 100%);
    border-radius: 20px;
    pointer-events: none;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.06);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 157, 0.2);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-item h4 {
    color: #ff6b9d;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-item p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat-number {
    color: #ff6b9d;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    color: #d1d5db;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    padding: 80px 0 0;
    margin-top: 120px; /* Augmenté de 100px à 120px */
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.3), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Footer Brand Section */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.footer-logo-img {
    width: 160px; /* Double the size */
    height: auto;
    filter: grayscale(20%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-logo:hover .footer-logo-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.footer-brand-name {
    display: none; /* Remove the text completely */
}

.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 24px;
    font-weight: 400;
    text-align: center; /* Center the description */
}

.footer-location {
    display: flex;
    align-items: center;
    justify-content: center; /* Center the location */
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #868e96;
    font-weight: 500;
}

.location-icon {
    font-size: 12px;
    color: #ff6b9d;
    font-weight: bold;
}

/* Footer Sections */
.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #6c757d;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    border: none !important; /* Remove any border */
    outline: none !important; /* Remove outline */
}

.footer-links a:hover {
    color: #ff6b9d;
    padding-left: 8px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #ff6b9d;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 12px;
}

/* Contact Section */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
    color: #ff6b9d;
    font-weight: normal;
}

.contact-detail a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #6c757d;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    border: none !important;
    outline: none !important;
}

.contact-detail a:hover {
    color: #ff6b9d;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 32px 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #868e96;
    margin: 0;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    gap: 32px;
}

.footer-bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #868e96;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    border: none !important;
    outline: none !important;
}

.footer-bottom-links a:hover {
    color: #ff6b9d;
}

.footer-made-with {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #868e96;
    margin: 0;
    font-weight: 400;
}

/* Fix all blue links globally */
a {
    color: inherit;
    text-decoration: none;
    border: none !important;
    outline: none !important;
}

a:visited {
    color: inherit;
}

a:focus {
    outline: 2px solid #ff6b9d;
    outline-offset: 2px;
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
        margin-top: 60px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
        margin-bottom: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        padding: 0 24px;
    }
    
    .footer-bottom-links {
        order: 2;
    }
    
    .footer-made-with {
        order: 3;
    }
}

/* Easter Egg - Hidden Sheep Game */
.easter-egg-sheep {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    user-select: none;
    background-image: url('imgs/crzsheepico.png');
    background-size: 32px 32px;
    background-position: center;
    background-repeat: no-repeat;
}

.easter-egg-sheep::before {
    display: none; /* Remove the flat icon */
}

.easter-egg-sheep:hover {
    transform: scale(1.2) rotate(5deg);
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.3);
}

/* Game Modal */
.game-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.game-modal.active {
    display: flex;
}

.game-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1020 50%, #1a1a1a 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    padding: 20px;
    max-width: 800px;
    width: 90%;
    text-align: center;
    position: relative;
}

.game-header {
    margin-bottom: 20px;
    color: #ffffff;
}

.game-title {
    font-size: 2rem;
    font-weight: 900;
    color: #ff6b9d;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
}

.game-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.score {
    color: #ffffff;
    font-size: 1.2rem;
}

.high-score {
    color: #ff6b9d;
    font-size: 1.2rem;
}

.game-canvas {
    border: 2px solid rgba(255, 107, 157, 0.5);
    border-radius: 10px;
    background: linear-gradient(180deg, #87CEEB 0%, #98FB98 70%, #90EE90 100%);
    display: block;
    margin: 0 auto;
}

.game-instructions {
    margin-top: 15px;
    color: #d1d5db;
    font-size: 14px;
}

.game-controls {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.game-btn {
    background: #ff6b9d;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.game-btn:hover {
    background: #e91e63;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

.game-btn.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.game-btn.secondary:hover {
    background: rgba(255, 107, 157, 0.1);
    border-color: rgba(255, 107, 157, 0.5);
}

.close-game {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.close-game:hover {
    opacity: 1;
    color: #ff6b9d;
}

/* Game Over Screen */
.game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ff6b9d;
    text-align: center;
    display: none;
}

.game-over.show {
    display: block;
}

.game-over h3 {
    color: #ff6b9d;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.final-score {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
        height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        backdrop-filter: blur(20px);
        background: rgba(0, 0, 0, 0.8);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar-brand {
        gap: 8px;
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    
    .navbar-logo {
        width: 35px;
    }
    
    .navbar-title {
        font-size: 18px;
    }
    
    /* Hide desktop navigation and CTA */
    .navbar-nav {
        display: none;
    }
    
    .navbar-cta {
        display: none; /* Hide CTA button on mobile to make room for hamburger */
    }
    
    /* Mobile Menu Button - Make it clearly visible */
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        background: none;
        border: none;
        padding: 12px;
        cursor: pointer;
        width: 48px;
        height: 48px;
        border-radius: 8px;
        transition: background-color 0.3s ease;
        flex-shrink: 0; /* Prevent compression */
    }
    
    .mobile-menu-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu-btn span {
        width: 24px;
        height: 2px;
        background: #ffffff;
        border-radius: 1px;
        transition: all 0.3s ease;
        display: block;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu {
        display: flex !important;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        transform: translateY(-20px);
    }
    
    .mobile-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    .mobile-menu a {
        font-family: 'Inter', sans-serif;
        font-size: 24px;
        font-weight: 300;
        color: #ffffff;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .mobile-menu a::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 0;
        height: 2px;
        background: #ff6b9d;
        transition: width 0.3s ease;
    }
    
    .mobile-menu a:hover,
    .mobile-menu a.active {
        color: #ff6b9d;
    }
    
    .mobile-menu a:hover::after,
    .mobile-menu a.active::after {
        width: 100%;
    }
    
    /* Mobile CTA Button in menu */
    .mobile-cta-btn {
        background: #ff6b9d !important;
        color: #ffffff !important;
        padding: 16px 32px !important;
        border-radius: 12px !important;
        font-weight: 600 !important;
        margin-top: 20px !important;
        letter-spacing: 1px !important;
        transition: all 0.3s ease !important;
        text-transform: uppercase !important;
    }
    
    .mobile-cta-btn:hover {
        background: #e91e63 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 32px rgba(255, 107, 157, 0.3) !important;
    }
    
    .mobile-cta-btn::after {
        display: none !important; /* Remove the underline effect for CTA */
    }
    
    /* Hero Mobile Optimizations */
    .hero-carousel {
        padding-top: 60px;
        min-height: 100vh;
    }
    
    .hero-slide {
        padding: 40px 20px;
        min-height: calc(100vh - 60px);
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        text-align: center;
        width: 100%;
    }
    
    .hero-title-main {
        font-size: clamp(2rem, 8vw, 3.5rem);
        line-height: 1.1;
        margin-bottom: 16px;
    }
    
    .hero-title-sub {
        font-size: clamp(1.2rem, 5vw, 2rem);
        margin-bottom: 24px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 32px;
        max-width: 100%;
    }
    
    .button-group {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .btn {
        width: 280px;
        max-width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        text-align: center;
    }
    
    /* Floating elements - smaller on mobile */
    .floating-element {
        display: none; /* Hide for cleaner mobile experience */
    }
    
    /* Section spacing */
    .section {
        padding: 60px 20px;
    }
    
    .section-container {
        max-width: 100%;
        padding: 0;
    }
    
    /* Typography scaling */
    .section-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
        line-height: 1.2;
        text-align: center;
        margin-bottom: 24px;
    }
    
    .section-subtitle {
        font-size: 12px;
        margin-bottom: 16px;
        text-align: center;
    }
    
    /* Project grid - single column */
    .project-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .vibrant-card {
        padding: 24px;
    }
    
    .card-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .card-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Contact form mobile */
    .contact-form-container {
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 16px 20px;
    }
    
    .form-submit-btn {
        width: 100%;
        padding: 18px;
        font-size: 16px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 32px;
    }
    
    /* Easter egg positioning */
    .easter-egg-sheep {
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    /* Game modal mobile */
    .game-modal {
        padding: 0;
    }
    
    .game-container {
        width: 95vw;
        max-width: 400px;
        margin: 20px;
        padding: 20px;
        border-radius: 16px;
    }
    
    .game-canvas {
        width: 100%;
        height: 200px;
        max-width: 350px;
    }
    
    .game-controls {
        flex-direction: column;
        gap: 12px;
    }
    
    .game-btn {
        width: 100%;
        padding: 12px;
    }
}

/* Modern Scroll-Controlled About Section */
#apropos {
    margin-left: -48px;
    margin-right: -48px;
    padding: 0;
    background: #000000;
    position: relative;
    overflow: hidden;
    height: 250vh; /* Reduced from 300vh to eliminate excess scroll */
}

#apropos::before {
    content: '';
    position: fixed; /* Changed to fixed */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 157, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 157, 0.04) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none; /* Don't interfere with interactions */
    transition: all 2s ease-out;
}

/* Animated Background Elements */
.scroll-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.bg-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 107, 157, 0.4); /* Much more visible */
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease-out; /* Faster transitions */
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.3); /* Glow effect */
}

.bg-particle:nth-child(1) {
    width: 8px; /* Bigger particles */
    height: 8px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.bg-particle:nth-child(2) {
    width: 12px;
    height: 12px;
    top: 60%;
    left: 85%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.bg-particle:nth-child(3) {
    width: 6px;
    height: 6px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.bg-particle:nth-child(4) {
    width: 10px;
    height: 10px;
    top: 30%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.bg-particle:nth-child(5) {
    width: 8px;
    height: 8px;
    top: 50%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 8s;
}

.bg-particle:nth-child(6) {
    width: 14px;
    height: 14px;
    top: 15%;
    left: 60%;
    animation-delay: 5s;
    animation-duration: 11s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.4;
        filter: blur(0px);
    }
    25% { 
        transform: translateY(-30px) translateX(20px) scale(1.5);
        opacity: 0.8;
        filter: blur(1px);
    }
    50% { 
        transform: translateY(-20px) translateX(-25px) scale(0.7);
        opacity: 0.6;
        filter: blur(0px);
    }
    75% { 
        transform: translateY(-40px) translateX(15px) scale(1.3);
        opacity: 0.9;
        filter: blur(2px);
    }
}

/* Moving Lines */
.bg-line {
    position: absolute;
    height: 2px; /* Thicker lines */
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.6), transparent);
    animation: moveLine 8s linear infinite; /* Faster movement */
    transition: all 0.3s ease-out;
    box-shadow: 0 0 10px rgba(255, 107, 157, 0.4);
}

.bg-line:nth-child(7) {
    width: 300px; /* Longer lines */
    top: 25%;
    left: -300px;
    animation-delay: 0s;
}

.bg-line:nth-child(8) {
    width: 250px;
    top: 75%;
    left: -250px;
    animation-delay: 4s;
}

@keyframes moveLine {
    0% { 
        left: -300px;
        opacity: 0;
        transform: scaleX(0.5);
    }
    10% { 
        opacity: 0.8;
        transform: scaleX(1);
    }
    90% { 
        opacity: 0.8;
        transform: scaleX(1);
    }
    100% { 
        left: 100%;
        opacity: 0;
        transform: scaleX(0.5);
    }
}

/* Dynamic Gradient Overlays */
.bg-gradient-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg at 50% 50%, 
        rgba(255, 107, 157, 0.1) 0deg,
        transparent 120deg,
        rgba(255, 107, 157, 0.15) 240deg,
        transparent 360deg);
    animation: rotateGradient 15s linear infinite; /* Faster rotation */
    transition: all 0.3s ease-out;
    mix-blend-mode: screen; /* Better blending */
}

@keyframes rotateGradient {
    0% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.1;
    }
    50% { 
        transform: rotate(180deg) scale(1.1);
        opacity: 0.3;
    }
    100% { 
        transform: rotate(360deg) scale(1);
        opacity: 0.1;
    }
}

/* Scroll Story Container */
.scroll-story {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0 48px;
    overflow: hidden; /* Prevent any movement */
}

/* Story Frames */
.story-frame {
    position: fixed; /* Changed to fixed for truly static positioning */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    pointer-events: none; /* Prevent interaction issues */
}

.story-frame.active {
    opacity: 1;
    pointer-events: auto; /* Re-enable interactions for active frame */
}

.story-frame.out {
    opacity: 0;
}

/* Typography */
.story-subtitle {
    color: #ff6b9d;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-frame.active .story-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.story-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 8vw, 6rem);
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin: 0;
}

.story-title .line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-frame.active .story-title .line {
    opacity: 1;
    transform: translateY(0);
}

.story-title .line:nth-child(1) { transition-delay: 0.1s; }
.story-title .line:nth-child(2) { transition-delay: 0.2s; }
.story-title .line:nth-child(3) { transition-delay: 0.3s; }

.story-title .highlight {
    color: #ff6b9d;
    position: relative;
}

.story-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b9d, #ffb3d1);
    border-radius: 2px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.story-frame.active .story-title .highlight::after {
    width: 100%;
}

/* Story Text */
.story-text {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #a1a1a6;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.story-text.large {
    font-size: 32px;
    font-weight: 300;
    color: #ffffff;
}

.story-text .reveal-line {
    display: block;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-frame.active .story-text .reveal-line {
    opacity: 1;
    transform: translateY(0);
}

.story-text .reveal-line:nth-child(1) { transition-delay: 0.1s; }
.story-text .reveal-line:nth-child(2) { transition-delay: 0.25s; }
.story-text .reveal-line:nth-child(3) { transition-delay: 0.4s; }
.story-text .reveal-line:nth-child(4) { transition-delay: 0.55s; }

.story-text em.highlight {
    color: #ff6b9d;
    font-style: normal;
    font-weight: 500;
    position: relative;
}

/* Story Heading */
.story-heading {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-frame.active .story-heading {
    opacity: 1;
    transform: translateY(0);
}

/* Stats */
.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-reveal {
    text-align: center;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-frame.active .stat-reveal {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-reveal:nth-child(1) { transition-delay: 0.1s; }
.stat-reveal:nth-child(2) { transition-delay: 0.2s; }
.stat-reveal:nth-child(3) { transition-delay: 0.3s; }

.stat-number {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #ff6b9d;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Quote */
.story-quote {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 107, 157, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
    backdrop-filter: blur(20px);
    position: relative;
}

.story-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    color: rgba(255, 107, 157, 0.1);
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    line-height: 1;
}

.quote-text {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    font-style: italic;
    display: block;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.story-frame.active .quote-text {
    opacity: 1;
    transform: translateY(0);
}

.quote-author {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ff6b9d;
    font-style: normal;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.story-frame.active .quote-author {
    opacity: 1;
    transform: translateY(0);
}

/* Final CTA */
.story-frame.final {
    text-align: center;
}

.story-cta-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 60px;
}

.story-cta-title .line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-frame.active .story-cta-title .line {
    opacity: 1;
    transform: translateY(0);
}

.story-cta-title .line:nth-child(1) { transition-delay: 0.1s; }
.story-cta-title .line:nth-child(2) { transition-delay: 0.2s; }
.story-cta-title .line:nth-child(3) { transition-delay: 0.3s; }

.story-cta-title .highlight {
    color: #ff6b9d;
}

.story-cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
}

.story-cta-buttons .btn {
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-frame.active .story-cta-buttons .btn {
    opacity: 1;
    transform: translateY(0);
}

.story-cta-buttons .btn:nth-child(1) { transition-delay: 0.4s; }
.story-cta-buttons .btn:nth-child(2) { transition-delay: 0.5s; }

.story-cta-buttons .btn-primary {
    background: #ff6b9d;
    border: none;
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.3);
}

.story-cta-buttons .btn-primary:hover {
    background: #e91e63;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.4);
}

.story-cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.story-cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    #apropos {
        margin-left: -20px;
        margin-right: -20px;
        height: 200vh; /* Reduced for mobile */
    }
    
    .scroll-story {
        padding: 0 20px;
    }
    
    .story-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        line-height: 1.1;
        margin-bottom: 20px;
    }
    
    .story-text {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .story-text.large {
        font-size: 20px;
    }
    
    .story-heading {
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .story-cta-title {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: 32px;
    }
    
    .story-cta-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .story-cta-buttons .btn {
        width: 280px;
        max-width: 100%;
    }
    
    .story-quote {
        padding: 32px 20px;
        margin: 0 20px;
    }
    
    .quote-text {
        font-size: 18px;
        line-height: 1.5;
    }
    
    /* Mobile typography variations */
    .accent-serif {
        font-size: 16px;
        margin-top: 16px;
    }
    
    .emphasis-italic {
        font-size: 20px !important;
    }
    
    .philosophy-serif {
        font-size: 22px !important;
    }
    
    .note-mono {
        font-size: 11px;
        margin-top: 20px;
    }
    
    .cta-serif {
        font-size: 14px;
        margin: 16px 0 24px;
    }
    
    .signature-light {
        font-size: 14px;
        text-align: center;
        margin-top: 20px;
    }
    
    .testimonial-light {
        font-size: 12px;
        margin-top: 16px;
    }
    
    /* Background animations - optimized for mobile */
    .bg-particle {
        box-shadow: 0 0 10px rgba(255, 107, 157, 0.2); /* Lighter glow for mobile */
    }
    
    .bg-line {
        height: 1px; /* Thinner lines on mobile */
        box-shadow: 0 0 5px rgba(255, 107, 157, 0.3);
    }
    
    .bg-gradient-layer {
        opacity: 0.5; /* Reduced intensity for mobile */
    }
}

/* Modern Typography Variations */
.accent-serif {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    color: #ff6b9d;
    text-align: center;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
    letter-spacing: 0.5px;
}

.story-frame.active .accent-serif {
    opacity: 1;
    transform: translateY(0);
}

.emphasis-italic {
    font-family: 'Raleway', sans-serif !important;
    font-size: 26px !important;
    font-weight: 500;
    font-style: italic;
    color: #ff6b9d;
    letter-spacing: 0.5px;
}

.note-mono {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    font-weight: 400;
    color: #ffb3d1;
    text-align: center;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.story-frame.active .note-mono {
    opacity: 0.8;
    transform: translateY(0);
}

.philosophy-serif {
    font-family: 'Playfair Display', serif !important;
    font-size: 32px !important;
    font-weight: 600;
    font-style: italic;
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: #ff6b9d;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
    letter-spacing: 0.5px;
}

.signature-light {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: #ff6b9d;
    text-align: right;
    margin-top: 25px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1s;
    letter-spacing: 1px;
}

.story-frame.active .signature-light {
    opacity: 0.9;
    transform: translateX(0);
}

.testimonial-light {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: #ffb3d1;
    text-align: center;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    letter-spacing: 0.5px;
}

.story-frame.active .testimonial-light {
    opacity: 0.7;
    transform: translateY(0);
}

.cta-serif {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    color: #ff6b9d;
    text-align: center;
    margin: 20px 0 40px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    letter-spacing: 0.5px;
}

.story-frame.active .cta-serif {
    opacity: 0.9;
    transform: translateY(0);
}

/* Enhanced highlight for varied typography */
.emphasis-italic .highlight,
.philosophy-serif .highlight {
    position: relative;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 107, 157, 0.3) 50%, transparent 100%);
    padding: 0 8px;
    border-radius: 4px;
}

/* Responsive typography variations */
@media (max-width: 768px) {
    .accent-serif {
        font-size: 16px;
    }
    
    .emphasis-italic {
        font-size: 20px !important;
    }
    
    .philosophy-serif {
        font-size: 22px !important;
    }
    
    .note-mono {
        font-size: 11px;
    }
    
    .cta-serif {
        font-size: 14px;
    }
    
    .signature-light {
        font-size: 14px;
        text-align: center;
    }
} 

/* Hide mobile menu elements on desktop */
.mobile-menu-btn {
    display: none;
}

.mobile-menu {
    display: none;
}

/* Contact Form Layout */
.contact-form-wrapper {
    margin: 0 auto;
    max-width: 1200px;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

/* Contact Form Intro (Left Side) */
.contact-form-intro {
    padding: 40px 0;
}

.contact-form-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.contact-form-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #a1a1a6;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

.highlight-icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

/* Contact Form Container (Right Side) */
.contact-form-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(248, 250, 252, 0.25) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 157, 0.05) 0%, 
        rgba(255, 107, 157, 0.02) 50%, 
        rgba(0, 0, 0, 0.03) 100%);
    border-radius: 20px;
    pointer-events: none;
}

/* Form Labels - Fixed Positioning */
.form-label {
    position: absolute;
    top: 16px;
    left: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    transform: translateY(0);
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label,
.form-input:valid + .form-label {
    top: -8px;
    left: 16px;
    font-size: 12px;
    color: #ff6b9d;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.6);
    padding: 0 8px;
    border-radius: 4px;
}

.form-textarea + .form-label {
    top: 20px;
}

.form-textarea:focus + .form-label,
.form-textarea:not(:placeholder-shown) + .form-label,
.form-textarea:valid + .form-label {
    top: -8px;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-form-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-intro {
        text-align: center;
        padding: 20px 0;
    }
    
    .contact-highlights {
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .contact-form-layout {
        gap: 32px;
        margin-bottom: 60px;
    }
    
    .contact-form-container {
        padding: 24px;
        border-radius: 16px;
    }
    
    .contact-highlights {
        gap: 16px;
    }
    
    .highlight-item {
        font-size: 14px;
    }
}

/* ========================================
   CONTACT SECTION - COMPLETE REDESIGN
======================================== */

/* Main Contact Container */
.contact-main-container {
    margin: 0 auto;
    max-width: 1400px;
    padding: 80px 0 40px 0;
}

/* Hero Layout */
.contact-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: stretch;
    margin-bottom: 0;
}

/* ========== LEFT SIDE - HERO CONTENT ========== */
.contact-hero-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
}

/* Badge */
.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(255, 107, 157, 0.1));
    border: 1px solid rgba(255, 107, 157, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ff6b9d;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 16px;
}

/* Hero Title */
.contact-hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.contact-hero-title .line {
    display: block;
    margin-bottom: 8px;
}

.contact-hero-title .highlight {
    color: #ff6b9d;
    position: relative;
}

/* Description */
.contact-hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #a1a1a6;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Benefits */
.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 157, 0.2);
    transform: translateY(-2px);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff6b9d, #e91e63);
    border-radius: 12px;
    font-size: 24px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.benefit-content p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #a1a1a6;
    margin: 0;
}

/* Stats */
.contact-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.stat-item {
    text-align: center;
    padding: 20px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b9d;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== RIGHT SIDE - FORM PANEL ========== */
.contact-form-panel {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(248, 250, 252, 0.15) 50%,
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.15),
        0 16px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Enhanced Form */
.enhanced-contact-form {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-section {
    margin-bottom: 40px;
}

.form-section:last-of-type {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-section:last-of-type .form-field:last-child {
    flex: 1;
}

.form-section:last-of-type .form-field:last-child .form-textarea {
    height: 100%;
    min-height: 180px;
}

.form-section:last-of-type .form-field:last-child .form-textarea {
    height: 100%;
    min-height: 180px;
}

.contact-form-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 157, 0.03) 0%, 
        rgba(255, 107, 157, 0.01) 50%, 
        rgba(0, 0, 0, 0.02) 100%);
    border-radius: 24px;
    pointer-events: none;
}

/* Form Header */
.form-panel-header {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.form-panel-title {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.form-panel-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.form-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ff6b9d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-field {
    position: relative;
    margin-bottom: 24px;
}

.form-control {
    width: 100%;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: #ff6b9d;
    transform: translateY(-2px);
    box-shadow: 
        0 0 0 4px rgba(255, 107, 157, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.2);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.form-control option {
    background: #1a1a1a;
    color: #ffffff;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 24px;
}

/* Form Labels */
.form-label {
    position: absolute;
    top: 20px;
    left: 24px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label,
.form-control:valid + .form-label {
    top: -8px;
    left: 20px;
    font-size: 13px;
    color: #ff6b9d;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.8);
    padding: 4px 8px;
    border-radius: 6px;
}

.form-textarea + .form-label {
    top: 24px;
}

.form-textarea:focus + .form-label,
.form-textarea:not(:placeholder-shown) + .form-label,
.form-textarea:valid + .form-label {
    top: -8px;
}

/* Field Border Animation */
.field-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b9d, #e91e63);
    transition: width 0.3s ease;
}

.form-control:focus + .form-label + .field-border {
    width: 100%;
}

/* Form Actions */
.form-actions {
    margin-top: 48px;
    text-align: center;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b9d, #e91e63);
    color: #ffffff;
    border: none;
    padding: 20px 40px;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.4);
}

.submit-btn:hover::before {
    left: 100%;
}

.btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

.form-note {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
    margin-bottom: 0;
}

/* ========== CONTACT INFO CARDS ========== */
.contact-info-section {
    margin-top: 40px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    text-align: left;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 157, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ff6b9d, #e91e63);
    border-radius: 16px;
    font-size: 24px;
    color: #ffffff;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.card-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #a1a1a6;
    margin-bottom: 12px;
    line-height: 1.4;
}

.card-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ff6b9d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #ffffff;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .contact-hero-layout {
        gap: 60px;
    }
    
    .contact-form-panel {
        padding: 40px;
    }
}

@media (max-width: 968px) {
    .contact-hero-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-hero-content {
        text-align: center;
    }
    
    .contact-hero-description {
        max-width: 100%;
        font-size: 18px;
        margin-bottom: 32px;
    }
    
    .contact-cards-grid-left {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
    
    .contact-form-panel {
        padding: 36px 28px;
    }
    
    .form-panel-title {
        font-size: 24px;
        text-align: center;
    }
    
    .form-panel-subtitle {
        text-align: center;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .contact-main-container {
        padding: 60px 20px 40px 20px;
    }
    
    .contact-hero-layout {
        gap: 40px;
        margin-bottom: 0;
    }
    
    .contact-hero-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 24px;
        text-align: center;
    }
    
    .contact-hero-description {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 28px;
        text-align: center;
    }
    
    .contact-form-panel {
        padding: 32px 24px;
        border-radius: 20px;
        margin: 0;
    }
    
    .form-panel-header {
        margin-bottom: 32px;
        text-align: center;
    }
    
    .form-panel-title {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .form-panel-subtitle {
        font-size: 14px;
    }
    
    .form-section {
        margin-bottom: 32px;
    }
    
    .form-section-title {
        font-size: 14px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .form-field {
        margin-bottom: 20px;
    }
    
    .form-control {
        padding: 18px 20px;
        font-size: 16px;
        border-radius: 14px;
        min-height: 56px;
        -webkit-appearance: none;
    }
    
    .form-control:focus {
        transform: none;
        box-shadow: 
            0 0 0 3px rgba(255, 107, 157, 0.2),
            0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .form-control::placeholder {
        font-size: 15px;
    }
    
    .form-textarea {
        min-height: 140px;
        padding: 20px;
        resize: none;
    }
    
    .form-section:last-of-type .form-field:last-child .form-textarea {
        min-height: 140px;
        height: auto;
    }
    
    .form-actions {
        margin-top: 32px;
        text-align: center;
    }
    
    .submit-btn {
        width: 100%;
        padding: 20px 24px;
        font-size: 16px;
        font-weight: 700;
        min-height: 56px;
        border-radius: 14px;
        letter-spacing: 0.3px;
    }
    
    .submit-btn:hover {
        transform: none;
    }
    
    .submit-btn:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .form-note {
        font-size: 13px;
        margin-top: 16px;
        text-align: center;
        line-height: 1.4;
    }
    
    .contact-cards-grid-left {
        gap: 16px;
        margin-top: 24px;
    }
    
    .contact-card {
        padding: 20px;
        border-radius: 16px;
        flex-direction: row;
        text-align: left;
        gap: 16px;
    }
    
    .card-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        border-radius: 12px;
        flex-shrink: 0;
    }
    
    .card-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .card-description {
        font-size: 13px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .card-link {
        font-size: 14px;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .contact-main-container {
        padding: 40px 16px 32px 16px;
    }
    
    .contact-hero-layout {
        gap: 32px;
    }
    
    .contact-hero-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        margin-bottom: 20px;
    }
    
    .contact-hero-description {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .contact-form-panel {
        padding: 24px 20px;
        border-radius: 18px;
    }
    
    .form-panel-header {
        margin-bottom: 28px;
    }
    
    .form-panel-title {
        font-size: 20px;
    }
    
    .form-panel-subtitle {
        font-size: 13px;
    }
    
    .form-section {
        margin-bottom: 28px;
    }
    
    .form-control {
        padding: 16px 18px;
        font-size: 16px;
        min-height: 52px;
    }
    
    .form-control::placeholder {
        font-size: 14px;
    }
    
    .form-textarea {
        min-height: 120px;
        padding: 18px;
    }
    
    .submit-btn {
        padding: 18px 20px;
        font-size: 15px;
        min-height: 52px;
    }
    
    .contact-card {
        padding: 18px;
        gap: 14px;
    }
    
    .card-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .card-title {
        font-size: 15px;
    }
    
    .card-description {
        font-size: 12px;
    }
    
    .card-link {
        font-size: 13px;
    }
}

/* Contact Cards Grid in Left Column */
.contact-cards-grid-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

/* Micro-interactions formulaire avancées */
.form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 18px 20px;
    color: #ffffff;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    transform: translateZ(0);
}

.form-control:focus {
    outline: none;
    border-color: #ff6b9d;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 0 0 3px rgba(255, 107, 157, 0.1),
        0 8px 25px rgba(255, 107, 157, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px) scale(1.01);
}

/* États de validation */
.form-control.valid {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.form-control.valid:focus {
    box-shadow: 
        0 0 0 3px rgba(16, 185, 129, 0.2),
        0 8px 25px rgba(16, 185, 129, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-control.invalid {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    animation: shake 0.5s ease-in-out;
}

.form-control.invalid:focus {
    box-shadow: 
        0 0 0 3px rgba(239, 68, 68, 0.2),
        0 8px 25px rgba(239, 68, 68, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Messages de validation */
.validation-message {
    font-size: 14px;
    margin-top: 8px;
    padding: 0 4px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
    height: 0;
    overflow: hidden;
}

.validation-message.show {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    margin-bottom: 8px;
}

.validation-message.success {
    color: #10b981;
}

.validation-message.error {
    color: #ef4444;
}

/* Améliorations bouton submit */
.submit-btn {
    background: linear-gradient(135deg, #ff6b9d 0%, #e91e63 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    padding: 18px 32px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    transform: translateZ(0);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
    background: linear-gradient(135deg, #e91e63 0%, #ff6b9d 100%);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(0) scale(0.98);
}

/* États du bouton */
.submit-btn.loading {
    pointer-events: none;
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
}

.submit-btn.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    animation: success-pulse 0.6s ease;
}

@keyframes success-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Spinner de loading */
.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

.submit-btn.loading .loading-spinner {
    display: block;
}

.submit-btn.loading .btn-text {
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Notifications de formulaire */
.form-notification {
    position: fixed;
    top: 100px;
    right: 24px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 16px 20px;
    max-width: 400px;
    z-index: 10000;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid;
}

.form-notification.success {
    border-left-color: #10b981;
}

.form-notification.error {
    border-left-color: #ef4444;
}

.form-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 18px;
    font-weight: bold;
}

.form-notification.success .notification-icon {
    color: #10b981;
}

.form-notification.error .notification-icon {
    color: #ef4444;
}

.notification-message {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

/* Ajustements pour les champs validés */
.form-field {
    position: relative;
    transition: all 0.3s ease;
}

.form-control:not(:focus) {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animation pour les champs au focus */
.form-field:focus-within {
    z-index: 10;
}
