/* ============================================
   AMBROSIA SHIPPING LTD
   Design Direction: Luxury Maritime Editorial
   Typography: DM Serif Display + Outfit
   Palette: Deep Navy + Steel Blue + Brass Gold
============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --navy: #1B2A4A;
    --navy-deep: #0F1B33;
    --navy-light: #243B66;
    --steel: #4A6FA5;
    --steel-light: #6B8FC5;
    --steel-pale: #E8EEF6;
    --plum: #6B5B7B;
    --brass: #C4956A;
    --brass-light: #D4A574;
    --brass-glow: rgba(196, 149, 106, 0.2);
    --sand: #F5F0E8;
    --cream: #FDFBF7;
    --white: #FFFFFF;
    --smoke: #F7F8FA;
    --charcoal: #2C2C2C;
    --slate: #5A6577;
    --mist: #9CA8B8;
    --border: #E4E8EE;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
    --shadow-soft: 0 4px 30px rgba(27, 42, 74, 0.08);
    --shadow-card: 0 8px 40px rgba(27, 42, 74, 0.10);
    --shadow-elevated: 0 20px 60px rgba(27, 42, 74, 0.15);
    --shadow-brass: 0 8px 30px rgba(196, 149, 106, 0.3);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    font-weight: 400;
    font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--navy);
    line-height: 1.2;
    font-weight: 400;
}

a { text-decoration: none; color: var(--steel); transition: all 0.4s var(--ease-smooth); }
a:hover { color: var(--brass); }
img { max-width: 100%; height: auto; display: block; }
p { color: var(--slate); line-height: 1.8; font-size: 0.95rem; }
::selection { background: var(--brass); color: var(--white); }

/* ---- UTILITY ---- */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }
.bg-cream { background: var(--cream); }
.bg-sand { background: var(--sand); }
.bg-navy { background: var(--navy); }
.bg-smoke { background: var(--smoke); }
.text-brass { color: var(--brass) !important; }
.text-steel { color: var(--steel) !important; }

/* ---- SECTION TITLES ---- */
.sec-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brass);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.sec-label::before {
    content: '';
    width: 30px;
    height: 1.5px;
    background: var(--brass);
}

.sec-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.sec-title.white { color: var(--white); }

.sec-desc {
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--slate);
}

.sec-desc.center { margin-left: auto; margin-right: auto; }

.sec-header-center { text-align: center; margin-bottom: 60px; }
.sec-header-center .sec-label::before { display: none; }
.sec-header-center .sec-label::after {
    content: '';
    width: 30px;
    height: 1.5px;
    background: var(--brass);
}

/* ---- BUTTONS ---- */
.btn-am {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-am::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-out-expo);
}

.btn-am:hover::before { transform: translateX(100%); }

.btn-am-primary {
    background: var(--navy);
    color: var(--white);
}

.btn-am-primary:hover {
    background: var(--navy-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-elevated);
}

.btn-am-brass {
    background: var(--brass);
    color: var(--white);
}

.btn-am-brass:hover {
    background: var(--brass-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-brass);
}

.btn-am-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-am-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-am-ghost {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 12px 28px;
}

.btn-am-ghost:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-am i { font-size: 0.75rem; transition: transform 0.3s ease; }
.btn-am:hover i { transform: translateX(4px); }

/* ============================================
   PRELOADER
============================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.done { opacity: 0; visibility: hidden; }

.preloader-inner {
    text-align: center;
}

.preloader-inner .pre-logo {
    height: 50px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.pre-wave {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.pre-wave span {
    width: 4px;
    height: 20px;
    background: var(--brass);
    border-radius: 2px;
    animation: preWave 1s ease-in-out infinite;
}

.pre-wave span:nth-child(2) { animation-delay: 0.1s; }
.pre-wave span:nth-child(3) { animation-delay: 0.2s; }
.pre-wave span:nth-child(4) { animation-delay: 0.3s; }
.pre-wave span:nth-child(5) { animation-delay: 0.4s; }

@keyframes preWave {
    0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* ============================================
   SCROLL TO TOP
============================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-smooth);
    z-index: 999;
    box-shadow: var(--shadow-card);
}

.scroll-top-btn.show { opacity: 1; visibility: visible; }
.scroll-top-btn:hover {
    background: var(--brass);
    transform: translateY(-4px) scale(1.05);
}

/* ============================================
   TOP BAR
============================================ */
.topbar {
    background: var(--navy-deep);
    padding: 10px 0;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar a { color: rgba(255,255,255,0.65); }
.topbar a:hover { color: var(--brass); }
.topbar i { color: var(--brass); margin-right: 6px; font-size: 0.72rem; }

.topbar .divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.15);
    display: inline-block;
    vertical-align: middle;
    margin: 0 18px;
}

