/*
Theme Name: Sharda Quiz
Theme URI: https://shardaquiz.com
Author: Rank Guard EdTech
Author URI: https://rankguard.in
Description: A luxury, minimalist, futuristic WordPress theme for Sharda Quiz Android app. Features premium black/white/gold design with clean aesthetics and only real app features.
Version: 0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sharda-quiz
Tags: responsive, mobile-first, app-landing, minimalist, luxury, futuristic
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Allow text selection only for input fields and textareas */
input,
textarea,
[contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

:root {
    /* Luxury Color Palette - Black, White, Gold */
    --luxury-black: #0a0a0a;
    --luxury-dark: #1a1a1a;
    --luxury-charcoal: #2a2a2a;
    --luxury-white: #ffffff;
    --luxury-off-white: #fafafa;
    --luxury-gray: #e5e5e5;
    --luxury-light-gray: #f5f5f5;
    --luxury-text: #1a1a1a;
    --luxury-text-light: #6b6b6b;
    --luxury-text-dark: #0a0a0a;
    
    /* Premium Accents - Gold & Silver */
    --luxury-gold: #d4af37;
    --luxury-gold-light: #f4df87;
    --luxury-gold-dark: #b8941f;
    --luxury-silver: #c0c0c0;
    --luxury-silver-light: #e8e8e8;
    
    /* Rainbow Button Colors */
    --color-1: 0 100% 63%;
    --color-2: 270 100% 63%;
    --color-3: 210 100% 63%;
    --color-4: 195 100% 63%;
    --color-5: 90 100% 63%;
    --rainbow-speed: 2s;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--luxury-text);
    background: #e5e5e5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Vertical Dividers - Desktop Only */
@media (min-width: 1024px) {
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 10%;
        bottom: 0;
        width: 1px;
        background: #d4d4d4;
        z-index: 999;
        pointer-events: none;
    }

    body::after {
        content: '';
        position: fixed;
        top: 0;
        right: 10%;
        bottom: 0;
        width: 1px;
        background: #d4d4d4;
        z-index: 999;
        pointer-events: none;
    }
}

/* Main Site Wrapper - 80% width on desktop, 100% on mobile */
.site-main-wrapper {
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .site-main-wrapper {
        width: 80%;
        max-width: 1920px;
        margin: 0 auto;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--luxury-text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--luxury-text-light);
    font-size: 1.125rem;
    line-height: 1.8;
}

a {
    color: var(--luxury-text-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--luxury-gold);
}

/* Header Styles - Floating Pill Style */
.site-header {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 2rem);
    max-width: 900px;
    padding: 0;
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .site-header {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .site-header {
        top: 1rem;
        width: calc(100% - 1.5rem);
    }
}

.header-container {
    width: 100%;
    padding: 0.375rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.04);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1001;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.site-logo:hover {
    background: rgba(0, 0, 0, 0.04);
}

.site-logo a {
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.logo-image {
    height: 32px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

/* Header CTA Button */
.header-cta {
    display: flex;
    align-items: center;
}

/* Rainbow Button Animation */
@keyframes rainbow {
    0% { background-position: 0%; }
    100% { background-position: 200%; }
}

.header-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    height: 36px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    border-radius: 8px;
    text-decoration: none;
    position: relative;
    overflow: visible;
    cursor: pointer;
    
    /* Rainbow gradient background */
    background: 
        linear-gradient(#121213, #121213),
        linear-gradient(#121213 50%, rgba(18, 18, 19, 0.6) 80%, rgba(18, 18, 19, 0)),
        linear-gradient(90deg, 
            hsl(var(--color-1)), 
            hsl(var(--color-5)), 
            hsl(var(--color-3)), 
            hsl(var(--color-4)), 
            hsl(var(--color-2))
        );
    background-size: 200%;
    background-clip: padding-box, border-box, border-box;
    background-origin: border-box;
    border: 2px solid transparent;
    
    /* Text color */
    color: var(--luxury-white);
    
    /* Animation */
    animation: rainbow var(--rainbow-speed) infinite linear;
    
    /* Transitions */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Rainbow glow effect beneath button */
.header-download-btn::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20%;
    z-index: -1;
    background: linear-gradient(90deg, 
        hsl(var(--color-1)), 
        hsl(var(--color-5)), 
        hsl(var(--color-3)), 
        hsl(var(--color-4)), 
        hsl(var(--color-2))
    );
    background-size: 200%;
    filter: blur(12px);
    animation: rainbow var(--rainbow-speed) infinite linear;
    opacity: 0.8;
}

.header-download-btn span {
    position: relative;
    z-index: 2;
}

.header-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 100, 100, 0.3),
        0 8px 25px rgba(100, 100, 255, 0.3);
}

.header-download-btn:hover::before {
    opacity: 1;
    filter: blur(16px);
}

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.04);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 16px;
    height: 12px;
    position: relative;
    flex-shrink: 0;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--luxury-text-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-navigation {
    display: none;
    align-items: center;
}

