/* =========================================================================
   Tatvika Logistics — Public site styles
   Design system: brand blue (#1B3F8B) + orange (#E89B2C) on clean neutrals.
   ========================================================================= */

:root {
    --brand: #1B3F8B;
    --brand-700: #14306b;
    --brand-50: #eef2fb;
    --accent: #E89B2C;
    --accent-600: #d18620;
    --ink: #1a1d29;
    --muted: #5b6478;
    --line: #e6e9f2;
    --bg: #ffffff;
    --bg-soft: #f7f9fc;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow-sm: 0 4px 14px rgba(20, 30, 60, 0.06);
    --shadow-md: 0 10px 30px rgba(20, 30, 60, 0.10);
    --shadow-lg: 0 24px 60px rgba(20, 30, 60, 0.14);
    --container: 1180px;
    --transition: 200ms cubic-bezier(.2,.7,.3,1);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    color: var(--ink);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
h1, h2, h3, h4 { font-family: 'Poppins', 'Inter', sans-serif; line-height: 1.2; color: var(--ink); margin: 0 0 .6em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; letter-spacing: -.01em; }
h3 { font-size: 1.25rem; font-weight: 700; }
p  { margin: 0 0 1em; color: var(--muted); }
ul { padding-left: 1.2em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ------------------------------------------------------------ buttons */
.btn, .btn-cta, .btn-light, .btn-outline, .btn-ghost-light {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: .95rem; cursor: pointer;
    border: 1px solid transparent; transition: all var(--transition);
    white-space: nowrap;
}
.btn { background: var(--brand); color: #fff; }
.btn:hover { background: var(--brand-700); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-cta { background: var(--accent); color: #fff; padding: 10px 18px; }
.btn-cta:hover { background: var(--accent-600); color: #fff; transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--brand); }
.btn-light:hover { background: var(--brand-50); color: var(--brand); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-ghost-light { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.3); margin-top: 12px; }
.btn-ghost-light:hover { background: rgba(255,255,255,.2); color: #fff; }

/* ------------------------------------------------------------ header */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.96);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 24px; }
.brand img { height: 46px; width: auto; }
.main-nav {
    display: flex; align-items: center; gap: 32px;
    margin-left: auto;
}
.main-nav a:not(.btn-cta) {
    color: var(--ink); font-weight: 500; font-size: .94rem;
    position: relative; padding: 8px 0;
    display: inline-flex; align-items: center;
    line-height: 1;
}
.main-nav a:not(.btn-cta):hover { color: var(--brand); }
.main-nav a.active::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 2px; background: var(--accent); border-radius: 2px;
}
.main-nav a.btn-cta {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 11px 20px; line-height: 1; height: auto;
    margin-left: 6px;
}
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform var(--transition); }

/* ------------------------------------------------------------ nav dropdown (Services) */
.nav-dd { position: relative; display: inline-flex; align-items: center; }
.nav-dd-trigger { display: inline-flex; align-items: center; gap: 5px; }
.dd-caret { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--transition); flex: none; }
.dd-toggle { display: none; }
.dd-menu {
    position: absolute; top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 290px; background: #fff; border: 1px solid var(--line);
    border-radius: 14px; box-shadow: var(--shadow-lg); padding: 8px;
    display: flex; flex-direction: column; gap: 2px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: all var(--transition); z-index: 200;
}
.dd-menu::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.dd-menu a { display: block !important; padding: 11px 14px !important; border-radius: 9px; font-size: .9rem !important; font-weight: 500; color: var(--ink); white-space: nowrap; line-height: 1.3 !important; }
.dd-menu a::after { display: none !important; }
.dd-menu a:hover, .dd-menu a.active { background: var(--brand-50); color: var(--brand); }
.nav-dd:hover .dd-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dd:hover .dd-caret { transform: rotate(180deg); }

/* ------------------------------------------------------------ hero */
.hero {
    position: relative; overflow: hidden;
    color: #fff; padding: 120px 0 130px;
    background:
        linear-gradient(120deg, rgba(20,48,107,.92) 0%, rgba(27,63,139,.78) 45%, rgba(20,48,107,.55) 100%),
        url("../images/hero-warehouse.jpg") center/cover no-repeat;
    background-attachment: scroll;
}
.hero::before {
    content: ""; position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 88% 22%, rgba(232,155,44,.32), transparent 42%),
        radial-gradient(circle at 6% 120%, rgba(255,255,255,.10), transparent 55%);
    pointer-events: none;
}
.hero::after {
    content: ""; position: absolute; inset: 0; opacity: .06;
    background-image:
        linear-gradient(45deg, transparent 49.5%, #fff 49.5%, #fff 50.5%, transparent 50.5%),
        linear-gradient(-45deg, transparent 49.5%, #fff 49.5%, #fff 50.5%, transparent 50.5%);
    background-size: 36px 36px; pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero .eyebrow {
    display: inline-block; background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    padding: 6px 14px; border-radius: 999px;
    font-size: .85rem; font-weight: 500; margin-bottom: 18px;
}
.hero h1 { color: #fff; max-width: 880px; }
.hero .lead { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 720px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn-light { background: #fff; color: var(--brand); }
.hero-actions .btn-outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.6); padding: 12px 22px; border-radius: 8px; font-weight: 600; }
.hero-actions .btn-outline-light:hover { background: rgba(255,255,255,.1); color: #fff; }

/* hero stat strip */
.hero-stats {
    margin-top: 70px; display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.20);
    border-radius: var(--radius); padding: 30px 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-family: 'Poppins'; font-size: 2rem; font-weight: 800; color: #fff; line-height: 1.1; }
.hero-stat span { font-size: .92rem; color: rgba(255,255,255,.8); letter-spacing: .02em; }

/* ------------------------------------------------------------ page hero (sub-pages) */
.page-hero {
    background: linear-gradient(135deg, var(--brand), var(--brand-700));
    color: #fff; padding: 80px 0 70px; position: relative; overflow: hidden;
}
.page-hero::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(232,155,44,.2), transparent 50%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,.85); max-width: 680px; font-size: 1.05rem; }
.crumbs { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.crumbs a { color: rgba(255,255,255,.8); }

/* ------------------------------------------------------------ sections */
.section { padding: 90px 0; }
.section.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow {
    display: inline-block; color: var(--accent); font-weight: 700;
    font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px;
}
.section-head h2 { color: var(--ink); }
.section-head p  { color: var(--muted); font-size: 1.05rem; }

/* ------------------------------------------------------------ about snippet */
.about-snippet { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.about-snippet .image-wrap {
    position: relative; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--brand-50);
}
.about-snippet .image-wrap::after {
    content: ""; position: absolute; right: -40px; bottom: -40px;
    width: 180px; height: 180px; border-radius: 50%; background: var(--accent); opacity: .9;
}
.about-snippet h2 { margin-bottom: 18px; }
.about-snippet p  { font-size: 1.02rem; }

/* ------------------------------------------------------------ services grid */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.services-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.service-card {
    background: #fff; padding: 32px 28px; border-radius: var(--radius);
    border: 1px solid var(--line); transition: all var(--transition);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
}
.service-card:has(.card-img) { padding: 0; }
.service-card .card-img {
    width: 100%; aspect-ratio: 16/10; overflow: hidden;
    background: var(--brand-50);
}
.service-card .card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.service-card:hover .card-img img { transform: scale(1.06); }
/* auto-sliding image slider that fills a service-card image frame */
.service-card .card-img .card-slider { width: 100%; height: 100%; }
.service-card .card-img .card-slider .swiper-wrapper,
.service-card .card-img .card-slider .swiper-slide { height: 100%; }
.service-card .card-img .card-slider .swiper-pagination { bottom: 8px; }
.service-card .card-img .card-slider .swiper-pagination-bullet { background: #fff; opacity: .55; width: 7px; height: 7px; }
.service-card .card-img .card-slider .swiper-pagination-bullet-active { opacity: 1; background: var(--accent); }
.service-card .card-body { padding: 26px 28px 28px; }
.service-card::before {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left;
    transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
    width: 54px; height: 54px; border-radius: 12px;
    background: var(--brand-50); color: var(--brand);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.service-card .icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 10px; color: var(--ink); }
.service-card p  { font-size: .95rem; margin: 0 0 18px; }
.service-card .link {
    color: var(--brand); font-weight: 600; font-size: .9rem;
    display: inline-flex; align-items: center; gap: 6px;
}
.service-card .link svg { width: 16px; height: 16px; }

/* ------------------------------------------------------------ why-choose-us */
.why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.why-tile {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 24px 22px; text-align: left; transition: all var(--transition);
}
.why-tile:hover { border-color: var(--accent); transform: translateY(-3px); }
.why-tile .icon { width: 42px; height: 42px; border-radius: 10px; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.why-tile .icon svg { width: 22px; height: 22px; }
.why-tile h4 { margin: 0 0 4px; font-size: 1rem; }
.why-tile p  { margin: 0; font-size: .88rem; }

/* ------------------------------------------------------------ testimonials */
.testimonials { position: relative; }
.swiper.testimonial-swiper { padding-bottom: 60px; }
.testimonial-card {
    background: #fff; border-radius: var(--radius); padding: 36px 32px;
    border: 1px solid var(--line); height: 100%;
    display: flex; flex-direction: column;
}
.testimonial-card .quote-mark { color: var(--accent); font-family: 'Poppins'; font-size: 3rem; line-height: .8; }
.testimonial-card .quote { color: var(--ink); font-size: 1rem; line-height: 1.7; flex: 1; margin: 12px 0 20px; }
.testimonial-card .author { display: flex; align-items: center; gap: 14px; }
.testimonial-card .avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--brand); color: #fff; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.testimonial-card .author-name { font-weight: 600; color: var(--ink); margin: 0; line-height: 1.2; }
.testimonial-card .author-role { font-size: .85rem; color: var(--muted); margin: 0; }
.swiper-pagination-bullet { background: var(--brand) !important; }
.swiper-pagination-bullet-active { background: var(--accent) !important; }

/* ------------------------------------------------------------ blog cards */
.blog-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px;
}
.blog-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column;
    transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card .cover { aspect-ratio: 16/9; background: var(--brand-50); overflow: hidden; }
.blog-card .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.blog-card:hover .cover img { transform: scale(1.05); }
.blog-card .body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card .meta { font-size: .82rem; color: var(--muted); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.blog-card .chip { background: var(--brand-50); color: var(--brand); padding: 3px 10px; border-radius: 999px; font-weight: 600; font-size: .75rem; }
.blog-card h3 { margin: 0 0 10px; font-size: 1.1rem; }
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--brand); }
.blog-card p { font-size: .92rem; flex: 1; }
.blog-card .read-more { color: var(--brand); font-weight: 600; font-size: .9rem; }

/* whole card is a link; tag/arrow markup injected by the server */
.blog-card { text-decoration: none; color: inherit; }
.blog-card h3 { color: var(--ink); transition: color var(--transition); }
.blog-card:hover h3 { color: var(--brand); }
.blog-card .tag, .featured-post .tag {
    background: var(--brand-50); color: var(--brand);
    padding: 3px 10px; border-radius: 999px; font-weight: 600; font-size: .75rem;
}
.blog-card .arrow { color: var(--brand); font-weight: 600; font-size: .9rem; margin-top: 14px; display: inline-block; }

/* image slot: cover photo or gradient placeholder (shared by featured + cards) */
.img-slot {
    position: relative; aspect-ratio: 16/9; overflow: hidden;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: #fff; display: flex; align-items: center; justify-content: center;
    text-align: center; font-weight: 700; font-size: 1.02rem; line-height: 1.35; padding: 22px;
}
.img-slot.has-img { padding: 0; }
.img-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.blog-card:hover .img-slot img, .featured-post:hover .img-slot img { transform: scale(1.05); }

/* featured post (newest article, full-width 2-col banner) */
.featured-post {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 0;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; margin-bottom: 40px; box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.featured-post:hover { box-shadow: var(--shadow-md); }
.featured-post .img-slot { aspect-ratio: auto; min-height: 320px; font-size: 1.3rem; }
.featured-post .body { padding: 40px 46px; display: flex; flex-direction: column; justify-content: center; }
.featured-post .meta { font-size: .82rem; color: var(--muted); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.featured-post h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 0 0 14px; line-height: 1.2; }
.featured-post p { color: var(--muted); margin: 0; font-size: 1rem; }
.featured-post .btn { align-self: flex-start; }
@media (max-width: 820px) {
    .featured-post { grid-template-columns: 1fr; }
    .featured-post .img-slot { min-height: 200px; }
    .featured-post .body { padding: 28px 24px; }
}

/* ------------------------------------------------------------ CTA band */
.cta-band {
    background: var(--accent); color: #fff;
    padding: 60px 0;
}
.cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin: 0; }
.cta-band p  { color: rgba(255,255,255,.92); margin: 8px 0 0; }

/* ------------------------------------------------------------ contact / forms */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px;
}
.contact-info h3 { margin-bottom: 24px; }
.info-block {
    display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line);
}
.info-block:last-child { border-bottom: 0; }
.info-block .ico {
    flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px;
    background: var(--brand-50); color: var(--brand);
    display: flex; align-items: center; justify-content: center;
}
.info-block .ico svg { width: 22px; height: 22px; }
.info-block h4 { margin: 0 0 4px; font-size: 1rem; }
.info-block p  { margin: 0; font-size: .94rem; white-space: pre-line; color: var(--muted); }
.info-block a  { color: var(--ink); }

.form-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 36px; box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea {
    width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
    font-family: inherit; font-size: .95rem; transition: border-color var(--transition); background: #fff;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-50);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field.honeypot { position: absolute; left: -10000px; opacity: 0; }
.form-message { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: .94rem; }
.form-message.ok { background: #e7f5ec; color: #1c6b3a; border: 1px solid #b6e0c5; }
.form-message.err { background: #fdecea; color: #9c2a25; border: 1px solid #f5b5b1; }

/* ------------------------------------------------------------ map */
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 60px; }
.map-wrap iframe { display: block; width: 100%; }

/* ------------------------------------------------------------ footer */
.site-footer { background: #0e1a3a; color: rgba(255,255,255,.7); padding: 70px 0 0; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 50px; padding-bottom: 50px; }
.footer-grid h4 { color: #fff; font-size: 1.02rem; margin-bottom: 18px; }
.footer-grid p, .footer-grid li, .footer-grid a { color: rgba(255,255,255,.75); }
.footer-grid a:hover { color: var(--accent); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 10px; font-size: .94rem; }
.footer-logo { height: 50px; width: auto; background: #fff; padding: 8px 12px; border-radius: 6px; margin-bottom: 18px; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: #fff;
    transition: all var(--transition);
}
.socials a:hover { background: var(--accent); transform: translateY(-2px); }
.socials a.fb:hover       { background: #1877F2; }
.socials a.ig:hover       { background: linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.socials a.li:hover       { background: #0A66C2; }
.socials a svg { width: 18px; height: 18px; fill: currentColor; }

/* ---- WhatsApp floating button ---- */
.whatsapp-fab {
    position: fixed; right: 22px; bottom: 22px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 2px 6px rgba(0,0,0,.2);
    transition: transform .25s ease, box-shadow .25s ease;
    text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,.6), 0 4px 10px rgba(0,0,0,.25); }
.whatsapp-fab svg { width: 34px; height: 34px; fill: #fff; }
.whatsapp-fab::before {
    content: ""; position: absolute; inset: -6px; border-radius: 50%;
    background: #25D366; opacity: .35; z-index: -1;
    animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
    0%   { transform: scale(1);   opacity: .45; }
    70%  { transform: scale(1.35); opacity: 0;  }
    100% { transform: scale(1.35); opacity: 0;  }
}
@media (max-width: 600px) {
    .whatsapp-fab { right: 16px; bottom: 16px; width: 54px; height: 54px; }
    .whatsapp-fab svg { width: 30px; height: 30px; }
}
.footer-contact { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; margin-bottom: 14px; white-space: pre-line; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { white-space: nowrap; }
.footer-bottom { background: rgba(0,0,0,.25); padding: 16px 0; text-align: center; font-size: .85rem; }
.footer-bottom p { color: rgba(255,255,255,.55); margin: 0; }

/* ------------------------------------------------------------ misc / pages */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 36px 30px; transition: all var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card .icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--brand), var(--brand-700)); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.value-card .icon svg { width: 28px; height: 28px; }
.value-card h3 { font-size: 1.15rem; }

/* services detailed */
.service-detail { padding: 80px 0; border-bottom: 1px solid var(--line); }
.service-detail:nth-child(even) { background: var(--bg-soft); }
.service-detail .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-detail .container > div { min-width: 0; }   /* let the slider track size to the column, not its slides */
.service-detail.alt .container { direction: rtl; }
.service-detail.alt .container > * { direction: ltr; }
.service-detail .icon-lg {
    width: 72px; height: 72px; border-radius: 16px;
    background: var(--brand); color: #fff;
    display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.service-detail .icon-lg svg { width: 36px; height: 36px; }
.service-detail h2 { margin-bottom: 18px; }
.service-detail .vis {
    aspect-ratio: 5/4; border-radius: var(--radius);
    background: linear-gradient(135deg, var(--brand-50), var(--brand)); position: relative; overflow: hidden;
    box-shadow: var(--shadow-md);
}
.service-detail .vis img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Service-page image slider — blur-fill so photos are never cut */
.vis-slider {
    aspect-ratio: 5/4; width: 100%; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--brand-50), var(--brand));
    position: relative;
}
.vis-slider .swiper-wrapper { height: 100%; }
.vis-slider .swiper-slide { height: 100%; }
.vis-slider .vslide {
    position: relative; overflow: hidden; height: 100%; background: #0c1b40;
}
.vis-slider .vslide::before {           /* blurred backdrop fills the frame edges */
    content: ""; position: absolute; inset: 0;
    background-image: var(--img); background-size: cover; background-position: center;
    filter: blur(24px) brightness(.6); transform: scale(1.2);
}
.vis-slider .vslide img {               /* the real photo — always shown in full */
    position: relative; z-index: 1;
    width: 100%; height: 100%; object-fit: contain; display: block;
}
.vis-slider .swiper-pagination { bottom: 10px; }
.vis-slider .swiper-pagination-bullet { background: #fff; opacity: .5; width: 8px; height: 8px; }
.vis-slider .swiper-pagination-bullet-active { opacity: 1; background: var(--accent); }
.vis-nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
    width: 42px; height: 42px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(255,255,255,.9); color: var(--brand);
    font-size: 1.6rem; line-height: 1; padding: 0;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm); opacity: 0; transition: opacity .2s, background .2s;
}
.vis-slider:hover .vis-nav { opacity: 1; }
.vis-nav:hover { background: #fff; }
.vis-nav.prev { left: 12px; }
.vis-nav.next { right: 12px; }
.vis-nav.swiper-button-disabled { opacity: 0 !important; }
@media (max-width: 760px) { .vis-nav { opacity: 1; width: 38px; height: 38px; } }
.bullets { list-style: none; padding: 0; margin: 16px 0 28px; }
.bullets li { padding: 6px 0 6px 28px; position: relative; color: var(--ink); font-weight: 500; font-size: .96rem; }
.bullets li::before {
    content: ""; position: absolute; left: 0; top: 11px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--accent); box-shadow: inset 0 0 0 3px #fff;
}

/* process timeline */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: step; }
.process-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; text-align: center; counter-increment: step; position: relative; }
.process-step::before {
    content: counter(step, decimal-leading-zero);
    font-family: 'Poppins'; font-weight: 800;
    color: var(--brand-50); font-size: 2.6rem; line-height: 1;
    position: absolute; top: 14px; right: 16px;
}
.process-step h4 { margin: 60px 0 8px; font-size: 1rem; }
.process-step p { font-size: .85rem; margin: 0; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chips span {
    background: #fff; border: 1px solid var(--line);
    padding: 8px 16px; border-radius: 999px; font-size: .9rem; color: var(--ink); font-weight: 500;
}

/* blog listing */
.blog-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.blog-filter a {
    padding: 8px 16px; border-radius: 999px; background: #fff;
    border: 1px solid var(--line); color: var(--ink); font-weight: 500; font-size: .9rem;
}
.blog-filter a.active, .blog-filter a:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span {
    padding: 8px 14px; border-radius: 8px; background: #fff;
    border: 1px solid var(--line); color: var(--ink); font-weight: 500;
}
.pagination .active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* blog post */
.post-hero { padding: 60px 0 0; }
.post-hero h1 { margin-bottom: 14px; }
.post-meta { color: var(--muted); font-size: .92rem; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.post-cover { margin: 30px auto; max-width: 980px; border-radius: var(--radius); overflow: hidden; }
.post-body { max-width: 760px; margin: 0 auto; font-size: 1.05rem; line-height: 1.8; color: var(--ink); }
.post-body p { color: var(--ink); margin: 0 0 1.2em; }
.post-body h2, .post-body h3 { margin-top: 1.6em; }
.post-body img { border-radius: var(--radius-sm); margin: 1.4em 0; }
.post-body blockquote {
    margin: 1.6em 0; padding: 18px 22px;
    border-left: 4px solid var(--accent); background: var(--brand-50); border-radius: 4px;
    color: var(--ink); font-style: italic;
}

/* ------------------------------------------------------------ industries grid */
.industries-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.industry-tile {
    position: relative; overflow: hidden;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 26px; transition: all var(--transition);
    display: flex; flex-direction: column; gap: 14px;
}
.industry-tile::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0;
    width: 4px; background: linear-gradient(180deg, var(--brand), var(--accent));
    transform: scaleY(0); transform-origin: top; transition: transform .35s ease;
}
.industry-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.industry-tile:hover::before { transform: scaleY(1); }
.industry-tile .ind-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-50), #e3edff);
    color: var(--brand); display: flex; align-items: center; justify-content: center;
    transition: all .35s ease;
}
.industry-tile:hover .ind-icon {
    background: linear-gradient(135deg, var(--brand), var(--brand-700)); color: #fff;
}
.industry-tile .ind-icon svg { width: 30px; height: 30px; }
.industry-tile h3 { font-size: 1.1rem; margin: 0; color: var(--ink); }
.industry-tile p { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.55; }
.industry-tile .ind-deco {
    position: absolute; right: -40px; bottom: -40px;
    width: 130px; height: 130px; border-radius: 50%;
    background: var(--accent); opacity: .06; transition: all .35s ease;
}
.industry-tile:hover .ind-deco { opacity: .14; transform: scale(1.15); }

/* ------------------------------------------------------------ clients grid */
.clients-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.client-card {
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    min-height: 140px; padding: 28px 30px;
    display: flex; align-items: center; justify-content: center;
    transition: all .35s ease;
    position: relative; overflow: hidden;
}
.client-card img {
    width: auto; height: auto;
    max-width: 100%; max-height: 80px;
    object-fit: contain; display: block;
    filter: none;
}

/* ------------------------------------------------------------ team grid */
.team-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    max-width: 1080px; margin: 0 auto;
}
.team-card {
    background: #fff; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); transition: all var(--transition);
    position: relative;
    display: flex; flex-direction: column;
}
.team-card::before {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 4px; background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s ease; z-index: 2;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.team-card:hover::before { transform: scaleX(1); }
.team-card .team-photo {
    width: 100%; aspect-ratio: 4/5; overflow: hidden;
    background: linear-gradient(135deg, var(--brand-50), #e6edfb);
}
.team-card .team-photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .5s ease;
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-card .team-body {
    padding: 22px 26px 26px; text-align: center;
}
.team-card .team-role {
    display: inline-block;
    font-size: .72rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 6px;
}
.team-card h3 {
    font-size: 1.18rem; margin: 0 0 6px; color: var(--ink);
}
.team-card p {
    font-size: .9rem; color: var(--muted); margin: 0;
}
.team-card .team-socials {
    display: flex; gap: 10px; justify-content: center; margin-top: 14px;
}
.team-card .team-socials a {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--brand-50); color: var(--brand);
    display: inline-flex; align-items: center; justify-content: center;
    transition: all .25s ease;
}
.team-card .team-socials a:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.team-card .team-socials svg { width: 16px; height: 16px; }

/* ------------------------------------------------------------ responsive */
@media (max-width: 1024px) {
    .why-grid, .services-grid, .services-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .clients-grid    { grid-template-columns: repeat(3, 1fr); }
    .team-grid       { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
@media (max-width: 960px) {
    .nav-toggle { display: block; }
    .main-nav {
        position: absolute; top: 100%; left: 0; right: 0; margin-left: 0;
        background: #fff; flex-direction: column; align-items: stretch;
        padding: 14px 24px 22px; gap: 4px; box-shadow: var(--shadow-md);
        border-top: 1px solid var(--line);
        transform: translateY(-12px); opacity: 0; pointer-events: none;
        transition: all var(--transition);
    }
    .main-nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
    .main-nav a.btn-cta { border: 0; background: var(--accent); color: #fff; text-align: center; margin-top: 8px; margin-left: 0; border-radius: 8px; justify-content: center; }
    .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    /* Services dropdown → mobile accordion */
    .nav-dd { display: block; position: relative; width: 100%; }
    .nav-dd-trigger { padding: 12px 4px; border-bottom: 1px solid var(--line); }
    .nav-dd .dd-caret { display: none; }
    .dd-toggle { display: flex; align-items: center; justify-content: center; position: absolute; top: 0; right: 0; width: 52px; height: 47px; background: transparent; border: 0; cursor: pointer; padding: 0; }
    .dd-toggle svg { width: 18px; height: 18px; stroke: var(--ink); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--transition); }
    .nav-dd.open .dd-toggle svg { transform: rotate(180deg); }
    .dd-menu {
        position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
        min-width: 0; background: transparent; border: 0; box-shadow: none; border-radius: 0;
        padding: 0 0 0 14px; gap: 0; max-height: 0; overflow: hidden; transition: max-height var(--transition);
    }
    .nav-dd.open .dd-menu { max-height: 420px; }
    .dd-menu a { border-bottom: 1px solid var(--line); padding: 11px 4px !important; }
    .dd-menu a:hover { background: transparent; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .about-snippet, .contact-grid, .two-col, .service-detail .container { grid-template-columns: 1fr; gap: 40px; }
    .service-detail.alt .container { direction: ltr; }
    .values-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .section { padding: 64px 0; }
    .hero { padding: 80px 0 90px; }
}
@media (max-width: 640px) {
    .why-grid, .services-grid, .services-grid.cols-2 { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr; }
    .clients-grid    { grid-template-columns: repeat(2, 1fr); }
    .team-grid       { grid-template-columns: 1fr; max-width: 380px; }
}
@media (max-width: 560px) {
    .hero-stats { grid-template-columns: 1fr 1fr; padding: 20px; }
    .hero-stat strong { font-size: 1.6rem; }
    .process-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-card { padding: 24px; }
    .cta-inner { text-align: center; flex-direction: column; }
}

/* ------------------------------------------------------------ spec / capability list */
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.spec-card { padding: 26px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.spec-card .icon { width: 50px; height: 50px; border-radius: 12px; background: var(--brand-50); color: var(--brand); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.spec-card .icon svg { width: 26px; height: 26px; }
.spec-card h4 { margin: 0 0 8px; }
.spec-card p { margin: 0; font-size: .94rem; }
@media (max-width: 900px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .spec-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------ FAQ */
.faq-list { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; background: #fff; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 20px 24px; font-weight: 600; font-family: 'Poppins','Inter',sans-serif; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 1.02rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.6rem; color: var(--accent); transition: transform var(--transition); line-height: 1; flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 24px 20px; color: var(--muted); }
.faq-item .faq-a p { margin: 0; }

/* ------------------------------------------------------------ related services */
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rel-card { display: block; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: all var(--transition); }
.rel-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.rel-card h4 { margin: 0 0 8px; color: var(--brand); }
.rel-card p { margin: 0; font-size: .9rem; color: var(--muted); }
.rel-card .arr { color: var(--accent); font-weight: 700; }
@media (max-width: 860px) { .rel-grid { grid-template-columns: 1fr; } }