.topbar-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.55);
    font-size: 0.72rem;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.topbar-social a:hover {
    background: var(--brass);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   NAVBAR
============================================ */
.navbar-am {
    background: var(--white);
    padding: 12px 0;
    transition: all 0.4s var(--ease-smooth);
    z-index: 1050;
    box-shadow: none;
}

.navbar-am.fixed {
    padding: 6px 0;
    box-shadow: 0 2px 30px rgba(27,42,74,0.08);
}

.navbar-am .navbar-brand img {
    height: 55px;
    transition: height 0.3s ease;
}

.navbar-am.fixed .navbar-brand img { height: 44px; }

.navbar-am .nav-link {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy) !important;
    padding: 8px 16px !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.navbar-am .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    width: 0;
    height: 2px;
    background: var(--brass);
    transition: width 0.3s var(--ease-out-expo);
}

.navbar-am .nav-link:hover::after,
.navbar-am .nav-link.active::after { width: calc(100% - 32px); }

.navbar-am .nav-link:hover { color: var(--steel) !important; }

.navbar-am .dropdown-menu {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-elevated);
    padding: 14px 0;
    margin-top: 10px;
    min-width: 240px;
    border-top: 3px solid var(--brass);
    animation: dropFade 0.35s var(--ease-out-expo);
}

@keyframes dropFade {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}

.navbar-am .dropdown-item {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 10px 24px;
    color: var(--charcoal);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.navbar-am .dropdown-item:hover {
    background: var(--steel-pale);
    color: var(--navy);
    border-left-color: var(--brass);
    padding-left: 28px;
}

.nav-cta-btn {
    background: var(--navy) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
    font-size: 0.78rem !important;
    letter-spacing: 1px !important;
    margin-left: 12px;
    border: none;
}

.nav-cta-btn::after { display: none !important; }

.nav-cta-btn:hover {
    background: var(--brass) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-brass);
}

.navbar-toggler {
    border: 2px solid var(--navy);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 1.1rem;
    color: var(--navy);
}

/* ============================================
   HERO SLIDER
============================================ */
.hero {
    position: relative;
    overflow: hidden;
}

.hero .carousel-item {
    height: 92vh;
    min-height: 600px;
    position: relative;
}

.hero .carousel-item .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 6s linear;
}

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

.hero .carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,27,51,0.92) 0%, rgba(27,42,74,0.75) 50%, rgba(74,111,165,0.6) 100%);
    z-index: 1;
}

/* Wave decoration at bottom of hero */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196,149,106,0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(196,149,106,0.3);
    color: var(--brass-light);
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero-tag i { font-size: 0.6rem; }

.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: var(--brass-light);
    font-style: italic;
}

.hero-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero stats bar */
.hero-stats {
    position: absolute;
    bottom: 100px;
    right: 0;
    z-index: 2;
    display: flex;
    gap: 0;
}

.hero-stat-item {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 28px 35px;
    text-align: center;
    min-width: 160px;
}

.hero-stat-item:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.hero-stat-item:last-child { border-radius: 0 var(--radius) var(--radius) 0; }

.hero-stat-item h3 {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 800;
    color: var(--brass-light);
    margin-bottom: 2px;
}

.hero-stat-item p {
    color: rgba(255,255,255,0.6);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

/* Carousel controls */
.hero .carousel-indicators {
    bottom: 35px;
    left: auto;
    right: auto;
    margin: 0;
    z-index: 4;
}

.hero .carousel-indicators button {
    width: 40px;
    height: 3px;
    border: none;
    border-radius: 2px;
    background: rgba(255,255,255,0.3);
    transition: all 0.4s ease;
}

.hero .carousel-indicators button.active {
    width: 60px;
    background: var(--brass);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    width: 52px;
    height: 52px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    margin: 0 25px;
}

.hero:hover .carousel-control-prev,
.hero:hover .carousel-control-next { opacity: 1; }

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    background: var(--brass);
    border-color: var(--brass);
}

/* ============================================
   FLOATING SERVICE STRIP
============================================ */
.service-strip {
    position: relative;
    z-index: 10;
    margin-top: -55px;
}

.strip-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 26px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.5s var(--ease-out-expo);
    border: 1px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.strip-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--steel), var(--brass));
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out-expo);
}

.strip-card:hover::after { transform: scaleX(1); }

