/********** Template CSS **********/
:root {
    --primary: #EF6F65;
    --secondary: #0B2154;
    --light: #F2F2F2;
    --dark: #111111;
}

/* Global primary-color override to keep Bootstrap and template accents aligned */
:root {
    --bs-primary: #EF6F65;
}

a,
.link-primary,
.text-primary {
    color: #EF6F65 !important;
}

a:hover,
.link-primary:hover,
.link-primary:focus {
    color: #D85E57 !important;
}

.bg-primary {
    background-color: #EF6F65 !important;
}

.border-primary {
    border-color: #EF6F65 !important;
}

.btn-primary,
.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary.active {
    background-color: #EF6F65 !important;
    border-color: #EF6F65 !important;
    color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    background-color: #D85E57 !important;
    border-color: #D85E57 !important;
    color: #ffffff !important;
}

.btn-outline-primary {
    color: #EF6F65 !important;
    border-color: #EF6F65 !important;
}

.btn-check:focus + .btn-primary,
.btn-primary:focus,
.btn-check:focus + .btn-outline-primary,
.btn-outline-primary:focus,
.form-check-input:focus,
.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 .25rem rgba(239, 111, 101, 0.25) !important;
    border-color: #F8B5AE !important;
}

.form-check-input:checked,
.form-check-input[type="checkbox"]:indeterminate {
    background-color: #EF6F65 !important;
    border-color: #EF6F65 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    background: #FFFFFF;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* Page Loader */
.loader {
    width: 60px;
    height: 40px;
    position: relative;
    display: inline-block;
    --base-color: #263238;
}

.loader::before {
    content: '';
    left: 0;
    top: 0;
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #FFF;
    background-image:
        radial-gradient(circle 8px at 18px 18px, var(--base-color) 100%, transparent 0),
        radial-gradient(circle 4px at 18px 0px, var(--base-color) 100%, transparent 0),
        radial-gradient(circle 4px at 0px 18px, var(--base-color) 100%, transparent 0),
        radial-gradient(circle 4px at 36px 18px, var(--base-color) 100%, transparent 0),
        radial-gradient(circle 4px at 18px 36px, var(--base-color) 100%, transparent 0),
        radial-gradient(circle 4px at 30px 5px, var(--base-color) 100%, transparent 0),
        radial-gradient(circle 4px at 30px 30px, var(--base-color) 100%, transparent 0),
        radial-gradient(circle 4px at 5px 30px, var(--base-color) 100%, transparent 0),
        radial-gradient(circle 4px at 5px 5px, var(--base-color) 100%, transparent 0);
    background-repeat: no-repeat;
    box-sizing: border-box;
    animation: rotationBack 3s linear infinite;
}

.loader::after {
    content: '';
    left: 35px;
    top: 15px;
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #FFF;
    background-image:
        radial-gradient(circle 5px at 12px 12px, var(--base-color) 100%, transparent 0),
        radial-gradient(circle 2.5px at 12px 0px, var(--base-color) 100%, transparent 0),
        radial-gradient(circle 2.5px at 0px 12px, var(--base-color) 100%, transparent 0),
        radial-gradient(circle 2.5px at 24px 12px, var(--base-color) 100%, transparent 0),
        radial-gradient(circle 2.5px at 12px 24px, var(--base-color) 100%, transparent 0),
        radial-gradient(circle 2.5px at 20px 3px, var(--base-color) 100%, transparent 0),
        radial-gradient(circle 2.5px at 20px 20px, var(--base-color) 100%, transparent 0),
        radial-gradient(circle 2.5px at 3px 20px, var(--base-color) 100%, transparent 0),
        radial-gradient(circle 2.5px at 3px 3px, var(--base-color) 100%, transparent 0);
    background-repeat: no-repeat;
    box-sizing: border-box;
    animation: rotationBack 4s linear infinite reverse;
}

@keyframes rotationBack {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Topbar Dark ***/
.topbar-dark {
    background: #060E2B;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-dark small {
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
}

.topbar-dark .fa,
.topbar-dark .far {
    color: #EF6F65 !important;
}

.topbar-dark .btn-sm-square {
    background: rgba(255, 255, 255, 0.08) !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    width: 22px !important;
    height: 22px !important;
    font-size: 10px !important;
    transition: background 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.2s !important;
}

.topbar-dark .btn-sm-square:hover {
    background: #EF6F65 !important;
    background-color: #EF6F65 !important;
    color: #FFFFFF !important;
    border-color: #EF6F65 !important;
    transform: translateY(-2px);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-modern {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    min-height: 36px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    top: 0 !important;
}

.navbar-modern.navbar-scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.08);
}

.navbar-modern .navbar-brand {
    min-height: 36px;
    display: flex;
    align-items: center;
}

.navbar-modern .navbar-nav .nav-link {
    color: #2c2e3e;
    font-size: 12.5px;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 0;
    margin: 0 1px;
    text-transform: none;
    letter-spacing: 0.025em;
    transition: color 0.18s;
    outline: none;
    position: relative;
    background: transparent !important;
}

.navbar-modern .navbar-nav .nav-link:hover {
    color: #EF6F65;
    background: transparent !important;
}

.navbar-modern .navbar-nav .nav-link.active {
    color: #EF6F65;
    font-weight: 600;
    background: transparent !important;
}

.navbar-modern .navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: #EF6F65;
    border-radius: 99px;
}