@media (min-width: 1024px) {
    .main-navigation {
        display: flex;
    }
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 0.25rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-text);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: capitalize;
    letter-spacing: 0.01em;
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.main-navigation a:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--luxury-text-dark);
}

/* Active/Current page styling */
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a {
    background: rgba(0, 0, 0, 0.04);
    color: var(--luxury-text-dark);
}

/* Hero Section - Luxury Dark Premium */
.hero-section {
    background: #000000;
    position: relative;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px; /* Account for floating header */
    padding-bottom: 0;
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .hero-section {
        width: 80%;
        max-width: 1920px;
    }
}

.hero-section::before {
    display: none;
}

/* Bottom blending zone - transitions from hero black to features blue */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(13, 27, 42, 0.2) 20%,
        rgba(13, 27, 42, 0.5) 50%,
        rgba(13, 27, 42, 0.8) 80%,
        rgba(13, 27, 42, 1) 100%
    );
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-section::after {
        height: 150px; /* Smaller blending zone on mobile */
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Particles Background Container */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: background-color 0.5s ease;
    background: linear-gradient(to top right, #000814, #003566, #0077b6);
}

#particles-js canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    pointer-events: none; /* Allow particles interaction through content */
}

/* Make interactive elements clickable */
.hero-content a,
.hero-content button,
.hero-content .btn,
.hero-content .play-store-badge,
.hero-content .cta-buttons {
    pointer-events: auto;
}

.hero-title {
    font-family: 'Comfortaa', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f4df87 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.05em;
    line-height: 1.1;
    text-shadow: 0 0 80px rgba(212, 175, 55, 0.3);
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.5;
        width: 120px;
    }
    50% {
        opacity: 1;
        width: 180px;
    }
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-buttons > * {
    flex-shrink: 0;
    box-sizing: border-box;
}

/* Force identical sizing for both CTA elements */
.cta-buttons .play-store-badge,
.cta-buttons .btn-secondary {
    width: 180px !important;
    height: 53px !important;
    min-width: 180px;
    max-width: 180px;
    min-height: 53px;
    max-height: 53px;
}

