html {
    scroll-behavior: smooth;
}

body {
    background-color: #0f1419;
    color: #ffffff;
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Enhanced Floating Navigation - Extra Light Background */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 20, 25, 0.6); /* Even more transparent for lighter feel */
    backdrop-filter: blur(12px); /* Lighter blur for better performance */
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    z-index: 9999;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.15); /* Much lighter shadow */
    transition: all 0.3s ease;
    opacity: 1;
    will-change: transform;
}

.navbar.scrolled {
    background: rgba(15, 20, 25, 0.75); /* Still lighter when scrolled */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom-color: rgba(212, 165, 116, 0.25);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px 32px; /* Slightly increased padding for better spacing */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px; /* Added gap for better uniform spacing */
}

.nav-brand h1 {
    color: #D4A574;
    font-size: 20px; /* Slightly smaller for horizontal layout */
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.8px;
    font-family: 'Inter', sans-serif;
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); /* Subtle text shadow only */
    white-space: nowrap; /* Keep it horizontal */
    display: flex;
    align-items: center;
    /* Remove any background styling - just letters */
    background: none;
    border: none;
    padding: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex: 1;
    margin-left: 40px;
}

.main-nav-group {
    display: flex;
    align-items: center;
    gap: 24px; /* Uniform spacing for main navigation */
}

.portal-nav-group {
    display: flex;
    align-items: center;
    gap: 16px; /* Slightly tighter spacing for portal links */
    margin-left: auto; /* Push to the right */
}

/* Uniform Button Style for All Navigation Items */
.nav-link {
    color: #D4A574 !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease; /* Consistent transition */
    position: relative;
    padding: 12px 20px; /* Standardized padding for consistent height */
    opacity: 1 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
    
    /* Button styling - matching website standard */
    border: 1px solid rgba(212, 165, 116, 0.4);
    border-radius: 14px; /* Match website standard border-radius */
    background: rgba(15, 20, 25, 0.3);
    backdrop-filter: blur(8px);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 44px; /* Consistent height for all navigation buttons */
    min-height: 44px;
}

/* Remove the old underline effect */
.nav-link::after {
    display: none;
}

.nav-link:hover {
    color: #D4A574 !important;
    background: rgba(212, 165, 116, 0.15);
    border-color: rgba(212, 165, 116, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.2);
}

/* Portal Navigation Group - Enhanced Uniformity */
.portal-nav-group {
    display: flex;
    align-items: center;
    gap: 8px; /* More uniform spacing */
    margin-left: 16px;
    flex-shrink: 0; /* Prevent shrinking on smaller screens */
}

.portal-nav-group .nav-link {
    padding: 7px 14px; /* More contained and uniform */
    border-radius: 18px;
    border: 1px solid rgba(212, 165, 116, 0.4);
    transition: all 0.2s ease; /* Faster transition for lighter feel */
    font-size: 13px;
    font-weight: 500;
    background: rgba(15, 20, 25, 0.3); /* Consistent with phone button */
    white-space: nowrap; /* Prevent text wrapping */
}

.portal-nav-group .nav-link i {
    font-size: 12px;
    margin-right: 4px;
}

.portal-nav-group .nav-link:hover {
    background: rgba(212, 165, 116, 0.15);
    border-color: rgba(212, 165, 116, 0.6);
    transform: translateY(-1px);
}

.portal-nav-group .register-btn {
    background: rgba(212, 165, 116, 0.2);
    border-color: rgba(212, 165, 116, 0.6);
}

.portal-nav-group .register-btn:hover {
    background: rgba(212, 165, 116, 0.9);
    color: #0f1419;
    border-color: #D4A574;
}

/* Enhanced Phone Number Container */
.nav-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap; /* Prevent text wrapping */
}



/* Phone button with identical styling to nav-link buttons */
.elegant-phone {
    color: #D4A574 !important;
    text-decoration: none;
    font-weight: 500; /* Same as nav-link */
    font-family: 'Inter', sans-serif;
    font-size: 14px; /* Same as nav-link */
    letter-spacing: 0.3px; /* Same as nav-link */
    
    /* Identical button styling to nav-link */
    padding: 12px 20px; /* Same standardized padding */
    border: 1px solid rgba(212, 165, 116, 0.4); /* Same as nav-link */
    border-radius: 14px; /* Match website standard border-radius */
    background: rgba(15, 20, 25, 0.3); /* Same as nav-link */
    backdrop-filter: blur(8px); /* Same as nav-link */
    
    transition: all 0.3s ease; /* Same as nav-link */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7); /* Same as nav-link */
    white-space: nowrap;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 44px; /* Same height as nav-link buttons */
    min-height: 44px;
    min-width: fit-content;
    flex-shrink: 0;
}

.elegant-phone:hover {
    color: #D4A574 !important; /* Same hover as nav-link */
    background: rgba(212, 165, 116, 0.15); /* Same hover as nav-link */
    border-color: rgba(212, 165, 116, 0.6); /* Same hover as nav-link */
    transform: translateY(-1px); /* Same hover as nav-link */
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.2); /* Same hover as nav-link */
}

.elegant-phone i {
    font-size: 13px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    margin-right: 15px;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #D4A574;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Styles - Optimized Performance */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        flex-wrap: wrap;
        padding: 8px 20px; /* Adjusted for mobile */
        gap: 12px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 56px; /* Adjusted for new navbar height */
        left: 0;
        right: 0;
        background: rgba(15, 20, 25, 0.92); /* Consistent with main navbar transparency */
        backdrop-filter: blur(12px); /* Lighter blur for performance */
        flex-direction: column;
        padding: 16px;
        gap: 16px; /* More uniform spacing */
        border-bottom: 1px solid rgba(212, 165, 116, 0.25);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
        z-index: 999;
        animation: slideDown 0.2s ease-out; /* Faster animation */
        will-change: opacity, transform; /* Performance optimization */
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 14px 20px; /* More uniform padding */
        border-radius: 12px;
        transition: all 0.2s ease; /* Faster transition */
        font-size: 16px; /* Slightly larger for mobile */
        border: 1px solid transparent;
    }
    
    .nav-link:hover, .nav-link:focus {
        background: rgba(212, 165, 116, 0.15);
        border-color: rgba(212, 165, 116, 0.3);
        transform: none; /* Remove transform on mobile for performance */
    }
    
    /* Mobile phone contact - show at bottom */
    .nav-contact {
        order: 999;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(212, 165, 116, 0.2);
        justify-content: center;
    }
    

    
    .elegant-phone {
        font-size: 13px;
        padding: 8px 14px;
        border-radius: 20px;
    }
    
    body.mobile-menu-open {
        overflow: hidden;
    }
}

