* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a1f1c;
    --primary-gold: #d4af37;
    --primary-cream: #f5f1e6;
    --accent-bronze: #cd7f32;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-cream) 100%);
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 400;
}

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



.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Navigation */
.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-bronze));
    transition: width 0.3s ease;
}

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

.cta-nav {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-bronze));
    color: var(--white) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 600 !important;
}

.cta-nav::after {
    display: none;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--primary-dark);
    transition: var(--transition);
}

.hamburger:hover span {
    background: var(--primary-gold);
}
/* Mobile Navigation */
.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    /* Glassy background behind the pills */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.03)
    );
    backdrop-filter: blur(50px) saturate(180%);
    -webkit-backdrop-filter: blur(50px) saturate(180%);

    border-top: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);

    padding: 0;
    flex-direction: column;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s ease;
    max-height: 0;
    overflow: hidden;
    display: flex;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    max-height: 420px;  /* scroll still works */
    padding: 1.2rem;
}


.mobile-nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 0.75rem 0.8rem;   /* smaller height */
    margin: 0.25rem 0;        /* tighter spacing */
    border-radius: 8px;       /* smaller radius */
    background: rgba(255, 255, 255, 0.12); /* lighter glass */
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    transition: all 0.25s ease;
    font-size: 0.95rem;       /* slimmer typography */
    transform: translateX(-18px);
    opacity: 0;
}
.mobile-nav {
    background: rgba(255, 255, 255, 0.15);  /* super light transparent */
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
}
.mobile-nav a {
    background: rgba(30, 70, 65, 0.95);  /* solid green-ish */
    color: white;
}



.mobile-nav.active a {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.05s;
}


/* Stagger animation */
.mobile-nav.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active a:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.active a:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav.active a:nth-child(7) { transition-delay: 0.4s; }

.mobile-nav a:hover {
    color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(0) scale(1.02);
    padding-left: 2rem;
}
.mobile-nav.active {
    overflow-y: auto; /* Enable scrolling if content exceeds height */
}
/* Elite Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: 
        linear-gradient(
            rgba(9, 20, 20, 0.4), 
            rgba(9, 20, 20, 0.9)
        ),
        url('images/hero-building.jpg') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(
            ellipse at center,
            rgba(255, 255, 255, 0.2) 0%,  /* Light in center */
            rgba(10, 31, 28, 0.4) 100%    /* Darker at edges */
        );
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.hero-title .title-line:first-child {
    background: linear-gradient(135deg, var(--text-dark), var(--accent-bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .title-line:last-child {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}


.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: 0.3px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-bronze));
    color: var(--white);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: #0a1f1c !important;  /* Deep green always */
    border: 2px solid #0a1f1c !important;
    color: white !important;          /* White text always */
}

.btn-secondary:hover {
    background: #1a3a32 !important;   /* Slightly lighter green on hover */
    border-color: #1a3a32 !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-gold), transparent);
    animation: scrollBounce 2s infinite;
}

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

/* Premium Sectors */
.sectors {
    padding: 6rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.sector-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-bronze));
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.sector-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

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

.sector-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-explore {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-explore:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* Elite Features */
.features {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-cream) 0%, var(--white) 100%);
}

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

.feature-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

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

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Premium Newsletter */
.newsletter {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3a32 100%);
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

#email-input {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    width: 300px;
    font-size: 1rem;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    transition: var(--transition);
}

#email-input::placeholder {
    color: rgba(255,255,255,0.7);
}

#email-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255,255,255,0.15);
}

/* Elite Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-brand .logo {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
}

/* AI Chat Button */
.ai-chat-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-bronze));
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 999;
}

.ai-chat-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 250px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    #email-input {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .sector-card {
        padding: 2rem 1.5rem;
    }
}
.logo-img {
    height: 75px;
    width: auto;
    transition: var(--transition);
}

.hero-title .title-line:first-child {
    color: white !important;  /* Bright white */
    -webkit-text-fill-color: white !important;
}

.hero-title .title-line:last-child {
    color: #d4af37 !important;  /* Gold */
    -webkit-text-fill-color: #d4af37 !important;
}

.hero-subtitle {
    color: white !important;  /* Bright white */
}

.hero-tagline {
    color: rgba(255, 255, 255, 0.9) !important;  /* Light white */
}
.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap; /* This keeps text on one line */
}

/* For mobile, we'll make it smaller but still one line */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem; /* Smaller but still one line */
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem; /* Even smaller but still one line */
        white-space: nowrap;
    }
}
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
    color: white;
}

.social-icons a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
    color: var(--primary-dark);
}
.footer-contact {
    text-align: center; /* Center everything */
    margin-bottom: 2rem; /* Add breathing space */
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center; /* Center the icons */
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
    color: white;
}