.btn-navbar-cta {
    background: transparent;
    color: #EF6F65 !important;
    border: 1.5px solid #EF6F65;
    border-radius: 50px;
    padding: 3px 15px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-navbar-cta:hover {
    background: #EF6F65 !important;
    color: #FFFFFF !important;
    border-color: #EF6F65;
    box-shadow: 0 3px 10px rgba(239, 111, 101, 0.28);
}

.navbar-modern .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.18);
    padding: 2px 6px;
}

.navbar-modern .navbar-toggler-icon {
    filter: none;
    width: 1em;
    height: 1em;
}

@media (max-width: 991.98px) {
    .navbar-modern {
        padding: 3px 0 !important;
        min-height: unset;
    }

    .navbar-modern .navbar-brand {
        min-height: 36px;
    }

    .navbar-modern .navbar-collapse {
        border-top: 1px solid rgba(0, 0, 0, 0.07);
        padding: 10px 0 8px;
        margin-top: 8px;
        background: #ffffff;
    }

    .navbar-modern .navbar-nav .nav-link {
        padding: 9px 16px;
        margin: 1px 0;
        color: #2c2e3e;
    }

    .navbar-modern .navbar-nav .nav-link.active::after {
        display: none;
    }

    .navbar-modern .navbar-right-actions {
        padding: 10px 14px 6px;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .btn-navbar-cta {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Video ***/
.hero-video-section {
    position: relative;
    min-height: 88vh;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(105deg, rgba(6,14,43,0.88) 0%, rgba(6,14,43,0.60) 55%, rgba(0,0,0,0.18) 100%);
}

/* Carousel floats above video + overlay */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-carousel .carousel-inner {
    position: relative;
    height: 100%;
    min-height: 88vh;
    overflow: hidden;
}

/* Stack all items in the same space — pure opacity fade */
.hero-carousel .carousel-item {
    position: absolute !important;
    top: 0; left: 0; right: 0; bottom: 0;
    display: block !important;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.85s ease;
    pointer-events: none;
    float: none !important;
    margin-right: 0 !important;
}

/* Active slide — fully visible */
.hero-carousel .carousel-item.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

/* Incoming slide — fades in */
.hero-carousel .carousel-item.carousel-item-next.carousel-item-start,
.hero-carousel .carousel-item.carousel-item-prev.carousel-item-end {
    opacity: 1;
    z-index: 2;
}

/* Outgoing slide — fades out */
.hero-carousel .carousel-item.active.carousel-item-start,
.hero-carousel .carousel-item.active.carousel-item-end {
    opacity: 0;
    z-index: 1;
    transition: opacity 0.85s ease;
}

.hero-content {
    display: flex;
    align-items: center;
    min-height: 88vh;
    width: 100%;
    padding: 100px 0 80px;
}

.hero-badge {
    display: inline-block;
    background: rgba(239,111,101,0.15);
    border: 1px solid rgba(239,111,101,0.40);
    color: #EF6F65;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.68);
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 38px;
}

.btn-hero {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 0.02em;
    transition: all 0.2s;
}

.btn-outline-light.btn-hero {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(4px);
}

.btn-outline-light.btn-hero:hover {
    background: rgba(255,255,255,0.15) !important;
    color: #fff !important;
}

/* Slide indicators */
#header-carousel .carousel-indicators {
    bottom: 32px;
    gap: 8px;
    margin: 0 0 0 calc(50% - 570px + 2rem);
    justify-content: flex-start;
    z-index: 10;
}

#header-carousel .carousel-indicators [data-bs-slide-to] {
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.30);
    border-top: none;
    border-bottom: none;
    opacity: 1;
    transition: width 0.35s, background 0.35s;
}

