/* ==========================================================================
   UDAAN AGRITECH — Premium Design System
   "Tech Solution For Better Yield"
   Clean, Modern, Aesthetic Agronomy Interface
   Powered by Humans Information Technology Solutions
   ========================================================================== */

:root {
    /* Color Palette */
    --color-bg-dark: #071c11;
    --color-bg-surface: #0e2e1e;
    --color-bg-card: #15412b;
    --color-bg-light: #fbfbfa;
    --color-bg-warm: #f4f6f3;
    
    --color-primary: #15803d;
    --color-primary-dark: #0f5132;
    --color-primary-light: #22c55e;
    
    --color-saffron: #e67e22;
    --color-saffron-light: #f39c12;
    --color-gold: #f59e0b;
    --color-gold-dark: #d97706;
    --color-gold-light: #fef3c7;
    
    --color-text-main: #1e293b;
    --color-text-muted: #64748b;
    --color-text-light: #f8fafc;
    --color-text-light-subtle: #cbd5e1;
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-light: #e2e8f0;
    --border-accent: rgba(22, 163, 74, 0.25);

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Shadows & Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 10px rgba(11, 19, 32, 0.04);
    --shadow-md: 0 8px 24px rgba(11, 19, 32, 0.08);
    --shadow-lg: 0 16px 40px rgba(11, 19, 32, 0.12);
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Robust Mobile Responsiveness & Zero-Overflow Guarantee */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-light);
    line-height: 1.65;
    overflow-x: clip !important;
}

main, section, header, footer {
    overflow-x: clip;
    max-width: 100vw;
}

[data-aos] {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-main);
    letter-spacing: -0.02em;
}

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

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

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

/* ==========================================================================
   TOPBAR (Desktop Only - Clean & Minimalist)
   ========================================================================== */
.topbar {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light-subtle);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    padding: 3px 12px;
    font-weight: 600;
    font-size: 0.78rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.topbar-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-light-subtle);
}

.topbar-contact a {
    color: #ffffff;
    font-weight: 600;
}

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

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

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

/* ==========================================================================
   STICKY HEADER & NAVBAR (Crisp White & Airy)
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.brand-logo-img {
    height: 64px;
    width: auto;
    max-width: 88px;
    border-radius: 12px;
    object-fit: contain;
    background: #ffffff;
    padding: 4px 6px;
    border: 1px solid rgba(22, 163, 74, 0.2);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.navbar-brand:hover .brand-logo-img {
    transform: scale(1.04);
    box-shadow: 0 6px 18px rgba(22, 163, 74, 0.15);
}

.brand-text-wrapper {
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.01em;
}

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

.brand-sub {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-primary);
    background: rgba(22, 163, 74, 0.08);
}

.navbar-toggler {
    padding: 7px 9px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0 !important;
    transition: var(--transition-smooth);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
}

.btn-brand-primary {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 30px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.35);
    transition: var(--transition-smooth);
}

.btn-brand-primary:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #15803d, #166534);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.45);
}

.btn-brand-outline {
    background: transparent;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 30px;
    border: 2px solid var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-brand-outline:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   HERO CAROUSEL SECTION (Spacious, Clean, High-Contrast)
   ========================================================================== */
.hero-carousel {
    position: relative;
    background-color: var(--color-bg-dark);
}

.hero-slide-item {
    min-height: 600px;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 0 130px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(7, 28, 17, 0.72) 0%, rgba(7, 28, 17, 0.84) 100%);
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.18);
    color: #fde68a;
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: 100%;
    text-align: center;
    line-height: 1.4;
    word-break: break-word;
}

.hero-badge i {
    vertical-align: middle;
    margin-right: 4px;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff !important;
    margin-bottom: 20px;
}

.hero-title .text-accent {
    color: #facc15;
}

.hero-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 820px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.hero-quick-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

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

.hero-feat-tag i {
    color: #4ade80;
}

