/* Mita-BD Transport Agency — Premium Corporate Frontend */

:root {
    --navy: #0B1F3A;
    --navy-light: #102C57;
    --navy-dark: #060d18;
    --white: #ffffff;
    --gray-50: #F8FAFC;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --accent: #FF6B00;
    --accent-dark: #e05e00;
    --accent-light: #ff8533;
    --shadow: 0 10px 40px rgba(10, 22, 40, 0.12);
    --radius: 0.75rem;
    --transition: 0.25s ease;
}

* { box-sizing: border-box; }

body.site-body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
}

.site-navbar {
    background: var(--navy);
    padding: 0;
    min-height: 80px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    transition: background var(--transition), box-shadow var(--transition), color var(--transition);
}

.site-navbar-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    gap: 1rem;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--nav-brand-color, var(--white)) !important;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 0;
    padding: 0;
}

.site-brand .brand-mark {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--accent);
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
}

.site-brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.site-brand .brand-text strong {
    font-size: 1.05rem;
    font-weight: 800;
    white-space: nowrap;
}

.site-brand .brand-text small {
    font-size: 0.68rem;
    opacity: 0.75;
    font-weight: 400;
    white-space: nowrap;
}

.site-brand-logo {
    display: block;
    max-height: 48px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.site-nav-toggle {
    border-color: rgba(255, 255, 255, 0.3) !important;
    padding: 0.4rem 0.6rem;
    flex-shrink: 0;
}

.site-nav-toggle .navbar-toggler-icon {
    filter: invert(1);
}

/* ── Premium offcanvas toggle (mobile/tablet) ── */
.site-offcanvas-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--nav-toggle-border, rgba(255, 255, 255, 0.25));
    border-radius: 0.5rem;
    background: var(--nav-toggle-bg, rgba(255, 255, 255, 0.06));
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
}

.site-offcanvas-toggle:hover,
.site-offcanvas-toggle:focus-visible {
    background: rgba(255, 107, 0, 0.15);
    border-color: var(--accent);
    outline: none;
}

.site-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 20px;
}

.site-hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--nav-hamburger-color, #fff);
    border-radius: 2px;
    transition: all var(--transition);
}

.site-offcanvas-toggle[aria-expanded="true"] .site-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-offcanvas-toggle[aria-expanded="true"] .site-hamburger span:nth-child(2) {
    opacity: 0;
}

.site-offcanvas-toggle[aria-expanded="true"] .site-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Premium offcanvas panel ── */
.site-offcanvas {
    width: 85% !important;
    max-width: 420px;
    background: var(--navy) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #fff;
}

.site-offcanvas.showing,
.site-offcanvas.show {
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.35);
}

.offcanvas-backdrop.show {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.site-offcanvas__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.site-offcanvas__brand {
    text-decoration: none;
    min-width: 0;
}

.site-offcanvas__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
}

.site-offcanvas__close:hover,
.site-offcanvas__close:focus-visible {
    background: var(--accent);
    border-color: var(--accent);
    outline: none;
}

.site-offcanvas__body {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    overflow-y: auto;
}

.site-offcanvas__nav {
    flex: 1;
    padding: 0.5rem 0;
}

.site-offcanvas__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-offcanvas__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0.85rem 1.5rem;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition);
}

.site-offcanvas__link span {
    flex: 1;
}

.site-offcanvas__link i {
    font-size: 0.75rem;
    opacity: 0.35;
    transition: all var(--transition);
}

.site-offcanvas__link:hover,
.site-offcanvas__link:focus-visible {
    background: rgba(255, 107, 0, 0.08);
    color: #fff !important;
    padding-left: 1.75rem;
    outline: none;
}

.site-offcanvas__link:hover i,
.site-offcanvas__link.is-active i {
    opacity: 1;
    color: var(--accent-light);
    transform: translateX(3px);
}

.site-offcanvas__link.is-active {
    background: rgba(255, 107, 0, 0.12);
    color: #FF6B00 !important;
    font-weight: 700;
    border-left: 3px solid #FF6B00;
    padding-left: calc(1.5rem - 3px);
}

/* Body scroll lock helper (Bootstrap also sets overflow:hidden) */
body.site-offcanvas-open {
    overflow: hidden;
}

.site-offcanvas__cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.site-offcanvas__cta .btn {
    min-height: 52px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0.5rem;
}

