/* ==========================================================================
   911 Panel Beaters — Blue / White / Black Theme
   ========================================================================== */

:root {
    --blue: #003DA5;
    --blue-light: #2979FF;
    --blue-dark: #002870;
    --blue-deep: #001C4E;
    --blue-pale: #E8F0FE;
    --blue-mist: #F0F5FF;
    --black: #0D0D0D;
    --grey-900: #1A1A2E;
    --grey-700: #4A4A5A;
    --grey-500: #7A7A8E;
    --grey-300: #D4D4DE;
    --grey-200: #E8E8EE;
    --grey-100: #F4F4F8;
    --white: #FFFFFF;
    --accent: #1565C0;
    --radius: 6px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow-blue: 0 8px 30px rgba(0, 61, 165, 0.25);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --font-heading: 'Barlow Condensed', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--grey-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
svg { width: 24px; height: 24px; flex-shrink: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; width: 100%; padding: 0 20px; box-sizing: border-box; }
.preloader-logo { max-width: min(500px, 85vw); width: auto; height: auto; animation: preloader-pulse 1.2s ease-in-out infinite; }
.preloader-bar { width: 200px; height: 3px; background: var(--grey-200); overflow: hidden; border-radius: 2px; }
.preloader-bar-fill { height: 100%; width: 40%; background: linear-gradient(90deg, var(--blue), var(--blue-light)); animation: preloader-load 1.2s ease-in-out infinite; }
@keyframes preloader-pulse { 0%, 100% { transform: scale(1); opacity: 0.9; } 50% { transform: scale(1.04); opacity: 1; } }
@keyframes preloader-load { 0% { transform: translateX(-120%); } 100% { transform: translateX(340%); } }

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background: var(--black);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    padding: 11px 0;
    border-bottom: 3px solid var(--blue);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item svg {
    width: 14px;
    height: 14px;
    color: var(--blue-light);
}

.top-bar-right a:hover { color: var(--blue-light); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1000;
    border-bottom: 1px solid var(--grey-200);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 24px;
}

.nav-logo-img {
    height: 180px;
    width: auto;
    transition: var(--transition);
}

.nav-logo:hover .nav-logo-img { transform: scale(1.03); }

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--blue);
    transition: width 0.4s var(--ease);
}

.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--blue); }

.nav-cta {
    background: var(--blue);
    color: var(--white) !important;
    padding: 13px 28px !important;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-blue);
}

.nav-cta::after { display: none; }

.nav-cta:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 61, 165, 0.4);
}

.nav-cta span { transition: transform 0.3s var(--ease); }
.nav-cta:hover span { transform: translateX(4px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; z-index: 1001; padding: 6px; }
.nav-toggle span { width: 28px; height: 2px; background: var(--black); transition: var(--transition); border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(0, 61, 165, 0.4);
}

.btn-ghost {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: var(--white);
    color: var(--blue);
    border-color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--blue);
}

.btn-outline-blue {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}

.btn-outline-blue:hover {
    background: var(--blue);
    color: var(--white);
}

.btn-large { padding: 20px 40px; font-size: 0.9rem; }
.btn-full { width: 100%; }
.btn-inline { margin-top: 10px; }

/* ==========================================================================
   Hero — Panel Beating Background
   ========================================================================== */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 60px;
    background: var(--black);
    color: var(--white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url('images/workshop-floor.jpg') center/cover no-repeat;
    filter: brightness(0.6);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 82, 204, 0.55) 0%, rgba(30, 58, 138, 0.4) 50%, rgba(0, 61, 165, 0.5) 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at 30% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 30%, transparent 70%);
    z-index: 1;
}

.hero-gradient,
.hero-shape { display: none; }

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 70px;
    align-items: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255,255,255,0.8);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-label-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue-light);
    box-shadow: 0 0 0 4px rgba(41, 121, 255, 0.3);
    animation: hero-dot-pulse 2s ease-in-out infinite;
}

@keyframes hero-dot-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(41, 121, 255, 0.3); }
    50% { box-shadow: 0 0 0 10px rgba(41, 121, 255, 0); }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-line { display: block; color: var(--white); }
.hero-line-accent {
    color: var(--blue-light);
    font-style: italic;
    -webkit-text-fill-color: unset;
    background: none;
}

