/* ==========================================================================
   DAINTONS DESIGN SYSTEM
   Premium automotive detailing, PPF & ceramic coating — Reading, Berkshire
   ========================================================================== */

/* ---------- Google Fonts ---------- */
/* Google Fonts loaded async via header.php preload */

/* ==========================================================================
   CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* --- Colour Palette --- */
    --bg-primary: #0d0d0d;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #f5f5f0;
    --bg-card: #16213e;
    --bg-card-hover: #1a2744;
    --bg-glass: rgba(22, 33, 62, 0.7);
    --bg-overlay: rgba(0, 0, 0, 0.55);

    --accent: #6abf3b;
    --accent-light: #8cd964;
    --accent-dark: #4a9e25;
    --accent-glow: rgba(106, 191, 59, 0.25);

    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #7a7a8e;
    --text-dark: #1a1a1a;
    --text-dark-secondary: #4a4a5a;

    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(106, 191, 59, 0.3);

    /* --- Typography --- */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --fs-hero: clamp(2.5rem, 5vw, 4.5rem);
    --fs-h1: clamp(2rem, 4vw, 3.5rem);
    --fs-h2: clamp(1.6rem, 3vw, 2.5rem);
    --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
    --fs-body: 1rem;
    --fs-small: 0.875rem;
    --fs-xs: 0.75rem;

    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-black: 800;

    --lh-tight: 1.2;
    --lh-normal: 1.6;
    --lh-relaxed: 1.8;

    /* --- Spacing --- */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* --- Layout --- */
    --max-width: 1200px;
    --max-width-sm: 800px;
    --max-width-xs: 600px;
    --nav-height: 80px;
    --nav-height-scrolled: 64px;

    /* --- Shadows --- */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.35);
    --shadow-accent: 0 4px 20px rgba(106, 191, 59, 0.2);

    /* --- Border Radius --- */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50%;

    /* --- Transitions --- */
    --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 200ms;
    --duration-normal: 350ms;
    --duration-slow: 600ms;
}

/* ==========================================================================
   CSS RESET
   ========================================================================== */
*,
*::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: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: var(--lh-normal);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-default);
}

a:hover {
    color: var(--accent-light);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    color: var(--text-primary);
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container--sm {
    max-width: var(--max-width-sm);
}

.section {
    padding: var(--space-3xl) 0;
}

.section--dark {
    background: var(--bg-secondary);
}

.section--light {
    background: var(--bg-tertiary);
    color: var(--text-dark);
}

.section--light h2,
.section--light h3,
.section--light h4 {
    color: var(--text-dark);
}

.section--light p,
.section--light li {
    color: var(--text-dark-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header h2 {
    font-size: var(--fs-h2);
    margin-bottom: var(--space-sm);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
}

.section--light .section-header p {
    color: var(--text-dark-secondary);
}

.accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    margin: var(--space-sm) auto;
    border-radius: 2px;
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: all var(--duration-normal) var(--ease-default);
    background: transparent;
}

.nav.scrolled {
    height: var(--nav-height-scrolled);
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border-subtle);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.nav__logo img {
    height: 50px;
    width: auto;
    transition: height var(--duration-normal) var(--ease-default);
}

.nav.scrolled .nav__logo img {
    height: 38px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav__links a {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: var(--fw-medium);
    font-size: var(--fs-small);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--duration-fast) var(--ease-default);
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--duration-normal) var(--ease-default);
}

.nav__links a:hover,
.nav__links a.active {
    color: var(--accent);
}

.nav__links a:hover::after,
.nav__links a.active::after {
    width: 100%;
}

.nav__cta {
    background: var(--accent) !important;
    color: var(--bg-primary) !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: var(--radius-sm);
    font-weight: var(--fw-semibold) !important;
    letter-spacing: 0.02em !important;
    transition: all var(--duration-fast) var(--ease-default) !important;
}

.nav__cta::after {
    display: none !important;
}

.nav__cta:hover {
    background: var(--accent-light) !important;
    color: var(--bg-primary) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent);
}

