:root {
    --navy: #061429;
    --navy-2: #0b1d36;
    --charcoal: #20242b;
    --muted: #697386;
    --gold: #c99a3b;
    --gold-2: #f4d58a;
    --white: #ffffff;
    --soft: #f4f6f9;
    --line: rgba(9, 20, 40, 0.1);
    --shadow: 0 18px 50px rgba(6, 20, 41, 0.14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
}

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

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

p {
    color: var(--muted);
    line-height: 1.75;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: var(--navy);
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: min(78vw, 330px);
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32), 0 0 0 12px rgba(201, 154, 59, 0.08);
    animation: pulseMark 1.4s ease-in-out infinite;
}

@keyframes pulseMark {
    50% { transform: scale(1.08); }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 1100;
    background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.top-header {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
}

.top-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    gap: 18px;
}

.top-links,
.social-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-links a,
.top-links span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.top-links i,
.social-links i {
    color: var(--gold-2);
}

.social-links a {
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
}

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

.social-links a:hover i {
    color: var(--navy);
}

.main-navbar {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: rgba(6, 20, 41, 0.96);
    backdrop-filter: blur(14px);
    padding: 14px 0;
    transition: all 0.25s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.main-navbar.scrolled {
    padding: 9px 0;
    box-shadow: 0 18px 44px rgba(6, 20, 41, 0.18);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 178px;
    max-width: 48vw;
    height: auto;
    object-fit: contain;
}

.offcanvas-logo {
    width: 188px;
    max-width: 62vw;
}

.brand-symbol {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    font: 800 24px "Playfair Display", serif;
    box-shadow: 0 10px 28px rgba(201, 154, 59, 0.28);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
}

.brand-copy small {
    color: var(--gold-2);
    font-size: 12px;
}

.navbar-nav {
    gap: 4px;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 10px;
    border-radius: 7px;
    transition: all 0.22s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--gold-2);
    background: rgba(255, 255, 255, 0.07);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 16px;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    border-radius: 8px;
    display: inline-grid;
    align-content: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
}

.premium-offcanvas {
    background: var(--navy);
    color: var(--white);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1085;
    width: min(88vw, 380px);
    max-width: min(88vw, 380px);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.28s ease, visibility 0.28s ease;
    overflow-y: auto;
}

.premium-offcanvas.show,
body.mobile-menu-open .premium-offcanvas {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1080;
    background: rgba(6, 20, 41, 0.58);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-menu-backdrop.show,
body.mobile-menu-open .mobile-menu-backdrop {
    opacity: 1;
    visibility: visible;
}

body.mobile-menu-open {
    overflow: hidden;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}

.mobile-nav a {
    display: flex;
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.84);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-weight: 700;
}

.mobile-nav a.active {
    color: var(--gold-2);
}

.mobile-menu-actions {
    display: grid;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    font-weight: 800;
    border: 0;
    padding: 12px 22px;
    transition: all 0.24s ease;
    white-space: nowrap;
}

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

.btn-sm-pill {
    padding: 10px 15px;
    font-size: 13px;
}

.btn-gold {
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    box-shadow: 0 12px 28px rgba(201, 154, 59, 0.28);
}

.btn-gold:hover {
    color: var(--navy);
    box-shadow: 0 18px 34px rgba(201, 154, 59, 0.36);
}

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

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

.btn-whatsapp {
    color: var(--white);
    background: #1fae5b;
}

.btn-whatsapp:hover {
    color: var(--white);
    background: #168b48;
}

.icon-btn {
    width: 46px;
    height: 46px;
    padding: 0;
}

.alert-stack {
    position: fixed;
    top: 112px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1080;
}

.premium-alert {
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-section {
    position: relative;
    min-height: 840px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    padding: 96px 0 80px;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-size: cover;
    background-position: center bottom;
    transform: scale(1.05);
    animation: heroZoom 12s ease-in-out infinite alternate;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(6, 20, 41, 0.94) 0%, rgba(6, 20, 41, 0.78) 46%, rgba(6, 20, 41, 0.46) 100%),
        radial-gradient(circle at 20% 20%, rgba(201, 154, 59, 0.24), transparent 38%);
}

