:root {
    --primary-blue: #d32f2f; /* Renamed conceptually to Red, keeping variable name for compatibility or refactor all */
    --secondary-blue: #ff5252;
    --light-blue: #ffebee;
    --white: #ffffff;
    --text-dark: #333333;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(183, 28, 28, 0.37);
    --premium-gradient: linear-gradient(135deg, #b71c1c 0%, #ff5252 100%);
    --bg-gradient: linear-gradient(to right, #fff5f5, #ffffff);
    --gold-accent: #d4af37; /* Added gold accent for premium feel */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', sans-serif; /* Changed default font */
}

body {
    background: var(--light-blue);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 30px; /* Reduced padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar:hover {
    box-shadow: 0 0 20px rgba(211, 47, 47, 0.2);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; /* Slightly smaller logo */
    font-weight: 800;
    color: var(--primary-blue);
    text-decoration: none;
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    margin-right: 20px; /* Add some space */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px; /* Increased gap for cleaner look */
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links > li > a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem; /* Restored font size */
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links li a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-links li:hover > a i {
    transform: rotate(180deg);
}

.nav-links li a:hover {
    color: var(--primary-blue);
}

/* Dropdown Menu */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content li a {
    padding: 10px 15px;
    display: block;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #444;
}

.dropdown-content li a:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding-left: 20px; /* Slide effect */
}

/* Nav CTA Button */
.nav-cta {
    background: var(--premium-gradient);
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 82, 82, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 82, 82, 0.4);
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    text-align: center;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-login:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-signup {
    background: var(--premium-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 82, 82, 0.3);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 82, 82, 0.4);
}

/* Background Animation */
#bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #ffebee 100%);
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Background handled by canvas */
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.25); /* More glass effect */
    backdrop-filter: blur(12px);
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    max-width: 900px;
    margin: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif; /* Serif font for headings */
    font-size: 4.5rem; /* Larger size */
    font-weight: 800;
    background: linear-gradient(135deg, #b71c1c 0%, #4a148c 100%); /* Premium Red to Deep Purple/Red */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1); /* Subtle shadow for depth */
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #444; /* Darker grey for better contrast */
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px; /* Cleaner look */
    animation: fadeInUp 1.2s ease-out;
}

.hero-content .btn-signup, .home-hero-content .btn-signup { /* Specific style for Hero CTA */
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(90deg, #d32f2f 0%, #ff5252 100%); /* Brighter, engaging gradient */
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy effect */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-content .btn-signup:hover, .home-hero-content .btn-signup:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(211, 47, 47, 0.5);
}

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

/* Footer */
footer {
    background: var(--white);
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-blue);
}

@media (max-width: 992px) {
    .navbar {
        padding: 15px 20px;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        padding-top: 100px;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100% !important;
        text-align: center !important; 
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; 
        position: relative !important; /* Ensure child elements align relative to this */
    }

    .nav-links > li > a {
        font-size: 1.2rem !important;
        justify-content: center !important; 
        gap: 15px !important; 
        padding: 15px 30px !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
    }

    /* Mobile Dropdown */
    .dropdown-content {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: rgba(0,0,0,0.03) !important;
        max-height: 0;
        overflow: hidden;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 100% !important;
        min-width: 100% !important;
        margin: 0 !important; /* Removed the negative margin hack */
        border-radius: 0 !important;
        transition: max-height 0.4s ease-in-out !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        left: auto !important;
    }

    .dropdown.active .dropdown-content {
        max-height: 500px !important; /* Allow enough height for items */
        padding-bottom: 10px !important; /* Add some spacing */
    }

    .dropdown-content li {
        width: 100% !important;
        text-align: center !important;
        border-bottom: none !important;
    }

    .dropdown-content li a {
        padding: 15px 30px !important; 
        font-size: 1.1rem !important;
        border-bottom: 1px solid rgba(0,0,0,0.03) !important;
        white-space: normal !important; 
        display: block !important; 
        width: 100% !important;
        text-align: center !important; 
    }

    .dropdown > a i {
        transition: transform 0.3s ease;
    }

    .dropdown.active > a i {
        transform: rotate(180deg);
    }

    .auth-buttons {
        display: none;
    }
    
    .auth-buttons-mobile {
        display: flex !important;
        flex-direction: column;
        gap: 15px;
        padding: 30px;
        width: 100%;
        border-top: none;
    }
}