.blink {
    display: inline-block;
    animation: blink 1s step-end infinite;
    color: var(--blue-light);
}
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

.hero-sub {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 36px;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 50px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    -webkit-text-fill-color: unset;
    background: none;
}
.hero-stat-plus { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--blue-light); vertical-align: top; line-height: 1.2; }
.hero-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-top: 6px; line-height: 1.4; }

/* Hero Card */
.hero-right { position: relative; }

.hero-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 42px 36px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    color: var(--black);
    transform: perspective(1000px) rotateY(-3deg);
    transition: transform 0.5s var(--ease);
}

.hero-card:hover { transform: perspective(1000px) rotateY(0deg); }
.hero-card-glow { display: none; }

.hero-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    background: var(--blue);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-card-badge svg { width: 16px; height: 16px; }

.hero-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.1;
}

.hero-card-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--grey-700);
    font-size: 0.92rem;
    font-weight: 500;
}

.hero-card-list svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }

.hero-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 2px solid var(--blue);
    padding-bottom: 3px;
}

.hero-card-link span { transition: transform 0.3s var(--ease); }
.hero-card-link:hover span { transform: translateX(4px); }
.hero-card-content { position: relative; z-index: 1; }

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.hero-scroll span {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--blue-light);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line { 0% { top: -50%; } 100% { top: 100%; } }

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
    background: var(--blue);
    color: var(--white);
    padding: 18px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 35s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 50px;
    padding-right: 50px;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Section Base
   ========================================================================== */
.section { padding: 110px 0; position: relative; }

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--blue);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-label.center { justify-content: center; text-align: center; }
.label-line { display: inline-block; width: 32px; height: 2px; background: var(--blue); }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--black);
}

.section-title.center { text-align: center; }

.outline-text {
    -webkit-text-stroke: 2px var(--blue);
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-style: italic;
}

.section-header {
    max-width: 780px;
    margin: 0 auto 70px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--grey-700);
    line-height: 1.75;
    text-align: center;
}

/* ==========================================================================
   About
   ========================================================================== */
.about {
    background: var(--grey-100);
}

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

.about-lead {
    font-size: 1.15rem;
    color: var(--black);
    margin-bottom: 18px;
    line-height: 1.7;
    font-weight: 500;
}

.about-text p { color: var(--grey-700); margin-bottom: 18px; line-height: 1.8; }

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 36px 0;
    padding: 30px 0;
    border-top: 1px solid var(--grey-300);
    border-bottom: 1px solid var(--grey-300);
}

.about-feature { display: flex; gap: 18px; align-items: flex-start; }

.about-feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.about-feature-icon svg { width: 24px; height: 24px; }

.about-feature h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    color: var(--black);
}

.about-feature p { font-size: 0.9rem; color: var(--grey-700); margin-bottom: 0; line-height: 1.6; }

/* About Visual */
.about-visual { position: relative; padding: 20px; }

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
}

.about-images-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
}

.about-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.about-image-main {
    aspect-ratio: 4 / 5;
    background:
        url('images/bmw-tow.jpg') center/cover no-repeat;
}

.about-image-secondary {
    aspect-ratio: 4 / 5;
    background:
        url('images/kzn-ems-sprinter.jpg') center/cover no-repeat;
}

.about-image-full {
    aspect-ratio: 16 / 9;
    background:
        url('images/daihatsu-lift.jpg') center/cover no-repeat;
}

.about-image-overlay { display: none; }
.about-image-tag { display: none; }

/* Stats bar below images */
.about-stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--blue);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 4px;
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    position: relative;
}

.about-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.about-stat-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.about-stat-num small {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.about-stat-text {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
    font-weight: 600;
}

.about-badge {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 130px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-blue);
    animation: about-badge-spin 20s linear infinite;
    z-index: 3;
    border: 4px solid var(--white);
}

@keyframes about-badge-spin { 0% { transform: rotate(-6deg); } 50% { transform: rotate(6deg); } 100% { transform: rotate(-6deg); } }

.about-badge-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.about-badge-big { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800; color: var(--white); line-height: 1; }
.about-badge-small { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.85); line-height: 1.3; margin-top: 4px; }

/* ==========================================================================
   Services
   ========================================================================== */
.services { background: var(--white); }

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