#header-carousel .carousel-indicators .active {
    width: 52px;
    background: #EF6F65;
}

/* Arrow controls */
.hero-prev,
.hero-next {
    width: 46px !important;
    height: 46px !important;
    background: rgba(255,255,255,0.10) !important;
    border: 1.5px solid rgba(255,255,255,0.22) !important;
    border-radius: 50% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: background 0.2s, border-color 0.2s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    backdrop-filter: blur(4px);
    z-index: 10 !important;
}

.hero-prev { left: 28px !important; }
.hero-next { right: 28px !important; }

.hero-prev:hover,
.hero-next:hover {
    background: #EF6F65 !important;
    border-color: #EF6F65 !important;
}

.hero-prev i,
.hero-next i {
    color: #fff;
    font-size: 13px;
}

/* Scroll hint line */
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    right: 52px;
    z-index: 10;
}

.hero-scroll-hint span {
    display: block;
    width: 1.5px;
    height: 42px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.45));
    margin: 0 auto;
    animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.25; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(0.55); }
}

@media (max-width: 768px) {
    .hero-video-section { min-height: 72vh; }
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item,
    .hero-content { min-height: 72vh; }
    .hero-content { padding: 70px 0 80px; }
    .hero-prev { left: 12px !important; }
    .hero-next { right: 12px !important; }
    .hero-scroll-hint { display: none; }
    #header-carousel .carousel-indicators { margin: 0 auto; justify-content: center; }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(0, 0, 0, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About Section ***/
.about-section {
    background: #f8f8f8;
}

.about-intro {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

/* Years Badge */
.about-years-badge {
    background: #EF6F65;
    padding: 18px 22px 16px;
    box-shadow: 0 8px 28px rgba(239, 111, 101, 0.28);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 110px;
    z-index: 2;
}

.about-years-num {
    font-family: 'Barlow', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    display: block;
}

.about-years-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    line-height: 1.45;
    margin-top: 4px;
    display: block;
}

/* Feature list */
.about-features {
    display: flex;
    flex-direction: column;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.about-feature-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.about-feature-num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: rgba(239, 111, 101, 0.08);
    border: 1.5px solid rgba(239, 111, 101, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #EF6F65;
    letter-spacing: 0.05em;
    margin-top: 1px;
}

.about-feature-text h6 {
    font-weight: 600;
    font-size: 14.5px;
    color: #1a1a2e;
    margin-bottom: 3px;
}

.about-feature-text span {
    font-size: 13.5px;
    color: #666;
    line-height: 1.6;
}


/*** Service ***/
/* Left nav pills */
.service-nav {
    gap: 6px;
}

.service-nav-btn {
    background: #ffffff;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    width: 100%;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #2c2e3e;
}

.service-nav-btn:hover {
    border-color: rgba(239, 111, 101, 0.4);
    background: rgba(239, 111, 101, 0.04);
    color: #EF6F65;
}

.service-nav-btn.active {
    background: #EF6F65;
    border-color: #EF6F65;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(239, 111, 101, 0.28);
}

.service-nav-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: background 0.25s;
}

.service-nav-btn.active .service-nav-icon {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.service-nav-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-nav-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
}

.service-nav-sub {
    font-size: 11.5px;
    opacity: 0.65;
    font-weight: 400;
}

.service-nav-arrow {
    font-size: 11px;
    opacity: 0.45;
    flex-shrink: 0;
}

.service-nav-btn.active .service-nav-arrow {
    opacity: 0.75;
}

/* Tab pane content */
.tab-content.h-100 {
    height: 100%;
}
.tab-content.h-100 .tab-pane {
    height: 100%;
}
.tab-content.h-100 .tab-pane .service-pane {
    height: 100%;
    min-height: 0;
}
.tab-content.h-100 .tab-pane .service-pane > .row {
    height: 100%;
}

.service-pane {
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    border-radius: 6px;
    overflow: hidden;
    min-height: 360px;
}

.service-img-wrap {
    height: 100%;
    min-height: 360px;
}

.service-pane-body {
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-pane-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #EF6F65;
    background: rgba(239, 111, 101, 0.1);
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.service-pane-desc {
    color: #555;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.service-checks p {
    font-size: 13.5px;
    color: #333;
    margin-bottom: 6px;
}

.service-checks p:last-child {
    margin-bottom: 16px;
}

.btn-service-more {
    align-self: flex-start;
    padding: 8px 22px;
    font-size: 13.5px;
    font-weight: 600;
}

.service .nav .nav-link.active {
    background: #EF6F65;
}

.service .nav .nav-link.active h4 {
    color: #FFFFFF !important;
}


/*** Car Brands Marquee ***/
.car-brands-section {
    background: #ffffff;
    padding: 28px 0;
    border-top: 1px solid rgba(0,0,0,0.07);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    overflow: hidden;
}

.car-brands-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #c0c0c0;
    margin-bottom: 20px;
}

.car-brands-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.car-brands-wrap::before,
.car-brands-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.car-brands-wrap::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.car-brands-wrap::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.car-brands-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: carBrandsScroll 32s linear infinite;
}