.strip-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-elevated);
    border-color: var(--steel-pale);
}

.strip-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--steel-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.5s var(--ease-out-expo);
}

.strip-card:hover .strip-icon {
    background: var(--navy);
    transform: scale(1.1) rotate(5deg);
}

.strip-icon i {
    font-size: 1.3rem;
    color: var(--steel);
    transition: color 0.3s ease;
}

.strip-card:hover .strip-icon i { color: var(--brass-light); }

.strip-card h5 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.strip-card p {
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   ABOUT SECTION
============================================ */
.about-wrap {
    position: relative;
}

.about-img-col {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    position: relative;
}

.about-img-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.about-img-main:hover img { transform: scale(1.05); }

.about-float-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--navy);
    color: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-elevated);
    z-index: 2;
    border: 4px solid var(--white);
}

.about-float-badge h3 {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--brass-light);
    line-height: 1;
    margin-bottom: 2px;
}

.about-float-badge p {
    color: rgba(255,255,255,0.7);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

.about-small-img {
    position: absolute;
    top: 40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-card);
    z-index: 2;
}

.about-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .lead-text {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 16px;
    border-left: 3px solid var(--brass);
    padding-left: 18px;
}

.about-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 25px 0 30px;
}

.about-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--charcoal);
}

.about-check-item i {
    color: var(--brass);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ============================================
   SERVICES SECTION
============================================ */
.svc-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s var(--ease-out-expo);
    height: 100%;
    border: 1px solid var(--border);
    position: relative;
}

.svc-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-elevated);
    border-color: transparent;
}

.svc-card-img {
    height: 210px;
    overflow: hidden;
    position: relative;
}

.svc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out-expo);
}

.svc-card:hover .svc-card-img img { transform: scale(1.12); }

.svc-card-img .svc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,27,51,0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.svc-card:hover .svc-card-img .svc-overlay { opacity: 1; }

.svc-card-img .svc-overlay a {
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.svc-card-img .svc-overlay a:hover { color: var(--brass-light); }

.svc-card-body {
    padding: 28px 26px;
}

.svc-card-body .svc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--steel-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.4s ease;
}

.svc-card:hover .svc-icon {
    background: var(--navy);
}

.svc-card-body .svc-icon i {
    font-size: 1.1rem;
    color: var(--steel);
    transition: color 0.3s ease;
}

.svc-card:hover .svc-icon i { color: var(--brass-light); }

.svc-card-body h5 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.svc-card-body p {
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.svc-link {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.svc-link:hover { color: var(--brass); gap: 12px; }

/* ============================================
   CTA / BANNER
============================================ */
.cta-banner {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta-banner .cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,27,51,0.93) 0%, rgba(27,42,74,0.85) 50%, rgba(74,111,165,0.7) 100%);
}

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

.cta-banner h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 30px;
}

.cta-banner .cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--brass-light);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-body);
    margin-top: 10px;
}

.cta-banner .cta-phone i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--brass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    animation: phonePulse 2s infinite;
}

@keyframes phonePulse {
    0% { box-shadow: 0 0 0 0 rgba(196,149,106,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(196,149,106,0); }
    100% { box-shadow: 0 0 0 0 rgba(196,149,106,0); }
}

/* ============================================
   COUNTER / STATS
============================================ */
.counter-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.counter-item {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: var(--border);
}

.counter-item .c-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--steel-pale), rgba(196,149,106,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.counter-item .c-icon i {
    font-size: 1.1rem;
    color: var(--steel);
}

.counter-item h3 {
    font-family: var(--font-body);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1;
}

.counter-item span.suffix {
    color: var(--brass);
}

.counter-item p {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mist);
    margin: 0;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testi-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

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

.testi-card .quote-mark {
    font-size: 3.5rem;
    color: var(--steel-pale);
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 10px;
}

.testi-card .stars {
    color: var(--brass);
    font-size: 0.75rem;
    margin-bottom: 14px;
    display: flex;
    gap: 3px;
}

.testi-card .testi-text {
    font-size: 0.92rem;
    font-style: italic;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 22px;
}

.testi-card .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.testi-card .testi-author .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--steel-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--steel);
    flex-shrink: 0;
}

.testi-card .testi-author h6 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--navy);
}

.testi-card .testi-author small {
    font-size: 0.75rem;
    color: var(--mist);
    font-weight: 500;
}

/* ============================================
   PAGE BANNER (Inner Pages)
============================================ */
.page-hero {
    background: var(--navy);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196,149,106,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23ffffff' d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E");
    background-size: cover;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 14px;
    position: relative;
}

