/* =========================================================
   THANGAKANI TRANSPORT - MODERN HOMEPAGE
   Save as Style_new.css and use with index_new.html
   ========================================================= */

:root {
    --navy: #071321;
    --navy-2: #0c1c2e;
    --orange: #f47b20;
    --orange-dark: #d9610c;
    --blue: #1261a8;
    --text: #122033;
    --muted: #687789;
    --line: #e3e9ef;
    --soft: #f5f8fb;
    --white: #ffffff;
    --radius: 20px;
    --shadow: 0 18px 45px rgba(7, 19, 33, .10);
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Trebuchet MS", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.55;
}

a { color: inherit; text-decoration: none; }

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

button, input { font: inherit; }

.container {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 190px;
}

.brand img {
    width: 85px;
    height: 65px;
    object-fit: contain;
    border-radius: 7px;
}

.brand strong {
    display: block;
    font-size: 25px;
    letter-spacing: 1px;
    line-height: 1;
}

.brand span {
    display: block;
    margin-top: 4px;
    margin-left: 4px;
    font-size: 9px;
    color: var(--orange);
    font-weight: 800;
    letter-spacing: 2.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 3px;
}

.main-nav a {
    padding: 10px 12px;
    color: #526172;
    font-size: 13px;
    font-weight: 700;
    border-radius: 9px;
    transition: .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--orange);
    background: #fff5ed;
}

.main-nav .nav-track {
    color: var(--white);
    background: var(--orange);
    margin-left: 5px;
}

.main-nav .nav-track:hover {
    color: var(--white);
    background: var(--orange-dark);
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 10px;
    width: 44px;
    height: 44px;
    padding: 9px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--navy);
}

/* HERO 
.hero {
    background:
        radial-gradient(circle at 85% 25%, rgba(244,123,32,.16), transparent 28%),
        linear-gradient(135deg, var(--navy), #0b2137);
    color: var(--white);
    overflow: hidden;
}*/
.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero-grid {
    position: relative;
    z-index: 2;

    min-height: 610px;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 35px;
}

.hero-copy {
    position: relative;
    z-index: 3;
}

.eyebrow,
.section-label {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--orange);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
}

.eyebrow span {
    width: 24px;
    height: 2px;
    background: var(--orange);
}

.hero h1 {
    font-size: clamp(42px, 5.5vw, 68px);
    line-height: .98;
    letter-spacing: -2px;
    margin: 18px 0;
}

.hero h1 em {
    color: #ff9d58;
    font-style: normal;
}

.hero-text {
    max-width: 600px;
    color: #c4d0dc;
    font-size: 16px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 28px;
}

.hero-background {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-background::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 19, 33, .94) 0%,
            rgba(7, 19, 33, .76) 36%,
            rgba(7, 19, 33, .38) 70%,
            rgba(7, 19, 33, .25) 100%
        );

    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center 45%;

    opacity: 0.30;

    filter: drop-shadow(0 25px 25px rgba(0,0,0,.35));
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 18px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 13px;
    border: 1px solid transparent;
    transition: transform .2s ease, background .2s ease, border .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,.25);
    background: rgba(255,255,255,.05);
}

.btn-outline:hover { background: rgba(255,255,255,.12); }

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

.route-mini {
    max-width: 590px;
    margin-top: 38px;
    display: grid;
    grid-template-columns: 1fr .75fr 1fr;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 15px;
    background: rgba(255,255,255,.045);
}

.route-city {
    display: flex;
    align-items: center;
    gap: 10px;
}

.route-city.right { justify-content: flex-end; }

.route-city small {
    display: block;
    color: #8292a4;
    font-size: 8px;
    letter-spacing: 1px;
}

.route-city strong {
    font-size: 13px;
}

.route-dot {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 5px rgba(244,123,32,.12);
}

.route-road {
    height: 2px;
    background: #5b6d80;
    position: relative;
}

.moving-truck {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: var(--orange);
    background: var(--navy);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    animation: travel 2.4s ease-in-out infinite alternate;
}

@keyframes travel {
    from { margin-left: -18px; }
    to { margin-left: 18px; }
}