/* Auth Pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px 50px;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #ffebee 100%);
}

.auth-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(183, 28, 28, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    width: 100%;
    max-width: 400px;
}

.auth-box h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-blue);
    font-size: 2rem;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.input-group input:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.btn-block {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.auth-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.auth-link a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.auth-link a:hover {
    text-decoration: underline;
}

/* Agent Page Styles */
.agent-page-container {
    padding-top: 80px; /* Space for fixed navbar */
    padding-bottom: 50px;
}

.highlight-text {
    z-index: 10;
    position: relative;
    /* Professional White Text for Dark Background */
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Stronger shadow for readability */
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem; /* Slightly larger */
    font-weight: 700;
    text-align: center;
    margin: 50px 0;
    padding: 0 20px;
    background: none; /* Remove gradient background clip */
    -webkit-background-clip: border-box; /* Reset clip */
    -webkit-text-fill-color: initial; /* Reset fill color */
    letter-spacing: 1px;
}

.content-section {
    padding: 60px 20px;
}

.content-section.alt-bg {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

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

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.content-section ul {
    list-style-type: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #555;
}

.content-section ul li::before {
    content: '\f00c'; /* FontAwesome check */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

.cta-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 235, 238, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.big-headline {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.agent-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-agent {
    padding: 15px 35px;
    font-size: 1.1rem;
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.btn-agent:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.2);
}

.btn-apply {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: var(--premium-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
    transition: all 0.3s ease;
}

.btn-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.4);
}

.agent-details {
    background: var(--white);
    padding: 60px 0;
    border-top: 1px solid #eee;
    transition: all 0.5s ease;
    opacity: 1;
    max-height: 2000px; /* Arbitrary large height for transition */
    overflow: hidden;
}

.agent-details.hidden {
    opacity: 0;
    max-height: 0;
    padding: 0;
    pointer-events: none;
}

.agent-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 40px;
}

.agent-details h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-blue);
    padding-left: 15px;
}

.agent-details h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .highlight-text {
        font-size: 2.5rem;
    }
    .big-headline {
        font-size: 2.2rem;
    }
    .agent-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-agent, .btn-apply {
        width: 100%;
        max-width: 300px;
    }
}


/* Aurora Premium Animation */
.hero-section {
    position: relative;
    overflow: hidden;
    background: #000; /* Dark base for aurora to pop */
}

.highlight-text {
    z-index: 10;
    position: relative;
    /* Professional White Text for Dark Background */
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Stronger shadow for readability */
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem; /* Slightly larger */
    font-weight: 700;
    text-align: center;
    margin: 50px 0;
    padding: 0 20px;
    background: none; /* Remove gradient background clip */
    -webkit-background-clip: border-box; /* Reset clip */
    -webkit-text-fill-color: initial; /* Reset fill color */
    letter-spacing: 1px;
}

.aurora-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0b0b 0%, #2c1a1a 100%); /* Deep rich dark red/brown base */
}

.aurora-item {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.7;
    animation: aurora-float 10s infinite alternate;
}

.aurora-item:nth-child(1) {
    top: -20%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: #d32f2f; /* Primary Red */
    animation-duration: 15s;
}

.aurora-item:nth-child(2) {
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: #ff5252; /* Secondary Red */
    animation-duration: 20s;
    animation-direction: alternate-reverse;
}

.aurora-item:nth-child(3) {
    top: 30%;
    left: 40%;
    width: 40%;
    height: 40%;
    background: #d4af37; /* Gold Accent */
    opacity: 0.4;
    animation-duration: 12s;
    animation-delay: 2s;
}

.aurora-item:nth-child(4) {
    bottom: 20%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: #4a148c; /* Deep Purple for depth */
    opacity: 0.5;
    animation-duration: 18s;
    animation-delay: 5s;
}

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


/* Benefits Section Premium Styles */
.benefits-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-intro h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--premium-gradient);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--premium-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(211, 47, 47, 0.15);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: all 0.4s ease;
}

.benefit-card:hover .icon-wrapper {
    background: var(--premium-gradient);
}

.benefit-card:hover .icon-wrapper i {
    color: #ffffff;
    transform: rotateY(360deg);
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}

.benefit-list li i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