.hero-carousel .carousel-indicators {
    bottom: 40px;
    z-index: 3;
}

.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: var(--transition-smooth);
}

.hero-carousel .carousel-indicators button.active {
    width: 32px;
    border-radius: 10px;
    background-color: #22c55e;
}

/* ==========================================================================
   COUNTER & TRUST BAR (Floating White Card)
   ========================================================================== */
.counter-bar-wrapper {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    padding: 30px 24px;
    margin-top: -60px;
    position: relative;
    z-index: 20;
}

.counter-item {
    text-align: center;
    border-right: 1px solid var(--border-light);
    padding: 0 15px;
}

.counter-item:last-child {
    border-right: none;
}

.counter-number-group {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text-main);
    line-height: 1;
    margin-bottom: 6px;
}

.counter-suffix {
    color: var(--color-primary);
}

.counter-label {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

/* ==========================================================================
   COMMON SECTION HEADINGS
   ========================================================================== */
.section-tag {
    display: inline-block;
    background: rgba(22, 163, 74, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(22, 163, 74, 0.25);
    border-radius: 20px;
    padding: 4px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-text-main);
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ==========================================================================
   ROOM / PRODUCTS GRID SECTION (Clean & High Readability)
   ========================================================================== */
.room-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(22, 163, 74, 0.35);
}

.room-img-container {
    position: relative;
    background: #f8fafc;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    overflow: hidden;
}

.room-img {
    max-height: 200px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.room-card:hover .room-img {
    transform: scale(1.05);
}

.room-badge-floating {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #ffffff;
    color: #15803d;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.room-type-floating {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #fee2e2;
    color: #dc2626;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.room-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.room-capacity {
    font-size: 0.82rem;
    color: var(--color-gold-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.room-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.room-features-list li {
    font-size: 0.84rem;
    color: #475569;
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.room-features-list li i {
    color: var(--color-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.room-footer {
    padding-top: 16px;
    border-top: 1px dashed var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.room-price-box {
    display: flex;
    flex-direction: column;
}

.room-price-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.room-price-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-text-main);
    line-height: 1.1;
}

.room-price-val del {
    font-size: 0.88rem;
    color: #94a3b8;
    margin-left: 4px;
}

.btn-book-room {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 9px 18px;
    border-radius: 25px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}

.btn-book-room:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #15803d, #166534);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.35);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 30px 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-accent);
}

.why-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(22, 163, 74, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon-box {
    background: var(--color-primary);
    color: #ffffff;
    transform: scale(1.08);
}

/* ==========================================================================
   ACABC GOVT SCHEME ACCREDITATION CARD
   ========================================================================== */
.acabc-banner-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(22, 163, 74, 0.25);
    box-shadow: var(--shadow-sm);
    padding: 24px 30px;
}

.acabc-logo-box {
    background: #ffffff;
    border-radius: var(--radius-sm);
    padding: 6px;
    display: inline-block;
}

.acabc-logo-img {
    max-height: 80px;
    object-fit: contain;
}

/* ==========================================================================
   MAP & CONTACT SECTION
   ========================================================================== */
.map-card-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.contact-card-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.custom-form-input {
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    padding: 11px 16px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.custom-form-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
    outline: none;
}

/* ==========================================================================
   SITE FOOTER (Clean Dark Elegant)
   ========================================================================== */
.site-footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light-subtle);
    font-size: 0.92rem;
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

.footer-nav a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.footer-nav a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-social-link {
    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;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #040e08;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.84rem;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1040;
}

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

.float-btn:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.float-call {
    background: #0284c7;
}

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

.float-top {
    background: var(--color-bg-dark);
    font-size: 1.5rem;
    display: none;
}

/* ==========================================================================
   PAGE HEADER BANNERS (Rich Background Image with Gradient Overlay)
   ========================================================================== */
.page-header-banner {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 85px 0 65px;
    overflow: hidden;
}

.page-header-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 28, 17, 0.82) 0%, rgba(13, 40, 26, 0.92) 100%);
    z-index: 1;
}

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

.page-header-title {
    color: #ffffff !important;
    font-size: clamp(2rem, 4.2vw, 3.25rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.page-header-lead {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    max-width: 760px;
    line-height: 1.65;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (Zero Horizontal Overflow & Perfect Mobile UX)
   ========================================================================== */
@media (max-width: 991.98px) {
    .site-header .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }
    .navbar-brand {
        max-width: calc(100% - 55px);
        gap: 10px !important;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-slide-item {
        min-height: 520px;
        padding: 50px 0 80px;
    }
    .hero-content {
        padding: 40px 0;
    }
    .counter-bar-wrapper {
        margin-top: 25px;
        padding: 20px 14px;
    }
    .counter-item {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding: 12px 0;
    }
    .counter-item:last-child {
        border-bottom: none;
    }
    .counter-number-group {
        font-size: 1.8rem;
    }
    .site-header .navbar-collapse {
        background: #ffffff;
        padding: 18px;
        border-radius: var(--radius-md);
        margin-top: 10px;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border-light);
    }
}

@media (max-width: 767.98px) {
    /* Prevent AOS horizontal translation from causing mobile overflow */
    [data-aos="fade-left"],
    [data-aos="fade-right"] {
        transform: none !important;
    }
}

@media (max-width: 575.98px) {
    .site-header .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }
    .brand-logo-img {
        height: 44px;
        width: auto;
        max-width: 60px;
        padding: 2px 4px;
        border-radius: 8px;
    }
    .brand-title {
        font-size: 1.08rem;
        line-height: 1.1;
    }
    .brand-sub {
        font-size: 0.54rem;
        letter-spacing: 0.02em;
    }
    .navbar-brand {
        gap: 8px !important;
        max-width: calc(100% - 46px);
        flex: 1 1 auto;
    }
    .hero-slide-item {
        min-height: 480px;
        padding: 35px 0 70px;
    }
    .hero-title {
        font-size: 1.55rem;
        line-height: 1.25;
        word-break: break-word;
    }
    .hero-lead {
        font-size: 0.92rem;
        line-height: 1.55;
        margin-bottom: 20px;
    }
    .hero-feat-tag {
        font-size: 0.74rem;
        padding: 4px 10px;
        max-width: 100%;
    }
    .hero-quick-features {
        gap: 6px;
        margin-bottom: 22px;
    }
    .hero-badge {
        font-size: 0.72rem;
        padding: 5px 12px;
        white-space: normal;
        text-align: center;
        line-height: 1.35;
        max-width: 100%;
        word-break: break-word;
    }
    .hero-content .d-flex.flex-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 10px !important;
    }
    .hero-content .d-flex.flex-wrap .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 10%;
        opacity: 0.4;
    }
    .counter-bar-wrapper {
        margin-top: 20px;
        padding: 16px 12px;
    }
    .counter-number-group {
        font-size: 1.55rem;
    }
    .counter-label {
        font-size: 0.75rem;
    }
    .counter-item {
        padding: 10px 4px;
    }
    .btn {
        max-width: 100%;
        white-space: normal;
        word-break: break-word;
    }
    .btn-lg {
        font-size: 0.95rem;
        padding: 10px 18px;
    }
    .section-title {
        font-size: 1.65rem;
        line-height: 1.25;
    }
    .section-subtitle {
        font-size: 0.92rem;
    }
    .acabc-banner-card {
        padding: 20px 14px;
    }
    .contact-card-box {
        padding: 24px 16px;
    }
    .why-card {
        padding: 24px 16px;
    }
    .floating-actions {
        bottom: 16px;
        right: 14px;
        gap: 8px;
    }
    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }
    .page-header-banner {
        padding: 65px 0 45px;
    }
    .page-header-title {
        font-size: 1.85rem;
    }
}