/* Tablet Navigation Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-container {
        padding: 8px 24px;
        gap: 16px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .portal-nav-group {
        gap: 8px;
        margin-left: 12px;
    }
    

    
    .elegant-phone {
        font-size: 13px;
        padding: 9px 16px;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
    position: relative;
    overflow: hidden;
}

/* Hero Video Background Styles */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

/* Fallback image for video */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Bluish filter overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(27, 54, 93, 0.85) 0%,
        rgba(15, 20, 25, 0.75) 50%,
        rgba(27, 54, 93, 0.85) 100%
    );
    mix-blend-mode: multiply;
    z-index: 1;
}

.orbs-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 1);
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(212, 165, 116, 0.3) 0%, rgba(27, 54, 93, 0.2) 50%, rgba(212, 165, 116, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    animation: float 20s ease-in-out infinite alternate;
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
}

.orb-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: -2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 20%;
    animation-delay: -4s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0.2; }
    100% { transform: translate(20px, -15px) rotate(90deg); opacity: 0.4; }
}

.hero-content {
    text-align: center;
    max-width: 1300px; /* Even wider rectangle */
    padding: 60px 50px; /* More generous padding */
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.4); /* 60% transparency (was 80%, now 20% more transparent) */
    backdrop-filter: blur(30px);
    border: 2px solid rgba(212, 165, 116, 0.4);
    border-radius: 28px;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.7),
        0 0 50px rgba(212, 165, 116, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
    /* Increased top margin to keep floating box clear of the top banner */
    margin: 160px auto 20px;
    animation: floatingBox 15s ease-in-out infinite;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-content:hover {
    /* Reduce upward lift on hover so the box doesn't touch the top banner */
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.8),
        0 0 80px rgba(212, 165, 116, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(212, 165, 116, 0.6);
    animation-play-state: paused;
}

.hero-content:hover::before {
    opacity: 1;
    animation-duration: 3s;
}

.hero-content:hover::after {
    opacity: 0.8;
    transform: scale(1.2);
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg,
        rgba(212, 165, 116, 0.4) 0%,
        rgba(27, 54, 93, 0.3) 25%,
        rgba(212, 165, 116, 0.4) 50%,
        rgba(27, 54, 93, 0.3) 75%,
        rgba(212, 165, 116, 0.4) 100%);
    background-size: 400% 400%;
    border-radius: 30px;
    z-index: -1;
    animation: floatingGlow 25s ease-in-out infinite;
    opacity: 0.6;
}

.hero-content::after {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    right: -80px;
    bottom: -80px;
    background: radial-gradient(ellipse at center,
        rgba(15, 20, 25, 0.95) 0%,
        rgba(27, 54, 93, 0.85) 30%,
        rgba(15, 20, 25, 0.65) 50%,
        rgba(212, 165, 116, 0.05) 70%,
        transparent 100%);
    border-radius: 50px;
    z-index: -2;
    animation: floatingAura 30s ease-in-out infinite;
}

@keyframes floatingBox {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.6),
            0 0 40px rgba(212, 165, 116, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: translateY(-5px) scale(1.01);
        box-shadow:
            0 25px 70px rgba(0, 0, 0, 0.65),
            0 0 50px rgba(212, 165, 116, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }
}

@keyframes floatingGlow {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.6;
    }
    25% {
        background-position: 100% 50%;
        opacity: 0.8;
    }
    50% {
        background-position: 200% 50%;
        opacity: 0.6;
    }
    75% {
        background-position: 300% 50%;
        opacity: 0.8;
    }
}

@keyframes floatingAura {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: scale(1.1) rotate(120deg);
        opacity: 0.5;
    }
    66% {
        transform: scale(0.9) rotate(240deg);
        opacity: 0.3;
    }
}

/* Floating Particles Around Hero Content */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.8) 0%, rgba(212, 165, 116, 0.2) 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.4);
}

.particle-1 {
    top: 20%;
    left: 15%;
    animation: floatParticle1 35s ease-in-out infinite;
}

.particle-2 {
    top: 30%;
    right: 20%;
    animation: floatParticle2 40s ease-in-out infinite;
}

.particle-3 {
    top: 60%;
    left: 10%;
    animation: floatParticle3 32s ease-in-out infinite;
}

.particle-4 {
    top: 70%;
    right: 15%;
    animation: floatParticle4 38s ease-in-out infinite;
}

.particle-5 {
    top: 40%;
    left: 80%;
    animation: floatParticle5 33s ease-in-out infinite;
    display: none; /* Hidden to reduce quantity */
}

.particle-6 {
    top: 80%;
    left: 70%;
    animation: floatParticle6 36s ease-in-out infinite;
    display: none; /* Hidden to reduce quantity */
}

@keyframes floatParticle1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(10px, -8px) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-6px, -15px) scale(0.9);
        opacity: 0.3;
    }
    75% {
        transform: translate(8px, -4px) scale(1.05);
        opacity: 0.5;
    }
}

@keyframes floatParticle2 {
    0%, 100% {
        transform: translate(0, 0) scale(0.8);
        opacity: 0.5;
    }
    33% {
        transform: translate(-10px, 12px) scale(1.1);
        opacity: 0.7;
    }
    66% {
        transform: translate(15px, -8px) scale(0.8);
        opacity: 0.2;
    }
}

