/* ==========================================================================
   Shweta Cargo Service — Website Stylesheet
   Palette taken from the company logo: deep navy + cargo orange
   ========================================================================== */

:root {
    --orange:        #F26F21;
    --orange-dark:   #d85c11;
    --orange-soft:   rgba(242, 111, 33, .10);
    --navy:          #0E1B3D;
    --navy-2:        #14264F;
    --ink:           #0B1526;
    --heading:       #101B33;
    --body:          #5b6478;
    --muted:         #8a93a6;
    --line:          #e6e9f0;
    --soft:          #f5f7fa;
    --white:         #ffffff;
    --radius:        16px;
    --radius-lg:     24px;
    --shadow:        0 18px 45px rgba(14, 27, 61, .10);
    --shadow-sm:     0 6px 20px rgba(14, 27, 61, .07);
    --ease:          .35s cubic-bezier(.4, 0, .2, 1);
    --header-h:      92px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--body);
    background: var(--white);
    overflow-x: hidden;
}

a   { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    color: var(--heading);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -.02em;
}

::selection { background: var(--orange); color: #fff; }

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */

.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
}

.section        { padding: 104px 0; }
.section-sm     { padding: 72px 0; }
.section-tight  { padding: 104px 0 0; }

.eyebrow {
    display: block;
    color: var(--orange);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .01em;
    margin-bottom: .85rem;
}

.section-title      { font-size: clamp(2rem, 3.6vw, 3.1rem); }
.section-title-sm   { font-size: clamp(1.75rem, 2.8vw, 2.4rem); }
.section-lead       { margin-top: 1.25rem; max-width: 640px; }

.text-center { text-align: center; }
.mx-auto     { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .95rem 2rem;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--ease);
}

.btn-orange        { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover  { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); }

.btn-navy          { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover    { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }

.btn-white         { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover   { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); }

.btn-ghost         { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover   { background: #fff; color: var(--navy); border-color: #fff; }

.btn-sm            { padding: .7rem 1.5rem; font-size: .87rem; }

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */

.site-header {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 900;
    padding: 20px 0;
    transition: var(--ease);
}

.site-header.is-stuck {
    position: fixed;
    padding: 12px 0;
    background: var(--navy);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
    animation: slideDown .4s ease;
}

@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.header-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }

.brand img {
    height: 56px;
    width: auto;
    background: #fff;
    border-radius: 12px;
    padding: 5px 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
    transition: var(--ease);
}

.site-header.is-stuck .brand img { height: 48px; }

.main-nav { margin-left: auto; }

.nav-list { display: flex; align-items: center; gap: 2.1rem; }

.nav-list > li { position: relative; }

.nav-list > li > a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: #fff;
    font-size: .87rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .6rem 0;
    transition: var(--ease);
}

.nav-list > li > a:hover,
.nav-list > li.is-active > a { color: var(--orange); }

.nav-list > li > a i { font-size: .65rem; transition: var(--ease); }
.nav-list > li:hover > a i { transform: rotate(180deg); }

/* dropdown */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: -20px;
    min-width: 258px;
    background: #fff;
    border-radius: 14px;
    padding: .6rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--ease);
}

.nav-list > li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px; left: 0; right: 0;
    height: 14px;
}

.dropdown-menu a {
    display: block;
    padding: .6rem .9rem;
    border-radius: 9px;
    color: var(--heading);
    font-size: .9rem;
    font-weight: 600;
    transition: var(--ease);
}

.dropdown-menu a:hover,
.dropdown-menu a.is-active { background: var(--orange-soft); color: var(--orange); padding-left: 1.2rem; }

.header-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

.header-call {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: #fff;
}

.header-call i {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    color: var(--orange);
    font-size: .95rem;
}

.header-call span { display: block; font-size: .72rem; line-height: 1.3; }
.header-call strong { font-size: .95rem; font-weight: 700; letter-spacing: .01em; }

.nav-toggle {
    display: none;
    width: 46px; height: 46px;
    border: 0;
    border-radius: 12px;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 1.15rem;
    cursor: pointer;
}

