/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

html {
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
}

:root {
    --bg-color: #000147;
    --text-color: #f8fafc;
    --primary-color: #e6d600;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 179, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(138, 92, 246, 0.1) 0%, transparent 20%);
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

/* Navbar Container */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: var(--nav-height);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Logo */
.navbar .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .logo span {
    color: var(--primary-color);
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: block;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
    color: var(--bg-color);
    background: rgb(255, 230, 0);
    font-weight: 600;
}

/* CTA Button */
.nav-cta {
    display: none;
    /* Hidden on desktop if not requested, but good for premium feel */
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        width: 95%;
        padding: 0 20px;
        top: 10px;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        /* Drawer on right usually */
        max-width: 300px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
        /* Center properly */
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid var(--glass-border);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 15px 30px;
        width: 100%;
        text-align: center;
    }

    /* Hamburger Animation */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Section Enhancements */
#home {
    position: relative;
    overflow: hidden;
}

.hero-wave {
    position: absolute;
    bottom: -10%;
    /* Slight offset to look dynamic */
    left: 50%;
    transform: translateX(-50%);
    width: 300%;
    /* Wider than screen for flow */
    max-width: 1500px;
    margin-left: -100px;
    margin-bottom: -5%;
    height: auto;
    z-index: -1;
    opacity: 0.9;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translateX(-50%) translateY(0px);
    }

    50% {
        transform: translateX(-50%) translateY(-20px);
    }

    100% {
        transform: translateX(-50%) translateY(0px);
    }
}

/* Adjust for mobile */
@media (max-width: 768px) {
    .hero-wave {
        width: 190%;
        bottom: 29%;
    }
}


/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    z-index: 2;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(90deg, #dd00b8, #dfd000);
    color: var(--bg-color);
    border: none;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(245, 248, 56, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* About Page Styles */
.about-container {
    padding: 120px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.about-content h3 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: #fff;
}

.about-content p {
    margin-bottom: 20px;
    color: #94a3b8;
    line-height: 1.8;
}

/* Principles/Sidebar */
.about-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.principle-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.principle-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.principle-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.principle-card p {
    font-size: 0.9rem;
    color: #cbd5e1;
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        padding-top: 100px;
    }

    .about-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .about-sidebar {
        grid-template-columns: 1fr;
    }
}


/* Mission & Vision Section */
.mission-vision-container {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.mv-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.mv-card p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 60px;
    }
}


/* Team Section */
.team-container {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header p {
    color: #94a3b8;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: center;
    padding: 30px 20px;
}

.team-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

.team-img-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    border-radius: 50%;
    padding: 3px;
    /* Border thickness */
}

.team-img {
    width: 100%;
    height: 100%;
    background-color: #0f172a;
    /* Fallback for transparency */
    border-radius: 50%;
    object-fit: cover;
    /* Allows user to put real images later easily */
}

