/*
Theme Name: chickenroadxwd.com
Author: TrueWhitePages
Author URI: https://truewhitepages.com
Version: 5.4.0
*/
/* ============================================
   CHICKEN ROAD XWD - ULTIMATE EXPERIENCE
   Maximum Animations & Unique Scroll Effects
   ============================================ */

/* === CSS RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Color Palette - Yellow/Gold Theme */
    --color-primary: #FFD700;
    --color-primary-dark: #FFA500;
    --color-primary-light: #FFED4E;
    --color-secondary: #1A1A2E;
    --color-accent: #FF6B35;
    --color-accent-2: #00D4FF;
    
    /* Neutral Colors */
    --color-dark: #0F0F1E;
    --color-dark-100: #1A1A2E;
    --color-dark-200: #16213E;
    --color-dark-300: #0F3460;
    --color-light: #FFFFFF;
    --color-gray: #94A3B8;
    --color-gray-light: #E2E8F0;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    --gradient-sky: linear-gradient(180deg, #0F0F1E 0%, #1A1A2E 50%, #16213E 100%);
    --gradient-glow: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    --gradient-shine: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    --gradient-hero: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(255, 215, 0, 0.6);
    --shadow-glow-strong: 0 0 60px rgba(255, 215, 0, 0.8);
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s ease;
    --transition-slow: 0.6s ease;
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--gradient-sky);
    color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* === NO CUSTOM CURSOR (keeping default) === */

/* === LOADER === */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
    max-width: 400px;
    padding: 2rem;
}

.loader-logo {
    margin-bottom: 2rem;
}

.loader-bird {
    width: 80px;
    height: 80px;
    color: var(--color-primary);
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.loader-text {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-text .char {
    display: inline-block;
    animation: wave 1s ease-in-out infinite;
}

.loader-text .char:nth-child(1) { animation-delay: 0s; }
.loader-text .char:nth-child(2) { animation-delay: 0.1s; }
.loader-text .char:nth-child(3) { animation-delay: 0.2s; }
.loader-text .char:nth-child(4) { animation-delay: 0.3s; }
.loader-text .char:nth-child(5) { animation-delay: 0.4s; }
.loader-text .char:nth-child(6) { animation-delay: 0.5s; }
.loader-text .char:nth-child(7) { animation-delay: 0.6s; }
.loader-text .char:nth-child(8) { animation-delay: 0.7s; }

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

.loader-progress {
    width: 100%;
    height: 4px;
    background: var(--color-dark-200);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.loader-progress-bar {
    height: 100%;
    background: var(--gradient-gold);
    width: 0;
    transition: width 0.3s ease;
    box-shadow: var(--shadow-glow);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
    100% { filter: brightness(1); }
}

.loader-percentage {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* === NAVIGATION === */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all var(--transition-normal);
    background: transparent;
}

.navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 30, 0.8);
    backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity var(--transition-normal);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.navigation.scroll-up::before {
    opacity: 1;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-light);
    transition: transform var(--transition-normal);
}

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

.nav-logo img {
    height: 100px;
    width: auto;
}

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

.nav-logo-text .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--color-light);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-gold);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--color-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.nav-cta:hover::before {
    width: 300px;
    height: 300px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
}

.nav-cta-arrow {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition-normal);
}

.nav-cta:hover .nav-cta-arrow {
    transform: translateX(5px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right var(--transition-normal);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-cta {
        display: none;
    }
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
    background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    animation: badge-float 3s ease-in-out infinite;
}

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

.hero-badge:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.hero-badge-icon {
    animation: rotate 3s linear infinite;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title-line .char {
    display: inline-block;
    animation: char-appear 0.8s ease-out backwards;
}

@keyframes char-appear {
    from {
        opacity: 0;
        transform: translateY(100px) rotate(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

.gradient-text {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    font-weight: 900;
}
@supports not (-webkit-background-clip: text) {
    .gradient-text {
        color: #FFD700;
        -webkit-text-fill-color: #FFD700;
    }
}
@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    animation: fade-in-up 1s ease-out 0.5s backwards;
}

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

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-dark);
    box-shadow: var(--shadow-glow);
    animation: btn-pulse 2s ease-in-out infinite;
}

@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
    50% { box-shadow: 0 0 60px rgba(255, 215, 0, 0.9); }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow-strong);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-light);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shine);
    transition: left 0.5s ease;
}

