/* BASE */
body {
    margin: 0;
    padding-top: 0;  /* navbar overlaps hero */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* NAVBAR */

/* Transparent glass at top */
#main-navbar.navbar-glass {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 18px 0;
    background: transparent;              /* no tint at very top */
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

/* On scroll: solid black with subtle blur */
#main-navbar.navbar-scrolled {
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 1);
    padding: 14px 0;
}

/* Brand */
#main-navbar .navbar-brand {
    max-height: 120px;
    display: flex;
    align-items: center;
}

#header-logo {
    height: 120px !important;
    max-height: 120px !important;
    width: auto !important;
    object-fit: contain !important;
    margin-right: 1rem;
}

#main-navbar .navbar-brand span {
    letter-spacing: 0.06em;
    font-size: 1.2rem;           /* Increased from 0.9rem */
    font-weight: 700;             /* Increased from 500 */
    text-transform: uppercase;
    color: #f9fafb;               /* Added color for visibility */
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Added shadow for visibility */
}

/* Links */
#main-navbar .nav-link {
    font-size: 0.85rem;             /* Reduced from 1rem */
    font-weight: 600;             /* Increased from default */
    text-transform: uppercase;
    letter-spacing: 0.06em;         /* Reduced from 0.08em */
    color: #e5e7eb;               /* Lighter color for visibility */
    position: relative;
    padding-inline: 12px;           /* Reduced from 16px */
    transition: all 0.2s ease;
    white-space: nowrap;
}
#main-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #fbbf24, #f97316);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease-out;
}
#main-navbar .nav-link:hover,
#main-navbar .nav-link.active {
    color: #ffffff;
    transform: translateY(-1px); /* Added lift effect */
}
#main-navbar .nav-link:hover::after,
#main-navbar .nav-link.active::after {
    transform: scaleX(1);
}
#main-navbar .nav-link.active {
    font-weight: 700;             /* Bolder for active state */
    color: #f97316;              /* Accent color for active */
}

/* CTA button */
.btn-get-touch {
    background: linear-gradient(135deg, #fbbf24, #f97316);
    color: #0b1120;
    border: none;
    font-size: 0.9rem;             /* Increased from 0.8rem */
    font-weight: 600;             /* Increased weight */
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 10px 20px;           /* Increased padding */
    border-radius: 999px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(251,191,36,0.3); /* Added shadow */
}
.btn-get-touch:hover {
    color: #020617;
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251,191,36,0.4);
}

/* Mobile navbar */
@media (max-width: 991.98px) {
    #main-navbar.navbar-glass,
    #main-navbar.navbar-scrolled {
        background: rgba(15, 23, 42, 0.96);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        padding: 16px 0;           /* Increased mobile padding */
    }
    #main-navbar .navbar-collapse {
        padding: 16px 0;           /* Increased padding */
    }
    #main-navbar .nav-link {
        font-size: 0.95rem;         /* Slightly smaller for mobile */
        padding-inline: 12px;         /* Adjusted for mobile */
    }
    #main-navbar .nav-link::after {
        bottom: 2px;
        left: 12px;
        right: 12px;
    }
    #main-navbar .navbar-brand span {
        font-size: 1rem;           /* Adjusted for mobile */
    }
    .btn-get-touch {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}

/* Dropdown hover functionality */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    
    .dropdown-menu {
        margin-top: 0;
        border: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        border-radius: 12px;
        animation: fadeInUp 0.3s ease;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Allow main dropdown link to navigate while keeping hover dropdown */
    .nav-item.dropdown .dropdown-toggle {
        pointer-events: auto !important;
    }
}

/* Prevent dropdown from opening on click on mobile */
@media (max-width: 991.98px) {
    .nav-item.dropdown .dropdown-toggle {
        pointer-events: auto;
    }
}


/* CONTACT PAGE STYLES */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 60vh;
    background-image: url('assets/img/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.contact-hero .content-wrapper {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Form Styles */
.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 30px;
    position: relative;
}

.contact-form-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.contact-form .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.contact-form .form-label {
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 8px;
    display: block;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102,126,234,0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102,126,234,0.4);
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
}

.contact-info-label {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 2px;
}

.contact-info-value {
    color: #4a5568;
}

/* Social Links */
.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Office Hours */
.office-hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.8;
}

.office-hours-value {
    font-weight: 600;
    color: #1a202c;
}

.office-hours-closed {
    font-weight: 600;
    color: #e53e3e;
}

/* Map Section */
.map-section {
    height: 400px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: #4a5568;
}

.map-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #667eea;
}

.map-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.faq-accordion .accordion-item {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 15px;
}

.faq-accordion .accordion-button {
    background: white;
    color: #1a202c;
    font-weight: 600;
    padding: 20px;
    border: none;
    box-shadow: none;
}

