/* ============================================
   GB SOURCING LTD - Royal Purple & Gold Theme with Glassmorphism
   Split-Screen Hero, Morphing Blobs, Fullscreen Menu
   ============================================ */

:root {
    --primary-deep: #1a0d2e;
    --primary-dark: #2d1b4e;
    --primary-accent: #8b5cf6;
    --primary-light: #a78bfa;
    --primary-gold: #fbbf24;
    --primary-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-dark: #1a0d2e;
    --text-light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a0d2e 0%, #2d1b4e 50%, #8b5cf6 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ============================================
   HEADER & FULLSCREEN MENU
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 13, 46, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.logo-btn {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 800;
    background: none;
    border: none;
    color: var(--primary-white);
    cursor: pointer;
    letter-spacing: 2px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.logo-btn:hover {
    transform: scale(1.05);
    color: var(--primary-accent);
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-menu-link {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.desktop-menu-link:hover {
    color: var(--primary-accent);
    background: rgba(255, 255, 255, 0.1);
}

.desktop-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-accent);
    transition: width 0.3s ease;
}

.desktop-menu-link:hover::after {
    width: 80%;
}

.desktop-menu-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.desktop-menu-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 0.5rem 0;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.desktop-menu-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--primary-white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-accent);
    padding-left: 2rem;
}

/* Mobile Burger Menu */
.menu-trigger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-trigger span {
    width: 30px;
    height: 3px;
    background: var(--primary-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-trigger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-trigger.active span:nth-child(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 100%);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform: scale(0.9);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--primary-white);
    font-size: 3rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.menu-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.fullscreen-menu ul {
    list-style: none;
    text-align: center;
}

.fullscreen-menu li {
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.fullscreen-menu.active li {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-menu.active li:nth-child(2) { transition-delay: 0.2s; }
.fullscreen-menu.active li:nth-child(3) { transition-delay: 0.3s; }
.fullscreen-menu.active li:nth-child(4) { transition-delay: 0.4s; }
.fullscreen-menu.active li:nth-child(5) { transition-delay: 0.5s; }
.fullscreen-menu.active li:nth-child(6) { transition-delay: 0.6s; }

.menu-link {
    color: var(--primary-white);
    text-decoration: none;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary-accent);
    transition: width 0.3s ease;
}

.menu-link:hover {
    color: var(--primary-accent);
    transform: scale(1.1);
}

.menu-link:hover::after {
    width: 100%;
}

/* ============================================
   HERO SECTION - SPLIT SCREEN INTERACTIVE
   ============================================ */

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: morphBlob 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-accent);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    top: 50%;
    right: -150px;
    animation-delay: 5s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--primary-dark);
    bottom: -100px;
    left: 20%;
    animation-delay: 10s;
}

.blob-4 {
    width: 450px;
    height: 450px;
    background: var(--primary-accent);
    top: 20%;
    right: 30%;
    animation-delay: 15s;
}

@keyframes morphBlob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
        border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%;
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
        border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
    }
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    position: relative;
    z-index: 1;
    min-height: 80vh;
    align-items: center;
}

.hero-left,
.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    cursor: pointer;
}

.hero-left {
    padding-right: 2rem;
}

.hero-right {
    padding-left: 2rem;
}

.hero-left:hover {
    transform: scale(1.02);
}

.hero-right:hover {
    transform: scale(1.05);
}

.hero-content-parts {
    margin-bottom: 2rem;
}

.text-part {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateX(-100px) rotate(-10deg);
    animation: assemblePart 1s ease-out forwards;
    color: var(--primary-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.text-part.part-1 {
    animation-delay: 0.1s;
    color: var(--primary-white);
}

.text-part.part-2 {
    animation-delay: 0.3s;
    color: var(--primary-accent);
}

.text-part.part-3 {
    animation-delay: 0.5s;
    color: var(--primary-light);
}

.text-part.part-4 {
    animation-delay: 0.7s;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--primary-white);
    opacity: 0.9;
}

@keyframes assemblePart {
    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

.hero-desc {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 90%;
}

.hero-cta-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.glass-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--primary-white);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.glass-btn:hover::before {
    left: 100%;
}

.glass-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-accent);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.glass-btn.secondary {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--primary-accent);
}