.btn:hover .btn-shine {
    left: 100%;
}

.btn-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition-normal);
}

.btn:hover .btn-icon {
    transform: translateY(3px);
}

.btn-magnetic {
    transition: transform var(--transition-normal);
}

.btn-magnetic:hover {
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    transition: transform var(--transition-normal);
}

.hero-stat:hover {
    transform: scale(1.1);
}

.hero-stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-primary);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

.hero-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.cloud {
    position: absolute;
    width: 200px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    filter: blur(2px);
    animation: float-cloud 20s ease-in-out infinite;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cloud::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.cloud::after {
    width: 60px;
    height: 60px;
    top: -30px;
    right: 10px;
}

.cloud-1 {
    top: 20%;
    left: 10%;
    animation-duration: 25s;
}

.cloud-2 {
    top: 50%;
    right: 15%;
    animation-duration: 30s;
    animation-delay: -5s;
}

.cloud-3 {
    bottom: 20%;
    left: 20%;
    animation-duration: 35s;
    animation-delay: -10s;
}

.cloud-4 {
    top: 70%;
    right: 30%;
    animation-duration: 28s;
    animation-delay: -15s;
}

@keyframes float-cloud {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(50px) translateY(-20px); }
    50% { transform: translateX(100px) translateY(0); }
    75% { transform: translateX(50px) translateY(20px); }
}

/* === SECTION COMMON STYLES === */
section {
    padding: var(--spacing-xl) 2rem;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 4rem;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.section-badge:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-title .char {
    display: inline-block;
}

.section-description {
    font-size: 1.15rem;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* === TESTIMONIALS === */
.testimonials {
    position: relative;
    background: var(--color-dark);
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: bg-pulse 5s ease-in-out infinite;
}

@keyframes bg-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-slider {
    display: flex;
    transition: transform var(--transition-slow);
    margin-bottom: 3rem;
}

.testimonial-card {
    flex-shrink: 0;
    width: 100%;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    animation: card-float 4s ease-in-out infinite;
}

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

.testimonial-card:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: scale(1.02) !important;
}

.testimonial-rating {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.testimonial-rating span {
    display: inline-block;
    animation: star-bounce 0.5s ease-in-out backwards;
}

.testimonial-rating span:nth-child(1) { animation-delay: 0s; }
.testimonial-rating span:nth-child(2) { animation-delay: 0.1s; }
.testimonial-rating span:nth-child(3) { animation-delay: 0.2s; }
.testimonial-rating span:nth-child(4) { animation-delay: 0.3s; }
.testimonial-rating span:nth-child(5) { animation-delay: 0.4s; }

@keyframes star-bounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.testimonial-content p {
    font-size: 1.2rem;
    color: var(--color-gray);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
    animation: img-rotate 10s linear infinite;
}

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

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.slider-btn:hover {
    background: var(--gradient-gold);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.slider-dot.active {
    background: var(--color-primary);
    width: 40px;
    border-radius: 6px;
}

/* === TEAM SECTION === */
.team {
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-dark-100) 100%);
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.team-member {
    text-align: center;
    transition: transform var(--transition-normal);
    animation: team-fade-in 0.6s ease-out backwards;
}

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

.team-member:hover {
    transform: translateY(-10px) scale(1.05);
}

.team-image {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-primary);
    box-shadow: var(--shadow-glow);
    animation: border-rotate 3s linear infinite;
}

@keyframes border-rotate {
    0% { border-color: #FFD700; }
    33% { border-color: #FFA500; }
    66% { border-color: #FF6B35; }
    100% { border-color: #FFD700; }
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-member:hover .team-image img {
    transform: scale(1.2) rotate(5deg);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 30, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.team-member:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    color: var(--color-dark);
    transition: transform var(--transition-normal);
}

.social-link:hover {
    transform: scale(1.3) rotate(360deg);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-light);
}

.team-member span {
    font-size: 1rem;
    color: var(--color-gray);
}

/* === VIDEO SHOWCASE === */
.video-showcase {
    position: relative;
    padding: var(--spacing-xl) 2rem;
    background: var(--color-dark-100);
    overflow: hidden;
}

.video-parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.layer-back {
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    animation: layer-move-1 10s ease-in-out infinite;
}

@keyframes layer-move-1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -30px); }
}

.layer-mid {
    background: radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    animation: layer-move-2 12s ease-in-out infinite;
}

@keyframes layer-move-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 30px); }
}