.site-offcanvas__contact {
    padding: 1.25rem 1.5rem 1.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.site-offcanvas__contact h6 {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.site-offcanvas__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.88rem;
    line-height: 1.5;
    transition: color var(--transition);
}

a.site-offcanvas__contact-item:hover {
    color: var(--accent-light);
}

.site-offcanvas__contact-item i {
    color: var(--accent);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.site-navbar-collapse {
    flex-grow: 1;
}

@media (min-width: 992px) {
    .site-navbar-collapse {
        display: flex !important;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-end;
        gap: 0.5rem;
    }

    .site-nav {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.15rem;
        margin-right: 1rem !important;
    }

    .site-nav .nav-item {
        display: flex;
        align-items: center;
    }

    .site-header-actions {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.5rem;
        flex-shrink: 0;
    }
}

.site-nav .nav-link {
    color: var(--nav-link-color, rgba(255, 255, 255, 0.85)) !important;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem !important;
    line-height: 1.4;
    white-space: nowrap;
    transition: color var(--transition), box-shadow var(--transition);
    display: flex;
    align-items: center;
    position: relative;
}

.site-nav .nav-link:hover {
    color: var(--nav-link-hover, var(--accent)) !important;
}

.site-nav .nav-link.active {
    color: var(--nav-link-active, var(--accent)) !important;
    font-weight: 600;
}

.site-nav .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.15rem;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

/* Navbar theme: dark (transparent hero / navy) */
.site-navbar.navbar-dark {
    --nav-link-color: #FFFFFF;
    --nav-link-hover: #FF6B00;
    --nav-link-active: #FF6B00;
    --nav-brand-color: #FFFFFF;
    --nav-toggle-border: rgba(255, 255, 255, 0.25);
    --nav-toggle-bg: rgba(255, 255, 255, 0.06);
    --nav-hamburger-color: #FFFFFF;
}

/* Navbar theme: light (internal pages / scrolled) */
.site-navbar.navbar-light {
    --nav-link-color: #111827;
    --nav-link-hover: #FF6B00;
    --nav-link-active: #FF6B00;
    --nav-brand-color: #0B1F3A;
    --nav-toggle-border: rgba(11, 31, 58, 0.15);
    --nav-toggle-bg: rgba(11, 31, 58, 0.04);
    --nav-hamburger-color: #0B1F3A;
}

.site-header-actions .btn {
    white-space: nowrap;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Adaptive outline CTA for header */
.site-btn-outline-nav {
    font-weight: 600;
    border-radius: 0.5rem;
    border-width: 1px;
    border-style: solid;
    background: transparent;
    transition: all var(--transition);
}

.site-header--hero:not(.is-scrolled) .site-btn-outline-nav {
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
}

.site-header--hero:not(.is-scrolled) .site-btn-outline-nav:hover {
    background: #FFFFFF;
    border-color: #FFFFFF;
    color: var(--navy);
}

.site-header--light .site-btn-outline-nav,
.site-header--hero.is-scrolled .site-btn-outline-nav {
    border-color: var(--navy);
    color: var(--navy);
}

.site-header--light .site-btn-outline-nav:hover,
.site-header--hero.is-scrolled .site-btn-outline-nav:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: #FFFFFF;
}

/* State A: home page solid white navbar + black text */
.site-header--home-solid .site-navbar.navbar-light,
.site-header--hero.site-header--home-solid .site-navbar.navbar-light {
    background: #FFFFFF;
    box-shadow: 0 1px 0 rgba(11, 31, 58, 0.06), 0 4px 20px rgba(11, 31, 58, 0.04);
    --nav-link-color: #111827;
    --nav-link-hover: #FF6B00;
    --nav-link-active: #FF6B00;
    --nav-brand-color: #0B1F3A;
    --nav-toggle-border: rgba(11, 31, 58, 0.15);
    --nav-toggle-bg: rgba(11, 31, 58, 0.04);
    --nav-hamburger-color: #0B1F3A;
}

.site-header--home-solid .site-btn-outline-nav,
.site-header--hero.site-header--home-solid .site-btn-outline-nav {
    border-color: var(--navy);
    color: var(--navy);
}

.site-header--home-solid .site-btn-outline-nav:hover,
.site-header--hero.site-header--home-solid .site-btn-outline-nav:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: #FFFFFF;
}

/* State A legacy: transparent hero navbar (non-home) */
.site-header--hero:not(.site-header--home-solid) .site-navbar.navbar-dark {
    background: transparent;
    box-shadow: none;
}

/* State B: scrolled sticky white navbar */
.site-header--hero.is-scrolled .site-navbar,
.site-header--hero.scrolled .site-navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(11, 31, 58, 0.08);
}