.social-icons a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
    color: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
    margin-top: 2rem; /* More breathing space above footer bottom */
}
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 1rem; /* Reduced bottom padding from 2rem to 1rem */
    position: relative;
    min-height: 300px; /* Ensure footer has enough height */
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
    margin-top: 2rem;
    position: absolute; /* Position it absolutely */
    bottom: 1rem; /* Position it near the bottom */
    left: 0;
    right: 0;
}
.sector-image {
    width: 200px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sector-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.sector-image img.active {
    opacity: 1;
}
.sector-video {
    width: 240px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.sector-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sector-image img:only-child {
    opacity: 1; /* Make single images always visible */
    position: relative; /* Not absolute like rotating images */
}
.sector-image {
    border-radius: 12px; /* Add rounded corners */
    overflow: hidden; /* Ensure image follows the border radius */
}
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 6rem;
    margin-top: 6rem;
}
.sectors-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 3rem !important;
    margin-top: 3rem !important;
}

.sector-card {
    margin: 1.5rem !important;
}
#email-help {
  margin-top: 6px;
  font-size: 0.9rem;
}
#email_help {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #f5de9b !important; /* richer cream gold tone */
  font-weight: 500;
  text-shadow: 0 0 3px rgba(0,0,0,0.3);
}
#email-help.err {
  color: #d9534f;   /* readable red for errors on cream */
}

/* Optional: button + input hover accents to match your gold theme */
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #d4af37;          /* gold */
  box-shadow: 0 0 0 2px rgba(212,175,55,0.25);
}
.newsletter-form .btn.btn-primary {
  background: linear-gradient(135deg, #d4af37, #b8941f);
  border: none;
}
.newsletter-form .btn.btn-primary:hover {
  filter: brightness(1.05);
}
.newsletter-form input[type="email"] {
  margin-bottom: 0.0rem;
}
html, body { width:100%; overflow-x:hidden; -webkit-text-size-adjust:100%; }

.container { max-width:1100px; margin:0 auto; padding:0 16px; }

.newsletter-form { max-width:560px; margin:0 auto; }
.newsletter-form input[type="email"],
.newsletter-form .btn { width:100%; 
}
.social-icons {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 18px 24px;           /* row gap, column gap */
  max-width: 320px;
  margin: 0 auto 20px;
  padding: 0 10px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons img {
  width: 24px;
  height: 24px;
  display: block;
}
.newsletter-form input[type="email"] {
  max-width: 260px !important;
  height: 42px !important;
  font-size: 14px !important;
  padding: 0 14px !important;
}

.newsletter-form .btn.btn-primary {
  max-width: 220px !important;
  height: 44px !important;
  font-size: 15px !important;
  border-radius: 30px !important;
  margin-top: 10px !important;
  display: inline-block;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px !important;  /* tighten spacing */
}
/* Fix for hotel images - ensure they use the rotating image styles */
/* More specific selector for rotating image containers */
.sector-image:not(:only-child) img,
#hotel-images img {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sector-image:not(:only-child) img.active,
#hotel-images img.active {
    opacity: 1;
}
/* Make hotel images wide rectangular like the lounge */
#hotel-images {
    width: 240px; /* Match the lounge video width */
    height: 120px; /* Match the lounge video height */
    border-radius: 12px; /* Rounded corners */
    overflow: hidden; /* Clip images to rounded border */
}

/* Ensure the images fill the container properly */
#hotel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will crop and fill the container like the lounge video */
}
.sector-image img:only-child {
    opacity: 1;
    position: relative;
}
/* Feature Cards Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 2rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Big Emoji at Top */
.feature-emoji {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

/* Video Background */
.feature-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.feature-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Glass Card for Text */
.feature-glass-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: auto;
    width: 100%;
}

/* White Text with High Readability */
.feature-glass-card h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.feature-glass-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    margin: 0;
}
/* Robust viewport sizing */
body, .chat-container {
  min-height: 100vh;          /* fallback */
  height: 100svh;             /* Safari 16.4+ */
  height: 100dvh;             /* Chrome/modern */
}

/* Prevent bounce that shifts the input */
.messages-container {
  overscroll-behavior: contain;
  padding: 1rem 1rem calc(var(--input-h, 64px) + 12px) 1rem;
}

/* Input: fixed, no padding, safe-area aware */
.input-container {
  position: fixed; left: 0; right: 0; bottom: 0;
  padding: 0;
  background: rgba(10, 31, 28, 0.95);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  z-index: 1000;
  transform: translateZ(0);
}

.input-wrapper {
  margin: 8px 12px calc(8px + env(safe-area-inset-bottom)) 12px;
  border-radius: 25px;
  padding: 0.25rem 0.5rem;
}


/* Premium Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    /* Glassmorphism stays the same ALWAYS */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(1.5px) saturate(180%);
    -webkit-backdrop-filter: blur(1.5px) saturate(180%);

    /* 📌 AT TOP: almost no padding */
   padding: 0 2rem;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);

    z-index: 1000;
    transition: padding 0.25s ease;
}

/* Unmatched Excellence section on HOME only */
.excellence-section {
  background: #3b2a1f; /* deep brown */
}

/* Kill gradient + make the heading pure white */
.excellence-section .section-title {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
}