@keyframes floatParticle3 {
    0%, 100% {
        transform: translate(0, 0) scale(1.1);
        opacity: 0.7;
    }
    40% {
        transform: translate(20px, -14px) scale(0.95);
        opacity: 0.4;
    }
    80% {
        transform: translate(-12px, 10px) scale(1.15);
        opacity: 0.8;
    }
}

@keyframes floatParticle4 {
    0%, 100% {
        transform: translate(0, 0) scale(0.9);
        opacity: 0.6;
    }
    50% {
        transform: translate(-15px, -12px) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes floatParticle5 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    30% {
        transform: translate(-35px, 40px) scale(0.7);
        opacity: 0.3;
    }
    70% {
        transform: translate(25px, -25px) scale(1.3);
        opacity: 0.8;
    }
}

@keyframes floatParticle6 {
    0%, 100% {
        transform: translate(0, 0) scale(1.2);
        opacity: 0.4;
    }
    45% {
        transform: translate(45px, -50px) scale(0.8);
        opacity: 0.7;
    }
    90% {
        transform: translate(-20px, 15px) scale(1.1);
        opacity: 0.6;
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #D4A574;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    position: relative;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    text-stroke: 1px rgba(255, 255, 255, 0.15);
    background: none;
    border: none;
    padding: 0;
    font-family: 'Inter', Arial, sans-serif; /* Consistent with buttons */
}

/* Clean title without background effects */


.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: none;
    border: none;
    padding: 0;
    backdrop-filter: none;
    font-family: 'Inter', Arial, sans-serif; /* Consistent font */
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 36px;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 6px;
    font-family: 'Inter', Arial, sans-serif;
}

.btn span {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

.btn-primary {
    background: linear-gradient(135deg, #1B365D, #2a4a6b);
    color: #ffffff;
    border: 1px solid #D4A574;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 54, 93, 0.4), 0 0 30px rgba(212, 165, 116, 0.2);
    border-color: #e6c192;
}

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

.btn-secondary {
    background: rgba(212, 165, 116, 0.1);
    color: #D4A574;
    border: 1px solid #D4A574;
}

.btn-secondary:hover {
    background: #D4A574;
    color: #1B365D;
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    background: none;
    border: none;
    padding: 0;
}

/* Ensure hero buttons are always visible */
.hero-button-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    display: inline-flex !important;
    animation: heroButtonFadeIn 0.8s ease-out forwards;
}

@keyframes heroButtonFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for hero buttons */
.hero-button-visible:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-button-visible:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.stat-item {
    text-align: center;
    padding: 8px;
    background: none;
    border: none;
    box-shadow: none;
}

.stat-number {
    font-size: 30px;
    font-weight: 700;
    color: #D4A574;
    margin-bottom: 4px;
    line-height: 1;
    background: none;
    border: none;
    padding: 0;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    background: none;
    border: none;
    padding: 0;
}

/* Hero Section Phone Button - Perfect Rectangle with Classy Animation */
.hero-phone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 32px; /* More rectangular padding */
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.3), rgba(192, 152, 88, 0.2));
    color: #D4A574 !important; /* Lighter text color */
    text-decoration: none;
    border-radius: 8px; /* More rectangular, less rounded */
    font-weight: 500; /* Less heavy font weight */
    font-size: 20px; /* Larger for clear readability */
    letter-spacing: 1px; /* Clear spacing for numbers */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Classy easing */
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.2);
    border: 2px solid rgba(212, 165, 116, 0.4);
    margin-bottom: 8px;
    min-width: 280px; /* Perfect rectangle width */
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', Arial, sans-serif; /* Consistent font */
}

/* Classy animation effect */
.hero-phone-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.hero-phone-button:hover::before {
    left: 100%;
}

.hero-phone-button:hover {
    background: linear-gradient(135deg, rgba(226, 184, 133, 0.9), rgba(212, 165, 116, 0.9));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
    color: #0f1419 !important;
    border-color: rgba(212, 165, 116, 0.8);
}

.hero-phone-button i {
    font-size: 16px;
}

/* New Hero Middle Line - Horizontal Features */
.hero-middle-line {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.hero-feature {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 20px;
    background: rgba(212, 165, 116, 0.1);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    font-family: 'Inter', Arial, sans-serif; /* Consistent font */
}

.hero-separator {
    color: #D4A574;
    font-size: 20px;
    opacity: 0.7;
}

/* Hero Call Section */
.hero-call-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.hero-call-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', Arial, sans-serif; /* Consistent font */
}