.hero-visual {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 2rem;
}

.hero-main-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    transition: transform 0.5s ease;
}

.hero-right:hover .hero-main-img {
    transform: scale(1.1);
}

.hero-overlay-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    color: var(--primary-white);
}

.hero-overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.hero-overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* ============================================
   FEATURES SECTION - HORIZONTAL SLIDER
   ============================================ */

.features-section {
    padding: 6rem 0;
    position: relative;
    background: rgba(26, 13, 46, 0.5);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.features-slider-wrapper {
    position: relative;
    padding: 2rem 0;
}

.features-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1rem 0;
}

.features-slider::-webkit-scrollbar {
    display: none;
}

.feature-slide {
    flex: 0 0 calc(33.333% - 1.5rem);
    scroll-snap-align: start;
    min-width: 300px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-accent);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.glass-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-accent);
}

.glass-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--primary-white);
    opacity: 0.9;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--primary-white);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: var(--primary-accent);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-accent);
    transform: scale(1.3);
}

/* ============================================
   ABOUT SECTION - STATISTICS
   ============================================ */

.about-section {
    padding: 6rem 0;
    background: rgba(45, 27, 78, 0.3);
}

.about-intro {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    opacity: 0.95;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
}

.stat-number {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
}

.stat-label {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--primary-white);
    opacity: 0.9;
    font-weight: 500;
}

/* ============================================
   PROCESS SECTION - How It Works Timeline
   ============================================ */

.process-section {
    padding: 6rem 0;
    background: rgba(45, 27, 78, 0.2);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--primary-white);
    opacity: 0.9;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.process-step {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-icon {
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-white);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

.step-connector {
    width: 2px;
    height: 60px;
    margin-top: 10px;
    opacity: 0.3;
}

.process-step:last-child .step-connector {
    display: none;
}

.step-content {
    flex: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-content {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-accent);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.process-step:nth-child(even):hover .step-content {
    transform: translateX(-10px);
}

.step-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: var(--primary-gold);
    font-weight: 700;
}

.step-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: var(--primary-white);
    opacity: 0.9;
}

/* ============================================
   TESTIMONIALS SECTION - Client Reviews
   ============================================ */

.testimonials-section {
    padding: 6rem 0;
    background: rgba(26, 13, 46, 0.4);
    position: relative;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: var(--primary-accent);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    flex-shrink: 0;
}