.video-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video-frame {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-normal);
    animation: video-float 5s ease-in-out infinite;
}

@keyframes video-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.video-frame:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 20px 80px rgba(255, 215, 0, 0.3);
}

.video-frame iframe {
    width: 100%;
    height: 700px;
    display: block;
    border: none;
}

.video-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-glow);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@media (max-width: 767px) {
    .video-frame iframe {
        height: 400px;
    }
}

/* === FEATURES SECTION === */
.features {
    background: linear-gradient(180deg, var(--color-dark-100) 0%, var(--color-dark) 100%);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.stat-card {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.stat-card:hover::before {
    opacity: 1;
    animation: rotate-glow 3s linear infinite;
}

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

.stat-card:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-10px) scale(1.05);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.stat-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-light);
}

.stat-card p {
    font-size: 1rem;
    color: var(--color-gray);
}

.feature-showcase {
    margin-top: 4rem;
}

.feature-main {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-xl);
}

.feature-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.feature-main:hover img {
    transform: scale(1.1);
}

.feature-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 30, 0.95) 50%);
}

.feature-content h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--color-light);
    animation: slide-in-left 0.6s ease-out;
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-content p {
    font-size: 1.2rem;
    color: var(--color-gray);
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    position: relative;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.feature-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.feature-item:hover img {
    transform: scale(1.2) rotate(2deg);
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 215, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-item:hover .feature-overlay {
    opacity: 1;
}

/* === PLAY NOW SECTION === */
.play-now {
    position: relative;
    background: var(--color-dark-100);
}

.play-now-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: bg-pulse 5s ease-in-out infinite;
}

.play-now-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.game-wrapper {
    margin-bottom: 4rem;
}

.game-frame {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--color-dark-200);
    transition: all var(--transition-normal);
}

.game-frame:hover {
    transform: scale(1.01);
    box-shadow: 0 20px 80px rgba(255, 215, 0, 0.4);
}

.game-frame iframe {
    width: 100%;
    height: 700px;
    display: block;
    border: none;
}

.game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-glow);
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
    animation: glow-pulse 3s ease-in-out infinite;
}

.play-now-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-normal);
    animation: info-card-appear 0.6s ease-out backwards;
}

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

.info-card:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-10px);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: icon-bounce 2s ease-in-out infinite;
}

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

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-light);
}

.info-card p {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.6;
}

@media (max-width: 767px) {
    .game-frame iframe {
        height: 500px;
    }
}

/* === GALLERY === */
.gallery {
    background: linear-gradient(180deg, var(--color-dark-100) 0%, var(--color-dark-200) 100%);
}

.gallery-container {
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    padding: 2rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--color-dark-200);
}

.gallery-scroll::-webkit-scrollbar {
    height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: var(--color-dark-200);
    border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 10px;
}

.gallery-scroll:active {
    cursor: grabbing;
}