/* WhatsApp Nav Icon */
.nav__whatsapp {
    display: flex;
    align-items: center;
    padding: 0.4rem !important;
    border-radius: var(--radius-full);
    transition: all var(--duration-fast) var(--ease-default) !important;
}

.nav__whatsapp::after {
    display: none !important;
}

.nav__whatsapp:hover {
    background: #25D366 !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.nav__whatsapp svg {
    fill: currentColor;
}

/* ==========================================================================
   FEATURE SECTIONS (Full-width service blocks for homepage)
   ========================================================================== */
.feature-section {
    position: relative;
    overflow: hidden;
}

.feature-section--glow {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
}

.feature-section--glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, var(--accent-glow), transparent 50%);
    opacity: 0.15;
    pointer-events: none;
}

.feature-section .container {
    position: relative;
    z-index: 1;
}

.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    min-height: 420px;
}

.feature-split--reverse {
    direction: rtl;
}

.feature-split--reverse>* {
    direction: ltr;
}

.feature-split__content h2 {
    font-size: var(--fs-h2);
    margin-bottom: var(--space-xs);
}

.feature-split__content p {
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
    max-width: 480px;
}

.feature-split__image {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    aspect-ratio: 4/3;
}

.feature-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-default);
}

.feature-split__image:hover img {
    transform: scale(1.03);
}

/* Testimonials horizontal grid (3 col) */
.testimonials-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.testimonials-more {
    text-align: center;
    margin-top: var(--space-md);
}

.testimonials-more a {
    color: var(--accent);
    font-weight: var(--fw-medium);
    font-size: var(--fs-small);
    transition: color var(--duration-fast) var(--ease-default);
}

.testimonials-more a:hover {
    color: var(--accent-light);
}

/* Trust bar (product logos) */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
}

.trust-bar img {
    height: 45px;
    width: auto;
    opacity: 0.8;
    transition: opacity var(--duration-fast) var(--ease-default);
    filter: brightness(0) invert(1);
}

.trust-bar img:hover {
    opacity: 1;
}

/* Footer dropdown classes (replacing inline styles) */
.footer__summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__arrow {
    font-size: 0.8em;
    transition: transform 0.3s;
}

.footer__links--columns {
    column-count: 2;
    column-gap: var(--space-md);
    margin-top: var(--space-xs);
}

.footer__dropdown--mt {
    margin-top: var(--space-sm);
}

.footer__address {
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: var(--fs-small);
}

.footer__whatsapp-link {
    color: #25D366 !important;
    font-weight: var(--fw-medium);
}

.footer__whatsapp-link:hover {
    text-decoration: underline;
}

/* Footer padding for sticky CTA */
.footer {
    padding-bottom: 70px;
}

/* Mobile Menu Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-default);
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Contact bar */
.nav__contact {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--fs-small);
}

.nav__contact a {
    color: var(--text-secondary);
    font-size: var(--fs-small);
}

.nav__contact a:hover {
    color: var(--accent);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero--short {
    min-height: 60vh;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img,
.hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(13, 13, 13, 0.4) 0%,
            rgba(26, 26, 46, 0.7) 50%,
            rgba(13, 13, 13, 0.95) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    padding: var(--space-lg);
}

.hero__tagline {
    font-family: var(--font-heading);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.hero__title {
    font-size: var(--fs-hero);
    font-weight: var(--fw-black);
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero__title span {
    color: var(--accent);
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: var(--lh-relaxed);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-heading);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
    transition: all var(--duration-normal) var(--ease-default);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn--primary {
    background: var(--accent);
    color: var(--bg-primary);
}

.btn--primary:hover {
    background: var(--accent-light);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--accent);
}

.btn--outline:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.btn--white {
    background: white;
    color: var(--bg-primary);
}

.btn--white:hover {
    background: var(--bg-tertiary);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1.1rem 2.5rem;
    font-size: var(--fs-body);
}

/* ==========================================================================
   TRUST BADGES
   ========================================================================== */
.trust-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--space-lg) 0;
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    text-align: center;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    text-align: center;
}

.trust-badge {
    padding: var(--space-sm);
}

.trust-badge__icon {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
}

.trust-badge__label {
    font-family: var(--font-heading);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-md);
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-default);
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-lg), 0 0 30px var(--accent-glow);
    color: var(--text-primary);
}

