/* ===================================================
   ROWELL & SEARLE — MAIN STYLESHEET
   Font: Nunito (Google Fonts)
=================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy:    #031E68;
    --orange:  #e85d2f;
    --dark:    #1a1a1a;
    --gray-bg: #F4F3F0;
    --text:    #0D0D0D;
    --muted:   #434343;
    --white:   #ffffff;
    --border:  #dddddd;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
}

a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
img  { max-width: 100%; display: block; }

.container {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 10px;
}

/* ---------- Section Label ---------- */
.section-label {
    display: inline-block;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 10%;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 2px;
}
.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 2px;
    background: #FF5722;
}
.section-label::before {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 45px;
    height: 2px;
    background: #FF5722;
}


/* ---------- Section Label 1 ---------- */
.section-label-1 {
    display: inline-block;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 10%;
    text-transform: uppercase;
    color: var(--text);
    padding-bottom: 2px;
    margin-bottom: 10px;
    position: relative;
}
.section-label-1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 90px; 
    height: 2px;
    transform: translateX(-50%);
    background: #FF5722;
}
.section-label-1::before {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    width: 45px; 
    height: 2px;
    transform: translateX(-50%);
    background: #FF5722;
}


/* ---------- Section Label 2---------- */
.section-label-2 {
    display: inline-block;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    padding-bottom: 4px;
    margin-bottom: 10px;
    position: relative;
}
.section-label-2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 90px; height: 2px;
    background: #FF5722;
}
.section-label-2::before {
    content: '';
    position: absolute;
    bottom: -7px; left: 0;
    width: 45px; height: 2px;
    background: #FF5722;
}

/* ---------- Shared Buttons ---------- */
.btn-primary, .btn-dark {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 22px 24px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: background 0.25s;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    line-height: 100%;
}
.btn-primary:hover,
.btn-dark:hover { background: #122060; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #031E68;
    padding: 17px 26px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--navy);
    margin-top: 14px;
    border-radius: 5px;
    transition: all 0.25s;
    line-height: 100%;
}
.btn-outline:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255,255,255,0.7);
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-top: 14px;
    transition: all 0.25s;
    border-radius: 5px;
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

.btn-submit {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 13px 16px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 8%;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s;
    line-height: 150%;
}
.btn-submit:hover { background: #122060; }

/* =========================================
   TOP BAR
========================================= */
.topbar {
    background: #0D0D0D;
    padding: 8px 0;
}
.topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-left {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.topbar-left a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s;
}
.topbar-left a:hover { color: var(--white); }
.tb-divider {
    color: #6C6C6C;
}
.topbar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}
.topbar-right a {
    color: #fff;
    font-size: 14px;
    transition: color 0.2s;
}
.topbar-right a:hover { color: var(--white); }

/* =========================================
   NAVBAR
========================================= */
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-logo img {
    height: 80px;
    width: auto;
}
.nav-links {
    display: flex;
    gap: 50px;
    margin-left: auto;
}
.nav-links li a {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    padding-bottom: 3px;
    position: relative;
    transition: color 0.2s;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--navy); }
/* .nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 100%; height: 2px;
    background: var(--navy);
} */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-left: 24px;
}
.nav-search {
    position: relative;
    display: flex;
    align-items: center;
}
.search-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text);
    cursor: pointer;
    transition: color 0.2s;
}
.search-btn:hover { color: var(--navy); }
.search-box {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
    overflow: hidden;
    width: 0;
    opacity: 0;
    pointer-events: none;
    transition: width 0.3s ease, opacity 0.2s ease;
    z-index: 1001;
}
.search-box.open {
    width: 280px;
    opacity: 1;
    pointer-events: auto;
}
.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 16px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    color: var(--text);
    background: transparent;
}
.search-box button {
    background: var(--navy);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}
.search-box button:hover { background: #122060; }

@media (max-width: 768px) {
    .search-box {
        position: fixed;
        top: 68px;
        left: 12px;
        right: 12px;
        transform: none;
        width: auto;
        max-width: none;
    }
    .search-box.open { width: auto; }
}
.btn-book {
    background: var(--navy);
    color: var(--white);
    padding: 22px 24px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.25s;
    border-radius: 5px;
    line-height: 100%;
}
.btn-book:hover { background: #122060; }
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--text);
    margin-left: auto;
}