.page-hero .breadcrumb {
    position: relative;
}

.page-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    font-weight: 500;
}

.page-hero .breadcrumb-item a:hover { color: var(--brass-light); }
.page-hero .breadcrumb-item.active { color: var(--brass-light); font-size: 0.82rem; font-weight: 500; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ============================================
   IMAGE HOVER EFFECTS
============================================ */
.img-reveal {
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
}

.img-reveal img {
    transition: transform 0.7s var(--ease-out-expo);
    width: 100%;
    object-fit: cover;
}

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

.img-reveal .reveal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,27,51,0.85), rgba(74,111,165,0.6));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

.img-reveal:hover .reveal-overlay { opacity: 1; }

.img-reveal .reveal-overlay .reveal-inner {
    text-align: center;
    color: var(--white);
    transform: translateY(15px);
    transition: transform 0.5s var(--ease-out-expo);
}

.img-reveal:hover .reveal-overlay .reveal-inner { transform: translateY(0); }

.img-shine {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.img-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    transition: left 0.8s var(--ease-out-expo);
}

.img-shine:hover::after { left: 130%; }

/* ============================================
   TEAM
============================================ */
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s var(--ease-out-expo);
    text-align: center;
    border: 1px solid var(--border);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-elevated);
    border-color: transparent;
}

.team-card .team-photo {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.team-card .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.team-card:hover .team-photo img { transform: scale(1.06); }

.team-card .team-photo .team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background: linear-gradient(to top, rgba(15,27,51,0.9), transparent);
    display: flex;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.team-card:hover .team-photo .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-card .team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.team-card .team-social a:hover {
    background: var(--brass);
    color: var(--white);
    transform: translateY(-3px);
}

.team-card .team-info {
    padding: 22px 16px 26px;
}

.team-card .team-info h5 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.team-card .team-info span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brass);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   MISSION & VISION CARDS
============================================ */
.mv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--steel), var(--brass));
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
}

.mv-card .mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: transform 0.5s var(--ease-out-expo);
}

.mv-card:hover .mv-icon { transform: scale(1.1) rotate(5deg); }

.mv-card .mv-icon i {
    font-size: 1.6rem;
    color: var(--brass-light);
}

.mv-card h4 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.mv-card p { font-size: 0.9rem; line-height: 1.8; }

/* ============================================
   TRACKING
============================================ */
.track-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-elevated);
    max-width: 680px;
    margin: 0 auto;
    border: 1px solid var(--border);
}

.track-form-wrap .form-control {
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: var(--smoke);
}

.track-form-wrap .form-control:focus {
    border-color: var(--steel);
    box-shadow: 0 0 0 4px rgba(74,111,165,0.1);
    background: var(--white);
}

.track-result {
    background: var(--smoke);
    border-radius: var(--radius);
    padding: 30px;
    margin-top: 30px;
    border: 1px solid var(--border);
}

/* ============================================
   CONTACT
============================================ */
.office-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--steel), var(--brass));
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.office-card .office-badge {
    display: inline-block;
    background: var(--navy);
    color: var(--brass-light);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.office-card h4 {
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.office-card .office-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: var(--slate);
}

.office-card .office-detail i {
    color: var(--steel);
    margin-top: 4px;
    min-width: 18px;
    font-size: 0.85rem;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 45px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 18px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
    border-color: var(--steel);
    box-shadow: 0 0 0 4px rgba(74,111,165,0.1);
}

.contact-form-wrap textarea.form-control { min-height: 140px; }

/* ============================================
   SERVICE DETAIL + SIDEBAR
============================================ */
.svc-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: var(--shadow-card);
}

.svc-detail-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out-expo);
}

.svc-detail-img:hover img { transform: scale(1.04); }

.svc-sidebar {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
}

.svc-sidebar h5 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}

.svc-sidebar .sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-sidebar .sidebar-nav li { border-bottom: 1px solid var(--border); }
.svc-sidebar .sidebar-nav li:last-child { border-bottom: none; }

.svc-sidebar .sidebar-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 4px;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.svc-sidebar .sidebar-nav a:hover,
.svc-sidebar .sidebar-nav a.active {
    color: var(--steel);
    padding-left: 12px;
}

.svc-sidebar .sidebar-nav a.active {
    font-weight: 700;
    color: var(--navy);
}

.svc-sidebar .sidebar-nav a i {
    font-size: 0.6rem;
    color: var(--mist);
    transition: all 0.3s ease;
}