.service-card {
    background: var(--white);
    padding: 42px 32px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--grey-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.service-card:hover::before { transform: scaleX(1); }

.service-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--grey-100);
    line-height: 0.8;
    transition: var(--transition);
}

.service-card:hover .service-number { color: var(--blue-pale); }

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: var(--shadow-blue);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--black);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    transform: rotate(-4deg) scale(1.05);
}

.service-icon svg { width: 30px; height: 30px; }

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.15;
}

.service-card p {
    color: var(--grey-700);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--grey-300);
    color: var(--grey-500);
    transition: var(--transition);
}

.service-arrow svg { width: 16px; height: 16px; }

.service-card:hover .service-arrow {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    transform: rotate(-45deg);
}

/* ==========================================================================
   Insurers
   ========================================================================== */
.insurers {
    background: var(--grey-100);
}

.insurers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.insurer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.insurer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.insurer-card img {
    max-height: 60px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s var(--ease);
}

.insurer-card:hover img { transform: scale(1.08); }

.insurers-note {
    text-align: center;
    color: var(--grey-700);
    font-style: italic;
    font-size: 0.95rem;
}

/* ==========================================================================
   Specialisations
   ========================================================================== */
.specialisations { background: var(--white); }

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

.spec-card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--grey-200);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.spec-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.spec-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.spec-card:hover::after { transform: scaleX(1); }

.spec-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 5px 14px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50px;
}

.spec-icon {
    width: 80px;
    height: 50px;
    color: var(--blue);
    margin-bottom: 20px;
    transition: var(--transition);
}

.spec-card:hover .spec-icon { color: var(--black); transform: translateX(6px); }
.spec-icon svg { width: 100%; height: 100%; }

.spec-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--black);
}

.spec-card p { color: var(--grey-700); font-size: 0.92rem; line-height: 1.7; }

.spec-card-cta {
    background: var(--blue);
    border-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spec-card-cta::after { display: none; }

.spec-card-cta h3,
.spec-card-cta p { color: var(--white); }
.spec-card-cta p { margin-bottom: 20px; opacity: 0.92; }

.spec-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    color: var(--white);
    padding-bottom: 3px;
    border-bottom: 2px solid var(--white);
    align-self: flex-start;
}

.spec-link span { transition: transform 0.3s var(--ease); }
.spec-link:hover span { transform: translateX(6px); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery {
    background: var(--white);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    background: var(--grey-100);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: block;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 28, 78, 0.85) 0%, rgba(0, 61, 165, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    z-index: 1;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 22px 20px;
    color: var(--white);
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-caption span {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.gallery-caption small {
    display: block;
    margin-top: 4px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    opacity: 0.85;
    color: #B8D4FF;
}

/* ==========================================================================
   Process
   ========================================================================== */
.process { background: var(--grey-100); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    position: relative;
    padding: 40px 28px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-6px);
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
}

.process-number {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 0.8;
    margin-bottom: 20px;
    color: var(--blue);
    opacity: 0.2;
}

.process-step:hover .process-number { opacity: 0.5; }

.process-line {
    position: absolute;
    top: 60px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: var(--grey-300);
    z-index: 1;
}

.process-line::after {
    content: '→';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--blue);
    font-size: 1rem;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--black);
}

.process-step p {
    color: var(--grey-700);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    background: var(--black);
    color: var(--white);
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url('images/workshop-floor.jpg') center/cover no-repeat;
    filter: brightness(0.55);
}

.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.5) 0%, rgba(30, 58, 138, 0.4) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--blue-light);
    margin-bottom: 20px;
    animation: cta-label-pulse 2s ease-in-out infinite;
}

@keyframes cta-label-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    letter-spacing: -1px;
}

.cta-sub { font-size: 1.15rem; margin-bottom: 40px; color: rgba(255,255,255,0.7); }

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { background: var(--white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px;
    background: var(--grey-100);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--blue);
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-blue);
}

.contact-icon svg { width: 22px; height: 22px; }

.contact-icon-whatsapp {
    background: #25D366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.contact-detail h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    color: var(--black);
    letter-spacing: 1px;
}

.contact-detail p { color: var(--grey-700); line-height: 1.7; font-size: 0.92rem; }
.contact-detail a:hover { color: var(--blue); }
.contact-detail small { font-size: 0.75rem; opacity: 0.7; }

