/* ==========================================================================
   HSH TRADERS — Official Stylesheet
   Color Theme: Navy Blue (#0a2540) & Construction Gold (#f59e0b)
   Responsive, Modern & Micro-Animated Design
   ========================================================================== */

:root {
    --navy-primary: #0a2540;
    --navy-dark: #061729;
    --navy-light: #133863;
    --navy-surface: #0f3057;
    --gold-primary: #f59e0b;
    --gold-hover: #d97706;
    --gold-light: #fef3c7;
    --gold-soft: rgba(245, 158, 11, 0.15);
    --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --navy-gradient: linear-gradient(135deg, #0a2540 0%, #163b65 100%);
    --hero-overlay-grad: linear-gradient(180deg, rgba(6, 23, 41, 0.62) 0%, rgba(10, 37, 64, 0.46) 50%, rgba(6, 23, 41, 0.78) 100%);
    --card-shadow: 0 10px 30px -5px rgba(10, 37, 64, 0.08);
    --card-hover-shadow: 0 20px 35px -5px rgba(10, 37, 64, 0.16);
    --text-primary: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden !important;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden !important;
    max-width: 100vw;
    width: 100%;
    position: relative;
    padding: 0;
    margin: 0;
}

main, section, header, footer {
    width: 100%;
    max-width: 100%;
}

.container-fluid {
    width: 100%;
    max-width: 100%;
}

/* Centered Boxed Containers with Proper Side Gutters (Prevents Border Touching) */
.container {
    width: 100%;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1160px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1280px;
    }
}


h1, h2, h3, h4, h5, h6,
.font-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--navy-primary);
    line-height: 1.25;
}

a {
    color: var(--navy-primary);
    text-decoration: none;
    transition: var(--transition);
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Helpers */
.text-navy { color: var(--navy-primary) !important; }
.bg-navy { background-color: var(--navy-primary) !important; }
.text-gold { color: var(--gold-primary) !important; }
.bg-gold { background-color: var(--gold-primary) !important; }
.bg-light-soft { background-color: var(--bg-light) !important; }
.max-w-750 { max-width: 750px; }

/* Skip to content */
.skip-link {
    position: absolute;
    top: -40px;
    left: 10px;
    background: var(--gold-primary);
    color: var(--navy-dark);
    padding: 8px 16px;
    z-index: 99999;
    font-weight: 700;
    border-radius: 4px;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 10px;
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3.5px;
    background: var(--gold-gradient);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Pulse Dot */
.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   Topbar
   ========================================================================== */
.topbar {
    background: var(--navy-dark);
    color: #e2e8f0;
    font-size: 0.84rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar a {
    color: #f8fafc;
    text-decoration: none;
}

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

.topbar-badge {
    background: rgba(245, 158, 11, 0.15);
    color: var(--gold-primary);
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(245, 158, 11, 0.3);
    white-space: nowrap !important;
    flex-shrink: 0;
}

.topbar-info {
    font-size: 0.82rem;
    color: #cbd5e1;
    white-space: nowrap;
}

.topbar-contact {
    font-weight: 500;
    white-space: nowrap;
}

.topbar-wa-btn {
    background: #25d366;
    color: #ffffff !important;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

.topbar-wa-btn:hover {
    background: #1eb954;
    transform: translateY(-1px);
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.site-header {
    background: #ffffff !important;
    border-bottom: 2px solid rgba(245, 158, 11, 0.35);
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
    position: sticky;
    top: 0;
    z-index: 1020;
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.12);
}

.brand-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-logo-img {
    transform: scale(1.04);
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--navy-primary);
    letter-spacing: 0.5px;
    display: block;
    line-height: 1.1;
}

.brand-accent {
    color: var(--gold-primary);
}

.brand-sub {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.navbar .nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy-primary);
    padding: 10px 14px !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.navbar .nav-link:hover {
    color: var(--gold-hover);
    background-color: rgba(245, 158, 11, 0.08);
}

.navbar .nav-link.active {
    color: var(--navy-primary);
    background-color: var(--gold-soft);
    font-weight: 700;
}

.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 3px;
}

.btn-quote-action {
    background: var(--gold-gradient);
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-quote-action:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* ==========================================================================
   Hero Section & Carousel
   ========================================================================== */
.hero-section {
    background: var(--navy-dark);
    color: #ffffff;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    transition: transform 7s ease-out;
}

.carousel-item.active .hero-slide-bg {
    transform: scale(1.0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay-grad);
    z-index: 1;
}

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

.min-vh-75 {
    min-height: 70vh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #f8fafc;
}

.hero-title {
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
    max-width: 950px;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.25vw, 1.22rem);
    font-weight: 400;
    max-width: 760px;
    color: #f1f5f9;
    line-height: 1.65;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.btn-brand-primary {
    background: var(--gold-gradient);
    color: var(--navy-dark);
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: 12px 28px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
    transition: var(--transition);
}

.btn-brand-primary:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

.btn-brand-whatsapp {
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    transition: var(--transition);
}

.btn-brand-whatsapp:hover {
    background: #1eb954;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-navy {
    background: var(--navy-primary);
    color: #ffffff;
    font-weight: 700;
    border-radius: 30px;
    padding: 10px 24px;
    border: 1px solid var(--navy-light);
    transition: var(--transition);
}

.btn-navy:hover {
    background: var(--navy-dark);
    color: var(--gold-primary);
}

.btn-outline-navy {
    color: var(--navy-primary);
    border: 2px solid var(--navy-primary);
    font-weight: 700;
    border-radius: 30px;
    padding: 10px 24px;
    transition: var(--transition);
}

.btn-outline-navy:hover {
    background: var(--navy-primary);
    color: #ffffff;
}

.tag-pill {
    background: rgba(10, 37, 64, 0.65);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #f1f5f9;
}

/* ==========================================================================
   Counter Section
   ========================================================================== */
.counter-section {
    background: var(--navy-primary);
    color: #ffffff;
    border-bottom: 3px solid var(--gold-primary);
}

.counter-card {
    padding: 15px 10px;
    border-radius: 12px;
    transition: var(--transition);
}

.counter-card:hover {
    transform: translateY(-3px);
}

.counter-icon-wrap i {
    font-size: 2.2rem;
}

.counter-number-wrap {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
}

.counter-suffix {
    color: var(--gold-primary);
    font-size: 1.8rem;
    margin-left: 2px;
}

.counter-label {
    font-size: 0.85rem;
    color: #cbd5e1;
    font-weight: 500;
}

/* ==========================================================================
   Section Headers & Common
   ========================================================================== */
.section-tag {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold-hover);
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    line-height: 1.22;
}

.section-desc {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-img-wrapper {
    position: relative;
    max-width: 460px;
    margin: 0 auto;
}

.about-img-frame {
    border: 5px solid #ffffff;
    box-shadow: var(--card-shadow);
}

.floating-stat-card.bottom-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 3;
    max-width: 260px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.floating-stat-card.top-badge {
    position: absolute;
    top: 20px;
    left: -15px;
    z-index: 3;
    font-weight: 700;
    font-size: 0.84rem;
}

.stat-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   Products / Rooms Grid Section
   ========================================================================== */
.material-filter-tabs .filter-tab-btn {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--navy-primary);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
}

.material-filter-tabs .filter-tab-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-hover);
}