.svc-sidebar .sidebar-nav a:hover i { color: var(--brass); transform: translateX(4px); }

.sidebar-cta-box {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    margin-top: 24px;
}

.sidebar-cta-box h6 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.sidebar-cta-box p { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin-bottom: 14px; }

.sidebar-cta-box a {
    color: var(--brass-light);
    font-weight: 700;
    font-size: 1.15rem;
    font-family: var(--font-body);
}

.sidebar-cta-box a:hover { color: var(--white); }

/* ============================================
   MD MESSAGE
============================================ */
.md-photo-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
}

.md-photo-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.md-photo-wrap:hover img { transform: scale(1.04); }

.md-blockquote {
    border-left: 4px solid var(--brass);
    padding: 18px 24px;
    margin: 28px 0;
    background: var(--brass-glow);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--navy);
    font-size: 1.05rem;
    line-height: 1.7;
}

.md-signature {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--navy);
    margin-top: 8px;
}

/* ============================================
   GOOGLE MAP
============================================ */
.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.map-wrap iframe { width: 100%; height: 350px; border: none; }

/* ============================================
   FOOTER
============================================ */
.site-footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.65);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M50 0 C55 25, 75 50, 50 50 C25 50, 45 75, 50 100' fill='none' stroke='rgba(255,255,255,0.015)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 100px;
}

.site-footer .container { position: relative; z-index: 1; }

.footer-brand img {
    height: 50px;
    margin-bottom: 18px;
    opacity: 0.9;
}

.footer-brand p { font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.5); }

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 22px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-social a:hover {
    background: var(--brass);
    color: var(--white);
    border-color: var(--brass);
    transform: translateY(-3px);
}

.site-footer h6 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
}

.site-footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--brass);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    font-size: 0.7rem;
    color: var(--brass);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--brass-light);
    padding-left: 4px;
}

.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact-list { list-style: none; padding: 0; }

.footer-contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    align-items: flex-start;
}

.footer-contact-list li i {
    color: var(--brass);
    margin-top: 4px;
    font-size: 0.8rem;
    min-width: 16px;
}

.footer-contact-list li a { color: rgba(255,255,255,0.5); }
.footer-contact-list li a:hover { color: var(--brass-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 22px 0;
    margin-top: 60px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    margin: 0;
}

.footer-bottom a { color: var(--brass); }
.footer-bottom a:hover { color: var(--brass-light); }

/* ============================================
   SCROLL ANIMATIONS
============================================ */
.anim-up { opacity: 0; transform: translateY(40px); transition: all 0.8s var(--ease-out-expo); }
.anim-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s var(--ease-out-expo); }
.anim-right { opacity: 0; transform: translateX(40px); transition: all 0.8s var(--ease-out-expo); }
.anim-scale { opacity: 0; transform: scale(0.92); transition: all 0.8s var(--ease-out-expo); }

.anim-up.in-view, .anim-left.in-view, .anim-right.in-view, .anim-scale.in-view {
    opacity: 1;
    transform: none;
}

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
.d6 { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1199.98px) {
    .hero-stats { display: none; }
    .about-small-img { display: none; }
}

@media (max-width: 991.98px) {
    .hero .carousel-item { height: 75vh; }
    .navbar-am .dropdown-menu { border-top: none; box-shadow: none; border-radius: 0; }
    .counter-row { grid-template-columns: repeat(2, 1fr); }
    .counter-item:nth-child(2)::after { display: none; }
    .about-float-badge { right: 20px; }
    .section-pad { padding: 70px 0; }
}

@media (max-width: 767.98px) {
    .topbar { display: none; }
    .hero .carousel-item { height: 65vh; min-height: 480px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-btns .btn-am-outline { display: none; }
    .service-strip { margin-top: 0; }
    .section-pad { padding: 50px 0; }
    .sec-title { font-size: 1.8rem; }
    .counter-row { grid-template-columns: 1fr 1fr; }
    .counter-item::after { display: none !important; }
    .about-float-badge { position: relative; bottom: 0; right: 0; margin-top: 20px; display: inline-block; }
    .page-hero { padding: 110px 0 60px; }
    .site-footer { text-align: center; }
    .site-footer h6::after { left: 50%; transform: translateX(-50%); }
    .footer-social { justify-content: center; }
    .track-form-wrap { padding: 30px; }
    .contact-form-wrap { padding: 28px; }
    .office-card::before { display: none; }
}

@media (max-width: 575.98px) {
    .about-checks { grid-template-columns: 1fr; }
    .hero-content p { font-size: 0.9rem; }
}