.team-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-card .role {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.team-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* Services Section */
.services-section {
    padding: 120px 20px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-header h2,
.about-content h2,
.team-header h2,
.portfolio-header h2,
.testimonial-header h2 {
    font-size: 3.5rem;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 1.2rem;
    color: #94a3b8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.service-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.service-card>p {
    color: #cbd5e1;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-features {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.service-features h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.service-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-features li {
    font-size: 0.9rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: ' ';
    color: var(--primary-color);
}


/* Override for Diamond Bullets */
.service-features li::before {
    content: '\25C6' !important;
    /* Diamond symbol */
    color: var(--primary-color);
    font-size: 8px;
    margin-right: 5px;
}


/* Portfolio Section */
.portfolio-section {
    padding: 120px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-header p {
    color: #94a3b8;
    font-size: 1.2rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    group: pointer;
    border: 1px solid var(--glass-border);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.1);
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-category {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-title {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.view-project-btn {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}

.project-card:hover .project-category,
.project-card:hover .project-title,
.project-card:hover .view-project-btn {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* Testimonial Section */
.testimonial-section {
    padding: 120px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    /* overflow: hidden; Removed to let quote icon stick out if needed, but per design it's inside */
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* Quote Icon Container */
.quote-icon-container {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d946ef, #8b5cf6);
    border-radius: 50% 50% 50% 0;
    /* Leaf/Drop shape as seen in typical modern designs or circle */
    border-radius: 50%;
    /* Sticking to circle based on description/standard */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(217, 70, 239, 0.3);
}

.quote-icon {
    width: 24px;
    height: 24px;
    fill: white;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 30px;
    font-style: italic;
}

/* Client Info */
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.client-details h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-family: 'Playfair Display', serif;
}

.client-details span {
    color: #94a3b8;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Styles */
/* Footer Styles */
.footer {
    background-color: rgb(7, 3, 61);
    background-image: repeating-linear-gradient(135deg,
            rgba(212, 198, 6, 0.527) 0px,
            rgba(6, 182, 212, 0.15) 1px,
            transparent 1px,
            transparent 60px,
            rgba(187, 0, 84, 0.555) 60px,
            rgba(219, 39, 119, 0.15) 61px,
            transparent 61px,
            transparent 120px,
            rgba(230, 215, 0, 0.678) 120px,
            rgba(230, 169, 0, 0.15) 121px,
            transparent 121px,
            transparent 180px);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    padding: 80px 20px 20px;
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.footer-column p {
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    color: #cbd5e1;
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-info span {
    color: var(--primary-color);
    font-weight: 600;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 0.9rem;
}


/* Contact Section Styles */
.contact-section-wrapper {
    padding: 120px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.contact-header p {
    color: #94a3b8;
    font-size: 1.2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-details-card,
.contact-form-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #dd00b8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-box svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.contact-info-content h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.contact-info-content p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #cbd5e1;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px 20px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(230, 214, 0, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* Footer Icons */
.footer-icon {
    width: 18px;
    height: 18px;
    fill: var(--primary-color);
    flex-shrink: 0;
    margin-top: 4px;
    /* Align with text line-height */
}


/* Instagram / Social Section */
.social-section {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.social-header h2 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 50px;
    color: #fff;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.social-card {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    group: pointer;
}

.social-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.social-card:hover img {
    transform: scale(1.1);
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-card:hover .social-overlay {
    opacity: 1;
}

.social-overlay span {
    color: #fff;
    font-weight: 600;
    margin-top: 10px;
}

.instagram-icon {
    width: 32px;
    height: 32px;
    fill: #fff;
}


/* Wave Divider */
.wave-divider {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 120px;
    background-image: url('wave-divider.svg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    margin-top: 60px;
    margin-bottom: 60px;
}

/* Interactive Section Divider */
.section-divider {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.divider-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    transition: all 0.5s ease;
}

/* Glow line on hover */
.section-divider:hover .divider-line {
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.6;
    box-shadow: 0 0 15px var(--primary-color);
}

.divider-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.divider-diamond {
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    transform: rotate(45deg);
    box-shadow: 0 0 15px var(--primary-color);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

/* Pulse animation for the diamond */
.divider-diamond::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: translate(-50%, -50%) rotate(45deg);
    /* Match parent rotation visually, but relative to self */
    opacity: 0.6;
    z-index: -1;
    animation: diamond-pulse 2s infinite;
}

@keyframes diamond-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.divider-diamond:hover {
    transform: rotate(225deg) scale(1.8);
    box-shadow: 0 0 30px var(--primary-color), 0 0 60px var(--primary-color);
    background: #fff;
    /* turn white for extra pop */
}

/* Stop pulse on hover to focus on the active state */
.divider-diamond:hover::before {
    animation: none;
}

.divider-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    /* White streak */
    opacity: 0.8;
    animation: flow 3s infinite ease-in-out;
}

@keyframes flow {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* FAQ Section */
.faq-section {
    padding: 120px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.faq-header p {
    color: #94a3b8;
    font-size: 1.2rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    user-select: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
}

.faq-answer p {
    padding-bottom: 25px;
    color: #cbd5e1;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Arbitrary large height */
    transition: max-height 0.5s ease-in;
}