@keyframes heroZoom {
    to { transform: scale(1.11); }
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero-content h1,
.section-heading h2,
.section-title,
.cta-content h2,
.page-banner h1,
.error-section h1 {
    font-family: "Playfair Display", serif;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-content h1 {
    max-width: 760px;
    margin: 16px 0 20px;
    font-size: clamp(44px, 7vw, 82px);
    line-height: 0.98;
}

.hero-content h1 span {
    display: block;
}

.hero-content p {
    max-width: 690px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

.hero-actions,
.cta-actions,
.strip-actions,
.form-actions,
.fleet-actions,
.service-actions,
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-actions {
    margin: 28px 0 30px;
}

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

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

.hero-trust i {
    color: var(--gold-2);
}

.hero-form-panel,
.form-panel,
.contact-panel {
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px;
}

.hero-form-panel {
    backdrop-filter: blur(16px);
}

.form-head {
    margin-bottom: 18px;
}

.form-head h2 {
    margin: 4px 0 0;
    color: var(--navy);
    font: 800 27px "Playfair Display", serif;
}

.form-label {
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
}

.form-control,
.form-select {
    min-height: 48px;
    border-radius: 7px;
    border: 1px solid #dce2ea;
    color: var(--charcoal);
    font-size: 14px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 154, 59, 0.17);
}

.section {
    padding: 96px 0;
}

.section-soft {
    background: var(--soft);
}

.section-navy {
    color: var(--white);
    background:
        linear-gradient(135deg, var(--navy), #102947),
        var(--navy);
    position: relative;
    overflow: hidden;
}

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 46px;
}

.section-heading h2,
.section-title {
    color: var(--navy);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    margin: 10px 0 14px;
}

.section-heading p,
.lead-text {
    font-size: 17px;
}

.section-heading.light h2,
.section-heading.light p {
    color: var(--white);
}

.image-collage {
    position: relative;
    border-radius: var(--radius);
    overflow: visible;
}

.image-collage img,
.rounded-image {
    width: 100%;
    aspect-ratio: 1.12 / 1;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.floating-stat {
    position: absolute;
    right: 20px;
    bottom: -24px;
    max-width: 210px;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.floating-stat strong {
    display: block;
    color: var(--gold);
    font-size: 34px;
    font-weight: 900;
}

.floating-stat span {
    color: var(--navy);
    font-weight: 800;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0;
}

.stats-grid div {
    padding: 20px;
    border-radius: var(--radius);
    background: var(--soft);
    border: 1px solid var(--line);
}

.stats-grid strong {
    color: var(--gold);
    display: block;
    font-size: 32px;
    font-weight: 900;
}

.stats-grid strong::after {
    content: "+";
}

.stats-grid span {
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
}

.service-card,
.fleet-card,
.service-detail-card,
.testimonial-card,
.value-card,
.benefit-card,
.contact-info-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 14px 40px rgba(6, 20, 41, 0.08);
    border: 1px solid var(--line);
    height: 100%;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover,
.fleet-card:hover,
.service-detail-card:hover,
.testimonial-card:hover,
.value-card:hover,
.benefit-card:hover,
.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(201, 154, 59, 0.35);
}

.service-card img,
.service-detail-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.card-body,
.service-detail-body,
.fleet-content {
    padding: 24px;
}

.card-icon,
.service-detail-body > i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-top: -52px;
    border-radius: 8px;
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    box-shadow: 0 14px 26px rgba(201, 154, 59, 0.26);
    position: relative;
}

.service-detail-body > i {
    margin-top: -50px;
    margin-bottom: 16px;
    font-size: 22px;
}

.service-card h3,
.fleet-card h3,
.service-detail-card h3,
.benefit-card h3,
.value-card h3,
.contact-info-card h3,
.timeline-list h3 {
    color: var(--navy);
    font-size: 21px;
    font-weight: 900;
    margin: 16px 0 10px;
}

.text-link {
    color: var(--gold);
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fleet-swiper,
.testimonial-swiper {
    padding: 8px 4px 48px;
}

.fleet-card img {
    width: 100%;
    height: 255px;
    object-fit: cover;
}

.fleet-meta {
    display: grid;
    gap: 8px;
    margin: 14px 0;
}

.fleet-meta span,
.fleet-card li,
.service-detail-card li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--muted);
    font-size: 14px;
}

.fleet-meta i,
.fleet-card li i,
.service-detail-card li i {
    color: var(--gold);
    margin-top: 3px;
}

.fleet-card ul,
.service-detail-card ul,
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fleet-card ul,
.service-detail-card ul {
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
}

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

.benefit-card,
.value-card,
.contact-info-card {
    padding: 24px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.benefit-card i,
.value-card i,
.contact-info-card i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    font-size: 22px;
}

.benefit-card h3,
.benefit-card p {
    color: var(--white);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    margin: 0;
}

.light-card {
    background: var(--white);
    border-color: var(--line);
}

.light-card h3 {
    color: var(--navy);
}

.light-card p {
    color: var(--muted);
}

.cta-section {
    position: relative;
    padding: 105px 0;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.cta-section::before,
.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 20, 41, 0.92), rgba(6, 20, 41, 0.56));
}

.cta-content {
    position: relative;
    max-width: 830px;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    margin: 12px 0 26px;
}

.rental-pill-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.rental-pill-grid a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 13px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(6, 20, 41, 0.06);
    font-weight: 800;
}

.rental-pill-grid i {
    color: var(--gold);
}