/* Hero Background Image - Subtle Integration */
.hero-background {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-background img,
.hero-background picture,
.hero-image-picture {
    width: 100%;
    height: 100%;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
    filter: brightness(0.9) contrast(1.1);
    transform: none;
    image-rendering: auto;
    display: block;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Ensure proper z-index layering */
.orbs-container {
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Critical Visual Hierarchy Fixes */
.hero {
    background-attachment: fixed;
}

.hero-content {
    /* Ensure base hero content is pushed lower to avoid overlaps */
    margin-top: 160px;
    margin-bottom: 20px;
}

.hero-buttons {
    margin-top: 32px;
    z-index: 10;
    position: relative;
}

/* Ensure proper section spacing */
.hero + section,
.hero + .section {
    margin-top: 0;
    padding-top: 80px;
    border-top: 1px solid rgba(212, 165, 116, 0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding-top: 80px;
    }

    .hero-content {
        /* Mobile: increase top spacing to prevent overlap with header */
        margin: 100px 15px 20px;
        padding: 40px 28px;
        animation: floatingBoxMobile 8s ease-in-out infinite;
    }

    .hero-content:hover {
        transform: translateY(-6px) scale(1.02);
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.1;
        opacity: 1;
        transform: translateY(0);
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
        text-stroke: 1px rgba(255, 255, 255, 0.12);
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 35px;
        max-width: 100%;
    }

    .nav-brand h1 {
        font-size: 24px;
    }

    .phone-link span {
        display: none;
    }

    .orb-1 { width: 200px; height: 200px; }
    .orb-2 { width: 150px; height: 150px; }
    .orb-3 { width: 100px; height: 100px; }

    /* Hero background mobile adjustments */
    .hero-background img {
        opacity: 0.95;
        filter: none;
    }

    /* Reduce particle effects on mobile for performance */
    .hero-particles {
        display: none;
    }

    .hero-content::before,
    .hero-content::after {
        animation-duration: 12s;
    }
}

@keyframes floatingBoxMobile {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.01);
    }
}

/* Services Section */
.services {
    padding: 96px 0;
    background: linear-gradient(180deg, #0f1419 0%, #151b23 50%, #0f1419 100%);
}

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

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    padding: 32px;
    text-align: center;
    background: rgba(27, 54, 93, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    transition: all 0.3s ease;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(31, 38, 135, 0.6);
    background: rgba(27, 54, 93, 0.15);
    border-color: rgba(212, 165, 116, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #1B365D, #2a4a6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(27, 54, 93, 0.5);
}

.service-icon i {
    font-size: 32px;
    color: #D4A574;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: #ffffff;
    transform: scale(1.1);
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #D4A574;
}

.service-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: auto;
}

.feature-tag {
    display: inline-block;
    padding: 4px 8px;
    background: rgba(212, 165, 116, 0.1);
    color: #D4A574;
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.service-card:hover .feature-tag {
    background: rgba(212, 165, 116, 0.2);
    border-color: #D4A574;
    transform: translateY(-2px);
}

/* Image Gallery Section */
.image-gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(27, 54, 93, 0.85) 0%,
        rgba(27, 54, 93, 0.6) 50%,
        rgba(15, 20, 25, 0.85) 100%
    );
    mix-blend-mode: multiply;
    pointer-events: none;
}

.gallery-item:hover .gallery-image {
    opacity: 0.85;
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(
        to top,
        rgba(15, 20, 25, 0.95) 0%,
        rgba(15, 20, 25, 0.8) 50%,
        rgba(15, 20, 25, 0) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-caption h4 {
    font-size: 20px;
    font-weight: 600;
    color: #D4A574;
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
}

.gallery-caption p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* Add elegant fade effect to images */
.gallery-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0.4) 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-image-wrapper {
        height: 250px;
    }
    
    .gallery-caption {
        padding: 20px;
        transform: translateY(0);
        opacity: 1;
    }
}

/* Premium Features Section */
.premium-features {
    padding: 96px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
    position: relative;
}

.premium-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="premium-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23D4A574" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23premium-pattern)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.feature-card {
    padding: 40px 32px;
    background: rgba(27, 54, 93, 0.12);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 165, 116, 0.25);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(212, 165, 116, 0.4);
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(212, 165, 116, 0.1));
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    position: relative;
}

.feature-icon i {
    font-size: 32px;
    color: #D4A574;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.3), rgba(212, 165, 116, 0.2));
    border-color: #D4A574;
}

.feature-card:hover .feature-icon i {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.5);
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #D4A574;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 16px;
}

.feature-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.benefit-tag {
    background: rgba(212, 165, 116, 0.15);
    color: #D4A574;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover .benefit-tag {
    background: rgba(212, 165, 116, 0.25);
    border-color: #D4A574;
    transform: translateY(-2px);
}

/* Privacy & Discretion Features Section */
.privacy-features {
    padding: 96px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 50%, #1a2332 100%);
    position: relative;
}

.privacy-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="shield-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><polygon points="12.5,5 20,12.5 12.5,20 5,12.5" fill="%23D4A574" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23shield-pattern)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.privacy-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 64px;
}

.privacy-card {
    padding: 48px 40px;
    background: rgba(15, 20, 25, 0.6);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.privacy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.15), transparent);
    transition: left 0.8s ease;
}

.privacy-card:hover::before {
    left: 100%;
}

.privacy-card:hover {
    transform: translateY(-16px) scale(1.04);
    border-color: #D4A574;
    box-shadow: 0 25px 80px rgba(212, 165, 116, 0.2);
    background: rgba(15, 20, 25, 0.8);
}

.privacy-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.25), rgba(212, 165, 116, 0.15));
    border: 3px solid rgba(212, 165, 116, 0.4);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.5s ease;
    position: relative;
}

.privacy-icon i {
    font-size: 36px;
    color: #D4A574;
    transition: all 0.5s ease;
}

.privacy-card:hover .privacy-icon {
    transform: scale(1.2) rotate(10deg);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.4), rgba(212, 165, 116, 0.25));
    border-color: #ffffff;
    box-shadow: 0 0 30px rgba(212, 165, 116, 0.3);
}

.privacy-card:hover .privacy-icon i {
    color: #ffffff;
    text-shadow: 0 0 25px rgba(212, 165, 116, 0.6);
}

.privacy-title {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

.privacy-card:hover .privacy-title {
    color: #D4A574;
}

.privacy-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 16px;
}

.privacy-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.privacy-tag {
    background: rgba(212, 165, 116, 0.18);
    color: #D4A574;
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(212, 165, 116, 0.25);
    transition: all 0.4s ease;
}

.privacy-card:hover .privacy-tag {
    background: rgba(212, 165, 116, 0.3);
    border-color: #D4A574;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.2);
}

/* Experience Tools Section */
.experience-tools {
    padding: 96px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    position: relative;
}

.experience-tools::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tools-pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23D4A574" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23tools-pattern)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.experience-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 48px;
    margin-top: 64px;
}

.tool-card {
    padding: 56px 48px;
    background: rgba(27, 54, 93, 0.15);
    backdrop-filter: blur(35px);
    border: 2px solid rgba(212, 165, 116, 0.2);
    border-radius: 28px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.12), transparent);
    transition: left 1s ease;
}

.tool-card:hover::before {
    left: 100%;
}

.tool-card:hover {
    transform: translateY(-20px) scale(1.05);
    border-color: rgba(212, 165, 116, 0.5);
    box-shadow: 0 30px 100px rgba(212, 165, 116, 0.25);
    background: rgba(27, 54, 93, 0.25);
}

.tool-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.3), rgba(212, 165, 116, 0.2));
    border: 3px solid rgba(212, 165, 116, 0.5);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: all 0.6s ease;
    position: relative;
}