/* mobile drawer */
.mobile-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(340px, 86vw);
    height: 100%;
    background: var(--navy);
    z-index: 1100;
    padding: 26px 24px 40px;
    overflow-y: auto;
    transform: translateX(105%);
    transition: var(--ease);
}

.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.6rem; }
.mobile-nav-head img { height: 48px; background: #fff; border-radius: 10px; padding: 4px 10px; }

.mobile-close {
    width: 40px; height: 40px;
    border: 0; border-radius: 10px;
    background: rgba(255,255,255,.12);
    color: #fff; font-size: 1.05rem; cursor: pointer;
}

.mobile-nav li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem .2rem;
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,.09);
}

.mobile-nav li > a:hover { color: var(--orange); }

.mobile-sub { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.mobile-sub.is-open { max-height: 700px; }
.mobile-sub a { font-size: .88rem; font-weight: 600; opacity: .78; padding-left: 1rem; }

.mobile-nav-foot { margin-top: 1.8rem; color: rgba(255,255,255,.75); font-size: .9rem; }
.mobile-nav-foot a { display: block; margin-bottom: .5rem; }
.mobile-nav-foot .btn { margin-top: 1rem; width: 100%; }

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(6, 12, 26, .6);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--ease);
}

.nav-backdrop.is-open { opacity: 1; visibility: visible; }

/* --------------------------------------------------------------------------
   Hero slider (home)
   -------------------------------------------------------------------------- */

.hero {
    position: relative;
    margin: 12px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--navy);
}

/* The hero fills exactly one screen. The 24px subtracted is the .hero
   top + bottom margin, so the section ends flush with the fold.
   dvh (where supported) keeps it exact while mobile browser chrome
   collapses; min-height stops the content clipping on very short screens. */
.hero-slides {
    position: relative;
    height: calc(100vh - 24px);
    height: calc(100dvh - 24px);
    min-height: 560px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    /* Visibility flips only after the fade finishes, so the outgoing slide
       stays painted for the whole crossfade instead of vanishing instantly. */
    transition: opacity 1s ease, visibility 0s linear 1s;
}

.hero-slide.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transition: opacity 1s ease, visibility 0s linear 0s;
}

.hero-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 7s ease;
}

.hero-slide.is-active img { transform: scale(1); }

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,17,38,.72) 0%, rgba(8,17,38,.45) 45%, rgba(8,17,38,.85) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    text-align: center;
    padding: var(--header-h) 24px 150px;
    pointer-events: none;
}

.hero-content > div { max-width: 880px; pointer-events: auto; }

.hero-eyebrow {
    display: inline-block;
    color: #fff;
    background: rgba(242,111,33,.9);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: .5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.4rem;
}

.hero-title {
    color: #fff;
    font-size: clamp(2.2rem, 5.4vw, 4.1rem);
    text-transform: uppercase;
    letter-spacing: -.01em;
    margin-bottom: 1.2rem;
}

.hero-text {
    color: rgba(255,255,255,.85);
    font-size: 1.03rem;
    max-width: 660px;
    margin: 0 auto 2rem;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px; height: 52px;
    display: grid; place-items: center;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--ease);
}

.hero-arrow:hover { background: var(--orange); border-color: var(--orange); }
.hero-prev { left: 26px; }
.hero-next { right: 26px; }

.hero-features {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(9, 18, 40, .55);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255,255,255,.14);
}

.hero-features div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    padding: 1.2rem .8rem;
    color: #fff;
    font-size: .92rem;
    font-weight: 600;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.12);
}

.hero-features div:last-child { border-right: 0; }
.hero-features i { color: var(--orange); }

/* --------------------------------------------------------------------------
   Page hero banner (inner pages)
   -------------------------------------------------------------------------- */

.page-hero {
    position: relative;
    margin: 12px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 420px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: calc(var(--header-h) + 40px) 24px 70px;
    background: var(--navy);
}

.page-hero > img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,21,45,.38) 0%, rgba(196,72,12,.28) 60%, rgba(242,111,33,.38) 100%);
}

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