.filter-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-controls button {
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--navy);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 800;
    transition: all 0.24s ease;
}

.filter-controls button.active,
.filter-controls button:hover {
    background: var(--navy);
    color: var(--gold-2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.masonry-gallery {
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    display: block;
    min-height: 260px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(6, 20, 41, 0.1);
}

.masonry-gallery .gallery-item:nth-child(4n + 1) {
    grid-row: span 2;
    min-height: 540px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.35s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(6, 20, 41, 0.82));
}

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

.gallery-item span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    color: var(--white);
    font-weight: 900;
}

.gallery-item.is-hidden {
    display: none;
}

.video-card {
    width: 100%;
    min-height: 310px;
    position: relative;
    border: 0;
    border-radius: var(--radius);
    overflow: hidden;
    padding: 0;
    text-align: left;
    background: var(--navy);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.video-card.large {
    min-height: 385px;
}

.video-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
    transition: transform 0.35s ease;
}

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

.video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 20, 41, 0.05), rgba(6, 20, 41, 0.85));
}

.play-button {
    position: absolute;
    top: 26px;
    left: 26px;
    z-index: 2;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--navy);
    background: var(--gold-2);
}

.video-card strong,
.video-card small {
    position: absolute;
    left: 26px;
    right: 26px;
    z-index: 2;
    color: var(--white);
}

.video-card strong {
    bottom: 60px;
    font-size: 24px;
    font-weight: 900;
}

.video-card small {
    bottom: 26px;
    color: rgba(255, 255, 255, 0.78);
}

.video-modal-content {
    background: #000;
    border: 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.video-modal-content .btn-close {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 3;
}

.testimonial-card {
    padding: 28px;
}

.testimonial-card.tall {
    min-height: 360px;
}

.rating {
    color: var(--gold);
    margin-bottom: 16px;
}

.testimonial-card p {
    color: var(--charcoal);
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.testimonial-author img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-author strong,
.testimonial-author span,
.testimonial-author small {
    display: block;
}

.testimonial-author strong {
    color: var(--navy);
    font-weight: 900;
}

.testimonial-author span,
.testimonial-author small {
    color: var(--muted);
    font-size: 13px;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.client-logo {
    min-height: 84px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--navy);
    font-weight: 900;
    text-align: center;
    box-shadow: 0 10px 26px rgba(6, 20, 41, 0.05);
}

.page-banner {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.page-banner-content {
    position: relative;
    max-width: 760px;
    padding: 90px 0;
}

.breadcrumb {
    margin-bottom: 18px;
}

.breadcrumb a,
.breadcrumb-item,
.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.78);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--gold-2);
}

.page-banner h1 {
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.83);
    font-size: 18px;
}

.value-card {
    padding: 30px;
}

.timeline-list {
    display: grid;
    gap: 18px;
}

.timeline-list > div {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
}

.timeline-list span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold-2);
    font-weight: 900;
}

.timeline-list h3 {
    margin: 0 0 6px;
}

.timeline-list p {
    margin: 0;
}

.contact-info-card {
    text-align: center;
    word-break: break-word;
}

.contact-info-card i {
    margin: 0 auto 16px;
}

.contact-info-card p {
    margin: 0;
    font-size: 14px;
}

.contact-panel {
    height: 100%;
    background: var(--navy);
    color: var(--white);
}

.contact-panel h2 {
    color: var(--white);
    font: 800 38px "Playfair Display", serif;
    margin: 12px 0 14px;
}

.contact-panel p {
    color: rgba(255, 255, 255, 0.76);
}

.map-wrap {
    margin-top: 26px;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 310px;
}

.map-wrap iframe {
    width: 100%;
    height: 310px;
    border: 0;
}

.contact-strip {
    background: var(--soft);
    padding: 70px 0 0;
}

.contact-strip-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    border-radius: var(--radius);
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), #142f51);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
    margin-bottom: -58px;
}

.contact-strip-card h2 {
    margin: 8px 0 0;
    max-width: 680px;
    font: 800 34px "Playfair Display", serif;
}

.site-footer {
    background: var(--navy);
    color: var(--white);
    padding: 130px 0 24px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    width: 220px;
    max-width: 100%;
}

.footer-text,
.site-footer p,
.site-footer a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
    font-size: 16px;
    font-weight: 900;
    color: var(--gold-2);
    margin-bottom: 18px;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 11px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold-2);
}

.footer-contact li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
}

.footer-contact i {
    color: var(--gold-2);
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding-top: 26px;
    margin-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 16px;
}

.floating-whatsapp,
.scroll-top {
    position: fixed;
    right: 22px;
    z-index: 1090;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
}

.floating-whatsapp {
    bottom: 88px;
    color: var(--white);
    background: #1fae5b;
    font-size: 25px;
    animation: whatsappPulse 1.7s ease-in-out infinite;
}