.service-card__image {
    height: 220px;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-default);
}

.service-card:hover .service-card__image img {
    transform: scale(1.08);
}

.service-card__body {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card__title {
    font-size: var(--fs-h3);
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.service-card__desc {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    line-height: var(--lh-relaxed);
    flex: 1;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: var(--space-sm);
    font-family: var(--font-heading);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card__link::after {
    content: '\2192';
    transition: transform var(--duration-fast) var(--ease-default);
}

.service-card:hover .service-card__link::after {
    transform: translateX(4px);
}

/* ==========================================================================
   PROCESS / STEPS
   ========================================================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-lg);
    counter-reset: step;
}

.process-step {
    text-align: center;
    position: relative;
    counter-increment: step;
}

.process-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-accent);
}

.process-step__title {
    font-size: var(--fs-h3);
    margin-bottom: var(--space-xs);
}

.process-step__desc {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    line-height: var(--lh-relaxed);
}

.section--light .process-step__desc {
    color: var(--text-dark-secondary);
}

/* ==========================================================================
   BRAND LOGOS
   ========================================================================== */
.brands-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
}

.brands-grid img {
    height: 50px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%) brightness(2);
    transition: all var(--duration-normal) var(--ease-default);
}

.brands-grid img:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.section--light .brands-grid img {
    filter: grayscale(100%) brightness(0.4);
    opacity: 0.5;
}

.section--light .brands-grid img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* ==========================================================================
   FEATURE LIST / BENEFITS
   ========================================================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.benefit-item {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all var(--duration-normal) var(--ease-default);
}

.benefit-item:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

.benefit-item__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: var(--radius-sm);
    color: var(--accent);
    font-size: 1.3rem;
}

.benefit-item__content h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.benefit-item__content p {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    line-height: var(--lh-normal);
}

/* ==========================================================================
   PRICING / PACKAGE CARDS
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-md);
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    transition: all var(--duration-normal) var(--ease-default);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
    border-color: var(--accent);
    background: linear-gradient(145deg, var(--bg-card), rgba(106, 191, 59, 0.12));
    box-shadow: 0 0 30px var(--accent-glow);
}

.pricing-card--featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-card__title {
    font-size: var(--fs-h3);
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.pricing-card__price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

.pricing-card__price strong {
    font-size: var(--fs-h2);
    color: var(--accent);
    font-weight: var(--fw-bold);
}

.pricing-card__duration {
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-small);
    margin-bottom: var(--space-sm);
}

.pricing-card__desc {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-md);
}

.pricing-card__features {
    flex: 1;
    margin-bottom: var(--space-md);
}

.pricing-card__features li {
    padding: 0.4rem 0;
    font-size: var(--fs-small);
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.pricing-card__features li::before {
    content: '\2713';
    color: var(--accent);
    font-weight: var(--fw-bold);
    flex-shrink: 0;
}

.pricing-card__ideal {
    padding: var(--space-sm);
    background: rgba(106, 191, 59, 0.08);
    border-radius: var(--radius-sm);
    font-size: var(--fs-small);
    color: var(--text-secondary);
    margin-top: auto;
}

.pricing-card__ideal strong {
    color: var(--accent);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list {
    max-width: var(--max-width-sm);
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-item__question {
    width: 100%;
    text-align: left;
    padding: var(--space-md) 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color var(--duration-fast) var(--ease-default);
}

.faq-item__question:hover {
    color: var(--accent);
}

.faq-item__icon {
    font-size: 1.3rem;
    transition: transform var(--duration-normal) var(--ease-default);
    color: var(--accent);
}

.faq-item.active .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-default);
}

.faq-item__answer p {
    padding-bottom: var(--space-md);
    color: var(--text-secondary);
    font-size: var(--fs-small);
    line-height: var(--lh-relaxed);
}

.faq-item.active .faq-item__answer {
    max-height: 500px;
}

.section--light .faq-item {
    border-color: rgba(0, 0, 0, 0.1);
}

.section--light .faq-item__question {
    color: var(--text-dark);
}

.section--light .faq-item__answer p {
    color: var(--text-dark-secondary);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    text-align: center;
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, var(--accent-glow), transparent 50%);
    opacity: 0.3;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: var(--fs-h2);
    margin-bottom: var(--space-sm);
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-contact-methods {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

.cta-contact-item {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-contact-item a {
    color: var(--text-primary);
    font-weight: var(--fw-medium);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card__quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-md);
}

.testimonial-card__quote::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--accent);
    line-height: 0;
    position: relative;
    top: 0.3em;
    margin-right: 0.1em;
}

.testimonial-card__stars {
    color: var(--accent);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-xs);
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.gallery-filter-btn {
    padding: 0.5rem 1.2rem;
    font-family: var(--font-heading);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    background: transparent;
    transition: all var(--duration-fast) var(--ease-default);
    cursor: pointer;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-sm);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-default);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-default);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__caption {
    font-family: var(--font-heading);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-small);
}

/* ==========================================================================
   ALERTS (form feedback)
   ========================================================================== */