/* =========================================
   HERO
========================================= */
.hero {
    position: relative;
    height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    /* Placeholder background shown when image is missing */
    background: #2a2a2a;
    /* transform: rotate(-180deg); */
    transform: scaleX(-1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 10px;
}
.hero-content p {
    font-size: 66px;
    font-weight: 800;
    color: var(--white);
    line-height: 130%;
    margin-bottom: 36px;
}

/* =========================================
   ABOUT US
========================================= */
.about {
    padding: 90px 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.about-img-wrap img {
    width: 100%;
    height: 539px;
    object-fit: cover;
    /* Placeholder background shown when image is missing */
    background: #e0e0e0;
    border-radius: 10px;
}
.about-content h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--dark);
    margin: 25px 0 20px;
    line-height: 120%;
}
.about-content p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 10px;
    line-height: 160%;
}
.about-content .btn-dark { margin-top: 20px; }

/* =========================================
   SERVICES
========================================= */
.services {
    padding: 90px 0;
    background: #F4F3F0;
    text-align: center;
}
.services h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--dark);
    margin: 10px 0 50px;
    line-height: 120%;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    text-align: center;
}
.service-card {
    background: var(--white);
    padding: 35px 30px 32px;
    transition: background-color 0.85s ease-in, box-shadow 0.45s ease-in, transform 0.85s ease-in;
    display: grid;
    grid-template-rows: 70px 68px 1fr auto; /* icon | heading (fixed, fits 2 lines) | paragraph | button */
    row-gap: 14px;
    min-height: 320px;
}
.service-card:hover {
    background: var(--navy);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}


.service-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 120%;
    align-self: start;
    display: flex;
    align-items: flex-start;
    justify-content: center;   /* centers the text horizontally within the flex row */
    text-align: center;        /* ensures wrapped 2-line headings stay centered too */
}

.service-card p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.65;
    margin-top: 0;
    align-self: start; /* paragraph always starts at top of its row */
}
.service-card h3,
.service-card p,
.service-card .svc-icon,
.service-card .btn-outline { transition: color 0.45s ease-in, background-color 0.45s ease-in, border-color 0.45s ease-in; }
.service-card:hover h3 { color: var(--white) !important; }
.service-card:hover p { color: rgba(255,255,255,0.82) !important; }
.service-card:hover .svc-icon { color: var(--white); }
.service-card:hover .btn-outline {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
}

/* Middle card in row 2 — dark navy featured */
.service-featured {
    background: var(--navy);
    color: var(--white);
}
.service-featured h3 { color: var(--white) !important; }
.service-featured p  { color: rgba(255,255,255,0.82) !important; }

/* Power Steering — centered in last row */
.service-center { grid-column: 2; }

.svc-icon {
    /* font-size: 38px; */
    color: var(--orange);
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-featured .svc-icon { color: var(--white); }

.service-card .btn-outline,
.service-card .btn-outline-white {
    margin-top: 10px;
    align-self: end;
    justify-self: center;
}

/* =========================================
   COMPANY OVERVIEW
========================================= */
.overview {
    padding: 90px 0;
    background: var(--white);
}
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: stretch;
}
.overview-img {
    min-height: 0;
    overflow: hidden;
    padding-left: 20px;
}
.overview-content h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--dark);
    margin: 10px 0 18px;
    line-height: 120%;
}
.overview-sub {
    color: var(--navy) !important;
    font-weight: 800 !important;
    font-size: 26px !important;
    margin-bottom: 20px !important;
}
.overview-content p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 15px;
    line-height: 160%;
}
.overview-divider {
    border: none;
    border-top: 1px solid #A3A3A3;
    margin: 22px 0;
}
.overview-content p.overview-note {
    font-size: 19px;
    color: var(--dark) !important;
}
.overview-img img {
    width: 100%;
    height: 887px;
    object-fit: cover;
    border-radius: 4px;
    /* Placeholder background shown when image is missing */
    background: #e0e0e0;
    border-radius: 10px;
}

/* =========================================
   WHY CHOOSE US
========================================= */
.why-us {
    padding: 90px 0;
    background: var(--gray-bg);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 64px;
}
.video-thumb {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}
.video-thumb img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    /* Placeholder background shown when image is missing */
    background: #2a2a2a;
    scale: 1.4;
    border-radius: 10px;
}
.play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: transparent;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.3);
    transition: transform 0.25s;
}
.play-btn i { margin-left: 3px; }
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }

.why-content h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--dark);
    margin: 20px 0 26px;
    line-height: 120%;
}
.why-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px dashed #c0b8b0;
    font-size: 18px;
    color: var(--muted);
    font-weight: 500;
    line-height: 140%;
}
/* .why-list li i {
    color: var(--orange);
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
} */

/* RAA Badges */
.raa-badges {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}
.raa-badge {
    border-radius: 4px;
    overflow: hidden;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
}
.raa-badge img {
    width: 100%;
    /* Placeholder background shown when image is missing */
    /* background: #f5c400; */
    min-height: 80px;
}