.tool-icon i {
    font-size: 40px;
    color: #D4A574;
    transition: all 0.6s ease;
}

.tool-card:hover .tool-icon {
    transform: scale(1.25) rotate(15deg);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.5), rgba(212, 165, 116, 0.3));
    border-color: #ffffff;
    box-shadow: 0 0 40px rgba(212, 165, 116, 0.4);
}

.tool-card:hover .tool-icon i {
    color: #ffffff;
    text-shadow: 0 0 30px rgba(212, 165, 116, 0.7);
}

.tool-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    transition: color 0.5s ease;
}

.tool-card:hover .tool-title {
    color: #D4A574;
}

.tool-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 32px;
    font-size: 17px;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tool-tag {
    background: rgba(212, 165, 116, 0.2);
    color: #D4A574;
    padding: 12px 20px;
    border-radius: 28px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(212, 165, 116, 0.3);
    transition: all 0.5s ease;
}

.tool-card:hover .tool-tag {
    background: rgba(212, 165, 116, 0.35);
    border-color: #D4A574;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.25);
}


/* Priority Access & Benefits Section */
.priority-access {
    padding: 96px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
    position: relative;
}

.priority-access::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="crown-pattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><polygon points="25,10 30,20 35,15 40,25 30,30 25,25 20,30 10,25 15,15 20,20" fill="%23D4A574" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23crown-pattern)"/></svg>');
    opacity: 0.7;
    pointer-events: none;
}

.priority-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 64px;
    justify-items: center;
}

.priority-card {
    padding: 80px 64px;
    max-width: 800px;
    width: 100%;
    background: rgba(27, 54, 93, 0.2);
    backdrop-filter: blur(50px);
    border: 4px solid rgba(212, 165, 116, 0.4);
    border-radius: 40px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.priority-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 1.5s ease;
}

.priority-card:hover::before {
    left: 100%;
}

.priority-card:hover {
    transform: translateY(-32px) scale(1.08);
    border-color: #D4A574;
    box-shadow: 0 50px 150px rgba(212, 165, 116, 0.4);
    background: rgba(27, 54, 93, 0.3);
}

.priority-icon {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.5), rgba(212, 165, 116, 0.3));
    border: 5px solid rgba(212, 165, 116, 0.7);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 48px;
    transition: all 0.8s ease;
    position: relative;
}

.priority-icon i {
    font-size: 56px;
    color: #D4A574;
    transition: all 0.8s ease;
}

.priority-card:hover .priority-icon {
    transform: scale(1.4) rotate(25deg);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.7), rgba(212, 165, 116, 0.5));
    border-color: #ffffff;
    box-shadow: 0 0 60px rgba(212, 165, 116, 0.6);
}

.priority-card:hover .priority-icon i {
    color: #ffffff;
    text-shadow: 0 0 50px rgba(212, 165, 116, 1);
}

.priority-title {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 32px;
    transition: color 0.7s ease;
}

.priority-card:hover .priority-title {
    color: #D4A574;
}

