/* CSS Variables - Sophisticated Dark Mode Palette */
:root {
    /* Primary Backgrounds - DEEPER CONTRAST */
    --primary-bg: #0A0E13;              /* Deeper charcoal/near black - main site background */
    --secondary-bg: #1A1F28;            /* Darker secondary background for cards, sections, containers */
    --card-bg: #151820;                 /* Deeper navy/charcoal for elevated elements */
    
    /* Text Colors - ENHANCED CONTRAST */
    --text-primary: #FFFFFF;             /* Main text - pure white */
    --text-secondary: #E5E7EB;          /* Brighter secondary text, captions */
    --text-muted: #B8BCC4;              /* Muted text for less important content */
    
    /* Gold Accent Colors - BRIGHTER & MORE VIBRANT */
    --gold-primary: #FFD700;            /* Brilliant bright gold for buttons, highlights, lotus elements */
    --gold-hover: #FFF4A3;              /* Ultra-bright gold for hover states */
    --gold-secondary: #FFC837;          /* Vibrant golden yellow */
    
    /* Legacy blue accents (now gold for compatibility) */
    --accent-blue: #FFD700;             /* Now bright gold instead of blue */
    --accent-blue-secondary: #FFC837;   /* Now bright gold instead of blue */
    
    /* Gradient Colors - VIBRANT & ENERGETIC */
    --gradient-start: #FFD700;          /* Bright gold gradient start */
    --gradient-end: #FFA500;            /* Orange gradient end for energy */
    
    /* Interactive Elements - HIGH CONTRAST */
    --button-bg: #FFD700;               /* Primary button background - brilliant gold */
    --button-hover: #FFC837;            /* Button hover state - vibrant gold */
    --button-text: #000000;             /* Button text - pure black for maximum contrast */
    
    /* Borders and Dividers - STRONGER CONTRAST */
    --border-color: #4A5568;            /* Stronger separation lines */
    --border-light: rgba(255, 215, 0, 0.3); /* Brighter gold borders */
    
    /* Form Elements */
    --form-bg: #252A34;                 /* Form background - secondary dark */
    --form-border: #3A3F4A;             /* Form field borders */
    --input-bg: #1A1B23;                /* Input field background */
    --input-text: #FFFFFF;              /* Input text color */
    --input-placeholder: #9CA3AF;       /* Placeholder text */
    
    /* Shadows - DRAMATIC GLOW EFFECTS */
    --shadow-light: rgba(0, 0, 0, 0.15);
    --shadow-medium: rgba(0, 0, 0, 0.3);
    --shadow-heavy: rgba(0, 0, 0, 0.5);
    --shadow-gold: rgba(255, 215, 0, 0.5); /* Bright gold glow effects */
    
    /* Transitions - SMOOTH & ENERGETIC */
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-spring: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 900; }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h3 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; }

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 400;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

.highlight-text {
    color: var(--gold-secondary);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 20px var(--shadow-gold);
    animation: pulseGlow 2s ease-in-out infinite;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.7;
}

/* Logo Styles */
.logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
    object-position: center center;
    border-radius: 8px;
    transition: var(--transition-smooth);
    display: block;
    margin: auto 0;
}

.footer-logo-image {
    height: 52px;
    width: auto;
    object-fit: contain;
    object-position: center center;
    border-radius: 6px;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-wrapper {
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-wrapper:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold-primary);
    box-shadow: 0 0 10px var(--shadow-gold);
    transition: var(--transition-smooth);
}

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

.cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--button-bg);
    color: var(--button-text);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 30px var(--shadow-gold);
    transform: translateZ(0);
}

.cta-button:hover {
    background: var(--button-hover);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 40px var(--shadow-gold), 0 0 30px rgba(255, 215, 0, 0.4);
}

.button-icon {
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

.cta-button:hover .button-icon {
    transform: translateX(5px);
    animation: arrowBounce 0.6s ease infinite;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    padding: 8rem 2rem 4rem;
}

.hero-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    animation: heroFadeIn 1s ease-out;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    line-height: 1.1;
    animation: slideUp 0.8s ease-out 0.2s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    line-height: 1.6;
    animation: slideUp 0.8s ease-out 0.4s both;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold-primary);
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 15px var(--shadow-gold);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    animation: slideUp 0.8s ease-out 0.8s both;
}