.btn {
    padding: 0;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: none;
    letter-spacing: normal;
    background: transparent;
    color: var(--luxury-white);
    position: relative;
    overflow: hidden;
    display: inline-block;
    line-height: 0;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-smooth);
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
    color: var(--luxury-black);
    border: 2px solid var(--luxury-gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn-primary span {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 20px 60px rgba(59, 130, 246, 0.6),
        0 0 30px rgba(59, 130, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 3px rgba(59, 130, 246, 0.3);
    border-color: #3b82f6;
    color: var(--luxury-white);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover span {
    color: var(--luxury-white);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.7);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 53px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--luxury-white);
    border-radius: 6px;
    padding: 0;
    margin: 0;
    transition: var(--transition-smooth);
    text-decoration: none;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    line-height: 1;
}

.btn-secondary span {
    display: block;
    line-height: 1;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    color: var(--luxury-white);
    transform: translateY(-3px) scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.btn-secondary:active {
    transform: translateY(-1px) scale(1.02);
}

/* Google Play Store Badge */
.play-store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 53px;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    text-decoration: none;
    border-radius: 6px;
    overflow: visible;
    background: transparent;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    flex-shrink: 0;
    vertical-align: middle;
    line-height: 0;
}

.play-store-badge-img {
    width: 180px;
    height: 53px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    flex-shrink: 0;
}

.play-store-badge:hover {
    transform: translateY(-3px) scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.play-store-badge:hover .play-store-badge-img {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.play-store-badge:active {
    transform: translateY(-1px) scale(1.02);
}

/* Features Section - Minimalist Grid */
.features-section {
    padding: 2rem 2rem 2rem;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #0d1b2a 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin-top: -120px; /* Increased overlap with hero for seamless blending */
    padding-top: 170px; /* Extra top padding to account for overlap */
}

@media (min-width: 1024px) {
    .features-section {
        width: 80%;
        max-width: 1920px;
    }
}

/* Top blending zone - transitions from hero black to features blue */
.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.8) 20%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(13, 27, 42, 0.3) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Bottom blending zone - transitions from features blue to why-choose purple */
.features-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(26, 22, 37, 0.3) 20%,
        rgba(26, 22, 37, 0.6) 50%,
        rgba(26, 22, 37, 0.9) 80%,
        rgba(26, 22, 37, 1) 100%
    );
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .why-choose-section {
        margin-top: -80px; /* Smaller but still significant overlap on mobile */
        padding-top: 130px; /* Adjusted padding for mobile */
    }
    
    /* Reduce blending zone height on mobile */
    .why-choose-section::before,
    .why-choose-section::after {
        height: 150px;
    }
}

.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

.section-title {
    text-align: center;
    font-family: 'Comfortaa', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    width: 100%;
    padding-top: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--luxury-gold-light) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
    animation: luxuryShimmer 3s ease-in-out infinite;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.01em;
    margin-top: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--luxury-white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Title Section - Bright Color Background */
.feature-card .feature-title-section {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    padding: 2rem 0;
    position: relative;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

/* Alternate colors for different cards */
.feature-card:nth-child(1) .feature-title-section {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
}

.feature-card:nth-child(2) .feature-title-section {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
}

.feature-card:nth-child(3) .feature-title-section {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
}

.feature-card:nth-child(4) .feature-title-section {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
}

.feature-card:nth-child(5) .feature-title-section {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 50%, #be185d 100%);
}

.feature-card:nth-child(6) .feature-title-section {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%);
}

/* Content Section - White Background */
.feature-card .feature-content-section {
    background: var(--luxury-white);
    padding: 2.5rem 2.5rem;
    flex: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-card:hover .feature-title-section {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
}

.feature-title {
    font-size: 1.75rem;
    margin: 0;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.feature-description {
    color: var(--luxury-text-dark);
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
    margin: 0;
}

/* Content Sections */
.content-section {
    padding: 6rem 3rem;
    background: var(--luxury-white);
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.content-section.alternate {
    background: linear-gradient(135deg, var(--luxury-dark) 0%, var(--luxury-charcoal) 100%);
    color: var(--luxury-white);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .content-section {
        width: 80%;
        max-width: 1920px;
    }
}

.content-section.alternate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
}

.content-section.alternate .section-title::after {
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
}

.content-section.alternate .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Why Choose Us Section - Grid with Hover Effects */
.why-choose-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a1625 0%, #2d2438 50%, #1a1625 100%);
    position: relative;
    width: 100%;
    margin: 0 auto;
    margin-top: -120px; /* Increased overlap with features for seamless blending */
    padding-top: 170px; /* Extra top padding to account for overlap */
}

/* Top blending zone - transitions from features blue to why-choose purple */
.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to bottom, 
        rgba(13, 27, 42, 1) 0%,
        rgba(13, 27, 42, 0.8) 20%,
        rgba(13, 27, 42, 0.5) 50%,
        rgba(26, 22, 37, 0.3) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Bottom blending zone - transitions from why-choose purple to FAQ slate */
.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(15, 23, 42, 0.3) 20%,
        rgba(15, 23, 42, 0.6) 50%,
        rgba(15, 23, 42, 0.9) 80%,
        rgba(15, 23, 42, 1) 100%
    );
    pointer-events: none;
    z-index: 1;
}