/* State C: internal pages light navbar */
.site-header--light .site-navbar.navbar-light {
    background: #FFFFFF;
    box-shadow: 0 1px 0 rgba(11, 31, 58, 0.06), 0 4px 20px rgba(11, 31, 58, 0.04);
}

.site-header--light.is-scrolled .site-navbar.navbar-light {
    box-shadow: 0 4px 24px rgba(11, 31, 58, 0.08);
}

/* Buttons */
.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all var(--transition);
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.site-btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-weight: 600;
    border-radius: 0.5rem;
}

.site-btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn-navy {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    font-weight: 600;
}

.btn-navy:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    color: var(--white);
}

/* Hero */
.site-page-hero {
    background: var(--navy);
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 5rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}

.site-page-hero-default {
    background-image: linear-gradient(135deg, rgba(10, 22, 40, 0.92), rgba(19, 39, 67, 0.88)),
        url('../images/hero-transport.png');
    background-size: cover;
    background-position: center;
}

.site-page-hero-compact {
    padding: 3.5rem 0 3rem;
}

.site-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.site-page-hero-content {
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.site-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 0.75rem;
}

.site-page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.site-page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.site-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Home hero */
.site-home-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 5rem;
}

.site-home-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-stat-item strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-light);
}

.site-stat-item span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Sections */
.site-section {
    padding: 5rem 0;
}

.site-section-gray {
    background: var(--gray-50);
}

.site-section-navy {
    background: var(--navy);
    color: var(--white);
}

.site-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.site-section-header .site-eyebrow {
    color: var(--accent);
}

.site-section-navy .site-section-header .site-eyebrow {
    color: var(--accent-light);
}

.site-section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.site-section-header p {
    color: var(--gray-600);
    margin: 0;
}

.site-section-navy .site-section-header p {
    color: rgba(255, 255, 255, 0.75);
}

/* Cards */
.site-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.site-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.site-card-image {
    height: 200px;
    background: var(--gray-100);
    background-size: cover;
    background-position: center;
    position: relative;
}

.site-card-image-placeholder {
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 2.5rem;
}

.site-card-body {
    padding: 1.5rem;
}

.site-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.site-card-body p {
    color: var(--gray-600);
    font-size: 0.92rem;
    margin-bottom: 0;
}

.site-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(249, 115, 22, 0.12);
    color: var(--accent);
    border-radius: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

/* Service card link */
.site-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.site-card-link:hover {
    color: inherit;
}

/* CTA band */
.site-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.site-cta h2 {
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.site-cta p {
    opacity: 0.85;
    max-width: 560px;
    margin: 0 auto 1.5rem;
}

/* Testimonials */
.site-testimonial {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    height: 100%;
}

.site-testimonial .stars {
    color: var(--accent);
    margin-bottom: 1rem;
}

.site-testimonial blockquote {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 1.25rem;
}

.site-testimonial .author {
    font-weight: 700;
    font-size: 0.9rem;
}

.site-testimonial .author small {
    display: block;
    font-weight: 400;
    color: var(--gray-400);
}

/* Partners */
.site-partner-logo {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.site-partner-logo:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.site-partner-logo img {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
}

/* Forms */
.site-form-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.site-form-label {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
}

.site-form-control {
    border-color: var(--gray-200);
    border-radius: 0.5rem;
    padding: 0.65rem 0.85rem;
}

.site-form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.15);
}

.site-order-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

/* Tracking */
.site-tracking-result {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2rem;
}

.site-status-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.site-status-step {
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--gray-200);
    color: var(--gray-600);
}

.site-status-step.active {
    background: var(--accent);
    color: var(--white);
}

.site-status-step.done {
    background: #dcfce7;
    color: #166534;
}

/* Content prose */
.site-prose {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
}

.site-prose h2, .site-prose h3 {
    color: var(--navy);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Footer — global mega footer (all pages) */
.ent-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
}

.ent-footer__main {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}

.ent-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr) 1.2fr;
    gap: clamp(2rem, 4vw, 3rem);
}

.ent-footer__brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    opacity: 0.7;
    margin: 1rem 0 1.5rem;
}