.car-brands-track:hover {
    animation-play-state: paused;
}

.car-brand-item {
    flex-shrink: 0;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-right: 1px solid rgba(0,0,0,0.07);
}

.car-brand-logo {
    height: 42px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    filter: grayscale(0.15) opacity(0.82);
    transition: filter 0.3s ease;
}

.car-brand-item:hover .car-brand-logo {
    filter: grayscale(0) opacity(1);
}

.car-brand-item span {
    font-size: 10px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    transition: color 0.3s ease;
}

.car-brand-item:hover span {
    color: #333;
}

@keyframes carBrandsScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/*** Team (kept for team.html) ***/
.team-item .team-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transform: scale(0);
    transition: .5s;
}

.team-item:hover .team-overlay {
    transform: scale(1);
}

.team-item .team-overlay .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-overlay .btn:hover {
    color: #FFFFFF;
    background: var(--secondary)
}


/*** Director Section ***/
.director-section {
    background: #fafafa;
}

.director-photo-wrap {
    width: 240px;
    height: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.director-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: #EF6F65;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(239, 111, 101, 0.35);
}

.director-title {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #EF6F65;
    letter-spacing: 0.04em;
}

.director-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.director-socials a {
    width: 34px;
    height: 34px;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #555;
    transition: all 0.2s ease;
    text-decoration: none;
}

.director-socials a:hover {
    border-color: #EF6F65;
    color: #EF6F65;
    background: rgba(239, 111, 101, 0.06);
}

.director-quote {
    border-left: 3px solid #EF6F65;
    padding: 14px 20px;
    margin: 0 0 22px;
    background: rgba(239, 111, 101, 0.04);
    border-radius: 0 4px 4px 0;
    font-size: 16px;
    font-style: italic;
    color: #1a1a2e;
    line-height: 1.75;
    font-weight: 500;
}