/*.hero-visual {
    min-height: 500px;
    position: relative;
    display: grid;
    place-items: center;
}

.hero-visual img {
   
    display: grid;
    
   
    /*width: min(720px, 100%);
    filter: drop-shadow(0 25px 25px rgba(0,0,0,.35));
}

.visual-ring {
    position: absolute;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.ring-one { width: 430px; height: 430px; }
.ring-two { width: 300px; height: 300px; border-color: rgba(244,123,32,.18); }

.truck-shadow {
    position: absolute;
    z-index: 1;
    bottom: 74px;
    width: 420px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,.35);
    filter: blur(14px);
}

.experience-card {
    position: absolute;
    z-index: 5;
    right: 5%;
    bottom: 70px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--white);
    color: var(--text);
    box-shadow: var(--shadow);
}

.experience-card strong {
    color: var(--orange);
    font-size: 30px;
    line-height: 1;
}

.experience-card span {
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
}*/

/* QUICK ACTIONS */
.quick-bar {
    position: relative;
    z-index: 10;
    margin-top: -32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.quick-item {
    min-height: 95px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px 20px;
    border-right: 1px solid var(--line);
}

.quick-item:last-child { border-right: 0; }

.quick-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #fff4eb;
    color: var(--orange);
    font-size: 11px;
    font-weight: 900;
}

.quick-item strong {
    display: block;
    font-size: 13px;
}

.quick-item small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 10px;
}

.quick-item b {
    margin-left: auto;
    color: var(--orange);
}

/* TRACK */
.track-section {
    margin-top: 45px;
    padding: 45px 0;
    background: var(--soft);
    border-block: 1px solid var(--line);
}

.track-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.track-grid h2,
.section-heading h2,
.about-copy h2,
.cta-inner h2 {
    margin: 7px 0 8px;
    font-size: clamp(28px, 4vw, 39px);
    line-height: 1.08;
    letter-spacing: -.8px;
}

.track-grid p,
.section-heading p,
.about-copy p,
.cta-inner p {
    color: var(--muted);
    font-size: 14px;
}

.track-form {
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(7,19,33,.05);
}

.track-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 800;
    color: #536174;
}

.track-input-row {
    display: flex;
    gap: 8px;
}

.track-input-row input {
    min-width: 0;
    flex: 1;
    border: 1px solid #d8e0e8;
    border-radius: 9px;
    padding: 12px 13px;
    color: var(--text);
    outline: none;
}

.track-input-row input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(244,123,32,.12);
}

.track-input-row button {
    border: 0;
    border-radius: 9px;
    padding: 0 20px;
    color: var(--white);
    background: var(--orange);
    font-weight: 900;
    cursor: pointer;
}

.form-message {
    display: block;
    min-height: 16px;
    margin-top: 7px;
    color: #c2410c;
    font-size: 11px;
}

/* SERVICES */
.services-section {
    padding: 75px 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 25px;
}

.section-heading > p { max-width: 430px; margin: 0; }

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.service-card {
    position: relative;
    padding: 25px;
    min-height: 245px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -65px;
    bottom: -65px;
    border-radius: 50%;
    background: #f8fafc;
}

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