.alert {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
}

.alert--success {
    background: rgba(106, 191, 59, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
}

.alert--error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* ==========================================================================
   CONTACT CARDS
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-default);
    text-decoration: none;
    color: var(--text-primary);
    display: block;
}

.contact-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    color: var(--text-primary);
}

.contact-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    font-size: 1.5rem;
    color: var(--accent);
}

.contact-card__title {
    font-size: var(--fs-h3);
    margin-bottom: 0.3rem;
}

.contact-card__detail {
    color: var(--text-secondary);
    font-size: var(--fs-small);
}

/* Contact form */
.contact-form {
    max-width: var(--max-width-sm);
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-xs);
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    transition: border-color var(--duration-fast) var(--ease-default);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.section--light .form-group input,
.section--light .form-group textarea,
.section--light .form-group select {
    background: white;
    border-color: rgba(0, 0, 0, 0.12);
    color: var(--text-dark);
}

.section--light .form-group label {
    color: var(--text-dark-secondary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    padding-top: var(--space-2xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer__brand p {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    line-height: var(--lh-relaxed);
    margin-top: var(--space-sm);
    max-width: 300px;
}

.footer__brand img {
    height: 45px;
    width: auto;
}

.footer__heading {
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__links a {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    transition: color var(--duration-fast) var(--ease-default);
}

.footer__links a:hover {
    color: var(--accent);
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    transition: all var(--duration-fast) var(--ease-default);
}

.footer__social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow);
}

.footer__bottom {
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-md) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer__bottom p {
    color: var(--text-muted);
    font-size: var(--fs-xs);
}

.footer__bottom a {
    color: var(--text-muted);
    font-size: var(--fs-xs);
}

/* ==========================================================================
   PAGE-SPECIFIC: SERVICES OVERVIEW
   ========================================================================== */
.services-category {
    margin-bottom: var(--space-xl);
}

.services-category__title {
    font-size: var(--fs-h3);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.services-list-item {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all var(--duration-normal) var(--ease-default);
    text-decoration: none;
    color: var(--text-primary);
}

.services-list-item:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
    color: var(--text-primary);
}

.services-list-item__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--accent-glow);
    color: var(--accent);
}

.services-list-item h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.services-list-item p {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    line-height: var(--lh-normal);
}

/* ==========================================================================
   MAP EMBED
   ========================================================================== */
.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.5) contrast(1.1);
    transition: filter var(--duration-normal) var(--ease-default);
}

.map-container:hover iframe {
    filter: grayscale(0) contrast(1);
}

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--duration-slow) var(--ease-default);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all var(--duration-slow) var(--ease-default);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all var(--duration-slow) var(--ease-default);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) {
    transition-delay: 0ms;
}

.stagger-children .reveal:nth-child(2) {
    transition-delay: 100ms;
}

.stagger-children .reveal:nth-child(3) {
    transition-delay: 200ms;
}

.stagger-children .reveal:nth-child(4) {
    transition-delay: 300ms;
}

.stagger-children .reveal:nth-child(5) {
    transition-delay: 400ms;
}

.stagger-children .reveal:nth-child(6) {
    transition-delay: 500ms;
}