.hero-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.hero-button.primary {
    background: var(--button-bg);
    color: var(--button-text);
    box-shadow: 0 6px 30px var(--shadow-gold);
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-button.primary:hover {
    background: var(--button-hover);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 50px var(--shadow-gold), 0 0 40px rgba(255, 215, 0, 0.5);
}

.hero-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.hero-button.secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image:hover .hero-img {
    transform: scale(1.03);
    box-shadow: 0 30px 100px var(--shadow-heavy), 0 0 60px rgba(255, 215, 0, 0.4);
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 80px var(--shadow-heavy), 0 0 40px rgba(255, 215, 0, 0.2);
    border: 3px solid var(--gold-primary);
    object-fit: cover;
    transition: var(--transition-smooth);
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--button-bg);
    color: var(--button-text);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 6px 25px var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Social Proof Section */
.social-proof {
    padding: 2rem 2rem 4rem;
    background: var(--primary-bg);
}

.social-proof-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.social-proof-text {
    color: var(--gold-primary);
    margin-bottom: 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.credentials {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.credential-item:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px var(--shadow-gold), 0 0 25px rgba(255, 215, 0, 0.4);
    border-color: var(--gold-primary);
}

.credential-text {
    color: var(--gold-primary);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
    background: var(--secondary-bg);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 500;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateX(8px) scale(1.02);
    border-color: var(--gold-primary);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.05);
}

.feature-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    color: var(--gold-primary);
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

.feature-text {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.05rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image:hover .about-img {
    transform: scale(1.03) rotate(2deg);
    box-shadow: 0 30px 100px var(--shadow-heavy), 0 0 60px rgba(255, 215, 0, 0.4);
}

.about-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 80px var(--shadow-heavy), 0 0 40px rgba(255, 215, 0, 0.2);
    border: 3px solid var(--gold-primary);
    object-fit: cover;
    transition: var(--transition-smooth);
}

/* Results Section */
.results-section {
    padding: 6rem 2rem;
    background: var(--primary-bg);
}

.results-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.result-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-medium);
    transition: var(--transition-smooth);
}

.result-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px var(--shadow-heavy), 0 0 40px rgba(255, 215, 0, 0.3);
    border-color: var(--gold-primary);
}

.result-image {
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-bg);
}

.result-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.result-card:hover .result-img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.result-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.result-stats {
    display: flex;
    gap: 2rem;
}

.result-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold-primary);
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 15px var(--shadow-gold);
}

.stat-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.result-quote {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 500;
}

.result-name {
    font-weight: 700;
    color: var(--gold-primary);
    font-size: 1.05rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Services Section */
.services-section {
    padding: 6rem 2rem;
    background: var(--secondary-bg);
}

.services-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-medium);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px var(--shadow-heavy), 0 0 50px rgba(255, 215, 0, 0.4);
    border-color: var(--gold-primary);
}

.service-card.popular {
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px var(--shadow-gold);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 215, 0, 0.03) 100%);
}

.service-card.premium {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 215, 0, 0.08) 100%);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--button-bg);
    color: var(--button-text);
    padding: 0.6rem 1.3rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 25px var(--shadow-gold);
    animation: pulseGlow 2s ease-in-out infinite;
}

.premium-badge {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    box-shadow: 0 8px 30px var(--shadow-gold), 0 0 20px rgba(255, 215, 0, 0.5);
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 2.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.service-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.service-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold-primary);
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 4px 20px var(--shadow-gold);
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-description p {
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
}

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

.service-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 1rem;
    background: none;
    padding: 0;
    border: none;
    border-radius: 0;
    transform: none;
}

.service-features .feature-item:hover {
    transform: none;
    border-color: transparent;
}