.service-card.featured {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.service-card.featured .service-number,
.service-card.featured .card-link { color: #ff9d58; }

.service-card.featured p { color: #b9c6d3; }

.service-number {
    color: #8a98a8;
    font-size: 11px;
    font-weight: 900;
}

.service-icon {
    width: 45px;
    height: 45px;
    margin-top: 19px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--orange);
    background: #fff3e9;
    font-weight: 900;
}

.service-card h3 {
    margin: 15px 0 6px;
    font-size: 21px;
}

.service-card p {
    max-width: 300px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.card-link {
    position: absolute;
    left: 25px;
    bottom: 22px;
    z-index: 2;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
}

/* ABOUT */
.about-strip {
    padding: 70px 0;
    background: #f8fafc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
}

.about-image {
    position: relative;
    min-height: 340px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 22px;
    background: var(--navy);
}

.about-image img {
    width: 100%;
    max-height: 310px;
    object-fit: contain;
    filter: drop-shadow(0 18px 18px rgba(0,0,0,.25));
}

.image-tag {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 9px 12px;
    border-radius: 8px;
    background: var(--orange);
    color: var(--white);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.about-copy { max-width: 550px; }

.text-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
}

/* ROUTE */
.route-section {
    padding: 75px 0;
}

.centered {
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.centered p { margin: 0; }

.route-card {
    margin-top: 28px;
    padding: 35px;
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    align-items: center;
    gap: 25px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(7,19,33,.05);
}

.route-stop {
    text-align: center;
}

.big-dot {
    width: 15px;
    height: 15px;
    margin: 0 auto 11px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 7px #fff0e5;
}

.route-stop span {
    display: block;
    font-size: 18px;
    font-weight: 900;
}

.route-stop small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 10px;
}

.route-track {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}

.route-line {
    height: 3px;
    flex: 1;
    background: #d7dee6;
}

.route-truck {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff5ed;
    border: 1px solid #f6d0b2;
    font-size: 21px;
}

/* CTA */
.cta-section {
    padding: 45px 0;
    background: #fff4ea;
}

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

.cta-inner h2 { margin-bottom: 5px; }

.cta-inner p { margin: 0; }

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

/* FOOTER */
.footer {
    padding: 28px 0;
    color: #aebac7;
    background: var(--navy);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
}

.footer strong {
    display: block;
    color: var(--white);
    font-size: 13px;
    letter-spacing: 1px;
}

.footer span {
    display: block;
    margin-top: 4px;
    color: #8392a3;
    font-size: 9px;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a {
    font-size: 11px;
}

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

.footer small {
    grid-column: 1 / -1;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 10px;
    color: #758596;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .main-nav { gap: 0; }
    .main-nav a { padding-inline: 8px; }

   /* .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 50px;
        padding-bottom: 35px;
    }*/
.hero-grid {
    position: relative;
    z-index: 2;
}

    .hero-visual {
        min-height: 390px;
    }

    .track-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {

    .hero {
        min-height: 680px;
    }

    .hero-grid {
        min-height: 680px;
        grid-template-columns: 1fr;
    }

    .hero-background img {
        object-position: 62% center;
        opacity: 0.22;
    }

    .container { width: min(100% - 28px, 1160px); }

    .nav-wrap { min-height: 68px; }

    .menu-toggle { display: block; }

    .main-nav {
        display: none;
        position: absolute;
        left: 14px;
        right: 14px;
        top: 67px;
        padding: 8px;
        flex-direction: column;
        align-items: stretch;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 13px;
        box-shadow: var(--shadow);
    }

    .main-nav.open { display: flex; }

    .main-nav a {
        padding: 12px;
    }

    .main-nav .nav-track { margin-left: 0; text-align: center; }

    .hero h1 { font-size: 43px; }

    .hero-visual {
        min-height: 300px;
    }

    .visual-ring.ring-one { width: 290px; height: 290px; }
    .visual-ring.ring-two { width: 210px; height: 210px; }

    .experience-card {
        right: 0;
        bottom: 25px;
    }

    .route-mini {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .route-road {
        width: 70%;
        margin: 0 auto;
    }

    .route-city,
    .route-city.right {
        justify-content: center;
    }

    .quick-bar {
        grid-template-columns: 1fr;
        margin-top: -18px;
    }

    .quick-item {
        min-height: 75px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .quick-item:last-child { border-bottom: 0; }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 10px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card:last-child { grid-column: auto; }

    .about-image { min-height: 260px; }

    .route-card {
        grid-template-columns: 1fr;
        padding: 25px 15px;
    }

    .route-track {
        width: 80%;
        margin: 0 auto;
    }

    .cta-inner {
        display: block;
    }

    .cta-actions { margin-top: 20px; }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .footer small { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}


.experience-card {
    position: absolute;
    right: 7%;
    bottom: 55px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 16px 20px;

    background: rgba(255, 255, 255, 0.96);
    color: var(--text);

    border-radius: 14px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.20);

    z-index: 5;
}

.experience-card strong {
    color: var(--orange);
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}

.experience-card span {
    font-size: 11px;
    line-height: 1.25;
    font-weight: 800;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .experience-card {
        right: 4%;
        bottom: 40px;
    }
}

@media (max-width: 900px) {
    .experience-card {
        right: 20px;
        bottom: 25px;
        padding: 12px 15px;
    }

    .experience-card strong {
        font-size: 28px;
    }

    .experience-card span {
        font-size: 10px;
    }
}








 /*Style for other pages */
 
:root{
  --navy:#071321;
  --navy-2:#0c1c2e;
  --orange:#f47b20;
  --orange-dark:#d9610c;
  --blue:#1261a8;
  --text:#122033;
  --muted:#687789;
  --line:#e3e9ef;
  --soft:#f5f8fb;
  --white:#fff;
  --radius:20px;
  --shadow:0 18px 45px rgba(7,19,33,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Trebuchet MS",Arial,sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,textarea,select{font:inherit}
.container{width:min(1160px,calc(100% - 40px));margin-inline:auto}

/* Header - same visual language as the finished home page */
.site-header{
  position:sticky;top:0;z-index:1000;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(12px);
}
.nav-wrap{min-height:76px;display:flex;align-items:center;justify-content:space-between;gap:25px}
.brand{display:flex;align-items:center;gap:11px;min-width:190px}
.brand img{width:48px;height:48px;object-fit:contain;border-radius:9px}
.brand strong{display:block;font-size:18px;letter-spacing:1px;line-height:1}
.brand span{display:block;margin-top:4px;font-size:9px;color:var(--orange);font-weight:800;letter-spacing:2.5px}
.main-nav{display:flex;align-items:center;gap:3px}
.main-nav a{padding:10px 12px;color:#526172;font-size:13px;font-weight:700;border-radius:9px;transition:.2s ease}
.main-nav a:hover,.main-nav a.active{color:var(--orange);background:#fff5ed}
.main-nav .nav-track{color:#fff;background:var(--orange);margin-left:5px}
.main-nav .nav-track:hover{color:#fff;background:var(--orange-dark)}
.menu-toggle{
  display:none;border:1px solid var(--line);background:#fff;border-radius:10px;
  width:44px;height:44px;padding:9px;cursor:pointer
}
.menu-toggle span{display:block;height:2px;margin:5px 0;background:var(--navy)}

/* Shared inner-page hero */
.page-hero{
  position:relative;overflow:hidden;background:linear-gradient(135deg,var(--navy),var(--navy-2));
  color:#fff;min-height:300px;display:flex;align-items:center
}
.page-hero::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(circle at 82% 35%,rgba(244,123,32,.22),transparent 27%),
    linear-gradient(90deg,rgba(7,19,33,.96),rgba(7,19,33,.58));
}
.page-hero .container{position:relative;z-index:1;padding:62px 0}
.page-kicker{font-size:11px;font-weight:900;letter-spacing:2.5px;color:var(--orange);margin-bottom:13px}
.page-hero h1{font-size:clamp(40px,5vw,60px);line-height:1;margin:0 0 16px;letter-spacing:-1.8px}
.page-hero h1 em{font-style:normal;color:#ff9d58}
.page-hero p{max-width:690px;color:#c7d3df;margin:0;font-size:16px}

/* Main page content */
.page-section{padding:72px 0}
.section-head{margin-bottom:30px}
.section-label{font-size:11px;font-weight:900;letter-spacing:2px;color:var(--orange)}
.section-head h2{font-size:clamp(30px,4vw,46px);line-height:1.05;margin:10px 0 12px;letter-spacing:-1px}
.section-head p{color:var(--muted);max-width:720px;margin:0}
.content-grid{display:grid;grid-template-columns:1.45fr .75fr;gap:28px;align-items:start}
.card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:30px;box-shadow:var(--shadow)
}
.card h3{margin:0 0 12px;font-size:21px}
.card p{color:#5e6d7d;margin:0 0 15px}
.card p:last-child{margin-bottom:0}
.card ul{padding-left:20px;margin:14px 0 0}
.card li{margin:8px 0;color:#526172}
.highlight-card{
  background:var(--navy);color:#fff;border-radius:var(--radius);padding:30px;
  box-shadow:0 18px 45px rgba(7,19,33,.18)
}
.highlight-card .number{font-size:48px;color:var(--orange);font-weight:900;line-height:1}
.highlight-card h3{margin:10px 0 8px}
.highlight-card p{color:#bdcbd7;margin:0}

/* Services */
.service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.service-card{
  padding:26px;background:#fff;border:1px solid var(--line);border-radius:18px;
  box-shadow:0 10px 30px rgba(7,19,33,.06);transition:.2s ease
}
.service-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.service-no{display:inline-flex;width:38px;height:38px;border-radius:10px;align-items:center;justify-content:center;background:#fff5ed;color:var(--orange);font-weight:900;font-size:12px}
.service-card h3{font-size:18px;margin:18px 0 8px}
.service-card p{color:var(--muted);font-size:14px;margin:0}

/* Enquiry/contact */
.info-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.info-card{
  padding:27px;border:1px solid var(--line);border-radius:18px;background:#fff;
  box-shadow:0 10px 30px rgba(7,19,33,.06)
}
.info-card .tag{font-size:10px;color:var(--orange);font-weight:900;letter-spacing:2px}
.info-card h3{margin:8px 0 12px}
.info-card p{margin:7px 0;color:#58687a}
.info-card strong{color:var(--text)}
.contact-layout{display:grid;grid-template-columns:1fr .85fr;gap:25px}
.contact-list{display:grid;gap:14px}
.contact-row{
  display:flex;gap:15px;align-items:flex-start;padding:20px;
  border:1px solid var(--line);border-radius:16px;background:#fff
}
.contact-icon{
  width:42px;height:42px;border-radius:11px;background:#fff5ed;color:var(--orange);
  display:grid;place-items:center;font-weight:900;flex:none
}
.contact-row h3{margin:0 0 4px;font-size:17px}
.contact-row p{margin:0;color:#617184}
.contact-row a{color:var(--blue);font-weight:700}

/* Track */
.track-panel{
  max-width:850px;margin:0 auto;background:#fff;border:1px solid var(--line);
  border-radius:22px;padding:34px;box-shadow:var(--shadow)
}
.track-panel label{display:block;font-size:12px;font-weight:900;margin-bottom:9px;color:#4f6071}
.track-input-row{display:flex;gap:10px}
.track-input-row input{
  flex:1;min-height:50px;border:1px solid #ccd6df;border-radius:11px;padding:0 15px;outline:none
}
.track-input-row input:focus{border-color:var(--orange);box-shadow:0 0 0 3px rgba(244,123,32,.12)}
.track-input-row button{
  border:0;border-radius:11px;padding:0 23px;background:var(--orange);color:#fff;font-weight:900;cursor:pointer
}
.track-note{margin:13px 0 0;color:var(--muted);font-size:13px}

/* Footer */
.site-footer{background:var(--navy);color:#fff;margin-top:20px}
.footer-main{padding:45px 0 30px;display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:30px}
.footer-brand{font-size:20px;font-weight:900;letter-spacing:1px}
.footer-brand span{color:var(--orange)}
.footer-main p{color:#aebdca;max-width:430px}
.footer-col h4{margin:0 0 13px;font-size:13px;text-transform:uppercase;letter-spacing:1.5px;color:var(--orange)}
.footer-col a,.footer-col div{display:block;color:#c1ccd6;font-size:13px;margin:8px 0}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:15px 0;text-align:center;color:#91a0ae;font-size:12px}

/* Small reusable CTA */
.cta-strip{background:#f5f8fb;padding:45px 0}
.cta-box{
  background:linear-gradient(135deg,var(--navy),#102941);color:#fff;border-radius:22px;
  padding:34px;display:flex;align-items:center;justify-content:space-between;gap:25px
}
.cta-box h2{margin:0 0 7px;font-size:28px}
.cta-box p{margin:0;color:#bdcbd7}
.btn{
  display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:11px 18px;
  border-radius:10px;font-weight:800;font-size:13px;border:1px solid transparent;transition:.2s ease
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{color:#fff;background:var(--orange)}
.btn-primary:hover{background:var(--orange-dark)}
.btn-outline{color:#fff;border-color:rgba(255,255,255,.25);background:transparent}

/* Floating 20+ card for home page */
.experience-card{
  position:absolute;right:7%;bottom:55px;display:flex;align-items:center;gap:12px;
  padding:16px 20px;background:rgba(255,255,255,.96);color:var(--text);
  border-radius:14px;box-shadow:0 15px 35px rgba(0,0,0,.20);z-index:5
}
.experience-card strong{color:var(--orange);font-size:34px;line-height:1;font-weight:900}
.experience-card span{font-size:11px;line-height:1.25;font-weight:800;text-transform:uppercase}

/* Responsive */
@media(max-width:900px){
  .main-nav{
    display:none;position:absolute;left:20px;right:20px;top:68px;padding:10px;
    background:#fff;border:1px solid var(--line);border-radius:14px;box-shadow:var(--shadow);
    flex-direction:column;align-items:stretch
  }
  .main-nav.open{display:flex}
  .main-nav a{width:100%}
  .menu-toggle{display:block}
  .content-grid,.contact-layout{grid-template-columns:1fr}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .info-grid{grid-template-columns:1fr}
  .experience-card{right:20px;bottom:25px;padding:12px 15px}
  .experience-card strong{font-size:28px}
}
@media(max-width:600px){
  .container{width:min(100% - 28px,1160px)}
  .page-hero{min-height:270px}
  .page-hero .container{padding:48px 0}
  .page-hero h1{font-size:40px}
  .page-section{padding:52px 0}
  .service-grid{grid-template-columns:1fr}
  .card,.highlight-card,.track-panel{padding:23px}
  .track-input-row{flex-direction:column}
  .track-input-row button{min-height:48px}
  .cta-box{padding:27px;display:block}
  .cta-box .btn{margin-top:20px}
  .footer-main{grid-template-columns:1fr;gap:20px}
}