.material-filter-tabs .filter-tab-btn.active {
    background: var(--navy-primary);
    color: #ffffff;
    border-color: var(--navy-primary);
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.15);
}

.product-item-card {
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.product-item-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-hover-shadow) !important;
    border-color: rgba(245, 158, 11, 0.4);
}

.product-img-box {
    height: 220px;
    background-color: #0a2540;
}

.product-thumb {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-item-card:hover .product-thumb {
    transform: scale(1.06);
}

.category-badge {
    background: rgba(10, 37, 64, 0.88);
    backdrop-filter: blur(4px);
    color: var(--gold-primary);
    font-size: 0.74rem;
    font-weight: 700;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.stock-badge {
    font-size: 0.72rem;
    font-weight: 600;
}

.btn-book-now {
    background: var(--gold-gradient);
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 20px;
    border: none;
    transition: var(--transition);
}

.btn-book-now:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.usp-feature-box {
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.usp-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow) !important;
    border-color: rgba(245, 158, 11, 0.3);
}

.usp-icon-wrap {
    width: 58px;
    height: 58px;
}

.target-customers-strip {
    border-left: 5px solid var(--gold-primary);
}

.customer-tag-pill {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-card {
    height: 270px;
}

.gallery-img {
    height: 100%;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.92) 0%, rgba(10, 37, 64, 0.2) 60%, transparent 100%);
    opacity: 0.95;
    transition: var(--transition);
}

/* ==========================================================================
   Testimonials & FAQ
   ========================================================================== */
.testimonial-card {
    border-top: 3px solid var(--gold-primary);
}

.author-avatar-badge {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
}

.custom-faq-accordion .accordion-button {
    background: #ffffff;
    font-size: 1rem;
    box-shadow: none !important;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(245, 158, 11, 0.08);
    color: var(--navy-primary);
    border-bottom: 1px solid var(--border-color);
}

.custom-faq-accordion .accordion-button::after {
    filter: brightness(0.5);
}

/* ==========================================================================
   Contact & Quote Form
   ========================================================================== */
.custom-input {
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.custom-input:focus {
    border-color: var(--navy-primary);
    box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.12);
}

.contact-avatar-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-phone-link:hover {
    color: var(--gold-hover) !important;
}

/* ==========================================================================
   Footer & Bottom Bar
   ========================================================================== */
.site-footer {
    background: var(--navy-dark);
    color: #94a3b8;
    position: relative;
}