/* ==========================================================================
   ABOUT / SPLIT SECTION
   ========================================================================== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.split__content h2 {
    font-size: var(--fs-h2);
    margin-bottom: var(--space-sm);
}

.split__content .accent-line {
    margin: var(--space-sm) 0;
}

.split__content p {
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-sm);
}

.section--light .split__content p {
    color: var(--text-dark-secondary);
}

.split__image {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .split {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .split__image {
        max-height: 400px;
    }

    .feature-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .feature-split--reverse {
        direction: ltr;
    }

    .feature-split__image {
        max-height: 350px;
    }
}

/* Mobile nav */
@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        flex-direction: column;
        background: var(--bg-secondary);
        padding: calc(var(--nav-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
        gap: 0;
        transition: right var(--duration-normal) var(--ease-default);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
        border-left: 1px solid var(--border-subtle);
    }

    .nav__links.open {
        right: 0;
    }

    .nav__links a {
        padding: 0.8rem 0;
        font-size: var(--fs-body);
        border-bottom: 1px solid var(--border-subtle);
        width: 100%;
    }

    .nav__links a::after {
        display: none;
    }

    .nav__cta {
        margin-top: var(--space-sm);
        text-align: center;
        display: block !important;
    }

    .nav__contact {
        display: none;
    }

    /* Hero */
    .hero {
        min-height: 85vh;
    }

    .hero--short {
        min-height: 50vh;
    }

    /* Sections */
    .section {
        padding: var(--space-xl) 0;
    }

    /* Trust bar */
    .trust-bar__grid,
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .testimonials-row {
        grid-template-columns: 1fr;
    }

    .nav__whatsapp {
        display: none;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .cta-contact-methods {
        flex-direction: column;
        align-items: center;
    }
}

/* Overlay for mobile nav */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-normal) var(--ease-default);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   CONTRAST OVERRIDES — Cards in Light Sections
   Dark-bg cards (.pricing-card, .benefit-item, .testimonial-card, .service-card)
   must keep light text even inside .section--light
   ========================================================================== */
.section--light .pricing-card {
    background: var(--bg-card);
}

.section--light .pricing-card__title {
    color: #fff !important;
}

.section--light .pricing-card__desc,
.section--light .pricing-card__features li,
.section--light .pricing-card__ideal {
    color: var(--text-secondary) !important;
}

.section--light .benefit-item {
    background: var(--bg-card);
}

.section--light .benefit-item__content h4 {
    color: #fff !important;
}

.section--light .benefit-item__content p {
    color: var(--text-secondary) !important;
}

.section--light .testimonial-card {
    background: var(--bg-card);
}

.section--light .testimonial-card__quote {
    color: var(--text-secondary) !important;
}

.section--light .testimonial-card__author {
    color: #fff !important;
}

.section--light .testimonial-card__role {
    color: var(--text-secondary) !important;
}

.section--light .service-card__body h3,
.section--light .service-card__title {
    color: #fff !important;
}

.section--light .service-card__desc {
    color: var(--text-secondary) !important;
}

.section--light .service-card__link {
    color: var(--accent) !important;
}

/* Dark section text — ensure everything is properly light */
.section--dark .benefit-item__content h4,
.section--dark .pricing-card__title {
    color: #fff;
}

.section--dark .benefit-item__content p,
.section--dark .pricing-card__desc,
.section--dark .pricing-card__features li {
    color: var(--text-secondary);
}

/* Testimonial card — always ensure readable on dark bg */
.testimonial-card__author {
    font-weight: var(--fw-semibold);
    color: #fff;
    margin-bottom: 0.15rem;
}

.testimonial-card__role {
    font-size: var(--fs-small);
    color: var(--text-secondary);
}