/* Premium Homepage Refresh */
.home-page {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.10), transparent 30%),
        radial-gradient(circle at top right, rgba(211, 47, 47, 0.12), transparent 35%),
        linear-gradient(180deg, #fffdfb 0%, #fff6f6 55%, #ffffff 100%);
}

.premium-section {
    position: relative;
    padding: 100px 20px;
}

.premium-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.premium-panel {
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.home-hero {
    min-height: 100vh;
    padding: 100px 20px 60px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.35), transparent 30%),
        radial-gradient(circle at 80% 10%, rgba(255, 82, 82, 0.35), transparent 35%),
        linear-gradient(145deg, #1c0a0a 0%, #3d1414 45%, #0f0505 100%);
}

.home-hero-shell {
    width: min(1200px, 100%);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
    gap: 30px;
    align-items: center;
}

.home-hero-content {
    text-align: left;
    padding: 32px;
    border-radius: 32px;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 10;
}

.home-hero-badge,
.section-kicker,
.showcase-label,
.showcase-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-hero-badge {
    padding: 10px 16px;
    margin-bottom: 16px;
    color: #ffc107;
    background: rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.2);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.home-hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 12px;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 0%, #ffd54f 45%, #ffb300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}

.home-hero-subtitle {
    max-width: 640px;
    font-size: 1rem;
    line-height: 1.6;
    color: #f8f8f8;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    font-weight: 400;
}

.home-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    position: relative;
    z-index: 10;
}

.btn-ghost,
.btn-ghost-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-ghost-dark {
    color: #4a1111;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.btn-ghost-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(74, 17, 17, 0.12);
}

.home-hero-trustbar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 10px;
}

.trust-item {
    padding: 12px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(5px);
}

.trust-item strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.trust-item span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
}

.home-hero-showcase {
    border-radius: 32px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
}

.showcase-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.showcase-label {
    padding: 10px 14px;
    color: #b71c1c;
    background: rgba(211, 47, 47, 0.15);
}

.showcase-rating {
    padding: 10px 14px;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.15);
}

.showcase-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,245,245,0.95) 100%);
    border: 1px solid rgba(211, 47, 47, 0.08);
}

.showcase-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: #ffffff;
    background: linear-gradient(135deg, #d32f2f 0%, #ffc107 100%);
    box-shadow: 0 15px 30px rgba(211, 47, 47, 0.30);
}

.showcase-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #2a1010;
}

.showcase-card p,
.showcase-point span,
.section-heading p,
.service-card p,
.process-step p,
.testimonial-meta span,
.value-card p {
    color: #665b5b;
    line-height: 1.8;
}

.showcase-list {
    display: grid;
    gap: 14px;
}

.showcase-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.showcase-point i,
.destination-card i,
.service-card i,
.value-icon i {
    color: var(--primary-blue);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.metric-card {
    padding: 18px 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,242,242,0.95) 100%);
    text-align: center;
    box-shadow: 0 5px 15px rgba(183, 28, 28, 0.05);
}

.metric-card strong {
    display: block;
    font-size: 1.5rem;
    color: #4a1111;
    margin-bottom: 6px;
}

.metric-card span {
    color: #7b6b6b;
    font-size: 0.92rem;
}

.section-heading {
    width: min(1120px, 100%);
    margin: 0 auto 46px;
}

.section-heading.centered {
    text-align: center;
}

.section-kicker {
    padding: 10px 14px;
    margin-bottom: 18px;
    color: #8a6114;
    background: rgba(212, 175, 55, 0.12);
}

.section-heading h2,
.testimonial-card blockquote,
.cta-panel h2 {
    font-family: 'Playfair Display', serif;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.15;
    color: #2e1111;
    margin-bottom: 16px;
}

.section-heading p {
    max-width: 760px;
    font-size: 1.05rem;
}

.section-heading.centered p {
    margin: 0 auto;
}

.intro-band {
    padding-top: 80px;
}

.value-grid,
.services-grid,
.process-grid,
.destination-grid {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.value-card {
    padding: 34px 28px;
    border-radius: 28px;
}

.value-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    background: rgba(211, 47, 47, 0.10);
}

.value-icon i {
    font-size: 1.4rem;
}

.value-card h3,
.service-card h3,
.process-step h3,
.cta-panel h2 {
    color: #2a1010;
}