.raa-badges {
    padding: 90px 0 20px;
    background: var(--white);
    text-align: center;
}

/* =========================================
   OUR TEAM
========================================= */
.team {
    padding: 90px 0;
    background: var(--white);
    text-align: center;
}
.team h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--dark);
    margin: 10px 0 14px;
    line-height: 120%;
}
.section-sub {
    font-size: 18px;
    font-weight: 600;
    color: var(--muted);
    max-width: 980px;
    margin: 0 auto 60px;
    line-height: 160%;
}
.team-slider-wrap {
    overflow: hidden;
}
.team-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-bottom: 30px;
}
.team-card {
    position: relative;
    border-radius: 8px;
    overflow: visible;
    padding-bottom: 54px;
    /* box-shadow: 0 2px 14px rgba(0,0,0,0.09); */
    text-align: left;
    background: var(--white);
}
.team-card img {
    width: 100%;
    height: 440px;
    /* object-fit: cover; */
    object-position: top;
    border-radius: 10px;
    /* Placeholder background shown when image is missing */
    background: #c8c8c8;
}
.team-info {
    position: absolute;
    right: 10%;
    bottom: 0;
    left: 10%;
    padding: 5px 15px;
    border: none;
    border-radius: 8px;
    background: var(--white);
    text-align: left;
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
    min-height: 80px;
}
.team-info h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    line-height: 160%;
}
.team-info p {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    line-height: 110%;
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e85d2f;
    cursor: pointer;
    transition: background 0.25s;
    padding: 0;
}
.dot.active { background: var(--orange); }

/* =========================================
   GALLERY
========================================= */
.gallery {
    padding: 90px 0;
    background: var(--gray-bg);
    text-align: center;
}
.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 6px 30px #9A9A9A40;
    margin-top: 20px;
    padding: 20px;
}
.gallery-card img {
    width: 100%;
    height: 610px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    /* Placeholder background shown when image is missing */
    background: #888;
}
.gallery-caption {
    position: absolute;
    bottom: 26px;
    left: 50%;
    padding: 6px 24px 6px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000000 14.9%, #000000 85.58%, rgba(0, 0, 0, 0) 100%);
    max-width: 966px;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    line-height: 160%;
}

/* =========================================
   CONTACT
========================================= */
.contact {
    padding: 90px 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.064fr;
    gap: 62px;
    align-items: center;
}
.contact-info h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--dark);
    margin: 10px 0 16px;
    line-height: 120%;
}
.contact-info p {
    font-size: 18px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 14px;
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: #F2F0EC;
    border: none;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: #434343;
    outline: none;
    font-weight: 600;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--navy); background: var(--white); }
.contact-form textarea { resize: vertical; }

/* =========================================
   FOOTER
========================================= */
.footer {
    background: #111111;
    padding: 64px 0 0;
    color: #999999;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.8fr 1fr;
    gap: 40px;
    padding-bottom: 52px;
}
.footer-brand img {
    height: 86px;
    width: auto;
    margin-bottom: 14px;
    /* Placeholder background shown when image is missing */
    background: #333;
}
.footer-company {
    font-size: 22px !important;
    font-weight: 500 !important;
    color: var(--white);
    letter-spacing: 0;
    margin-bottom: 12px;
    line-height: 160% !important;
}

.footer-company p{
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 18px;
    line-height: 160%;
    color: var(--white);
    font-weight: 400;
}
.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 16%;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 50px;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    color: #FFFFFF;
    font-size: 16px;
    transition: color 0.2s;
    font-weight: 400;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 16px;
}
.footer-contact-item i {
    color: var(--white);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}
.footer-contact-item div { display: flex; flex-direction: column; gap: 2px; }
.footer-contact-item span {
    color: #FFFFFF;
    line-height: 100%;
    margin-bottom: 6px;
}