/* ==========================================================================
   TESTIMONIALS GRID — Multiple reviews layout
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.testimonials-grid .testimonial-card {
    max-width: none;
    text-align: left;
}

.testimonials-grid .testimonial-card__quote {
    font-size: 0.95rem;
}

.testimonials-grid .testimonial-card__quote::before {
    font-size: 2.5rem;
}

.testimonial-card__meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border-subtle);
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: var(--fw-bold);
    font-family: var(--font-heading);
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-md);
    text-align: center;
    padding: var(--space-xl) 0;
}

.stat-item__number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--fw-black);
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-item__label {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all var(--duration-normal) var(--ease-default);
}

.value-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
}

.value-card__icon {
    width: 50px;
    height: 50px;
    background: var(--accent-glow);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: var(--fw-bold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.value-card h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    line-height: var(--lh-relaxed);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.team-member {
    text-align: center;
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.team-member__avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: var(--fw-bold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 auto var(--space-sm);
}

.team-member h4 {
    color: #fff;
    margin-bottom: 0.25rem;
}

.team-member__role {
    color: var(--accent);
    font-size: var(--fs-small);
    margin-bottom: var(--space-xs);
}

.team-member p {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    line-height: var(--lh-relaxed);
}

/* ==========================================================================
   MOBILE BOTTOM NAV
   ========================================================================== */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-accent);
    display: none;
    justify-content: space-around;
    align-items: flex-end;
    padding: 0.4rem 0 calc(0.5rem + env(safe-area-inset-bottom, 0px));
    z-index: 998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

.mobile-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.6rem;
    font-weight: var(--fw-medium);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.2s ease;
    flex: 1;
    padding: 0.15rem 0;
}

.mobile-nav__item svg {
    width: 22px;
    height: 22px;
}

.mobile-nav__item:hover,
.mobile-nav__item:active {
    color: var(--accent);
}

/* WhatsApp centre button — raised green circle */
.mobile-nav__item--wa {
    position: relative;
    color: #fff;
    margin-top: -18px;
}

.mobile-nav__wa-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-nav__wa-circle svg {
    width: 26px;
    height: 26px;
    color: #fff;
}

.mobile-nav__item--wa:hover .mobile-nav__wa-circle,
.mobile-nav__item--wa:active .mobile-nav__wa-circle {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.mobile-nav__item--wa span {
    color: #25D366;
    margin-top: 0.15rem;
}

@media (max-width: 768px) {
    .mobile-nav {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }
}

/* ==========================================================================
   SERVICES LIST (additional services on services page)
   ========================================================================== */
.services-list-item a {
    color: var(--accent);
    font-weight: var(--fw-semibold);
    display: inline-block;
    margin-top: 0.5rem;
    transition: color var(--duration-fast) var(--ease-default);
}

.services-list-item a:hover {
    color: var(--accent-light);
}

/* ==========================================================================
   AREA / LOCATION PAGES
   ========================================================================== */
.area-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.area-service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all var(--duration-normal) var(--ease-default);
}

.area-service-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

.area-service-card h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.area-service-card p {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    line-height: var(--lh-relaxed);
}

.area-service-card a {
    color: var(--accent);
    font-weight: var(--fw-semibold);
    display: inline-block;
    margin-top: 0.5rem;
}

/* ==========================================================================
   ABOUT VALUES GRID
   ========================================================================== */
.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all var(--duration-normal) var(--ease-default);
}

.value-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

.value-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: var(--radius-sm);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: var(--fs-h3);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-sm);
}

.value-card h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    line-height: var(--lh-relaxed);
}

/* ==========================================================================
   FULLWIDTH IMAGE BREAK
   ========================================================================== */
.image-break {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-break__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(13, 13, 13, 0.6) 0%,
            rgba(13, 13, 13, 0.2) 40%,
            rgba(13, 13, 13, 0.2) 60%,
            rgba(13, 13, 13, 0.6) 100%);
    z-index: 1;
}

.image-break__caption {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: var(--fs-small);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .about-values {
        grid-template-columns: 1fr;
    }

    .image-break {
        height: 280px;
    }
}

/* ==========================================================================
   SHOWCASE GALLERY
   ========================================================================== */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.showcase-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.showcase-item--wide {
    grid-column: span 2;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--duration-slow) var(--ease-default);
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-default);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
}

.showcase-item:hover .showcase-item__overlay {
    opacity: 1;
}

.showcase-item__label {
    color: #fff;
    font-family: var(--font-heading);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-item--wide {
        grid-column: span 1;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-item--wide {
        grid-column: span 2;
    }
}