.gallery-track {
    display: flex;
    gap: 2rem;
    padding: 0 2rem;
    animation: gallery-slide 30s linear infinite;
}

@keyframes gallery-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery-scroll:hover .gallery-track {
    animation-play-state: paused;
}

.gallery-item {
    position: relative;
    flex-shrink: 0;
    width: 400px;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 30, 0.95) 100%);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-light);
}

.gallery-overlay p {
    font-size: 1rem;
    color: var(--color-gray);
}

@media (max-width: 767px) {
    .gallery-item {
        width: 300px;
        height: 400px;
    }
}

/* === SKY HIGH SECTION === */
.sky-high {
    background: var(--color-dark);
}

.sky-high-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.sky-high-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    animation: card-appear 0.6s ease-out backwards;
}

@keyframes card-appear {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.sky-high-card:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-10px);
}

.sky-high-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.sky-high-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.sky-high-card:hover .sky-high-image img {
    transform: scale(1.2);
}

.sky-high-content {
    padding: 2rem;
}

.sky-high-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-light);
}

.year-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-gold);
    color: var(--color-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.sky-high-content p {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.8;
}

@media (max-width: 767px) {
    .sky-high-grid {
        grid-template-columns: 1fr;
    }
}

/* === YOUR SKY SECTION === */
.your-sky {
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-dark-100) 100%);
}

.your-sky-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.your-sky-content {
    max-width: 600px;
}

.your-sky-content p {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.your-sky-badge {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-gold);
    color: var(--color-dark);
    font-weight: 700;
    border-radius: var(--radius-md);
    margin-top: 2rem;
    animation: badge-pulse 2s ease-in-out infinite;
}

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

.sky-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.sky-image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.sky-image-grid img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-glow);
}

@media (max-width: 991px) {
    .your-sky-container {
        grid-template-columns: 1fr;
    }
}

/* === ASCEND WONDER === */
.ascend-wonder {
    position: relative;
    background: var(--color-dark-100);
}

.ascend-wonder-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.ascend-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.wonder-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-normal);
}

.wonder-img:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* === FAQ SECTION === */
.faq {
    background: var(--color-dark);
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.faq-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.faq-image-main {
    grid-column: 1 / -1;
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.faq-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.faq-image-main:hover img {
    transform: scale(1.1);
}

.faq-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 215, 0, 0.9);
    border-radius: var(--radius-sm);
}

.faq-label h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
}

.faq-image-secondary {
    position: relative;
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    grid-column: 1 / -1;
}

.faq-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.faq-image-secondary:hover img {
    transform: scale(1.1);
}

.faq-content {
    max-width: 600px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item.active {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    color: var(--color-light);
    font-size: 1.1rem;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-gray);
    line-height: 1.8;
}

@media (max-width: 991px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

/* === FLOWN WITH US === */
.flown-with-us {
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-dark-100) 100%);
}

.flown-container {
    max-width: 1400px;
    margin: 0 auto;
}

.flown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.flown-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    animation: flown-appear 0.6s ease-out backwards;
}

@keyframes flown-appear {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(5deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.flown-img:hover {
    transform: translateY(-10px) scale(1.05) rotate(-2deg);
    box-shadow: var(--shadow-glow);
}

/* === SKY AWAITS CTA === */
.sky-awaits-cta {
    position: relative;
    background: var(--color-dark-100);
    padding: var(--spacing-xl) 2rem;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.3rem;
}

.cta-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.cta-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-normal);
}

.cta-img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-glow);
}

@media (max-width: 991px) {
    .cta-container {
        grid-template-columns: 1fr;
    }
}

/* === TESTIMONIAL SPECIAL === */
.testimonial-special {
    background: var(--color-dark);
    padding: 4rem 2rem;
}

.special-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-lg);
    text-align: center;
    animation: special-float 4s ease-in-out infinite;
}

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

.special-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.special-author h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.special-author span {
    font-size: 1rem;
    color: var(--color-gray);
}