.contact-form {
    background: var(--grey-100);
    padding: 44px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--grey-200);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--blue);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.78rem;
    margin-bottom: 10px;
    color: var(--grey-700);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--grey-300);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--white);
    transition: var(--transition);
    color: var(--black);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-500); }

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 61, 165, 0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
    border-top: 4px solid var(--blue);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-logo { max-width: 400px; margin-bottom: 20px; }

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--blue-light);
}

.footer-col p { line-height: 1.7; font-size: 0.9rem; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li, .footer-col ul a { font-size: 0.9rem; }
.footer-col ul a:hover { color: var(--blue-light); }

.footer-accreditations {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.footer-accreditations span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255,255,255,0.4);
}

/* ==========================================================================
   Floating Call Button
   ========================================================================== */
.float-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-blue);
    z-index: 999;
    transition: var(--transition);
}

.float-call:hover {
    transform: scale(1.1) rotate(12deg);
    background: var(--black);
}

.float-call svg { width: 26px; height: 26px; }

.float-call-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--blue);
    animation: float-pulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes float-pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.7); opacity: 0; } }

/* WhatsApp Button */
.float-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 62px;
    height: 62px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.float-whatsapp:hover {
    transform: scale(1.1) rotate(-8deg);
    background: #1EBE5C;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.float-whatsapp svg { width: 30px; height: 30px; }

.float-whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: float-pulse 2s ease-out infinite;
    animation-delay: 0.5s;
    z-index: -1;
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */
[data-animate] { opacity: 0; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-animate="fade-up"] { transform: translateY(40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate].visible { opacity: 1; transform: translate(0, 0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .hero { padding: 100px 0 60px; }
    .hero-content { grid-template-columns: 1fr; gap: 50px; }
    .hero-right { max-width: 500px; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-visual { max-width: 500px; margin: 0 auto; }
    .services-grid, .spec-grid { grid-template-columns: repeat(2, 1fr); }
    .insurers-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-line { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .section { padding: 90px 0; }
    .hero-card { transform: none; }
}

@media (max-width: 768px) {
    .top-bar { font-size: 0.72rem; padding: 8px 0; }
    .top-bar-hide { display: none !important; }
    .top-bar-inner { justify-content: center; }
    .top-bar-left, .top-bar-right { gap: 14px; }
    .nav-toggle { display: flex; }
    .nav-logo-img { height: 110px; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 85%; max-width: 320px; height: 100vh;
        background: var(--white); border-left: 1px solid var(--grey-200);
        flex-direction: column; justify-content: center; gap: 30px;
        transition: right 0.4s var(--ease); padding: 60px 30px;
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
    }
    .nav-menu.active { right: 0; }
    .nav-link { font-size: 1rem; }
    .hero { padding: 80px 0 60px; min-height: auto; }
    .hero h1 { font-size: clamp(2.4rem, 10vw, 3.4rem); }
    .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
    .hero-stat-num { font-size: 2.2rem; }
    .hero-buttons, .cta-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn, .cta-buttons .btn { width: 100%; }
    .hero-scroll { display: none; }
    .marquee-content span { font-size: 1rem; }
    .section { padding: 70px 0; }
    .services-grid, .spec-grid { grid-template-columns: 1fr; }
    .insurers-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
    .gallery-item-tall { grid-row: span 1; }
    .gallery-caption { transform: translateY(0); opacity: 1; }
    .process-steps { grid-template-columns: 1fr; }
    .about-badge { width: 100px; height: 100px; }
    .about-badge-big { font-size: 1.8rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form { padding: 30px 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .float-call { bottom: 20px; right: 20px; width: 54px; height: 54px; }
    .float-whatsapp { bottom: 84px; right: 20px; width: 54px; height: 54px; }
    .about-images-top { grid-template-columns: 1fr 1fr; }
    .about-image-main, .about-image-secondary { aspect-ratio: 1 / 1; }
    .about-image-full { aspect-ratio: 16 / 10; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero-label { font-size: 0.7rem; padding: 8px 14px; }
    .section-title { font-size: 2rem; }
    .insurers-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .insurer-card { height: 100px; padding: 20px 14px; }
    .hero-stats { grid-template-columns: 1fr; gap: 24px; }
}
