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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #333;
    overflow-x: hidden;
    background-color: #fcfcfc;
}

/* Scrollbar Style */
body::-webkit-scrollbar {
    width: 8px;
}
body::-webkit-scrollbar-thumb {
    background-color: #7a9d9e;
    border-radius: 10px;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 100%;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    z-index: 999;
}

.navbar-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #918767;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 2rem;
    max-width: 1600px;
}

.navbar-container .navbar-menu {
    display: flex;
    text-align: center;
    gap: 1.5rem;
    list-style: none;
}

.navbar-container .navbar-menu li a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navbar-container .navbar-menu li a:hover,
.navbar-container .navbar-menu li a.active {
    color: white;
    background: #7a9d9e;
    box-shadow: 0 4px 10px rgba(122, 157, 158, 0.4);
}

.navbar-toggle {
    display: none;
    background: transparent;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #5d7c7d;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 880px) {
    .navbar {
        background: white;
    }
    .navbar-container .navbar-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.7rem;
        position: fixed;
        height: 100vh;
        width: 250px;
        top: 0;
        right: -250px;
        padding: 5rem 1.5rem;
        background: #5d7c7d;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: all 0.5s ease-in-out;
        z-index: 998;
    }
    .navbar-container .navbar-menu.active {
        right: 0;
    }
    .navbar-container .navbar-menu li a {
        color: white;
    }
    .navbar-toggle {
        display: block;
        z-index: 999;
    }
    .navbar-toggle.active .bar:nth-child(2) { opacity: 0; }
    .navbar-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .navbar-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* Global Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
    overflow: hidden;
}

section:nth-child(even) {
    background: #f5f5f0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #5d7c7d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.5;
}

.section-subtitle-small {
    text-align: center; 
    color: #7a9d9e; 
    margin-bottom: 1rem; 
    font-size: 1.8rem;
    font-weight: 600;
}

.section-description {
    text-align: center; 
    max-width: 900px; 
    margin: 0 auto 3rem; 
    font-size: 1.1rem;
    color: #555;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #7a9d9e;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(122, 157, 158, 0.4);
}
.cta-button:hover {
    background-color: #5d7c7d;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(93, 124, 125, 0.5);
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 15px rgba(122, 157, 158, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(122, 157, 158, 0.6);
    }
}