.footer-social {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.footer-social a {
    width: 16px; height: 16px;
    border-radius: 4px;
    /* background: #222; */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.25s;
}
.footer-social a:hover { background: var(--navy); color: var(--white); }

.footer-bottom {
    border-top: 1px solid #747474;
    padding: 18px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #A3A3A3;
}

/* =========================================
   RESPONSIVE — TABLET (≤ 1024px)
========================================= */
@media (max-width: 1024px) {
    .about-grid,
    .overview-grid,
    .why-grid,
    .contact-grid { gap: 40px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

    .hero-content h1 { font-size: 36px; }
    .hero-content { padding: 0 48px; }
}

/* =========================================
   RESPONSIVE — MOBILE (≤ 768px)
========================================= */
@media (max-width: 768px) {
    /* Topbar */
    .topbar-left { display: none; }
.topbar-inner {
    justify-content: center;
}
.nav-logo img {
    height: 60px;
    padding-left: 10px;
}
    /* Navbar */
    .hamburger { display: block;padding-right: 10px; }
    .nav-actions { display: none; }
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        padding: 16px 24px 24px;
        z-index: 998;
    }
    .nav-links.open { display: flex; }
    .nav-links li a { display: block; padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
    .nav-inner { position: relative; flex-wrap: wrap; }

    /* Hero */
    .hero { height: 460px; }
    .hero-content { padding: 0 28px; max-width: 100%; }
    .hero-content h1 { font-size: 28px; }
.hero-content p {
    font-size: 30px;
    margin-bottom: 30px;
}
.btn-primary, .btn-dark {
    padding: 15px 20px;
    font-size: 14px;
}
    /* Two-column → single column */
    .about-grid,
    .why-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 25px; }

    .about-img-wrap img { height: 280px; }
    .overview-img img  { height: 280px; }
    .video-thumb img   { height: 240px; }

    /* Services grid */
    .services-grid { grid-template-columns: 1fr; }
    .service-center { grid-column: 1; }

    /* Team */
    .team-track { grid-template-columns: repeat(2, 1fr); }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 15px; }

    /* Gallery */
    .gallery-card img { height: 280px; }
    .about, .services, .overview, .why-us, .team, .gallery, .contact {
    padding: 40px 0;
}
.about-content h2, .services h2, .overview-content h2, .why-content h2, .team h2, .contact-info h2 {
    font-size: 24px;
}
.section-label, .section-label-2, .section-label-1 {
    font-size: 15px;
}
.services h2 {
    margin: 10px 0 30px;
}
.service-card h3 {
    font-size: 22px;
}
.overview-sub {
    font-size: 17px !important;
    line-height: 140% !important;
}
.overview-img {
    padding-left: 0;
}
.overview-grid{gap:0;grid-template-columns: 1fr;}
.why-grid {
    margin-bottom: 0;
}
.raa-badges {
    padding: 40px 10px 0;
}
.section-sub {
    margin: 0 auto 30px;
}
.team-track {
    padding-bottom: 22px;
}
.dot {
    width: 10px;
    height: 10px;
}
.gallery-caption {
    font-size: 18px;
    width: 80%;
}
.footer-col h4 {
    margin-bottom: 10px;
}
.footer-col ul li {
    margin-bottom: 6px;
}
}

@media (max-width: 480px) {
    .team-track { grid-template-columns: 1fr; }
    .form-row    { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 24px; }
}

/* =========================================
   SERVICES DROPDOWN (dynamic "Our Services" submenu)
========================================= */
.has-submenu { position: relative; }
.submenu-toggle i {
    margin-left: 6px;
    font-size: 13px;
    transition: transform 0.25s ease;
}
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border-radius: 6px;
    padding: 10px 0;
    display: none;
    flex-direction: column;
    z-index: 1000;
}
.has-submenu:hover .submenu,
.has-submenu.open .submenu { display: flex; }
.has-submenu:hover .submenu-toggle i,
.has-submenu.open .submenu-toggle i { transform: rotate(180deg); }
.submenu li a {
    display: block;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}
.submenu li a:hover { background: #f5f5f5; color: var(--navy); }

/* =========================================
   MOBILE FLOATING CALL BUTTON
========================================= */
.mobile-call-btn { display: none; }

@media (max-width: 768px) {
    .submenu {
        position: static;
        box-shadow: none;
        display: none;
        padding-left: 14px;
        min-width: 0;
    }
    .has-submenu.open .submenu { display: flex; }
    .submenu-toggle { display: flex; align-items: center; justify-content: space-between; }

    .mobile-call-btn {
        display: block;
        position: fixed;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--orange);
        color: var(--white);
        padding: 12px 26px;
        border-radius: 50px;
        font-weight: 800;
        letter-spacing: 0.5px;
        z-index: 1200;
        box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    }
}

/* =========================================
   TEAM SLIDER (JS-driven, real sliding + touch swipe)
========================================= */
.team-track-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.team-track-slider::-webkit-scrollbar { display: none; }
.team-track-slider .team-card {
    scroll-snap-align: start;
    flex: 0 0 calc(25% - 15px);
}
@media (max-width: 768px) {
    .team-track-slider .team-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 480px) {
    .team-track-slider .team-card { flex: 0 0 100%; }
}