.avatar-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-white);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.testimonial-info h4 {
    font-size: 1.3rem;
    color: var(--primary-white);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.testimonial-role {
    font-size: 0.95rem;
    color: var(--primary-light);
    opacity: 0.8;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.3rem;
}

.testimonial-rating .star {
    color: var(--primary-gold);
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary-white);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-date {
    font-size: 0.9rem;
    color: var(--primary-light);
    opacity: 0.7;
    text-align: right;
    margin-top: auto;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.accordion-section {
    padding: 6rem 0;
    background: rgba(26, 13, 46, 0.4);
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--primary-accent);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    color: var(--primary-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header::after {
    content: '+';
    font-size: 2rem;
    color: var(--primary-accent);
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
    color: var(--primary-white);
    opacity: 0.9;
    line-height: 1.8;
}

.accordion-body.open {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-section h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 6rem 0;
    background: rgba(45, 27, 78, 0.2);
}

.contact-section h2 {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    color: var(--primary-white);
    font-size: 1.1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    padding: 1.2rem 2.5rem;
    background: var(--primary-accent);
    color: var(--primary-white);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    background: var(--primary-light);
}

.contact-info {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 2;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info a {
    color: var(--primary-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    text-decoration: underline;
    color: var(--primary-light);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--primary-deep);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-about h3,
.footer-contact h3,
.footer-nav h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.footer-about p,
.footer-contact ul,
.footer-nav ul {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-contact ul,
.footer-nav ul {
    list-style: none;
}

.footer-contact li,
.footer-nav li {
    margin-bottom: 0.8rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* ============================================
   COOKIE POPUP
   ============================================ */

.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    max-width: 90%;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-popup p {
    margin: 0;
    color: var(--primary-white);
}

.cookie-popup a {
    color: var(--primary-accent);
    text-decoration: none;
}

.cookie-popup button {
    background: var(--primary-accent);
    color: var(--primary-white);
    border: none;
    border-radius: 25px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-popup button:hover {
    background: var(--primary-light);
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .hero-split {
        gap: 2rem;
    }
    
    .feature-slide {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 968px) {
    /* Show mobile menu, hide desktop menu */
    .desktop-nav {
        display: none;
    }
    
    .menu-trigger {
        display: flex;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-left,
    .hero-right {
        padding: 0;
        flex: 1 !important;
    }
    
    .hero-right {
        order: -1;
    }
    
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .feature-slide {
        flex: 0 0 calc(100% - 1rem);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step {
        flex-direction: column !important;
        gap: 1.5rem;
    }
    
    .step-content {
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 969px) {
    /* Show desktop menu, hide mobile menu */
    .desktop-nav {
        display: block;
    }
    
    .menu-trigger {
        display: none;
    }
    
    .fullscreen-menu {
        display: none !important;
    }
}

@media (max-width: 640px) {
    .container {
        width: 95%;
        padding: 0 0.5rem;
    }
    
    .header-flex {
        padding: 1rem 0;
    }
    
    .hero-section {
        padding-top: 70px;
        min-height: auto;
    }
    
    .text-part {
        font-size: clamp(2rem, 10vw, 4rem);
    }
    
    .hero-cta-row {
        flex-direction: column;
    }
    
    .glass-btn {
        width: 100%;
        text-align: center;
    }
    
    .features-section,
    .about-section,
    .accordion-section,
    .cta-section,
    .contact-section {
        padding: 4rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .accordion-header {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 0 1.5rem;
    }
    
    .accordion-body.open {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }
    
    .footer-flex {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-popup {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .menu-link {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .blob {
        filter: blur(40px);
    }
    
    .blob-1,
    .blob-2,
    .blob-3,
    .blob-4 {
        width: 300px;
        height: 300px;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-split {
        gap: 6rem;
    }
    
    .section-title {
        font-size: 5rem;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 2000px;
    }
    
    .text-part {
        font-size: 9rem;
    }
    
    .section-title {
        font-size: 6rem;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ============================================
   POLICY PAGES STYLES
   ============================================ */

.policy-section {
    padding: 8rem 0 6rem;
    min-height: 100vh;
    position: relative;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-header h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--primary-white);
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.policy-updated {
    font-size: 1.1rem;
    color: var(--primary-light);
    opacity: 0.8;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.policy-section-content {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section-content:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.policy-section-content h3 {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 600;
    color: var(--primary-accent);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-section-content p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.8;
    color: var(--primary-white);
    opacity: 0.9;
    margin-bottom: 1.2rem;
}

.policy-section-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.policy-section-content li {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.8;
    color: var(--primary-white);
    opacity: 0.9;
    margin-bottom: 0.8rem;
}

.policy-section-content ul ul {
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
}

.policy-section-content a {
    color: var(--primary-accent);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.policy-section-content a:hover {
    color: var(--primary-light);
    text-decoration: none;
}

.contact-details {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.contact-details li {
    margin-bottom: 1rem;
    padding-left: 0;
}

.contact-details strong {
    color: var(--primary-gold);
    font-weight: 600;
}

.policy-footer {
    text-align: center;
    margin-top: 3rem;
}

.policy-footer .glass-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    color: var(--primary-white);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.policy-footer .glass-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-accent);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

@media (max-width: 968px) {
    .policy-section {
        padding: 6rem 0 4rem;
    }
    
    .policy-content {
        padding: 2rem;
    }
    
    .policy-section-content {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
}

@media (max-width: 640px) {
    .policy-section {
        padding: 5rem 0 3rem;
    }
    
    .policy-content {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-section-content h2 {
        font-size: 1.5rem;
    }
    
    .policy-section-content h3 {
        font-size: 1.2rem;
    }
    
    .policy-section-content ul {
        padding-left: 1.5rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: textReveal 0.6s ease-out forwards;
}

@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