@media (min-width: 1024px) {
    .why-choose-section {
        width: 80%;
        max-width: 1920px;
    }
}

.why-choose-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Comfortaa', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, var(--luxury-gold-light) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: luxuryShimmer 3s ease-in-out infinite;
    display: block;
    width: 100%;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.why-choose-card {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2.5rem;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    transition: all 0.3s ease;
}

/* Border logic for grid layout */
@media (min-width: 1024px) {
    .why-choose-card:nth-child(4n) {
        border-right: none;
    }
    .why-choose-card:nth-child(n+5) {
        border-bottom: none;
    }
    /* First column left border */
    .why-choose-card:nth-child(4n+1) {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    /* Top row top border */
    .why-choose-card:nth-child(-n+4) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 1023px) and (min-width: 768px) {
    .why-choose-card:nth-child(2n) {
        border-right: none;
    }
    .why-choose-card:nth-child(n+7) {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .why-choose-card {
        border-right: none;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    .why-choose-card:last-child {
        border-bottom: none;
    }
    .why-choose-card:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Hover gradient overlay - top rows (dark purple tint) */
.why-choose-card::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(75, 55, 100, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

/* Bottom rows get reverse gradient */
@media (min-width: 1024px) {
    .why-choose-card:nth-child(n+5)::before {
        background: linear-gradient(to bottom, rgba(75, 55, 100, 0.4), transparent);
    }
}

.why-choose-card:hover::before {
    opacity: 1;
}

.why-choose-icon {
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
    color: rgba(255, 255, 255, 0.6);
}

.why-choose-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

/* Left indicator bar */
.why-choose-indicator {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-indicator {
    height: 32px;
    background: var(--luxury-gold);
}

.why-choose-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 10;
    color: #ffffff;
    transition: transform 0.3s ease;
    padding-left: 0;
}

.why-choose-card:hover .why-choose-title {
    transform: translateX(8px);
}

.why-choose-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 10;
    line-height: 1.6;
    max-width: 280px;
}

/* ========================================
   FAQ Section - Animated Accordion
   ======================================== */
.faq-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    margin-top: -120px; /* Increased overlap with why-choose for seamless blending */
    padding-top: 170px; /* Extra top padding to account for overlap */
}

@media (min-width: 1024px) {
    .faq-section {
        width: 80%;
        max-width: 1920px;
    }
}

/* Top blending zone - transitions from why-choose purple to FAQ slate */
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to bottom, 
        rgba(26, 22, 37, 1) 0%,
        rgba(26, 22, 37, 0.8) 20%,
        rgba(26, 22, 37, 0.5) 50%,
        rgba(15, 23, 42, 0.3) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Bottom blending zone - transitions from FAQ slate to get-started black */
.faq-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(10, 10, 10, 0.3) 20%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.9) 80%,
        rgba(10, 10, 10, 1) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Comfortaa', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, var(--luxury-gold-light) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    width: 100%;
}

/* FAQ Accordion Container */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.faq-item:last-child {
    border-bottom: none;
}

/* FAQ Trigger Button */
.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-trigger:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-trigger:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
}

.faq-trigger:focus-visible {
    outline: 2px solid var(--luxury-gold);
    outline-offset: -2px;
}

/* FAQ Question Text */
.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    flex: 1;
    letter-spacing: -0.01em;
}

/* FAQ Icon */
.faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    color: var(--luxury-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* FAQ Content Container */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* FAQ Answer */
.faq-answer {
    padding: 0 2rem 1.5rem;
    opacity: 0;
    transform: translateY(-10px);
    filter: blur(4px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0s;
}

.faq-item.active .faq-answer {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition-delay: 0.1s;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.faq-answer p strong {
    color: var(--luxury-gold-light);
    font-weight: 600;
}

/* FAQ Item Hover Indicator */
.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    transition: background 0.3s ease;
}

.faq-item:hover::before,
.faq-item.active::before {
    background: linear-gradient(to bottom, var(--luxury-gold), var(--luxury-gold-light));
}

/* FAQ Responsive Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1.5rem;
        margin-top: -80px; /* Smaller but still significant overlap on mobile */
        padding-top: 130px; /* Adjusted padding for mobile */
    }
    
    /* Reduce blending zone height on mobile */
    .faq-section::before,
    .faq-section::after {
        height: 150px;
    }

    .faq-accordion {
        border-radius: 12px;
    }

    .faq-trigger {
        padding: 1.25rem 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }

    .faq-answer p {
        font-size: 0.9375rem;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }
}