.page-hero h1 {
    color: #fff;
    font-size: clamp(2.1rem, 4.6vw, 3.4rem);
    margin-bottom: .6rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    color: rgba(255,255,255,.85);
    font-size: .95rem;
    font-weight: 600;
}

.breadcrumb i { font-size: .68rem; color: #fff; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb span { color: #fff; }

/* --------------------------------------------------------------------------
   About block
   -------------------------------------------------------------------------- */

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px;
    align-items: center;
}

.about-visual { position: relative; }

.about-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.about-stack { position: relative; padding-bottom: 90px; padding-right: 90px; }
.about-stack .stack-main { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.about-stack .stack-sub {
    position: absolute;
    right: 0; bottom: 0;
    width: 46%;
    border-radius: var(--radius);
    border: 8px solid #fff;
    box-shadow: var(--shadow);
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem 1.6rem;
    margin-top: 1.75rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    color: var(--heading);
    font-size: .95rem;
    font-weight: 600;
}

.check-list i { color: var(--orange); margin-top: .38rem; font-size: .82rem; }

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid var(--line);
    text-align: center;
}

.stat-value {
    font-size: clamp(2rem, 3.4vw, 2.9rem);
    font-weight: 800;
    color: var(--heading);
    letter-spacing: -.03em;
    line-height: 1.1;
}

.stat-label { font-size: .92rem; color: var(--muted); margin-top: .35rem; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 46px 30px;
    text-align: center;
}

/* --------------------------------------------------------------------------
   Tracking / enquiry band
   -------------------------------------------------------------------------- */

.track-band { display: grid; grid-template-columns: 1fr 1fr; }

.track-visual { position: relative; min-height: 480px; }
.track-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.track-panel {
    background: var(--ink);
    color: #fff;
    padding: 78px 60px;
    position: relative;
    overflow: hidden;
}

.track-panel .dots {
    position: absolute;
    right: -40px; bottom: -30px;
    width: 60%;
    opacity: .18;
    pointer-events: none;
}