/* === WHY LOVE === */
.why-love {
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-dark-100) 100%);
}

.why-love-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.love-card {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.love-card:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-10px) scale(1.05);
}

.love-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: icon-spin 3s ease-in-out infinite;
}

@keyframes icon-spin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

.love-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-light);
}

.love-card p {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* === WINGS SECTION === */
.wings-section {
    background: var(--color-dark-100);
}

.wings-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.wings-column {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    animation: column-slide-up 0.6s ease-out backwards;
}

@keyframes column-slide-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wings-column:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-10px);
}

.wings-column h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    text-align: center;
    position: relative;
}

.wings-column h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
}

.wings-column ul {
    list-style: none;
    padding: 0;
}

.wings-column li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    color: var(--color-light);
    font-size: 1.1rem;
    transition: all var(--transition-normal);
    position: relative;
    padding-left: 2.5rem;
}

.wings-column li::before {
    content: '✦';
    position: absolute;
    left: 1rem;
    color: var(--color-primary);
    font-size: 1.2rem;
    animation: star-twinkle 2s ease-in-out infinite;
}

@keyframes star-twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.wings-column li:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(10px);
}

.wings-image {
    max-width: 800px;
    margin: 0 auto;
}

.wings-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-normal);
}

.wings-image img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow-strong);
}

/* === CONTACT SECTION === */
.contact {
    background: linear-gradient(180deg, var(--color-dark-100) 0%, var(--color-dark) 100%);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper,
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-light);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--color-light);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.contact-info-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-normal);
    animation: info-appear 0.6s ease-out backwards;
}

@keyframes info-appear {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.contact-info-card:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: var(--color-dark);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-light);
}

.contact-info-card p {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.8;
}

.contact-info-card a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-info-card a:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
}

@media (max-width: 991px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* === FOOTER === */
.footer {
    background: var(--color-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
    animation: logo-glow 3s ease-in-out infinite;
}

@keyframes logo-glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)); }
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-light);
}

.footer-brand p {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-light);
    transition: all var(--transition-normal);
}

.footer-social .social-link:hover {
    background: var(--gradient-gold);
    border-color: var(--color-primary);
    color: var(--color-dark);
    transform: translateY(-5px) rotate(360deg);
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-light);
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column a {
    color: var(--color-gray);
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    display: inline-block;
}

.footer-column a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all var(--transition-normal);
    color: var(--color-primary);
}

.footer-column a:hover {
    color: var(--color-primary);
    transform: translateX(20px);
}

.footer-column a:hover::before {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-glow);
    animation: btn-pulse 2s ease-in-out infinite;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-glow-strong);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--color-dark);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

/* === RESPONSIVE UTILITIES === */
@media (max-width: 1400px) {
    :root {
        --spacing-xl: 5rem;
    }
}

@media (max-width: 991px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    section {
        padding: var(--spacing-lg) 1.5rem;
    }
}