.service-features .feature-item svg {
    color: var(--gold-primary);
    margin-top: 0.1rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.service-perfect-for {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: rgba(255, 215, 0, 0.12);
    border-radius: 12px;
    border: 2px solid var(--gold-primary);
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.service-perfect-for p {
    color: var(--text-primary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.service-perfect-for strong {
    color: var(--gold-primary);
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.service-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--button-bg);
    color: var(--button-text);
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 30px var(--shadow-gold);
    margin-top: auto;
}

.service-button:hover {
    background: var(--button-hover);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 50px var(--shadow-gold), 0 0 40px rgba(255, 215, 0, 0.5);
}

.premium-button {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    box-shadow: 0 8px 35px var(--shadow-gold);
}

.premium-button:hover {
    background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold-primary) 100%);
    box-shadow: 0 15px 60px var(--shadow-gold), 0 0 50px rgba(255, 215, 0, 0.6);
}

.service-guarantee {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    transition: var(--transition-smooth);
}

.service-guarantee:hover .guarantee-content {
    transform: scale(1.02);
}

.service-guarantee:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px var(--shadow-heavy), 0 0 30px rgba(255, 215, 0, 0.3);
}

.guarantee-icon {
    color: var(--gold-primary);
    flex-shrink: 0;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    animation: floatUp 3s ease-in-out infinite;
}

.guarantee-title {
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.guarantee-description {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: var(--primary-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--gold-primary);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

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

.faq-question:hover {
    color: var(--gold-primary);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.faq-question svg {
    transition: var(--transition-smooth);
    color: var(--gold-primary);
}

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

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background: var(--secondary-bg);
}

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

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.contact-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.contact-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 500;
}

.form-wrapper {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px var(--shadow-heavy);
}

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

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

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

.form-input, .form-select, .form-textarea {
    padding: 1rem 1.25rem;
    border: 1px solid var(--form-border);
    border-radius: 12px;
    background: var(--input-bg);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--input-text);
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px var(--shadow-light);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2), 0 0 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: var(--input-placeholder);
}

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

.service-type-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-type-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
    border: 1px solid var(--form-border);
}

.checkbox-item:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: var(--gold-primary);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.checkbox-item input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    position: relative;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.checkbox-item input[type="radio"]:checked + .radio-custom {
    border-color: var(--button-bg);
}

.checkbox-item input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--button-bg);
}

.checkbox-label {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--button-bg);
    color: var(--button-text);
    border: none;
    padding: 1.3rem 2.5rem;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 30px var(--shadow-gold);
}

.submit-button:hover {
    background: var(--button-hover);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 50px var(--shadow-gold), 0 0 40px rgba(255, 215, 0, 0.5);
}

.submit-icon {
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

.submit-button:hover .submit-icon {
    transform: translateX(5px);
    animation: arrowBounce 0.6s ease infinite;
}

.form-disclaimer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-align: center;
    justify-content: center;
    margin-top: 1rem;
    font-weight: 600;
}

.form-disclaimer svg {
    color: var(--gold-primary);
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

/* Footer */
.footer {
    background: var(--primary-bg);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 400px;
    font-weight: 500;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.footer-heading {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--gold-primary);
    transform: translateX(3px);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Animations */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px var(--shadow-gold);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 35px var(--shadow-gold), 0 0 15px rgba(255, 215, 0, 0.5);
        transform: scale(1.02);
    }
}

@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.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(5px);
    }
    50% {
        transform: translateX(8px);
    }
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.scroll-fade-in.visible {
    opacity: 1;
}

.scroll-slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content .about-text {
        order: 2;
    }
    
    .about-content .about-image {
        order: 1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 6rem 1rem 4rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .credentials {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .result-image {
        height: auto;
        min-height: 250px;
    }
    
    .result-img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .about-section,
    .results-section,
    .services-section,
    .faq-section,
    .contact-section {
        padding: 4rem 1rem;
    }
}

@media (max-width: 480px) {
    .nav-content {
        height: 70px;
        padding: 0 1rem;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 5rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .form-wrapper {
        padding: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .footer-logo-image {
        height: 40px;
    }
}