.director-bio {
    color: #555;
    font-size: 14.5px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.director-stats {
    display: flex;
    gap: 32px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.director-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.stat-num {
    font-family: 'Barlow', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #EF6F65;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


/*** Partners Marquee ***/
.partners-section {
    background: #ffffff;
    padding: 28px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.partners-label {
    text-align: center;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #aaa;
    margin-bottom: 18px;
}

.marquee-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-wrap::before,
.marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    padding: 8px 32px;
    font-size: 13.5px;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    transition: color 0.2s ease;
}

.marquee-item:hover {
    color: #EF6F65;
}

@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/*** Contact Section ***/
.contact-section {
    background: #f0f0f3;
    padding: 80px 0;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.contact-info-panel {
    background: #0B2154;
    padding: 48px 40px 0;
    display: flex;
    flex-direction: column;
}

.contact-form-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    padding: 48px 40px;
}

.contact-form-sub {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.7;
}

#formStatus {
    border-radius: 10px;
    font-size: 13px;
    padding: 10px 12px;
    margin-bottom: 16px;
}

.contact-panel-title {
    font-family: 'Barlow', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.contact-form-title {
    color: #1a1a2e !important;
}

.contact-panel-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-bottom: 28px;
}

.contact-details-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.contact-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-detail-icon-wrap {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(239, 111, 101, 0.12);
    border: 1px solid rgba(239, 111, 101, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EF6F65;
    font-size: 13px;
}

.contact-detail-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-detail-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
}

.contact-detail-val {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

.contact-map-embed {
    flex: 1;
    min-height: 320px;
    margin: 0 -40px;
}

.contact-map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: block;
    filter: grayscale(0.25) contrast(0.9);
}

.contact-input {
    border: 1.5px solid rgba(11, 33, 84, 0.12) !important;
    border-radius: 10px !important;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
    background: #ffffff !important;
    box-shadow: 0 4px 16px rgba(11, 33, 84, 0.04);
}

.contact-input:focus {
    border-color: #EF6F65 !important;
    box-shadow: 0 0 0 4px rgba(239, 111, 101, 0.14) !important;
    background: #fff !important;
    transform: translateY(-1px);
}

.contact-form-panel .form-floating > label {
    color: #64748b;
}

.contact-submit-btn {
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #ef6f65 0%, #0b2154 100%);
    border: none;
    box-shadow: 0 12px 26px rgba(11, 33, 84, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(11, 33, 84, 0.25);
    filter: saturate(1.03);
}

.contact-submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.75;
    transform: none;
}

@media (max-width: 991px) {
    .contact-card {
        grid-template-columns: 1fr;
    }
    .contact-details-list {
        grid-template-columns: 1fr;
    }
    .contact-map-embed {
        min-height: 260px;
        height: 260px;
    }
}


/*** Footer ***/
.site-footer {
    background-color: #0d0d0d;
    color: #a0a8b4;
    font-size: 14.5px;
}

/* Main footer body */
.footer-main {
    padding: 72px 0 52px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Logo */
.footer-logo {
    height: 28px;
    width: auto;
    margin-bottom: 16px;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-tagline {
    color: #7a8494;
    font-size: 13.5px;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 320px;
}

/* Contact list in footer */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #8d96a5;
    font-size: 13.5px;
    margin-bottom: 11px;
    line-height: 1.55;
}

.footer-contact-list li i {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

.footer-contact-list a {
    color: #8d96a5;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-list a:hover {
    color: #fff;
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    color: #8d96a5;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Column headings */
.footer-heading {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: #7a8494;
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

/* Hours list */
.footer-hours-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #7a8494;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-hours-list li:last-child {
    border-bottom: none;
}

.footer-hours-list li span:first-child {
    color: #a0a8b4;
}

/* Footer CTA button */
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 9px 22px;
    background: var(--primary);
    color: #fff !important;
    border-radius: 4px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.2s;
}

.footer-cta-btn:hover {
    background: var(--dark);
    color: #fff !important;
    transform: translateY(-1px);
}

/* Bottom bar */
.footer-bottom {
    background-color: #080808;
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copy,
.footer-powered {
    margin: 0;
    font-size: 13px;
    color: #4e5663;
}

.footer-copy strong {
    color: #7a8494;
    font-weight: 600;
}

.footer-powered a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.footer-powered a:hover {
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 12.5px;
    color: #4e5663;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #fff;
}


/* ===== INNER PAGE COMPONENTS ===== */
.inner-value-card { background: #fff; border: 1px solid #f0f0f0; border-radius: 6px; padding: 32px 24px; text-align: center; height: 100%; transition: box-shadow 0.2s; }
.inner-value-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.inner-value-icon { width: 58px; height: 58px; background: rgba(239,111,101,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 22px; color: var(--primary); }
.inner-value-card h5 { font-weight: 700; margin-bottom: 10px; }
.inner-value-card p { color: #6c757d; font-size: 14px; line-height: 1.7; margin: 0; }

.inner-stats-strip { background: #1a1a2e; padding: 56px 0; }
.inner-stat-item { display: flex; flex-direction: column; align-items: center; }
.inner-stat-num { font-size: 2.6rem; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 8px; font-family: 'Barlow', sans-serif; }
.inner-stat-label { font-size: 13px; color: #a0a8b4; text-transform: uppercase; letter-spacing: 0.08em; }

.inner-team-card { background: #fff; border: 1px solid #f0f0f0; border-radius: 6px; padding: 32px 24px; text-align: center; height: 100%; }
.inner-team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Barlow', sans-serif; }
.inner-team-card h5 { font-weight: 700; margin-bottom: 4px; }
.inner-team-card > span { font-size: 13px; color: var(--primary); font-weight: 600; display: block; margin-bottom: 12px; }
.inner-team-card p { color: #6c757d; font-size: 13.5px; line-height: 1.65; margin: 0; }

/* ===== SHOP COMING SOON ===== */
.shop-coming-soon {
    background: linear-gradient(135deg, #1a2634 0%, #263238 65%, #3d1f1c 100%);
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.shop-coming-soon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(239,111,101,0.18) 0%, transparent 65%);
    pointer-events: none;
}
.shop-cs-pill {
    display: inline-block;
    background: rgba(239,111,101,0.18);
    border: 1px solid rgba(239,111,101,0.5);
    color: #EF6F65;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 7px 22px;
    border-radius: 99px;
    margin-bottom: 22px;
}
.shop-cs-heading {
    font-size: clamp(1.7rem, 4vw, 2.7rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}
.shop-cs-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}
.shop-cs-product-wrap {
    position: relative;
}
.shop-cs-product-overlay {
    position: absolute;
    inset: -16px;
    z-index: 10;
    background: rgba(255,255,255,0.80);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-cs-product-badge {
    background: #263238;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 16px 40px;
    border-radius: 99px;
    border: 2px solid #EF6F65;
    box-shadow: 0 12px 40px rgba(0,0,0,0.22);
}

.inner-cta-strip { background: var(--primary); padding: 60px 0; color: #fff; }
.inner-cta-strip h2 { color: #fff; font-weight: 700; }
.inner-cta-strip .btn-light { background: #fff; color: var(--primary); font-weight: 600; border: none; }
.inner-cta-strip .btn-light:hover { background: #f0f0f0; }

/* ===== CONTACT PAGE ===== */
.contact-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 28px 24px;
    text-align: center;
    transition: box-shadow 0.25s, transform 0.25s;
}
.contact-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.09);
    transform: translateY(-4px);
}
.contact-card-icon {
    width: 58px;
    height: 58px;
    background: rgba(239, 111, 101, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin: 0 auto 14px;
}
.contact-card-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    color: #222;
}
.contact-card-text {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}
.contact-card-text a {
    color: #444;
    text-decoration: none;
}
.contact-card-text a:hover { color: var(--primary); }

.contact-form-box {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 36px 32px;
    box-shadow: 0 4px 28px rgba(0,0,0,0.07);
}
@media (max-width: 575px) {
    .contact-form-box { padding: 24px 18px; }
}

.contact-social-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px 24px;
}
.contact-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.contact-social-btn:hover {
    background: #d4524a;
    color: #fff;
    transform: translateY(-2px);
}

/* ===== CONTACT PAGE EXTRAS ===== */
.cpage-strip {
    background: #0B2154;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cpage-quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.09);
    color: rgba(255,255,255,0.88);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.cpage-quick-btn:hover { background: rgba(255,255,255,0.18); color: #fff; }
.cpage-quick-btn--wa { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.3); color: #5de87a; }
.cpage-quick-btn--wa:hover { background: rgba(37,211,102,0.25); color: #6ff58a; }

.cpage-socials {
    padding: 20px 0 22px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 6px;
}
.cpage-socials-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    margin-bottom: 12px;
}