@media (max-width: 767px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }
    
    section {
        padding: var(--spacing-lg) 1rem;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

/* === ADVANCED ANIMATIONS === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes flipIn {
    from {
        opacity: 0;
        transform: rotateY(90deg);
    }
    to {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll-triggered animations */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(-50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-left"] {
    transform: perspective(1000px) rotateY(45deg);
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(1000px) rotateY(0);
}

/* === PRINT STYLES === */
@media print {
    .navigation,
    .hero-scroll-indicator,
    .back-to-top,
    .loader {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* === SMOOTH SCROLLING EXPERIENCE === */
@supports (scroll-behavior: smooth) {
    html {
        scroll-behavior: smooth;
    }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === CUSTOM SELECTION === */
::selection {
    background: var(--color-primary);
    color: var(--color-dark);
}

::-moz-selection {
    background: var(--color-primary);
    color: var(--color-dark);
}

/* === PERFORMANCE OPTIMIZATIONS === */
img {
    will-change: transform;
}

.btn,
.nav-link,
.team-member,
.gallery-item,
.feature-item {
    will-change: transform;
}

/* === LOADING STATES === */
.loading {
    pointer-events: none;
    opacity: 0.5;
}

/* === FOCUS STATES === */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* === HIGH CONTRAST MODE === */
@media (prefers-contrast: high) {
    :root {
        --color-primary: #FFD700;
        --color-dark: #000000;
        --color-light: #FFFFFF;
    }
}

/* === DARK MODE SUPPORT (Already dark by default) === */
@media (prefers-color-scheme: dark) {
    body {
        background: var(--gradient-sky);
        color: var(--color-light);
    }
}
/* === FORM SUCCESS MESSAGE === */
.form-success {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    animation: fadeIn 0.5s ease-in;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-dark);
    font-weight: 900;
    animation: scaleIn 0.6s ease-out;
}

.form-success h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.form-success p {
    font-size: 1.1rem;
    color: var(--color-gray);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* === NAVIGATION FIX FOR POLICY PAGES === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all var(--transition-normal);
    background: rgba(15, 15, 30, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-light);
    transition: transform var(--transition-normal);
}

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

.nav-logo img {
    height: 100px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    position: relative;
    text-decoration: none;
    color: var(--color-light);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition-normal);
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Navigation for Policy Pages */
@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right var(--transition-normal);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        right: 0;
    }
}

/* === FOOTER FIX FOR POLICY PAGES === */
.footer {
    background: var(--color-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-container p {
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.footer-links span {
    color: var(--color-gray);
}

/* === BACK LINK FOR POLICY PAGES === */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all var(--transition-normal);
    font-size: 1rem;
}

.back-link:hover {
    gap: 1rem;
    color: var(--color-primary-light);
    transform: translateX(-5px);
}

/* === POLICY CONTAINER STYLES === */
.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    color: var(--color-light);
}

.policy-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 0.8s ease-out;
}

.policy-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.policy-date {
    color: var(--color-gray);
    font-size: 1.1rem;
}

.policy-content {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    animation: fadeIn 1s ease-out 0.2s backwards;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.policy-section h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--color-primary-light);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.policy-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--color-gray-light);
    font-size: 1.05rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.policy-section li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    line-height: 1.8;
    color: var(--color-gray-light);
    font-size: 1.05rem;
}

.policy-section li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.policy-section a {
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.policy-section a:hover {
    color: var(--color-primary-light);
    border-bottom-color: var(--color-primary-light);
}

.policy-section strong {
    color: var(--color-light);
    font-weight: 600;
}

.contact-info {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 2rem;
    transition: all var(--transition-normal);
}

.contact-info:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.15);
}

.contact-info p {
    margin-bottom: 0.75rem;
    color: var(--color-light);
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* === RESPONSIVE STYLES FOR POLICY PAGES === */
@media (max-width: 767px) {
    .policy-content {
        padding: 2rem 1.5rem;
    }
    
    .policy-container {
        padding: 6rem 1.5rem 3rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .policy-container {
        padding: 6rem 1rem 3rem;
    }
    
    .policy-content {
        padding: 1.5rem 1rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-links span {
        display: none;
    }
}

/* === SCROLL ANIMATIONS FOR POLICY PAGES === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === ACCESSIBILITY IMPROVEMENTS === */
.policy-section a:focus,
.back-link:focus,
.footer-links a:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: 2px;
}

/* === PRINT STYLES FOR POLICY PAGES === */
@media print {
    .nav,
    .back-link,
    .footer {
        display: none !important;
    }
    
    .policy-container {
        padding: 2rem 0;
    }
    
    .policy-content {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
    }
    
    .policy-section h2,
    .policy-section h3,
    .gradient-text {
        color: #000 !important;
        -webkit-text-fill-color: #000 !important;
    }
    
    .policy-section p,
    .policy-section li {
        color: #333 !important;
    }
}