.priority-description {
    color: rgba(255, 255, 255, 1);
    line-height: 1.8;
    margin-bottom: 48px;
    font-size: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.priority-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.priority-tag {
    background: rgba(212, 165, 116, 0.3);
    color: #D4A574;
    padding: 20px 28px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid rgba(212, 165, 116, 0.5);
    transition: all 0.7s ease;
}

.priority-card:hover .priority-tag {
    background: rgba(212, 165, 116, 0.5);
    border-color: #D4A574;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 165, 116, 0.4);
    color: #ffffff;
}



/* Lazy Loading Images */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy.loaded {
    opacity: 1;
}

/* Image Loading Placeholder */
.lazy:not(.loaded) {
    background: linear-gradient(90deg, rgba(212, 165, 116, 0.1) 0%, rgba(212, 165, 116, 0.2) 50%, rgba(212, 165, 116, 0.1) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

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

.hub-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(27, 54, 93, 0.05);
    border: 1px solid rgba(212, 165, 116, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(27, 54, 93, 0.1);
    border-color: rgba(212, 165, 116, 0.3);
    transform: translateY(-4px);
}

.feature-item .feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1B365D, #2a4a6b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 165, 116, 0.2);
    flex-shrink: 0;
}

.feature-item .feature-icon i {
    font-size: 20px;
    color: #D4A574;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.hub-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.hub-btn {
    min-width: 220px;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 600;
}

/* Responsive for Information Hub */
@media (max-width: 768px) {
    .hub-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hub-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hub-actions {
        flex-direction: column;
        gap: 16px;
    }

    .hub-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Contact Section */
.contact {
    padding: 96px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    text-align: center;
    background: rgba(27, 54, 93, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.contact-header {
    margin-bottom: 48px;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.contact-actions .btn {
    min-width: 250px;
    padding: 20px 32px;
    font-size: 18px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.info-item i {
    color: #D4A574;
    font-size: 16px;
}

/* Footer */
.footer {
    background: rgba(15, 20, 25, 0.95);
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    padding: 32px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand h3 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 18px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
    font-size: 14px;
}

.footer-contact a {
    color: #D4A574;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #ffffff;
}

/* Healthcare News Section */
.healthcare-news-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f1419 0%, #151b23 50%, #0f1419 100%);
    position: relative;
}

.healthcare-news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* About Section */
.about {
    padding: 96px 0;
    background: linear-gradient(180deg, #151b23 0%, #0f1419 50%, #151b23 100%);
}

.about-lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 48px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 64px;
}

.value-item {
    text-align: center;
    padding: 32px 24px;
    background: rgba(27, 54, 93, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-8px);
    background: rgba(27, 54, 93, 0.12);
    border-color: rgba(212, 165, 116, 0.4);
    box-shadow: 0 20px 40px rgba(31, 38, 135, 0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #1B365D, #2a4a6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
    border-color: rgba(212, 165, 116, 0.6);
}

.value-icon i {
    font-size: 32px;
    color: #D4A574;
}

.value-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.value-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 600;
    color: #D4A574;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ Section */
.faq {
    padding: 96px 0;
    background: linear-gradient(180deg, #0f1419 0%, #151b23 50%, #0f1419 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.faq-item {
    background: rgba(27, 54, 93, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(27, 54, 93, 0.12);
    border-color: rgba(212, 165, 116, 0.4);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.faq-question i {
    color: #D4A574;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 24px 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Mobile responsive for new sections */
@media (max-width: 768px) {
    .about-values {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Dual Chat System Styles */
.chat-triggers-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.chat-trigger-custom {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1B365D, #2a4a6b);
    border: 2px solid rgba(212, 165, 116, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.4);
    position: relative;
    overflow: visible;
}

.chat-trigger-custom:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(31, 38, 135, 0.6);
}

.chat-trigger-custom.ai-chat {
    background: linear-gradient(135deg, #2a4a6b, #1B365D);
}

.chat-trigger-custom.live-chat {
    background: linear-gradient(135deg, #D4A574, #E5B887);
}

.chat-trigger-custom.live-chat .chat-icon i {
    color: #1B365D;
}

.chat-label {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(27, 54, 93, 0.95);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 165, 116, 0.3);
}

.chat-trigger-custom:hover .chat-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-8px);
}

.chat-icon {
    color: #D4A574;
    font-size: 24px;
    transition: all 0.3s ease;
}

.chat-pulse {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #4CAF50;
    border-radius: 50%;
    border: 2px solid #ffffff;
    animation: pulse 2s infinite;
}

.chat-status-indicator {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background: #4CAF50;
    border-radius: 50%;
    border: 3px solid #ffffff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* Mobile adjustments for dual chat */
@media (max-width: 768px) {
    .chat-triggers-container {
        bottom: 20px;
        right: 20px;
    }

    .chat-trigger-custom {
        width: 55px;
        height: 55px;
    }

    .chat-label {
        display: none;
    }
}

/* AI Chat Modal Styles */
.chat-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.chat-modal.active {
    display: flex;
}

.chat-container {
    width: 400px;
    height: 600px;
    max-height: 90vh;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.chat-header {
    background: linear-gradient(135deg, #D4A574, #e8c49a);
    color: #0f1419;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(15, 20, 25, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f1419;
}

.chat-details h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.status {
    font-size: 12px;
    opacity: 0.8;
}

.status.online::before {
    content: '●';
    color: #4CAF50;
    margin-right: 4px;
}

.chat-close {
    background: none;
    border: none;
    color: #0f1419;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.chat-close:hover {
    background: rgba(15, 20, 25, 0.1);
}

.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.chat-message.user {
    align-self: flex-end;
}

.chat-message.bot {
    align-self: flex-start;
}

.message-content {
    background: rgba(27, 54, 93, 0.3);
    padding: 12px 16px;
    border-radius: 12px;
    color: #ffffff;
    line-height: 1.4;
}

.chat-message.user .message-content {
    background: rgba(212, 165, 116, 0.3);
    color: #ffffff;
}

.message-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    align-self: flex-end;
}

.chat-message.bot .message-time {
    align-self: flex-start;
}

.quick-actions {
    display: flex;
    gap: 8px;
    padding: 12px 16px 8px;
    flex-wrap: wrap;
}

.quick-btn {
    background: rgba(212, 165, 116, 0.2);
    border: 1px solid rgba(212, 165, 116, 0.3);
    color: #D4A574;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-btn:hover {
    background: rgba(212, 165, 116, 0.3);
    border-color: #D4A574;
}

.chat-input-wrapper {
    display: flex;
    padding: 8px 16px 16px;
    gap: 8px;
}

.chat-input-wrapper input {
    flex: 1;
    background: rgba(27, 54, 93, 0.2);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
}

.chat-input-wrapper input:focus {
    outline: none;
    border-color: #D4A574;
}

.chat-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.send-btn {
    background: linear-gradient(135deg, #D4A574, #e8c49a);
    border: none;
    color: #0f1419;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.chat-footer {
    padding: 12px 16px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.client-portal-btn {
    width: 100%;
    background: linear-gradient(135deg, #1B365D, #2a4a6b);
    border: 1px solid #D4A574;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.client-portal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 54, 93, 0.4);
}

/* Native Chat Widget Styling - No External Dependencies */
.native-chat-widget {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 350px !important;
    max-width: calc(100vw - 40px) !important;
    height: 500px !important;
    max-height: calc(100vh - 120px) !important;

    /* Custom styling to match website */
    border-radius: 16px !important;
    border: 2px solid #D4A574 !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 165, 116, 0.1) !important;
    background: rgba(15, 20, 25, 0.95) !important;
    backdrop-filter: blur(30px) !important;

    /* Ensure it appears above other elements */
    z-index: 9999 !important;

    /* Smooth transitions */
    transition: all 0.3s ease !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .native-chat-widget {
        bottom: 10px !important;
        right: 10px !important;
        left: 10px !important;
        width: calc(100vw - 20px) !important;
        height: 60vh !important;
        max-height: 400px !important;
    }
}

/* Custom Chat Trigger Button - Your Designed Button */
.chat-trigger-custom {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: rgba(27, 54, 93, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000 !important;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.4);
}

.chat-trigger-custom:hover {
    transform: scale(1.1);
    background: rgba(27, 54, 93, 1);
    border-color: rgba(212, 165, 116, 0.6);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.6);
}

.chat-trigger-custom .chat-icon {
    color: #D4A574;
    font-size: 24px;
}

.chat-trigger-custom .chat-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #D4A574;
    border-radius: 50%;
    animation: chatPulse 2s infinite;
}

@keyframes chatPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Lead Magnet Modal */
.lead-magnet-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lead-magnet-modal.active {
    display: flex;
}

.modal-content {
    max-width: 500px;
    width: 90%;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #D4A574;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ffffff;
}

.lead-magnet-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.lead-magnet-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.6;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-group label {
    color: #D4A574;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    background: rgba(27, 54, 93, 0.2);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #D4A574;
    background: rgba(27, 54, 93, 0.3);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.lead-form .btn {
    margin-top: 16px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.trust-item i {
    color: #D4A574;
}

/* Advanced Modal Styles */
.urgency-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin: 24px 0;
    color: #FFC107;
    font-size: 14px;
    font-weight: 500;
}

.consultation-benefits {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

/* Slide-in notification styles */
.slide-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 300px;
    background: rgba(27, 54, 93, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    padding: 20px;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.slide-notification.show {
    transform: translateX(0);
}

/* Chat widget enhancements */
.chat-status-indicator {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border: 2px solid #0f1419;
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Interactive Care Assessment Styles */
.care-assessment {
    padding: 96px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
}

.assessment-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(27, 54, 93, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.assessment-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 3px;
    margin-right: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #D4A574, #F4C2A1);
    border-radius: 3px;
    width: 16.67%;
    transition: width 0.5s ease;
}

.progress-text {
    color: #D4A574;
    font-weight: 600;
    font-size: 14px;
}

.assessment-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.assessment-step.active {
    display: block;
}

.assessment-step h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.option-card {
    background: rgba(27, 54, 93, 0.1);
    border: 2px solid rgba(212, 165, 116, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: rgba(212, 165, 116, 0.5);
    background: rgba(27, 54, 93, 0.15);
    transform: translateY(-4px);
}

.option-card.selected {
    border-color: #D4A574;
    background: rgba(212, 165, 116, 0.1);
    box-shadow: 0 8px 32px rgba(212, 165, 116, 0.3);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.option-icon i {
    font-size: 24px;
    color: #D4A574;
}

.option-card h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.option-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.option-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(27, 54, 93, 0.1);
    border: 2px solid rgba(212, 165, 116, 0.2);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-item:hover {
    border-color: rgba(212, 165, 116, 0.5);
    background: rgba(27, 54, 93, 0.15);
}

.option-item.selected {
    border-color: #D4A574;
    background: rgba(212, 165, 116, 0.1);
}

.option-content h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.option-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.urgency-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.urgency-badge.urgent {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.urgency-badge.high {
    background: rgba(255, 152, 0, 0.2);
    color: #FF9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.urgency-badge.medium {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.urgency-badge.low {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.hours-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.hours-option {
    background: rgba(27, 54, 93, 0.1);
    border: 2px solid rgba(212, 165, 116, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hours-option:hover {
    border-color: rgba(212, 165, 116, 0.5);
    background: rgba(27, 54, 93, 0.15);
    transform: translateY(-4px);
}

.hours-option.selected {
    border-color: #D4A574;
    background: rgba(212, 165, 116, 0.1);
    box-shadow: 0 8px 32px rgba(212, 165, 116, 0.3);
}

.hours-number {
    font-size: 36px;
    font-weight: 700;
    color: #D4A574;
    margin-bottom: 8px;
}

.hours-label {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 4px;
}

.hours-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.assessment-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.assessment-navigation .btn {
    padding: 16px 32px;
    font-size: 16px;
}

.assessment-navigation .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.hours-option {
    background: rgba(27, 54, 93, 0.1);
    border: 2px solid rgba(212, 165, 116, 0.2);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hours-option:hover {
    border-color: rgba(212, 165, 116, 0.5);
    background: rgba(27, 54, 93, 0.15);
}

.hours-option.selected {
    border-color: #D4A574;
    background: rgba(212, 165, 116, 0.1);
}

.hours-number {
    font-size: 32px;
    font-weight: 700;
    color: #D4A574;
    line-height: 1;
}

.hours-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.hours-description {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.budget-slider-container {
    text-align: center;
    margin-bottom: 40px;
}

.budget-display {
    margin-bottom: 24px;
}

.budget-amount {
    font-size: 48px;
    font-weight: 700;
    color: #D4A574;
    line-height: 1;
}

.budget-period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 8px;
}

.budget-slider {
    width: 100%;
    height: 8px;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 4px;
    outline: none;
    margin: 24px 0;
    -webkit-appearance: none;
}

.budget-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: #D4A574;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

.budget-labels {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.budget-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-style: italic;
}

.location-input {
    margin-bottom: 40px;
}

.location-field {
    width: 100%;
    padding: 16px 20px;
    background: rgba(27, 54, 93, 0.2);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.location-field:focus {
    outline: none;
    border-color: #D4A574;
    background: rgba(27, 54, 93, 0.3);
}

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

.popular-areas h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.area-tag {
    padding: 8px 16px;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 20px;
    color: #D4A574;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: rgba(212, 165, 116, 0.2);
    border-color: #D4A574;
}

.contact-form {
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form input {
    padding: 16px 20px;
    background: rgba(27, 54, 93, 0.2);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form input:focus {
    outline: none;
    border-color: #D4A574;
    background: rgba(27, 54, 93, 0.3);
}

.contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
}

.consent-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: #D4A574;
}

.consent-checkbox label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}

/* Premium Custom Enhancements */

/* Advanced Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.8) 0%, rgba(212, 165, 116, 0.2) 100%);
    border-radius: 50%;
    animation: floatParticle 20s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(20px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) translateX(-20px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(0vh) translateX(0) scale(0);
    }
}

/* Custom Scroll Indicators */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(212, 165, 116, 0.1);
    z-index: 10001;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #D4A574, #F4C2A1, #D4A574);
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

/* Enhanced Hero Animations */
.hero-content {
    animation: heroFadeIn 2s ease-out forwards;
    animation-fill-mode: forwards;
}

.hero-content.animated {
    animation: none; /* Prevent re-animation */
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Advanced Card Interactions */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

/* Premium Button Effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Custom Testimonial Avatars */
.testimonial-avatar {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.testimonial-avatar img {
    border: 3px solid rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.2);
}

.testimonial-card:hover .testimonial-avatar img {
    transform: scale(1.1);
    border-color: rgba(212, 165, 116, 0.6);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
}

/* Advanced Parallax Effects */
.parallax-element {
    transform: translateZ(0);
    will-change: transform;
}

/* Custom loading animation removed for immediate website access */

/* Enhanced Glow Effects */
.glow-element {
    position: relative;
}

.glow-element::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #D4A574, #F4C2A1, #D4A574, #F4C2A1);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: 200% 200%;
    /* Removed infinite animation */
}

.glow-element:hover::after {
    opacity: 1;
}

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

/* Custom Image Transitions */
.image-reveal {
    position: relative;
    overflow: hidden;
}

.image-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.8), transparent);
    z-index: 2;
    animation: imageReveal 2s ease-out;
}

@keyframes imageReveal {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Static Hero Title - No Animation */
.hero-title {
    opacity: 1;
    transform: translateY(0);
}

/* Advanced Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* Custom cursor effects removed for better user experience */

/* Advanced 3D Effects */
.card-3d {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.card-3d:hover {
    transform: rotateY(5deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

/* Magnetic Button Effects */
.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

/* Advanced Parallax Layers */
.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.parallax-bg {
    transform: translateZ(-1px) scale(1.5);
}

.parallax-mid {
    transform: translateZ(-0.5px) scale(1.25);
}

.parallax-fg {
    transform: translateZ(0);
}

/* Premium Loading Animations */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(15, 20, 25, 0.88), rgba(26, 35, 50, 0.88), rgba(15, 20, 25, 0.88));
    z-index: 10003;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}

.page-transition.active {
    opacity: 0.88;
    visibility: visible;
}

.transition-logo {
    font-size: 3rem;
    font-weight: 700;
    color: #D4A574;
    animation: logoSpin 1.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-shadow: 0 3px 12px rgba(212, 165, 116, 0.8);
}

@keyframes logoSpin {
    0% { transform: rotateY(0deg) scale(0.8); opacity: 0; }
    30% { opacity: 0.3; transform: rotateY(108deg) scale(0.9); }
    50% { opacity: 1; transform: rotateY(180deg) scale(1.05); }
    70% { opacity: 0.3; transform: rotateY(252deg) scale(0.9); }
    100% { transform: rotateY(360deg) scale(0.8); opacity: 0; }
}

/* Video Player Enhancements */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10004;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-player {
    width: 90%;
    max-width: 800px;
    height: 450px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    position: relative;
}

.video-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.video-close:hover {
    color: #D4A574;
}

/* Form Enhancements */
.floating-label {
    position: relative;
    margin-bottom: 1.5rem;
}

.floating-label input,
.floating-label select {
    width: 100%;
    padding: 1rem 1rem 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(212, 165, 116, 0.3);
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.floating-label input:focus,
.floating-label select:focus {
    outline: none;
    border-bottom-color: #D4A574;
}

.floating-label label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-label input:focus ~ label,
.floating-label input:valid ~ label,
.floating-label select:focus ~ label,
.floating-label select:valid ~ label {
    top: -0.5rem;
    left: 0;
    font-size: 0.8rem;
    color: #D4A574;
    font-weight: 600;
}

/* Advanced Hover States */
.hover-lift {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.3);
}

/* Staggered Animations */
.stagger-animation {
    animation-delay: calc(var(--stagger-delay, 0) * 0.1s);
}

/* Premium Mobile Enhancements */
@media (max-width: 768px) {
    .floating-particles {
        display: none; /* Reduce mobile performance impact */
    }

    .particle {
        display: none;
    }

    .service-card::before {
        display: none;
    }

    /* Cursor effects removed */

    .card-3d:hover {
        transform: none;
    }
}

.assessment-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}


/* Mobile Responsive for Assessment and Calculator */
@media (max-width: 768px) {
    .option-grid {
        grid-template-columns: 1fr;
    }

    .hours-selector {
        grid-template-columns: repeat(2, 1fr);
    }


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

    .days-selector {
        flex-direction: column;
    }

    .assessment-container {
        padding: 24px;
    }

}

/* Video Testimonials Styles */
.video-testimonials {
    padding: 96px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
}

.video-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
    margin-top: 64px;
}

.video-testimonial-card.main-video {
    grid-row: 1 / 3;
}

.video-testimonial-card {
    background: rgba(27, 54, 93, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 165, 116, 0.4);
    box-shadow: 0 20px 40px rgba(31, 38, 135, 0.3);
}

.video-container {
    position: relative;
}

.video-placeholder {
    position: relative;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-video .video-thumbnail {
    height: 300px;
}

.video-testimonial-card:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(212, 165, 116, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1B365D;
    font-size: 20px;
    transition: all 0.3s ease;
}

.video-testimonial-card:hover .play-button {
    background: #D4A574;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.video-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.video-duration {
    display: inline-block;
    background: rgba(212, 165, 116, 0.2);
    color: #D4A574;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Client Portal Preview Styles */
.portal-preview {
    padding: 96px 0;
    background: linear-gradient(180deg, #151b23 0%, #0f1419 50%, #151b23 100%);
}

.portal-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 64px;
    align-items: center;
}

.portal-device {
    position: relative;
}

.device-frame {
    background: #2a2a2a;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.portal-screen {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.portal-header {
    background: #1B365D;
    color: #ffffff;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portal-logo {
    font-weight: 700;
    font-size: 18px;
    color: #D4A574;
}

.portal-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.portal-user img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.portal-content {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.portal-section {
    display: none;
}

.portal-section.active {
    display: block;
}

.portal-section h3 {
    color: #1B365D;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.care-updates {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.update-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #D4A574;
}

.update-time {
    color: #666;
    font-size: 12px;
    font-weight: 600;
    min-width: 60px;
}

.update-content {
    flex: 1;
}

.update-content strong {
    color: #1B365D;
    font-size: 14px;
}

.update-content p {
    color: #666;
    font-size: 13px;
    margin: 4px 0 0 0;
}

.update-status.success {
    color: #4CAF50;
    font-weight: bold;
}

.portal-nav {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    color: #666;
}

.nav-item.active {
    color: #1B365D;
    background: rgba(27, 54, 93, 0.1);
}

.nav-item i {
    font-size: 16px;
}

.nav-item span {
    font-size: 12px;
    font-weight: 500;
}

.portal-features h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #D4A574;
    font-size: 20px;
}

.feature-content h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}



/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .video-testimonial-card.main-video {
        grid-row: auto;
    }

    .portal-demo {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