.ent-footer__social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.ent-footer__social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition);
}

.ent-footer__social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.ent-footer__col h6 {
    color: #fff;
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.ent-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ent-footer__links li { margin-bottom: 0.65rem; }

.ent-footer__links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.ent-footer__links a:hover { color: var(--accent-light); }

.ent-footer__contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.ent-footer__contact-item i {
    color: var(--accent);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.ent-footer__newsletter p {
    font-size: 0.88rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.ent-footer__newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.ent-footer__newsletter-form input {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    padding: 0.65rem 1rem;
    color: #fff;
    font-size: 0.88rem;
}

.ent-footer__newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.4); }

.ent-footer__newsletter-form button {
    background: var(--accent);
    border: none;
    border-radius: 0.5rem;
    padding: 0.65rem 1rem;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition);
    flex-shrink: 0;
}

.ent-footer__newsletter-form button:hover { background: var(--accent-dark); }

.ent-footer__cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.ent-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.82rem;
    opacity: 0.55;
}

.ent-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.ent-footer__badges span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.ent-footer__badges i { color: var(--accent); }

.site-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-footer-brand .brand-mark {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--accent);
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.site-footer-brand strong {
    color: #fff;
    font-size: 1rem;
}

.site-alert {
    border-radius: var(--radius);
    border: none;
}

/* Blog */
.site-blog-meta {
    font-size: 0.82rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.site-blog-card .site-card-image {
    height: 180px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .site-home-hero {
        min-height: auto;
        padding: 4rem 0 3rem;
    }

    .site-page-hero {
        padding: clamp(3rem, 8vw, 4rem) 0 clamp(2.5rem, 6vw, 3rem);
    }
}

@media (max-width: 575.98px) {
    .site-page-hero-compact {
        padding: 2.5rem 0 2rem;
    }
}

/* Floating WhatsApp */
.wa-float {
    position: fixed;
    right: max(1.35rem, env(safe-area-inset-right, 0px));
    bottom: max(1.35rem, calc(1rem + env(safe-area-inset-bottom, 0px)));
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.55rem;
}
.wa-float__btn {
    position: relative;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #25D366 0%, #128C7E 100%);
    color: #fff !important;
    text-decoration: none !important;
    box-shadow:
        0 4px 14px rgba(18, 140, 126, 0.35),
        0 10px 28px rgba(37, 211, 102, 0.35);
    transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
}
.wa-float__btn:hover,
.wa-float__btn:focus-visible {
    transform: translateY(-4px) scale(1.06);
    box-shadow:
        0 8px 20px rgba(18, 140, 126, 0.4),
        0 16px 36px rgba(37, 211, 102, 0.4);
    color: #fff !important;
    outline: none;
}
.wa-float__icon {
    position: relative;
    z-index: 2;
    display: flex;
    line-height: 0;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,.12));
}
.wa-float__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.45);
    z-index: 1;
    animation: wa-pulse 2.4s ease-out infinite;
    pointer-events: none;
}
.wa-float__pulse--delay {
    animation-delay: 1.2s;
}
@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.65; }
    70% { transform: scale(1.55); opacity: 0; }
    100% { transform: scale(1.55); opacity: 0; }
}
.wa-float__tip {
    order: -1;
    background: #075E54;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(7, 94, 84, 0.28);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}
.wa-float:hover .wa-float__tip,
.wa-float__btn:focus-visible + .wa-float__tip {
    opacity: 1;
    transform: translateX(0);
}
@media (max-width: 575.98px) {
    .wa-float {
        right: max(1rem, env(safe-area-inset-right, 0px));
        bottom: max(1rem, calc(0.85rem + env(safe-area-inset-bottom, 0px)));
    }
    .wa-float__btn {
        width: 3.35rem;
        height: 3.35rem;
    }
    .wa-float__icon svg {
        width: 24px;
        height: 24px;
    }
    .wa-float__tip {
        display: none;
    }
}

/* Order page: lift WhatsApp above sticky summary bar */
body.site-order-placement .wa-float {
    bottom: max(4.25rem, calc(3.75rem + env(safe-area-inset-bottom, 0px)));
}
@media (prefers-reduced-motion: reduce) {
    .wa-float__pulse,
    .wa-float__pulse--delay {
        animation: none;
        display: none;
    }
    .wa-float__btn {
        transition: none;
    }
}