@keyframes whatsappPulse {
    50% { box-shadow: 0 0 0 14px rgba(31, 174, 91, 0.16); }
}

.scroll-top {
    bottom: 22px;
    border: 0;
    color: var(--navy);
    background: var(--gold-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s ease;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-sticky-cta {
    display: none;
}

.error-section {
    min-height: 72vh;
    display: grid;
    place-items: center;
    padding: 100px 0;
}

.error-section h1 {
    color: var(--navy);
    font-size: clamp(38px, 6vw, 66px);
}

@media (max-width: 1199px) {
    .benefit-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .rental-pill-grid,
    .client-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .top-header {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding: 76px 0 66px;
    }

    .hero-media {
        background-position: 58% center;
    }

    .hero-content h1 {
        max-width: 620px;
        font-size: clamp(38px, 9vw, 60px);
    }

    .hero-form-panel {
        margin-top: 12px;
    }

    .benefit-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-strip-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    body {
        padding-bottom: 70px;
    }

    .main-navbar {
        padding: 10px 0;
    }

    .brand-symbol {
        width: 42px;
        height: 42px;
        font-size: 21px;
    }

    .brand-logo {
        width: 168px;
        max-width: 58vw;
    }

    .brand-copy strong {
        font-size: 17px;
    }

    .hero-section {
        min-height: auto;
        padding: 62px 0 54px;
        text-align: left;
    }

    .hero-media {
        background-position: 62% center;
        transform: scale(1.01);
        animation: none;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(6, 20, 41, 0.55) 0%, rgba(6, 20, 41, 0.7) 48%, rgba(6, 20, 41, 0.9) 100%),
            linear-gradient(90deg, rgba(6, 20, 41, 0.8), rgba(6, 20, 41, 0.1));
    }

    .hero-content h1 {
        max-width: 350px;
        font-size: clamp(32px, 8.7vw, 42px);
        line-height: 1.06;
        overflow-wrap: break-word;
    }

    .hero-content p {
        max-width: 100%;
        font-size: 15px;
        overflow-wrap: break-word;
    }

    .hero-content,
    .hero-actions,
    .hero-form-panel,
    .enquiry-form {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .hero-actions .btn,
    .cta-actions .btn,
    .strip-actions .btn,
    .form-actions .btn,
    .contact-buttons .btn {
        width: 100%;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .hero-trust span {
        width: 100%;
        justify-content: center;
    }

    .hero-form-panel,
    .form-panel,
    .contact-panel {
        padding: 20px;
    }

    .section {
        padding: 68px 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2,
    .section-title {
        font-size: clamp(32px, 10vw, 44px);
    }

    .stats-grid,
    .benefit-grid,
    .gallery-grid,
    .rental-pill-grid,
    .client-grid {
        grid-template-columns: 1fr;
    }

    .masonry-gallery .gallery-item:nth-child(4n + 1) {
        grid-row: auto;
        min-height: 260px;
    }

    .floating-stat {
        position: static;
        margin: -28px 16px 0;
    }

    .page-banner {
        min-height: 360px;
    }

    .page-banner-content {
        padding: 68px 0;
    }

    .service-card img,
    .service-detail-card img,
    .fleet-card img {
        height: 210px;
    }

    .video-card,
    .video-card.large {
        min-height: 300px;
    }

    .video-card strong {
        bottom: 72px;
        font-size: 21px;
    }

    .video-card small {
        line-height: 1.4;
    }

    .contact-strip {
        padding-top: 48px;
    }

    .contact-strip-card {
        padding: 24px;
    }

    .contact-strip-card h2,
    .contact-panel h2 {
        font-size: 30px;
    }

    .site-footer {
        padding-bottom: 92px;
    }

    .floating-whatsapp {
        display: none;
    }

    .scroll-top {
        right: 14px;
        bottom: 82px;
        width: 48px;
        height: 48px;
    }

    .mobile-sticky-cta {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 1095;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: hidden;
        border-radius: var(--radius);
        background: var(--navy);
        box-shadow: var(--shadow);
    }

    .mobile-sticky-cta a {
        display: grid;
        place-items: center;
        gap: 4px;
        min-width: 0;
        min-height: 54px;
        color: var(--white);
        font-size: 12px;
        font-weight: 800;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-sticky-cta a:last-child {
        border-right: 0;
    }

    .mobile-sticky-cta i {
        color: var(--gold-2);
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 420px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-content h1 {
        max-width: 310px;
        font-size: 31px;
    }

    .btn {
        white-space: normal;
        min-height: 46px;
        text-align: center;
    }

    .filter-controls {
        justify-content: stretch;
    }

    .filter-controls button {
        flex: 1 1 calc(50% - 10px);
        padding-left: 10px;
        padding-right: 10px;
    }
}