/* FAQ Animation Keyframes */
@keyframes faqSlideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Get Started Section - Luxury Design */
.get-started-section {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--luxury-black) 0%, var(--luxury-dark) 50%, var(--luxury-charcoal) 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -120px; /* Increased overlap with FAQ for seamless blending */
    padding-top: 170px; /* Extra top padding to account for overlap */
}

/* Top blending zone - transitions from FAQ slate to get-started black */
.get-started-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to bottom, 
        rgba(15, 23, 42, 1) 0%,
        rgba(15, 23, 42, 0.8) 20%,
        rgba(15, 23, 42, 0.5) 50%,
        rgba(10, 10, 10, 0.3) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

@media (min-width: 1024px) {
    .get-started-section {
        width: 80%;
        max-width: 1920px;
        padding: 4rem 3rem;
    }
}

/* Animated Background */
.get-started-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none;
    animation: luxuryPulse 6s ease-in-out infinite;
}

@keyframes luxuryPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
}

.get-started-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.get-started-title {
    font-family: 'Comfortaa', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, var(--luxury-gold-light) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.get-started-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
    animation: luxuryShimmer 3s ease-in-out infinite;
}

@keyframes luxuryShimmer {
    0%, 100% {
        opacity: 0.5;
        width: 80px;
    }
    50% {
        opacity: 1;
        width: 120px;
    }
}

.get-started-cta {
    margin-top: 2.5rem;
}

@media (max-width: 768px) {
    .get-started-section {
        padding: 3rem 2rem;
        margin-top: -80px; /* Smaller but still significant overlap on mobile */
        padding-top: 130px; /* Adjusted padding for mobile */
    }
    
    /* Reduce blending zone height on mobile */
    .get-started-section::before {
        height: 150px;
    }
    
    .get-started-title {
        margin-bottom: 2rem;
    }
    
    .get-started-cta {
        margin-top: 2rem;
    }
}

/* Footer - Minimalist Luxury */
.site-footer {
    background: var(--luxury-dark);
    color: var(--luxury-gray);
    padding: 4rem 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1024px) {
    .site-footer {
        width: 80%;
        max-width: 1920px;
    }
}

.footer-content {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 25% 20% 20% 20%;
    column-gap: 5%;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        column-gap: 0;
        gap: 2rem;
    }
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--luxury-white);
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--luxury-gray);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-section a:hover {
    color: var(--luxury-gold);
    padding-left: 0.25rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--luxury-text-light);
    font-size: 0.9rem;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

/* Page Content */
.page-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 8rem 3rem 4rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--luxury-white);
}

@media (min-width: 1024px) {
    .page-content {
        width: 80%;
        max-width: 1920px;
    }
}

.page-content > * {
    width: 100%;
    max-width: 100%;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    color: var(--luxury-text-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
}

.page-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--luxury-text-dark);
    font-size: 2rem;
}

.page-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--luxury-text-dark);
    font-size: 1.5rem;
}

.page-content ul, .page-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--luxury-text-light);
}

.page-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 3rem auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--luxury-text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: lowercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--luxury-gray);
    border-radius: 0;
    background: var(--luxury-white);
    color: var(--luxury-text-dark);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--luxury-gold);
    background: var(--luxury-off-white);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--luxury-text-light);
    opacity: 0.6;
}

/* Contact Form Messages */
.contact-success {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--luxury-gold);
    color: var(--luxury-gold-dark);
    padding: 1.25rem;
    border-radius: 0;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.contact-error {
    background: rgba(234, 67, 53, 0.1);
    border: 1px solid #ea4335;
    color: #ea4335;
    padding: 1.25rem;
    border-radius: 0;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Features Page Specific Styles */
.feature-detail-row {
    display: grid;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.feature-text {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.feature-text:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--luxury-gold);
    position: relative;
    display: inline-block;
}

.feature-text h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--luxury-gold);
    opacity: 0.5;
}