.footer-top-accent {
    height: 4px;
    background: var(--gold-gradient);
    width: 100%;
}

.footer-logo {
    height: 54px;
    width: auto;
}

.footer-brand-title {
    color: #ffffff;
    font-size: 1.35rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

.badge-stockist {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #f1f5f9;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--gold-primary);
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: #cbd5e1;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--gold-primary);
    padding-left: 4px;
}

.footer-contact-list {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.footer-dispatch-card {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-btn.wa:hover { background: #25d366; color: #ffffff; }
.social-btn.call:hover { background: var(--gold-primary); color: var(--navy-dark); }
.social-btn.call2:hover { background: #3b82f6; color: #ffffff; }
.social-btn.loc:hover { background: #ef4444; color: #ffffff; }

.footer-bottom {
    background: #030d17;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
    padding: 16px 0;
}

/* ==========================================================================
   Floating Buttons
   ========================================================================== */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 1010;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    color: #ffffff;
    font-size: 1.35rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    text-decoration: none;
}

.float-wa {
    background: #25d366;
}

.float-wa:hover {
    background: #1eb954;
    color: #ffffff;
    transform: scale(1.1);
}

.float-call {
    background: var(--navy-primary);
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
}

.float-call:hover {
    background: var(--gold-primary);
    color: var(--navy-dark);
    transform: scale(1.1);
}

.float-top {
    background: #1e293b;
    opacity: 0;
    pointer-events: none;
    font-size: 1.6rem;
}

.float-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.float-top:hover {
    background: var(--gold-primary);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

.float-tooltip {
    position: absolute;
    right: 62px;
    background: var(--navy-dark);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.float-btn:hover .float-tooltip {
    opacity: 1;
}

/* ==========================================================================
   Page Banner & Header Text Visibility
   ========================================================================== */
.page-banner {
    position: relative;
    min-height: 280px;
    background: #061729;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(0.72) contrast(1.1);
    opacity: 0.92;
    transform: scale(1.02);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 23, 41, 0.65) 0%, rgba(10, 37, 64, 0.52) 50%, rgba(6, 23, 41, 0.78) 100%);
    z-index: 2;
}

.page-banner .container {
    position: relative;
    z-index: 3;
}

.page-banner .page-title,
.page-banner h1 {
    color: #ffffff !important;
    font-size: clamp(2.1rem, 4vw, 3.2rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.7) !important;
    line-height: 1.18;
}

.page-banner .lead,
.page-banner p {
    color: #f1f5f9 !important;
    font-size: clamp(1rem, 1.25vw, 1.15rem) !important;
    font-weight: 400 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6) !important;
    opacity: 1 !important;
    line-height: 1.6;
}

.page-banner .breadcrumb {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
    color: #e2e8f0 !important;
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
}

.page-banner .breadcrumb-item a:hover {
    color: var(--gold-primary) !important;
}

.page-banner .breadcrumb-item.active {
    color: #fbbf24 !important;
    font-weight: 700;
}

/* ==========================================================================
   Responsive Adjustments & Mobile Overflow Prevention
   ========================================================================== */
@media (max-width: 991.98px) {
    .site-header .navbar-collapse {
        background: #ffffff;
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        margin-top: 12px;
        border: 1px solid var(--border-color);
    }
    
    .navbar .nav-link {
        padding: 12px 16px !important;
        font-size: 1rem;
    }

    .btn-quote-action {
        width: 100%;
        justify-content: center;
    }

    .min-vh-75 {
        min-height: 60vh;
    }

    .about-img-wrapper {
        max-width: 100%;
        padding: 0 10px;
    }

    .floating-stat-card.bottom-badge {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        margin-top: 20px !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .floating-stat-card.top-badge {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        margin-bottom: 15px !important;
        display: inline-flex !important;
    }
}

@media (max-width: 767.98px) {
    .about-img-wrapper {
        padding: 0;
    }

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

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

    .counter-number-wrap {
        font-size: 2rem;
    }

    .product-footer {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px;
    }

    .btn-book-now {
        width: 100%;
        justify-content: center;
    }

    .target-customers-strip {
        padding: 20px !important;
    }
}

@media (max-width: 575.98px) {
    .brand-title {
        font-size: 1.25rem;
    }

    .brand-sub {
        font-size: 0.6rem;
    }

    .brand-logo-img {
        height: 44px;
    }

    .hero-badge {
        font-size: 0.74rem;
        padding: 4px 10px;
    }

    .hero-title {
        font-size: 1.65rem;
        line-height: 1.24;
    }

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

    .floating-actions {
        bottom: 16px;
        right: 14px;
        gap: 10px;
    }

    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }

    .counter-card {
        padding: 8px 4px;
    }

    .counter-number-wrap {
        font-size: 1.65rem;
    }

    .counter-suffix {
        font-size: 1.2rem;
    }

    .counter-label {
        font-size: 0.75rem;
    }
}