/* Hero Section */
.hero {
    background: none;
    color: white;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    height: 800px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/pexels-photo-268261.webp') no-repeat center center;
    background-size: cover;
    filter: blur(8px);
    transform: scale(1.03);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.floating-brain {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
    animation: floatBrain 3s ease-in-out infinite;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@keyframes floatBrain {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    /* CSS animation removed, now handled by GSAP */
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 900px;
    /* CSS animation removed, now handled by GSAP */
    font-weight: 300;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.profile-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7a9d9e, #5d7c7d);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 10px;
    box-shadow: 0 15px 40px rgba(93, 124, 125, 0.3);
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text h3 {
    color: #5d7c7d;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.signature p {
    font-style: italic;
    color: #7a9d9e;
    font-size: 1.2rem;
    text-align: right;
    margin-top: 1rem;
}

/* Method Section */
.icon-large {
    font-size: 2.5rem;
    color: #7a9d9e;
    margin-bottom: 1rem;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.method-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border-left: 5px solid #7a9d9e;
    position: relative;
    overflow: hidden;
    /* transition properties removed for GSAP */
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(122, 157, 158, 0.1), transparent);
    transition: left 0.5s ease;
}

.method-card:hover::before {
    left: 100%;
}

.method-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(93, 124, 125, 0.3);
    border-left-width: 8px;
}

.method-card:hover .icon-large {
    transform: rotate(360deg);
    transition: transform 0.6s ease;
}

.method-card h3 {
    color: #7a9d9e;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.method-card p {
    color: #555;
    line-height: 1.8;
}

/* Mirror Section */
.mirror-section {
    background: linear-gradient(135deg, #7a9d9e 0%, #5d7c7d 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.mirror-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mirror-title {
    font-size: 3rem; 
    margin-bottom: 1rem;
    font-weight: 700;
}

.mirror-subtitle {
    font-size: 1.3rem; 
    margin-bottom: 3rem;
    font-weight: 300;
}

.icon-mirror {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.mirror-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mirror-card {
    background: rgba(255,255,255,0.15);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    transition: background 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.mirror-card:hover {
    background: rgba(255,255,255,0.25);
}

.mirror-card h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.mirror-image {
    width: 100%;
    margin-top: 4rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}



/* --- Nouvelle Section Vidéo --- */
.video-section {
    padding: 60px 20px;
    background-color: #f8f8f8; /* Un fond clair pour démarquer */
    text-align: center;
}

.video-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.video-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.video-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    /* Ratio 16:9 pour la vidéo */
    padding-bottom: 56.25%; 
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.video-info {
    padding: 25px;
    text-align: left;
}

.video-info h3 {
    color: #7a9d9e;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.video-info p {
    color: #666;
    margin-bottom: 20px;
}

.video-info .cta-button {
    display: inline-block;
    background-color: #7a9d9e;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.video-info .cta-button:hover {
    background-color: #5d8384;
}

/* Ajustement pour mobile */
@media (max-width: 768px) {
    .video-card {
        max-width: 100%;
    }
}




/* Benefits Section */
.benefit-image {
    width: 100%; /* L'image prend toute la largeur du conteneur */
    height: 200px; /* L'image prend toute la hauteur du conteneur */
    object-fit: cover; /* Assure que l'image couvre l'intégralité du cercle sans être déformée */
    display: block;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    /* transition properties removed for GSAP */
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(122, 157, 158, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(122, 157, 158, 0.3);
}

.benefit-img {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #7a9d9e, #5d7c7d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.benefit-img::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30%, 30%); }
}

.benefit-img .fas {
    font-size: 3rem;
    z-index: 1;
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-img .fas {
    transform: scale(1.2) rotate(5deg);
}

.benefit-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.benefit-content h3 {
    color: #5d7c7d;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.benefit-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.all-profiles-banner {
    text-align: center; 
    margin-top: 4rem; 
    padding: 3rem 2rem; 
    background: linear-gradient(135deg, #7a9d9e, #5d7c7d); 
    border-radius: 20px; 
    color: white;
    box-shadow: 0 10px 30px rgba(93, 124, 125, 0.5);
    position: relative;
    overflow: hidden;
}

.all-profiles-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.all-profiles-banner .fas {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: heartbeat 1.5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

.all-profiles-banner h3,
.all-profiles-banner p {
    position: relative;
    z-index: 1;
}

/* Pricing Section */
#pricing {
    background: #fcfcfc;
    padding-bottom: 10rem;
}

.pricing-grid-image {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.price-image-card {
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    min-height: 450px;
    position: relative;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.price-image-card:hover {
    transform: translateY(-5px);
}

.price-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}

.card-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 1.5rem;
    text-align: center;
    width: 100%;
}

.card-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.card-content p {
    font-size: 1.1rem;
    font-weight: 600;
}

.card-content .detail {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    font-weight: 400;
}

.price-button-small {
    display: inline-block;
    background-color: white;
    color: #5d7c7d;
    padding: 8px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.price-button-small:hover {
    background-color: #f0f0f0;
}

/* Contact Section */
.contact-section {
    padding: 0;
    position: relative;
    min-height: 700px;
    background-color: #eee;
}

.contact-map {
    width: 100%;
    height: 700px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 8%;
    z-index: 10;
    pointer-events: none;
    padding-right: 2rem;
}

.contact-card {
    background: rgba(122, 157, 158, 0.95);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    box-shadow: 0 25px 70px rgba(0,0,0,0.4);
    width: 450px;
    max-width: 90%;
    pointer-events: all;
    backdrop-filter: blur(15px);
    /* L'animation CSS 'slideInCenter' est supprimée et remplacée par GSAP */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Les keyframes 'slideInCenter' sont supprimées */

.contact-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0;
    gap: 1.5rem;
}

.contact-icon-circle {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-icon-circle i {
    font-size: 1.5rem;
    color: #5d7c7d;
}

.contact-info {
    flex: 1;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.3rem;
    opacity: 0.9;
}

.contact-item p {
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
    margin: 0;
}

.contact-cta-btn {
    width: 100%;
    padding: 1rem;
    background: white;
    color: #5d7c7d;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: #f5f5f5;
}

.contact-cta-btn:active {
    transform: translateY(0);
}

/* Social Sidebar */
.social-sidebar {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: white;
    padding: 20px 8px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 11;
    pointer-events: all;
}

.social-icon {
    color: #7a9d9e;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.social-icon:hover {
    background: #7a9d9e;
    color: white;
    transform: scale(1.15);
}

/* Contact Form Section */
#contact-form-section {
    background: linear-gradient(135deg, #f5f5f0 0%, #ffffff 100%);
    padding: 6rem 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-title {
    text-align: center;
    font-size: 2.5rem;
    color: #5d7c7d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: #5d7c7d;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7a9d9e;
    background: white;
    box-shadow: 0 0 0 4px rgba(122, 157, 158, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235d7c7d' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

#autre-raison-group {
    margin-top: 1rem;
    display: none;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #7a9d9e, #5d7c7d);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(122, 157, 158, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(122, 157, 158, 0.5);
}

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

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid #c3e6cb;
    text-align: center;
    font-weight: 600;
}

.error-message {
    display: none;
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid #f5c6cb;
    text-align: center;
    font-weight: 600;
}

/* Footer */
footer {
    background: #5d7c7d;
    color: white;
    text-align: center;
    padding: 2rem;
}

footer a {
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-overlay {
        justify-content: center;
        padding: 2rem;
        padding-left: 2rem;
    }
    .social-sidebar {
        left: 1rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 600px;
    }
    .floating-brain {
        display: none;
    }
    .hero-content h2 {
        font-size: 2.5rem;
    }
    .pricing-grid-image {
        grid-template-columns: 1fr;
    }
    .contact-map {
        height: 500px;
    }
    .contact-card {
        padding: 2rem 1.5rem;
        width: 95%;
    }
    .contact-title {
        font-size: 2.2rem;
    }
    .social-sidebar {
        display: none;
    }
    .form-container {
        padding: 1.5rem;
        border-radius: 15px;
    }
    .form-title {
        font-size: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}