.value-card h3,
.service-card h3,
.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.services-strip {
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,247,247,0.8) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    padding: 30px 24px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(211, 47, 47, 0.08);
    box-shadow: 0 18px 40px rgba(76, 21, 21, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.destination-card:hover,
.process-step:hover,
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(101, 29, 29, 0.12);
}

.service-card i {
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.process-step {
    position: relative;
    padding: 30px 26px;
    border-radius: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-number {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #b71c1c;
}

.destinations-section {
    padding-top: 80px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.destination-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-decoration: none;
    padding: 24px;
    border-radius: 24px;
    color: #2b1111;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card span {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}

.testimonial-band {
    padding-top: 90px;
    padding-bottom: 90px;
}

.testimonial-card {
    width: min(960px, 100%);
    margin: 0 auto;
    padding: 42px;
    border-radius: 34px;
    text-align: center;
}

.testimonial-card blockquote {
    font-size: clamp(1.35rem, 3vw, 2.2rem);
    line-height: 1.5;
    color: #2f1313;
    margin: 12px auto 24px;
    max-width: 760px;
}

.testimonial-meta strong {
    display: block;
    margin-bottom: 6px;
    color: #4a1111;
}

.final-cta {
    padding-top: 0;
}

.cta-panel {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 40px;
    border-radius: 34px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, #5e1212 0%, #8f2626 55%, #c69520 100%);
    color: #ffffff;
    box-shadow: 0 28px 70px rgba(94, 18, 18, 0.25);
}

.cta-panel .section-kicker {
    color: #fff3d1;
    background: rgba(255, 255, 255, 0.12);
}

.cta-panel h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 14px;
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 640px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

footer {
    background: #fffaf8;
    padding: 28px 20px 36px;
    text-align: center;
    border-top: 1px solid rgba(211, 47, 47, 0.08);
}

footer p {
    color: #7a6a6a;
}

@media (max-width: 1200px) {
    .home-hero-shell,
    .value-grid,
    .services-grid,
    .process-grid,
    .destination-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 992px) {
    .home-hero {
        min-height: 100vh;
        height: auto;
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .home-hero-shell {
        grid-template-columns: 1fr;
    }

    .home-hero-content,
    .home-hero-showcase,
    .testimonial-card,
    .cta-panel {
        padding: 28px;
    }

    .home-hero-trustbar {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .trust-item {
        flex: 1 1 calc(33.333% - 10px);
        min-width: 140px;
        text-align: center;
    }
    .hero-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .hero-metrics .metric-card {
        padding: 10px;
    }
    .hero-metrics strong {
        font-size: 1.5rem;
    }
    .hero-metrics span {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .premium-section {
        padding: 74px 16px;
    }

    .home-hero-title {
        font-size: 2.7rem;
        max-width: none;
    }

    .home-hero-subtitle,
    .section-heading p,
    .service-card p,
    .process-step p,
    .value-card p {
        font-size: 0.98rem;
    }

    .value-grid,
    .services-grid,
    .process-grid,
    .destination-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-actions,
    .cta-actions {
        width: 100%;
    }

    .home-hero-actions .btn,
    .home-hero-actions .btn-ghost,
    .cta-actions .btn,
    .cta-actions .btn-ghost-dark {
        width: 100%;
        text-align: center;
    }

    .showcase-top {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
}

/* --- New Homepage Elements --- */
.stats-band {
    padding: 60px 20px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stats-container {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-box i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    background: linear-gradient(135deg, #d32f2f 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2a1010;
    display: inline-block;
    margin-bottom: 5px;
}

.stat-box span {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: bold;
    vertical-align: super;
}

.stat-box p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Marquee */
.partners-marquee {
    background: #fdfdfd;
    padding: 80px 0;
    overflow: hidden;
}

.marquee-wrapper {
    position: relative;
    width: 100vw;
    max-width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.marquee-content {
    display: flex;
    width: calc(250px * 12); /* Based on item width * items */
    animation: scroll 30s linear infinite;
}

.marquee-item {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.marquee-item:hover {
    opacity: 1;
    color: var(--primary-blue);
}

.marquee-item i {
    font-size: 1.8rem;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); } /* Half the total width to reset */
}

/* News Section */
.news-section {
    background: #fafafa;
}

.news-grid {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
}

.news-date {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.news-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.news-link:hover {
    gap: 12px;
}

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

@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
}