.track-panel h2 { color: #fff; position: relative; z-index: 2; }
.track-panel p  { color: rgba(255,255,255,.68); margin-top: .9rem; position: relative; z-index: 2; }

.track-form {
    position: relative;
    z-index: 2;
    display: flex;
    gap: .8rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.track-form input {
    flex: 1 1 240px;
    background: transparent;
    border: 0;
    border-bottom: 2px solid rgba(255,255,255,.35);
    color: #fff;
    padding: .9rem .2rem;
    outline: none;
}

.track-form input::placeholder { color: rgba(255,255,255,.45); }
.track-form input:focus { border-bottom-color: var(--orange); }

.track-hint { position: relative; z-index: 2; font-size: .82rem; color: rgba(255,255,255,.45); margin-top: .9rem; }

/* --------------------------------------------------------------------------
   Service cards
   -------------------------------------------------------------------------- */

.services-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 58px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 28px 30px;
    transition: var(--ease);
}

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

.service-card .icon {
    width: 62px; height: 62px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: var(--orange-soft);
    color: var(--orange);
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
    transition: var(--ease);
}

.service-card:hover .icon { background: var(--orange); color: #fff; }

.service-card h3 { font-size: 1.16rem; margin-bottom: .6rem; }
.service-card p  { font-size: .93rem; }

.service-card .more {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: 1.15rem;
    color: var(--orange);
    font-size: .88rem;
    font-weight: 700;
}

.service-card .more i { transition: var(--ease); }
.service-card:hover .more i { transform: translateX(5px); }

/* services index cards with image */
.service-tiles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.service-tile {
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    transition: var(--ease);
    display: flex;
    flex-direction: column;
}

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

/* The clip wrapper keeps the zoom-on-hover contained while letting the icon
   badge hang below the image edge. */
.service-tile-media { position: relative; }
.service-tile-media .media-clip { aspect-ratio: 16 / 11; overflow: hidden; }
.service-tile-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-tile:hover .service-tile-media img { transform: scale(1.07); }

.service-tile-media .icon {
    position: absolute;
    left: 22px; bottom: -26px;
    width: 56px; height: 56px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: var(--orange);
    color: #fff;
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.service-tile-body { padding: 44px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.service-tile-body h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.service-tile-body p  { font-size: .93rem; flex: 1; }

/* --------------------------------------------------------------------------
   Video band
   -------------------------------------------------------------------------- */

.video-band {
    position: relative;
    min-height: 460px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.video-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-band::after { content: ''; position: absolute; inset: 0; background: rgba(8,17,38,.45); }

.play-btn {
    position: relative;
    z-index: 2;
    width: 84px; height: 84px;
    display: grid; place-items: center;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    font-size: 1.35rem;
    cursor: pointer;
    transition: var(--ease);
}

.play-btn:hover { background: var(--orange); color: #fff; }

.play-btn::before {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.55);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%   { transform: scale(1);    opacity: 1; }
    100% { transform: scale(1.45); opacity: 0; }
}

/* --------------------------------------------------------------------------
   Why choose us (dark)
   -------------------------------------------------------------------------- */

.dark-section { background: var(--ink); color: rgba(255,255,255,.7); }
.dark-section h2, .dark-section h3 { color: #fff; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 40px;
    margin-top: 58px;
}

.why-item { display: flex; gap: 1.1rem; }

.why-item .tick {
    flex-shrink: 0;
    width: 46px; height: 46px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: var(--orange);
    color: #fff;
    font-size: .95rem;
}

.why-item h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.why-item p  { font-size: .91rem; color: rgba(255,255,255,.62); line-height: 1.7; }

/* --------------------------------------------------------------------------
   Expert / trusted partner band
   -------------------------------------------------------------------------- */

.expert-visual { position: relative; }
.expert-visual img { border-radius: var(--radius-lg); }

.year-badge {
    position: absolute;
    right: 24px; bottom: 34px;
    background: var(--orange);
    color: #fff;
    text-align: center;
    padding: 20px 26px;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.year-badge strong { display: block; font-size: 2.6rem; font-weight: 800; line-height: 1; }
.year-badge span   { font-size: .82rem; font-weight: 600; opacity: .95; }

.expert-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.avatar-row { display: flex; align-items: center; gap: .9rem; }
.avatar-stack { display: flex; }

.avatar-stack span {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 3px solid #fff;
    background: var(--navy);
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    margin-left: -14px;
}

.avatar-stack span:first-child { margin-left: 0; }

.avatar-row strong { display: block; font-size: 1.05rem; color: var(--heading); line-height: 1.2; }
.avatar-row small  { font-size: .86rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   Expertise progress bars (about)
   -------------------------------------------------------------------------- */

.bar { margin-bottom: 1.9rem; }

.bar-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: .6rem;
    color: var(--heading);
    font-size: .95rem;
    font-weight: 700;
}

.bar-track { height: 7px; border-radius: 50px; background: var(--line); overflow: hidden; }

.bar-fill {
    height: 100%;
    width: 0;
    border-radius: 50px;
    background: var(--orange);
    transition: width 1.4s cubic-bezier(.22, 1, .36, 1);
}

/* --------------------------------------------------------------------------
   FAQ accordion — per-post questions at the foot of a blog article
   -------------------------------------------------------------------------- */

.faq-list {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item + .faq-item { border-top: 1px solid var(--line); }

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    width: 100%;
    padding: 1.15rem 1.4rem;
    border: 0;
    background: none;
    color: var(--heading);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
    cursor: pointer;
    transition: var(--ease);
}

.faq-q:hover { background: var(--soft); color: var(--orange); }

.faq-q i {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--orange-soft);
    color: var(--orange);
    font-size: .72rem;
    transition: var(--ease);
}

.faq-item.is-open .faq-q { background: var(--soft); color: var(--orange); }
.faq-item.is-open .faq-q i { background: var(--orange); color: #fff; transform: rotate(135deg); }

.faq-a { padding: 0 1.4rem 1.25rem; background: var(--soft); }
.faq-a p { margin: 0; }

@media (max-width: 640px) {
    .faq-q { padding: 1rem 1.1rem; font-size: .95rem; }
    .faq-a { padding: 0 1.1rem 1.1rem; }
}

/* --------------------------------------------------------------------------
   Rich text — content written in the admin editor
   --------------------------------------------------------------------------
   The reset above clears list markers and heading spacing site-wide, so the
   editor's output gets its own typography back here. */

.rich-text > :first-child { margin-top: 0; }
.rich-text::after { content: ''; display: table; clear: both; }

.rich-text p { margin-top: 1.25rem; }

.rich-text h2,
.rich-text h3,
.rich-text h4 {
    color: var(--heading);
    margin-top: 2rem;
    margin-bottom: .8rem;
    line-height: 1.3;
}

.rich-text h2 { font-size: 1.6rem; }
.rich-text h3 { font-size: 1.3rem; }
.rich-text h4 { font-size: 1.1rem; }

.rich-text strong, .rich-text b { color: var(--heading); font-weight: 700; }

.rich-text a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.rich-text a:hover { color: var(--orange-dark); }

.rich-text ul,
.rich-text ol {
    margin: 1.25rem 0 1.25rem 1.35rem;
    padding-left: .5rem;
}

.rich-text ul { list-style: disc; }
.rich-text ol { list-style: decimal; }
.rich-text li { margin-top: .5rem; }
.rich-text li::marker { color: var(--orange); }

.rich-text blockquote {
    margin: 1.7rem 0;
    padding: 1.1rem 1.5rem;
    border-left: 4px solid var(--orange);
    border-radius: 0 12px 12px 0;
    background: var(--soft);
    color: var(--heading);
    font-style: italic;
}

.rich-text blockquote p { margin-top: 0; }
.rich-text blockquote p + p { margin-top: .8rem; }

.rich-text img { border-radius: 12px; }

.rich-text figure { margin: 1.7rem 0; }
.rich-text figure.image img { margin: 0 auto; }

.rich-text figcaption {
    margin-top: .7rem;
    font-size: .85rem;
    color: var(--muted);
    text-align: center;
}

/* CKEditor writes these classes on floated and full-width images. */
.rich-text .image-style-side { max-width: 48%; float: right; margin: .4rem 0 1.2rem 1.6rem; }
.rich-text .image-style-align-left { float: left; margin: .4rem 1.6rem 1.2rem 0; max-width: 48%; }
.rich-text .image-style-align-right { float: right; margin: .4rem 0 1.2rem 1.6rem; max-width: 48%; }
.rich-text .image-style-align-center { margin-left: auto; margin-right: auto; }
.rich-text .image-inline img { display: inline-block; }

/* Tables scroll sideways rather than pushing the layout wide on phones. */
.rich-text figure.table { overflow-x: auto; }

.rich-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.7rem 0;
    font-size: .93rem;
}

.rich-text figure.table table { margin: 0; }

.rich-text th,
.rich-text td {
    border: 1px solid var(--line);
    padding: .8rem 1rem;
    text-align: left;
    vertical-align: top;
}

.rich-text th { background: var(--soft); color: var(--heading); font-weight: 700; }

.rich-text hr { margin: 2rem 0; border: 0; border-top: 1px solid var(--line); }

.rich-text pre {
    margin: 1.5rem 0;
    padding: 1.1rem 1.3rem;
    border-radius: 12px;
    background: var(--ink);
    color: #e6e9f0;
    overflow-x: auto;
    font-size: .88rem;
}

.rich-text code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: .9em;
}

.rich-text p > code,
.rich-text li > code {
    background: var(--soft);
    border-radius: 5px;
    padding: .1rem .4rem;
    color: var(--orange-dark);
}

@media (max-width: 640px) {
    .rich-text .image-style-side,
    .rich-text .image-style-align-left,
    .rich-text .image-style-align-right {
        float: none;
        max-width: 100%;
        margin: 1.5rem 0;
    }
}

/* --------------------------------------------------------------------------
   Service detail page
   -------------------------------------------------------------------------- */

.service-layout {
    display: grid;
    grid-template-columns: 288px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.service-nav li + li { margin-top: 12px; }

.service-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 1.3rem;
    border-radius: 12px;
    background: var(--soft);
    color: var(--heading);
    font-size: .97rem;
    font-weight: 700;
    transition: var(--ease);
}

.service-nav a:hover { background: #eceff5; }
.service-nav a i { font-size: .78rem; opacity: 0; transition: var(--ease); }
.service-nav a:hover i { opacity: .5; }

.service-nav a.is-active { background: var(--orange); color: #fff; }
.service-nav a.is-active i { opacity: 1; }

.service-aside-card {
    margin-top: 30px;
    background: var(--ink);
    color: rgba(255,255,255,.72);
    border-radius: var(--radius);
    padding: 32px 26px;
    text-align: center;
}

.service-aside-card i { font-size: 1.9rem; color: var(--orange); margin-bottom: .9rem; display: block; }
.service-aside-card h4 { color: #fff; font-size: 1.15rem; margin-bottom: .5rem; }
.service-aside-card p { font-size: .9rem; }
.service-aside-card .btn { margin-top: 1.2rem; }

.service-detail-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.service-detail-media { position: relative; }
.service-detail-media img { border-radius: var(--radius); }

.service-caption {
    position: absolute;
    left: 22px; right: 22px; bottom: 22px;
    background: var(--orange);
    color: #fff;
    border-radius: 12px;
    padding: 18px 22px;
    font-size: .94rem;
    font-weight: 600;
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 44px;
    margin-top: 40px;
}

.feature-item { display: flex; gap: 1.15rem; }

.feature-item .tick {
    flex-shrink: 0;
    width: 58px; height: 58px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: var(--ink);
    color: #fff;
    font-size: 1.15rem;
    transition: var(--ease);
}

.feature-item:hover .tick { background: var(--orange); }
.feature-item h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.feature-item p  { font-size: .92rem; }

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 60px;
    align-items: start;
}

.contact-item { display: flex; gap: 1.1rem; margin-top: 1.9rem; }

.contact-item .icon {
    flex-shrink: 0;
    width: 54px; height: 54px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 1.1rem;
}

.contact-item h4 { font-size: 1.06rem; margin-bottom: .2rem; }
.contact-item p, .contact-item a { font-size: .95rem; color: var(--body); }
.contact-item a:hover { color: var(--orange); }

.form-card {
    background: var(--soft);
    border-radius: var(--radius-lg);
    padding: 46px 44px;
}

.form-card h2 { font-size: 1.6rem; margin-bottom: .6rem; }
.form-card > p { font-size: .95rem; margin-bottom: 1.8rem; }

.form-field { margin-bottom: 1rem; }

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: .95rem 1.1rem;
    color: var(--heading);
    outline: none;
    transition: var(--ease);
}

.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--muted); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-soft); }

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #dc3545; }

.field-error { display: block; color: #dc3545; font-size: .82rem; margin-top: .35rem; }

.alert {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    font-size: .93rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.alert-success { background: #e7f7ee; color: #14804a; }
.alert i { margin-top: .22rem; }

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    line-height: 0;
}

.map-embed iframe { width: 100%; height: 430px; border: 0; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

/* Single column: the feedback reads first, with a small photo closing it off. */
.testimonial-band {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 70px 48px 58px;
    text-align: center;
}

.testimonial-panel { max-width: 1180px; margin: 0 auto; }

.testimonial-panel .quote-mark { color: var(--orange); font-size: 1.7rem; margin-bottom: .9rem; }

/* Three quotes to a screen; anything beyond that scrolls sideways. */
.testimonial-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.testimonial-track::-webkit-scrollbar { display: none; }

.testimonial-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: left;
}

.testimonial-slide blockquote {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.65;
    letter-spacing: -.005em;
}

.testimonial-stars { color: var(--orange); margin-top: 1.1rem; font-size: .85rem; letter-spacing: .18em; }

/* margin-top:auto keeps the name aligned along the bottom of every card. */
.testimonial-author { margin-top: auto; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .88rem; color: rgba(255,255,255,.62); }
.testimonial-author strong { display: block; color: #fff; font-weight: 700; }

.testimonial-dots { display: flex; justify-content: center; gap: .55rem; margin-top: 2.2rem; }

.testimonial-dots button {
    width: 9px; height: 9px;
    border: 0; border-radius: 50%;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    padding: 0;
    transition: var(--ease);
}

.testimonial-dots button.is-active { background: var(--orange); width: 26px; border-radius: 50px; }

/* --------------------------------------------------------------------------
   Orange CTA band
   -------------------------------------------------------------------------- */

.cta-band { background: var(--orange); padding: 52px 0; }

.cta-band .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-band h2 { color: #fff; font-size: clamp(1.4rem, 2.4vw, 2rem); }

/* Blinking caret while a [data-typing] heading is being written out. */
[data-typing].is-typing::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 1em;
    margin-left: 5px;
    vertical-align: -.12em;
    background: currentColor;
    animation: caret-blink .8s steps(1) infinite;
}

@keyframes caret-blink { 50% { opacity: 0; } }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer { background: var(--ink); color: rgba(255,255,255,.62); }

.footer-top {
    display: grid;
    grid-template-columns: 1.15fr .75fr .75fr 1.35fr;
    gap: 50px;
    padding: 88px 0 60px;
}

.footer-brand img {
    height: 62px;
    background: #fff;
    border-radius: 12px;
    padding: 6px 14px;
    margin-bottom: 1.3rem;
}

.footer-brand p { font-size: .93rem; }

.footer-gst {
    display: inline-block;
    margin-top: 1rem;
    font-size: .84rem;
    color: rgba(255,255,255,.5);
}

.footer-heading {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links li { margin-bottom: .7rem; }

.footer-links a {
    font-size: .93rem;
    transition: var(--ease);
}

.footer-links a:hover { color: var(--orange); padding-left: 5px; }

.footer-contact-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.footer-contact-title h3 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); color: #fff; }

.footer-contact-title a {
    width: 52px; height: 52px;
    flex-shrink: 0;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    font-size: 1.05rem;
    transition: var(--ease);
}

.footer-contact-title a:hover { background: var(--orange); border-color: var(--orange); }

.footer-contact-item { margin-bottom: 1.2rem; }
.footer-contact-item span { display: block; font-size: .82rem; color: rgba(255,255,255,.45); }

.footer-contact-item strong,
.footer-contact-item a {
    display: block;
    color: #fff;
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.45;
}

.footer-contact-item a:hover { color: var(--orange); }

.social-links { display: flex; gap: .8rem; margin-top: 1.8rem; }

.social-links a {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: .92rem;
    transition: var(--ease);
}

.social-links a:hover { background: var(--orange); transform: translateY(-3px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 24px 0;
    text-align: center;
    font-size: .89rem;
}

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

/* --------------------------------------------------------------------------
   Floating actions
   -------------------------------------------------------------------------- */

.float-actions {
    position: fixed;
    left: 22px; bottom: 26px;
    z-index: 950;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.float-btn {
    width: 54px; height: 54px;
    display: grid; place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
    transition: var(--ease);
}

.float-btn:hover { transform: scale(1.08); }
.float-whatsapp { background: #25D366; }
.float-call     { background: var(--orange); }

.scroll-top {
    position: fixed;
    right: 22px; bottom: 26px;
    z-index: 950;
    width: 48px; height: 48px;
    display: grid; place-items: center;
    border: 0; border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: .95rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--ease);
}

.scroll-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.scroll-top:hover { background: var(--navy); }

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1200px) {
    .nav-list { gap: 1.5rem; }
    .header-call { display: none; }
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 44px; }
}

@media (max-width: 992px) {
    :root { --header-h: 84px; }

    .main-nav { display: none; }
    .nav-toggle { display: grid; place-items: center; }
    .header-actions { margin-left: auto; }

    .section, .section-tight { padding: 72px 0; }

    .grid-2 { grid-template-columns: 1fr; gap: 44px; }
    .grid-2.reverse-md > .about-visual,
    .grid-2.reverse-md > .expert-visual { order: -1; }

    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
    .why-grid  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .track-band { grid-template-columns: 1fr; }
    .track-panel { padding: 56px 32px; }
    .track-visual { min-height: 320px; }

    .testimonial-band { padding: 56px 32px 48px; }
    .testimonial-slide { flex-basis: calc((100% - 24px) / 2); }

    .service-layout { grid-template-columns: 1fr; gap: 40px; }
    .service-detail-top { grid-template-columns: 1fr; gap: 32px; }
    .service-detail-media { order: -1; }

    .contact-grid { grid-template-columns: 1fr; gap: 44px; }
    .form-card { padding: 36px 28px; }

    .services-head { flex-direction: column; align-items: flex-start; gap: 20px; }

    .hero-features { grid-template-columns: repeat(2, 1fr); }
    .hero-features div:nth-child(2) { border-right: 0; }
    .hero-features div:nth-child(1), .hero-features div:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 767px) {
    body { font-size: 15.5px; }

    .hero { margin: 8px; }
    /* Same full-screen rule, minus the smaller 8px margin. The bottom padding
       reserves just the height of the feature strip so the buttons still clear
       it once the heading and paragraph wrap onto several lines. */
    .hero-slides {
        height: calc(100vh - 16px);
        height: calc(100dvh - 16px);
        min-height: 600px;
    }
    .hero-content { padding: calc(var(--header-h) + 20px) 20px 118px; }
    .hero-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
    .hero-text { font-size: .97rem; }

    /* Keep each feature label on a single line so the strip stays two
       compact rows and the bottom padding above still clears it. */
    .hero-features div { padding: .8rem .4rem; font-size: .79rem; gap: .45rem; }
    /* Arrows would sit on top of the heading at this width — the slider
       still advances automatically. */
    .hero-arrow { display: none; }

    .page-hero { margin: 8px; min-height: 340px; padding: calc(var(--header-h) + 28px) 20px 52px; }

    .services-grid, .service-tiles, .why-grid,
    .feature-grid, .check-list, .stats-grid { grid-template-columns: 1fr; }

    .stats-row { gap: 30px 16px; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 62px 0 48px; }

    .about-stack { padding-bottom: 60px; padding-right: 0; }
    .about-stack .stack-sub { width: 52%; right: 6%; }

    .cta-band .container { flex-direction: column; text-align: center; }

    .track-panel { padding: 46px 24px; }
    .testimonial-band { padding: 46px 24px 40px; }
    .testimonial-slide { flex-basis: 100%; padding: 28px 22px; }
    .year-badge { right: 16px; bottom: 16px; padding: 14px 18px; }
    .year-badge strong { font-size: 2rem; }

    /* The full-screen hero pins its feature strip to the bottom edge, so the
       floating buttons are raised clear of it on small screens. */
    .float-actions { left: 16px; bottom: 108px; }
    .float-btn { width: 48px; height: 48px; font-size: 1.15rem; }
    .scroll-top { right: 16px; bottom: 18px; }
}

/* --------------------------------------------------------------------------
   Short viewports
   -------------------------------------------------------------------------- */

/* On a full-screen hero the available space is the screen height, so on short
   handsets the heading and paragraph have to give a little for the buttons to
   stay above the feature strip. */
@media (max-width: 767px) and (max-height: 730px) {
    .hero-eyebrow { font-size: .72rem; padding: .4rem 1rem; margin-bottom: .9rem; }
    .hero-title   { font-size: clamp(1.55rem, 7vw, 1.9rem); margin-bottom: .8rem; }
    .hero-text    { font-size: .9rem; margin-bottom: 1.3rem; }
    .hero-features div { padding: .65rem .4rem; font-size: .75rem; }
    .hero-content { padding: calc(var(--header-h) + 12px) 18px 104px; }
}