.feature-text ul li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.feature-text strong {
    color: #ffffff;
    font-weight: 600;
}

/* Additional Responsive Styles for Features Page */
@media (max-width: 768px) {
    .feature-detail-row {
        grid-template-columns: 1fr !important; /* Force single column on mobile */
        gap: 1.5rem;
    }
    
    .feature-text {
        padding: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 1023px) {
    .header-container {
        padding: 0.375rem;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Mobile Logo */
    .logo-image {
        height: 28px;
        max-width: 120px;
    }

    /* Hide Header Right on Mobile - but keep CTA visible */
    .header-right {
        display: flex;
        gap: 0.5rem;
    }

    /* Mobile Navigation - Sheet Style from Left */
    .main-navigation,
    .mobile-nav-clone {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
        border-right: 1px solid rgba(0, 0, 0, 0.08);
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1001;
        padding: 3rem 0 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        overflow-y: auto;
        transform: translateX(-105%);
        pointer-events: none;
        visibility: hidden;
        opacity: 0;
    }

    .main-navigation.active,
    .mobile-nav-clone.active {
        transform: translateX(0);
        pointer-events: auto;
        visibility: visible;
        opacity: 1;
    }

    /* Hide mobile clone on desktop */
    .mobile-nav-clone {
        display: none;
    }

    @media (max-width: 1023px) {
        .mobile-nav-clone {
            display: flex;
        }
    }

    .main-navigation ul,
    .mobile-nav-clone ul {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.5rem;
        width: 100%;
        margin: 0;
        padding: 0 1rem;
        display: flex;
        list-style: none;
    }

    .main-navigation li,
    .mobile-nav-clone li {
        width: 100%;
        display: block;
        position: relative;
    }

    .main-navigation a,
    .mobile-nav-clone a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--luxury-text);
        text-align: left;
        text-decoration: none;
        text-transform: capitalize;
        letter-spacing: 0.01em;
        position: relative;
        border-radius: 8px;
        transition: all 0.2s ease;
        background: transparent;
    }

    .main-navigation a:hover,
    .mobile-nav-clone a:hover {
        background: rgba(0, 0, 0, 0.04);
        color: var(--luxury-text-dark);
    }

    /* Mobile Menu Footer with buttons */
    .mobile-nav-footer {
        margin-top: auto;
        padding: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* End of mobile menu styles */

/* Mobile-specific hero adjustments */
@media (max-width: 1023px) {
    .hero-section {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 0;
    }

    .hero-content {
        padding: 2rem 1.5rem 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .btn {
        width: auto;
        min-width: 180px;
        max-width: 200px;
        margin: 0 auto;
    }

    .play-store-badge {
        width: 180px;
        height: 53px;
        border: 2px solid transparent;
        display: block;
        margin: 0 auto 1rem;
        box-sizing: border-box;
    }

    .play-store-badge-img {
        width: 180px;
        height: 53px;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    
    .cta-buttons .play-store-badge,
    .cta-buttons .btn-secondary {
        width: 180px !important;
        height: 53px !important;
        min-width: 180px;
        max-width: 180px;
        min-height: 53px;
        max-height: 53px;
    }

    .btn-secondary {
        width: 180px;
        height: 53px;
        padding: 0;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .cta-buttons > * {
        height: 53px;
    }
    
    .cta-buttons .play-store-badge,
    .cta-buttons .btn-secondary {
        width: 180px;
        height: 53px;
    }

    .btn-secondary span {
        font-size: 0.9rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-section {
        padding: 3rem 1.5rem;
        margin-top: -80px; /* Smaller but still significant overlap on mobile */
        padding-top: 130px; /* Adjusted padding for mobile */
    }
    
    /* Reduce blending zone height on mobile */
    .features-section::before,
    .features-section::after {
        height: 150px;
    }

    .content-section {
        padding: 3rem 1.5rem;
    }

    .section-title {
        margin-bottom: 2rem;
        padding-top: 0.5rem;
    }

    .section-subtitle {
        margin-top: 1.5rem;
        margin-bottom: 3rem;
    }

    .features-grid {
        margin-top: 2rem;
    }

    .page-content {
        padding: 5rem 1.5rem 2rem;
    }

    .luxury-divider {
        margin: 2rem auto 0;
    }

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

    .site-footer {
        padding: 3rem 1.5rem 1.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Luxury divider */
.luxury-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
    margin: 1rem auto 0;
    position: relative;
}

.luxury-divider {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--luxury-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* ========================================
   404 Error Page - Modern Design
   ======================================== */

/* 404 Page - Site background color outside 80% wrapper */
html.error404,
body.error404 {
    background: #e5e5e5 !important;
    background-color: #e5e5e5 !important;
}

/* 404 Page Container */
.error-404-page {
    min-height: calc(100vh - 60px); /* Account for footer */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #e5e5e5;
    padding: 2rem 0;
    padding-top: 100px; /* Account for fixed header */
}

/* 404 Page Inner Wrapper - Contains background and content within 80% */
.error-404-page-inner {
    position: relative;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
    background: #000000;
}

/* Shooting Stars Background Container - Now inside the 80% wrapper */
.shooting-stars-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 16px;
    background: #000000;
}

/* Radial gradient overlay for depth */
.shooting-stars-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0) 80%);
    z-index: 1;
}

/* Static stars background */
.static-stars {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 40px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 130px 80px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 160px 120px, #ddd, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 100px 200px, #eee, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 180px 50px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 70px 100px, #ddd, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 200px 150px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 250px 90px, #eee, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 300px 180px, #ddd, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 350px 350px;
    animation: twinkle 5s ease-in-out infinite;
    opacity: 0.5;
    z-index: 0;
}

@keyframes twinkle {
    0% { opacity: 0.4; }
    50% { opacity: 0.7; }
    100% { opacity: 0.4; }
}

/* Shooting stars SVG container */
.shooting-stars-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.shooting-stars-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.error-404-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 10;
    padding: 0 2rem;
}

/* Background Illustration */
.error-404-illustration {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 50vh;
    opacity: 0.06;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    z-index: 0;
}

.illustration-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Main Content */
.error-404-content {
    position: relative;
    z-index: 1;
    padding-top: 4rem;
}

/* Title */
.error-404-title {
    margin-top: 1rem;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Description */
.error-404-description {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Form */
.error-404-search {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.search-field {
    width: 100%;
    height: 2.25rem;
    padding: 0.5rem 0.75rem 0.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.search-field:focus {
    outline: none;
    border-color: rgba(158, 0, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(158, 0, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.search-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-submit {
    height: 2.25rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.search-submit:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(158, 0, 255, 0.5);
}

/* Action Buttons */
.error-404-actions {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    height: 2.25rem;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 2px solid var(--luxury-gold);
    outline-offset: 2px;
}

.btn-icon {
    width: 1rem;
    height: 1rem;
    opacity: 0.6;
    transition: transform 0.2s ease;
}

.btn-primary {
    /* Match header download button style */
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    height: 36px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    border-radius: 8px;
    background: linear-gradient(135deg, 
        hsl(var(--color-1)), 
        hsl(var(--color-2)), 
        hsl(var(--color-3)), 
        hsl(var(--color-4)), 
        hsl(var(--color-5))
    );
    background-size: 400% 400%;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    animation: rainbow 3s ease-in-out infinite;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(255, 100, 100, 0.2),
        0 4px 15px rgba(100, 100, 255, 0.2);
}

/* Rainbow glow effect beneath button */
.btn-primary::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20%;
    z-index: -1;
    background: linear-gradient(90deg, 
        hsl(var(--color-1)), 
        hsl(var(--color-2)), 
        hsl(var(--color-3)), 
        hsl(var(--color-4)), 
        hsl(var(--color-5))
    );
    background-size: 400% 400%;
    animation: rainbow 3s ease-in-out infinite;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.7;
}

.btn-primary span {
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 100, 100, 0.3),
        0 8px 25px rgba(100, 100, 255, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
    filter: blur(16px);
}

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

/* 404 Page Secondary Button */
.error-404-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    height: 36px;
    min-width: auto;
    padding: 0.5rem 1rem;
}

.error-404-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(158, 0, 255, 0.5);
    transform: translateY(-2px);
}

.error-404-actions .btn-secondary:hover .btn-icon {
    transform: translateX(-2px);
}

/* Responsive Design */
@media (min-width: 640px) {
    .error-404-title {
        font-size: 4.5rem;
    }
    
    .error-404-description {
        font-size: 1.25rem;
        line-height: 2;
    }
    
    .search-form {
        flex-direction: row;
    }
    
    .search-input-wrapper {
        flex: 1;
    }
    
    .error-404-actions {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .btn-primary {
        order: -1;
    }
}

@media (min-width: 768px) {
    .error-404-page {
        padding: 2.5rem 0;
    }
}

@media (max-width: 768px) {
    .error-404-page-inner {
        width: 90%;
    }
    
    .error-404-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .error-404-page-inner {
        width: 95%;
    }
    
    .error-404-container {
        padding: 0 1rem;
    }
}

@media (min-width: 1024px) {
    .error-404-content {
        padding-top: 6rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-404-content {
    animation: fadeInUp 0.6s ease-out;
}

.error-404-title {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.error-404-description {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.error-404-search {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.error-404-actions {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Show header and footer on 404 page */
body.error404 .site-header,
body.error404 .site-footer {
    display: block;
}

/* Footer styling on 404 page - keep default footer style */
body.error404 .site-footer {
    background: #0a0a0a;
}

/* Adjust 404 content spacing with header */
.error-404-content {
    padding-top: 2rem;
}

/* JavaScript Enhancement Styles */
.search-field.error-shake {
    animation: shake 0.5s ease-in-out;
    border-color: #ef4444;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.suggestion-item {
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.suggestion-item:hover {
    background: rgba(158, 0, 255, 0.2);
}

.suggestion-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Loading state for search button */
.search-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Focus improvements */
.search-field:focus + .search-suggestions {
    display: block;
}

/* Better focus indicators */
.btn:focus-visible,
.search-field:focus-visible,
.search-submit:focus-visible {
    outline: 2px solid var(--luxury-gold);
    outline-offset: 2px;
}

/* ============================================
   Performance Optimizations
   ============================================ */

/* No-animate class for above-the-fold content (improves LCP) */
.no-animate {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Font-display swap fallback for system fonts while web fonts load */
body {
    font-display: swap;
}

/* Optimize paint for animated elements */
.fade-in-up {
    will-change: opacity, transform;
    contain: layout style;
}

/* Content visibility for below-fold sections (improves initial render) */
.faq-section,
.get-started-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .fade-in-up {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ========================================
   Simple Luxury Page Template
   ======================================== */

.luxury-template {
    background: var(--luxury-black);
    min-height: 100vh;
    position: relative;
    padding-top: 120px; /* Account for fixed header */
}

.luxury-page-container {
    width: 100%;
    max-width: 1000px; /* Simpler, narrower focus for luxury feel */
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.luxury-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.luxury-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.luxury-content-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.luxury-entry-header {
    text-align: center;
    margin-bottom: 4rem;
}

.luxury-page-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--luxury-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, var(--luxury-gold-light) 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.luxury-title-divider {
    width: 60px;
    height: 2px;
    background: var(--luxury-gold);
    margin: 0 auto;
    position: relative;
}

.luxury-title-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--luxury-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--luxury-gold);
}

.luxury-entry-content {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.9;
    font-weight: 300;
}

.luxury-entry-content p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.luxury-entry-content h2, 
.luxury-entry-content h3, 
.luxury-entry-content h4 {
    color: var(--luxury-white);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.luxury-entry-content h2 {
    font-size: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    display: inline-block;
}

.luxury-entry-content a {
    color: var(--luxury-gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.luxury-entry-content a:hover {
    color: var(--luxury-gold-light);
    border-bottom-color: var(--luxury-gold-light);
}

.luxury-entry-content ul, 
.luxury-entry-content ol {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.luxury-entry-content li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .luxury-content-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .luxury-page-container {
        padding: 1rem;
    }
    
    .luxury-template {
        padding-top: 100px;
    }
}