.faq-accordion .accordion-body {
    padding: 20px;
    color: #4a5568;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 767.98px) {
    .contact-hero {
        min-height: 50vh;
    }
    
    .contact-form-card {
        padding: 25px;
    }
    
    .contact-info-card {
        padding: 25px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
}


/* Aesthetic black footer with curved top */
.aesthetic-footer {
    background: #020617;
    color: #e5e7eb;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

/* soft gradient highlight strip */
.aesthetic-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, #facc15, #f97316, #38bdf8);
    opacity: 0.8;
}

/* brand text */
.footer-brand {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f9fafb;
}

/* nav links */
.footer-nav {
    font-size: 0.9rem;
}
.footer-link {
    color: #e5e7eb;
    text-decoration: none;
    padding-inline: 6px;
    transition: color 0.2s ease, opacity 0.2s ease;
}
.footer-link:hover {
    color: #f97316;
    opacity: 1;
}

/* divider line */
.footer-divider {
    width: 140px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #6b7280, transparent);
    opacity: 0.6;
}

/* social buttons */
.social-links .social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 4px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: #e5e7eb;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}
.social-links .social-btn:hover {
    background: linear-gradient(135deg, #facc15, #f97316);
    color: #020617;
    border-color: transparent;
    transform: translateY(-1px);
}

/* mobile spacing */
@media (max-width: 575.98px) {
    .aesthetic-footer {
        border-radius: 18px 18px 0 0;
    }
    .footer-nav {
        font-size: 0.8rem;
    }
}


/* ABOUT PAGE HERO */
.about-hero {
    position: relative;
    min-height: 340px;
    padding: 120px 0 90px;
    background-image: url('img/abouthotel.png'); /* add your own hero image */
    background-size: cover;
    background-position: center;
    color: #f9fafb;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15,23,42,0.9), rgba(15,23,42,0.4));
    z-index: 1;
}
.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: #cbd5f5;
}
.about-hero-title {
    font-size: clamp(2.1rem, 3vw, 2.6rem);
    font-weight: 600;
}
.about-hero-title .text-accent {
    font-size: 0.9em;
    color: #f97316;
}
.about-hero-text {
    max-width: 560px;
    color: #e5e7eb;
}

/* MAIN ABOUT CONTENT */
.about-main {
    background-color: #f8fafc;
}
.about-main p {
    font-size: 0.96rem;
    color: #475569;
}
.about-list {
    padding-left: 1.2rem;
}
.about-list li {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    color: #475569;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
    .about-hero {
        padding: 110px 0 70px;
    }
}


/* Section spacing + headings */
section {
    scroll-margin-top: 90px;
}

section h2 {
    font-size: clamp(1.9rem, 2.6vw, 2.3rem);
    font-weight: 600;
    color: #0f172a;
}

section p.text-muted {
    max-width: 640px;
    margin: 0 auto;
    font-size: 0.95rem;
}



/* Insights band */
.insights-section {
    background: #f9fafb;
}



/* pill badges */
.team-badge,
.contact-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.9rem;
}

.team-badge {
  background: rgba(59,130,246,0.1);
  color: #1d4ed8;
}

.contact-badge {
  background: rgba(249,115,22,0.1);
  color: #ea580c;
}

/* avatar circles with gradient */
.team-avatar-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 10px 25px rgba(15,23,42,0.25);
  font-size: 1.25rem;
}

.small-team-card {
  padding: 0.3rem 0;
}

/* contact icons */
.contact-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e5e7eb 0%, #f9fafb 100%);
  color: #0f172a;
  font-size: 0.9rem;
}

/* slight hover lift */
#team-contact .card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#team-contact .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(15,23,42,0.18);
}

/* mobile spacing tweak */
@media (max-width: 767.98px) {
  .team-avatar-icon {
    width: 46px;
    height: 46px;
  }
}

.scrolling-strip-2rows {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0 1.8rem;
  background: transparent; /* Remove light grey background */
}

/* rows */
.scroll-row {
  position: relative;
  white-space: nowrap;
  display: flex;
  overflow: hidden;
}

.row-top {
  margin-bottom: 0.8rem;
}

/* shared track + items */
.scroll-track {
  display: flex;
  gap: 1rem;
  width: fit-content;
}

.scroll-item {
  min-width: 140px;
  height: 140px;
  border-radius: 14px;
  background: transparent; /* Remove white background */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: none; /* Remove shadow */
  flex-shrink: 0;
}

.scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* animations */
.track-left {
  animation: scroll-left 20s linear infinite;
}
.track-right {
  animation: scroll-right 20s linear infinite;
}

/* Keyframe animations */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}


/* OUR CLIENTS - Specific CSS */
.clients-stats {
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.2);
}

.client-logo {
    min-height: 120px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo:hover {
    border-color: #1e3c72;
    transform: scale(1.05);
}


.stars i {
    font-size: 1.2rem;
    margin: 0 2px;
    color: #f59e0b;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

/* AFFILIATES SUCCESS CARDS - Modern Design */
.core-card {
    background: white !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.core-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
}

.core-img-wrapper {
    height: 200px !important;
    overflow: hidden !important;
}

.core-img-wrapper img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
}

.core-card .card-body {
    padding: 1.5rem !important;
}

.core-card .card-title {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #1a202c !important;
    margin-bottom: 0.75rem !important;
}

.core-card .about-list li {
    font-size: 0.85rem !important;
    margin-bottom: 0.3rem !important;
    color: #4a5568 !important;
}

/* Hotel Image Styles for Affiliates Page */
.hotel-image-wrapper {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.hotel-image-wrapper img {
    transition: transform 0.3s ease;
}

.hotel-image-wrapper:hover img {
    transform: scale(1.05);
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
