/* ==========================================================
   CDT Detailing — Main Stylesheet
   ========================================================== */

/* --- DESIGN TOKENS --- */
:root {
    --primary:       #173446;   /* Brand primary — deep navy-teal */
    --primary-dark:  #0F2535;   /* Darker hover/pressed state */
    --primary-light: #1E4E68;   /* Lighter variant for tints on dark bg */

    /* Dark section backgrounds use the brand colour family */
    --dark-bg:    #173446;
    --darker-bg:  #0F2535;

    --white:       #ffffff;
    --light-grey:  #F4F8FA;
    --medium-grey: #DCE6ED;
    --text-dark:   #132233;
    --text-medium: #4D6575;
    --text-light:  #7D98A8;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --max-width: 1200px;
    --transition: 0.3s ease;
}

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }

/* --- CONTAINER --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1rem, 2vw, 1.3rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    font-family: inherit;
}

/* On light backgrounds: solid brand-colour button */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 52, 70, 0.35);
}

/* On dark backgrounds: invert to white so it's visible against the teal bg */
.header .btn-primary,
.hero .btn-primary,
.section-dark .btn-primary,
.service-card-back .btn-primary,
.page-header .btn-primary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.header .btn-primary:hover,
.hero .btn-primary:hover,
.section-dark .btn-primary:hover,
.service-card-back .btn-primary:hover,
.page-header .btn-primary:hover {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.88);
    color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}
.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    border-color: currentColor;
}
.btn-outline-dark:hover {
    background: var(--text-dark);
    color: var(--white);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* --- SECTION BASE --- */
.section { padding: 100px 0; }
.section-alt  { background: var(--light-grey); }
.section-dark {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: var(--white);
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.section-header-body {
    max-width: 800px;
    margin: 24px auto 0;
    text-align: left;
}
.section-header-body p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    max-width: none;
}
.section-header-body p + p { margin-top: 14px; }
.section-dark .section-header p { color: rgba(255, 255, 255, 0.65); }

/* ==========================================================
   ANNOUNCEMENT BANNER
   ========================================================== */
.announcement-banner {
    background: rgba(217, 119, 6, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 14px 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1001;
    font-size: 0.9rem;
}
.announcement-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.announcement-banner-text {
    text-align: center;
    margin: 0;
    font-weight: 500;
}
.announcement-banner-text a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
}
.announcement-banner-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color var(--transition);
    flex-shrink: 0;
}
.announcement-banner-close:hover { color: var(--white); }

/* Shift header and hero down when banner is visible */
.has-announcement .header { top: 46px; }
.has-announcement .hero { padding-top: 126px; }
.has-announcement .page-header { margin-top: 126px; top: 126px; }
@media (max-width: 768px) {
    .announcement-banner { padding: 8px 0; font-size: 0.78rem; }
    .announcement-banner-inner { gap: 8px; }
    .announcement-banner-close { font-size: 1.1rem; }
    .has-announcement .header { top: 50px; }
    .has-announcement .hero { padding-top: 120px; }
    .has-announcement .page-header { margin-top: 120px; top: 120px; }
}

/* ==========================================================
   HEADER — frosted glass strip over the hero
   ========================================================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(15, 37, 53, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
    background: rgba(15, 37, 53, 0.92);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
/* Solid header for subpages — blends into .page-header */
.header-solid {
    background: var(--dark-bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
}
.header-solid.scrolled {
    background: var(--dark-bg);
    box-shadow: none;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 24px;
    position: relative;
}
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo img {
    height: 56px;
    width: auto;
}
.nav-links {
    display: flex;
    position: absolute;
    top: calc(100% + 40px);
    right: 0;
    min-width: 200px;
    background: var(--dark-bg);
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 100;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-links.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.nav-links a {
    display: block;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    position: relative;
    opacity: 0;
    transform: translateX(12px);
    transition: color var(--transition), background var(--transition), opacity 0.2s ease, transform 0.2s ease;
    transition-delay: 0s;
}
.nav-links.active a {
    opacity: 1;
    transform: translateX(0);
}
.nav-links.active a:nth-child(1) { transition-delay: 0.05s; }
.nav-links.active a:nth-child(2) { transition-delay: 0.1s; }
.nav-links.active a:nth-child(3) { transition-delay: 0.15s; }
.nav-links.active a:nth-child(4) { transition-delay: 0.2s; }
.nav-links.active a:nth-child(5) { transition-delay: 0.25s; }
.nav-links a:last-child {
    border-bottom: none;
}
.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}
/* Phone number in header */
.nav-phone {
    flex-grow: 1;
    text-align: right;
}
.nav-phone a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color var(--transition);
}
.nav-phone a:hover {
    color: rgba(255, 255, 255, 0.8);
}
.nav-phone-icon {
    vertical-align: -3px;
    margin-right: 4px;
}
.nav-menu { position: relative; }
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.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);
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../images/cdtdetailing_lambo.jpg') center / cover no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Gradient overlay — just enough to keep text readable, light enough to show the photo */
    background: linear-gradient(
        to right,
        rgba(11, 30, 42, 0.7) 0%,
        rgba(15, 37, 53, 0.45) 40%,
        rgba(23, 52, 70, 0.25) 100%
    );
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 740px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.hero h1 { margin-bottom: 20px; color: var(--white); white-space: nowrap; font-size: clamp(1.6rem, 4vw, 3rem); }
@media (max-width: 768px) {
    .hero h1 { white-space: normal; }
}
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 560px;
    line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    flex-wrap: wrap;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ==========================================================
   SERVICES
   ========================================================== */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
}
.services-grid > .service-card {
    width: calc(25% - 18px);
}
/* --- Flip card container --- */
.service-card {
    perspective: 1000px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

/* Inner wrapper — holds front & back, rotates on flip */
.service-card-inner {
    display: grid;
    flex-grow: 1;
    transform-style: preserve-3d;
    transition: transform 0.6s ease, box-shadow 0.3s ease;
}

/* Hover hint: lift + shadow to suggest interactivity */
.service-card {
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-4px);
}
.service-card:hover .service-card-front,
.service-card:hover .service-card-back {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Trigger flip: click/tap only (.flipped class toggled by JS) */
.service-card.flipped .service-card-inner {
    transform: rotateY(180deg);
}

/* Both faces stack in the same grid cell */
.service-card-front,
.service-card-back {
    grid-area: 1 / 1;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--medium-grey);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card-back {
    transform: rotateY(180deg);
    background: var(--dark-bg);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}
.service-card-back .service-card-title { color: var(--white); }
.service-card-back .service-card-header { border-bottom-color: rgba(255, 255, 255, 0.1); }
.service-card-back .service-prices-table th { color: rgba(255, 255, 255, 0.5); border-bottom-color: rgba(255, 255, 255, 0.1); }
.service-card-back .service-prices-table td { color: rgba(255, 255, 255, 0.9); border-bottom-color: rgba(255, 255, 255, 0.08); }
.service-card-back .service-prices-table td:last-child { color: var(--white); }

.service-back-quote {
    text-align: center;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.price-tbc {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* --- Shared card internals --- */
.service-card-header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid var(--medium-grey);
    display: flex;
    flex-direction: column;
}
.service-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.service-card-description {
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 10px;
}
.service-card-description:last-of-type { margin-bottom: 16px; }
.service-card-ideal {
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 0;
    margin-top: auto;
}
.service-card-price { display: flex; flex-direction: column; gap: 4px; }
.service-card-price strong {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.service-card-duration {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-medium);
}
.service-card-price-label {
    font-size: 0.8rem;
    color: var(--text-light);
}
.service-card-body {
    padding: 20px 28px;
    flex-grow: 1;
}

/* Flip hint on the front */
.service-card-flip-hint {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: color var(--transition);
}
.service-card:hover .service-card-front .service-card-flip-hint { color: var(--primary-dark); }

/* "Back to details" link on the back face */
.service-card-back .service-card-flip-back {
    display: block;
    text-align: center;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
}
.service-card-back .service-card-flip-back:hover {
    color: var(--white);
}

/* "Learn more" link on bookable card back */
.service-card-info-link {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color var(--transition);
}
.service-card-info-link:hover {
    color: var(--white);
}

.service-card-size-guide-link {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition);
}
.service-card-size-guide-link:hover {
    color: var(--white);
}

/* Info summary on non-bookable card back */
.service-back-info {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    padding: 10px 0;
    display: flex;
    align-items: center;
    flex-grow: 1;
}

/* Per-size pricing table */
.service-prices-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    margin-bottom: 8px;
}
.service-prices-table th {
    text-align: left;
    padding: 4px 0;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--medium-grey);
}
.service-prices-table th:last-child { text-align: right; }
.service-prices-table td {
    padding: 7px 0;
    border-bottom: 1px solid var(--medium-grey);
    color: var(--text-dark);
    font-size: 0.875rem;
}
.service-prices-table td:last-child { text-align: right; font-weight: 600; }
.service-prices-table tr:last-child td { border-bottom: none; }

.service-card-front-link {
    display: block;
    text-align: center;
    font-size: 0.82rem;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color var(--transition);
}
.service-card-front-link:hover { color: var(--primary-dark); text-decoration: underline; }
.service-card-footer { padding: 20px 28px 28px; }
.service-card-footer .btn {
    width: 100%;
    justify-content: center;
}
.service-card-footer .btn + .service-card-front-link,
.service-card-footer .btn + .service-card-flip-hint { margin-top: 14px; }
.service-card-footer .service-card-front-link + .service-card-flip-hint { margin-top: 8px; }

.services-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-medium);
}
.services-loading a { color: var(--primary); text-decoration: underline; }

.services-note {
    text-align: center;
    margin-top: 36px;
    color: var(--text-medium);
    font-size: 0.9rem;
}
.services-note a { color: var(--primary); text-decoration: underline; }

.services-cta { text-align: center; }
.services-cta h2 { margin-bottom: 12px; }
.services-cta p { color: var(--text-medium); max-width: 560px; margin: 0 auto 28px; }
.services-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================
   FEATURES
   ========================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.feature-item { text-align: center; }
.feature-icon {
    width: 68px; height: 68px;
    border-radius: 50%;
    background: rgba(23, 52, 70, 0.07);
    border: 1px solid rgba(23, 52, 70, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
}
.feature-icon svg {
    width: 28px;
    height: 28px;
}
.feature-item h3 { margin-bottom: 10px; font-size: 1.05rem; }
.feature-item p { font-size: 0.9rem; color: var(--text-medium); line-height: 1.6; margin: 0; }

/* ==========================================================
   AREAS
   ========================================================== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.area-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}
.area-tag:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}
.areas-footer {
    text-align: center;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}
.areas-footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
    transition: color var(--transition);
}
.areas-footer a:hover { color: var(--white); }

/* ==========================================================
   CONTACT CTA (homepage section)
   ========================================================== */
.contact-cta { text-align: center; }
.contact-cta h2 { margin-bottom: 16px; }
.contact-cta > p { color: var(--text-medium); font-size: 1.1rem; margin-bottom: 40px; }
.contact-methods {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition);
}
.contact-method:hover { color: var(--primary); }
.contact-method-icon {
    width: 48px; height: 48px;
    background: var(--light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: background var(--transition);
}
.contact-method-icon svg { width: 22px; height: 22px; }
.contact-method:hover .contact-method-icon { background: rgba(23, 52, 70, 0.08); }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
    background: var(--darker-bg);
    color: var(--white);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand-logo {
    display: inline-block;
    margin-bottom: 16px;
}
.footer-logo-img {
    height: 120px;
    width: auto;
    opacity: 0.85;
    transition: opacity var(--transition);
}
.footer-brand-logo:hover .footer-logo-img { opacity: 1; }
.footer-tagline {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 300px;
}
.footer-col h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-weight: 700;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-areas-note {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    margin-top: 8px;
    line-height: 1.4;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--white); }
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: background var(--transition), color var(--transition);
}
.footer-socials a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}
.footer-icon {
    flex-shrink: 0;
    vertical-align: -2px;
    color: rgba(255, 255, 255, 0.6);
}
.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom-copy { font-size: 0.8rem; color: rgba(255, 255, 255, 0.25); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255, 255, 255, 0.55); }

/* ==========================================================
   COOKIE BANNER
   ========================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9998;
    background: var(--darker-bg);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}
.cookie-banner-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.cookie-banner-text { font-size: 0.875rem; line-height: 1.5; }
.cookie-banner-text a { color: rgba(255, 255, 255, 0.8); text-decoration: underline; }
.cookie-banner-buttons { display: flex; gap: 12px; flex-shrink: 0; }
/* Accept: white bg / brand text — clearly visible on the dark teal banner */
.cookie-btn-accept {
    padding: 10px 24px;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    font-family: inherit;
}
.cookie-btn-accept:hover {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.88);
}
.cookie-btn-reject {
    padding: 10px 24px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    font-family: inherit;
}
.cookie-btn-reject:hover { border-color: rgba(255, 255, 255, 0.7); }

/* ==========================================================
   SCROLL REVEAL
   ========================================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--reveal-delay, 0ms);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.faq-item.reveal {
    transform: translateY(12px);
    transition-duration: 0.3s;
    transition-delay: var(--reveal-delay, 0ms);
}

/* ==========================================================
   PAGE HEADER (inner pages)
   ========================================================== */
.page-header {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4px 0 24px;
    margin-top: 80px;
    text-align: center;
    position: sticky;
    top: 80px;
    z-index: 999;
    transition: box-shadow 0.3s ease;
}
.page-header::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--dark-bg);
}
.page-header h1 { margin-bottom: 12px; }
.page-header.stuck {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.page-header + .section { margin-top: 20px; padding-top: 40px; }

/* Breadcrumb */
.breadcrumb {
    font-size: 0.85rem;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.45);
}
.breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.3);
}
.page-header p { color: rgba(255, 255, 255, 0.65); font-size: 1.1rem; }
.page-header-link {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.page-header-link:hover {
    color: rgba(255, 255, 255, 0.8);
}
.page-header-contact {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
}
.page-header-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color var(--transition);
}
.page-header-contact a:hover { color: var(--white); }
.page-header-contact .page-header-icon {
    vertical-align: -3px;
    margin-right: 6px;
}

/* Quick Book bar (services page sticky header) */
.quick-book {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}
.quick-book select {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 0.875rem;
    font-family: inherit;
    cursor: pointer;
    min-width: 220px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.quick-book select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.18);
}
.quick-book select option {
    background: var(--dark-bg);
    color: var(--white);
}

/* Light variant (on white/light backgrounds, e.g. homepage) */
.quick-book-light { margin-top: -30px; margin-bottom: 30px; }
.quick-book-light select {
    border-color: var(--medium-grey);
    background-color: var(--white);
    color: var(--text-dark);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%234D6575' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.quick-book-light select:focus {
    border-color: var(--primary);
    background-color: var(--white);
}
.quick-book-light select option {
    background: var(--white);
    color: var(--text-dark);
}

/* ==========================================================
   CONTACT PAGE
   ========================================================== */
.contact-form-container { max-width: 720px; margin: 0 auto; }

/* Contact form card */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--medium-grey);
    padding: 48px;
}
.contact-form-wrapper h2 { margin-bottom: 32px; font-size: 1.4rem; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}
.form-group label .required { color: var(--primary); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid var(--medium-grey);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(23, 52, 70, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234D6575' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
.form-hint {
    font-size: 0.85rem;
    color: var(--text-medium);
    background: var(--light-grey);
    border-left: 3px solid var(--primary);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-top: 4px;
}
.form-hint a {
    color: var(--primary);
    font-weight: 600;
}
.form-submit { margin-top: 8px; }
.form-submit .btn { padding: 14px 40px; }
.form-status-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 0.9rem;
    scroll-margin-top: 200px;
}
.form-status-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 0.9rem;
    scroll-margin-top: 200px;
}

/* Inline field validation errors */
.field-error { border-color: #dc2626 !important; }
.field-error:focus { box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15) !important; }
.field-error-message {
    display: block;
    color: #dc2626;
    font-size: 0.8rem;
    margin-top: 4px;
    font-weight: 500;
}

/* Submit button spinner */
.btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(23, 52, 70, 0.25);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}
@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================
   REVIEWS
   ========================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--medium-grey);
    padding: 28px;
    display: flex;
    flex-direction: column;
}
.review-stars {
    margin-bottom: 14px;
    font-size: 1.2rem;
    letter-spacing: 2px;
}
.review-star {
    color: #d4d4d4;
}
.review-star-filled {
    color: #fbbc04;
}
.review-text {
    color: var(--text-medium);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 18px;
}
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--medium-grey);
    padding-top: 14px;
}
.review-author {
    font-weight: 600;
    color: var(--text-dark);
}
.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
}
.reviews-view-all,
.reviews-load-more {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 16px;
}
.review-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9997;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--medium-grey);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.review-float:hover {
    border-color: var(--text-medium);
    box-shadow: var(--shadow-lg);
}
@media (max-width: 768px) {
    .review-float {
        padding: 12px 16px;
        font-size: 0.8rem;
        bottom: 20px;
        left: 20px;
    }
}
.reviews-leave {
    text-align: center;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--medium-grey);
}
.reviews-leave p {
    color: var(--text-medium);
    margin-bottom: 20px;
    font-size: 1.1rem;
}
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   GIFT VOUCHER
   ========================================================== */

/* Homepage section */
.gift-voucher-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.gift-voucher-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.gift-voucher-text h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}
.gift-voucher-text p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
}
.gift-voucher-ctas {
    display: flex;
    align-items: center;
    gap: 24px;
}
.gift-voucher-more {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: opacity var(--transition);
}
.gift-voucher-more:hover {
    opacity: 0.7;
}

/* Dedicated page */
.gift-voucher-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}
.gift-voucher-page-text p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}
.gift-voucher-page-text a {
    color: var(--primary-blue);
    text-decoration: underline;
}
.gift-voucher-page-side {
    text-align: center;
}
.gift-voucher-page-side img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}
.gift-voucher-page-side .btn {
    display: inline-block;
    margin-bottom: 16px;
}
.gift-voucher-disclaimer {
    font-size: 0.8rem;
    color: var(--text-light);
}
.gift-voucher-physical {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--light-grey);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin-top: 40px;
}
.gift-voucher-physical-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}
.gift-voucher-physical strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-dark);
}
.gift-voucher-physical p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-medium);
}
.gift-voucher-physical a {
    color: var(--primary);
    font-weight: 600;
}

/* ==========================================================
   PRIVACY POLICY
   ========================================================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 150px 20px 80px;
}
.section .legal-content {
    padding: 0;
}
.legal-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--medium-grey);
    color: var(--text-light);
    font-size: 0.9rem;
}
.legal-content h1 { margin-bottom: 8px; }
.legal-updated { color: var(--text-light); font-size: 0.875rem; margin-bottom: 48px; }
.legal-content h2 {
    font-size: 1.25rem;
    margin-top: 40px;
    margin-bottom: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--medium-grey);
}
.legal-content h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content p { color: var(--text-medium); line-height: 1.7; }
.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.7;
}
.legal-content li { margin-bottom: 6px; }
.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.875rem;
}
.legal-content th {
    background: var(--light-grey);
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    border: 1px solid var(--medium-grey);
}
.legal-content td {
    padding: 9px 14px;
    border: 1px solid var(--medium-grey);
    color: var(--text-medium);
    vertical-align: top;
}

/* ==========================================================
   VEHICLE SIZE GUIDE
   ========================================================== */
.vehicle-sizes-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-medium);
    line-height: 1.7;
}
.vehicle-sizes-intro a {
    color: var(--primary-blue);
    text-decoration: underline;
}
.vehicle-size-category {
    max-width: 800px;
    margin: 0 auto 48px;
}
.vehicle-size-category h2 {
    font-size: 1.35rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}
.vehicle-size-examples {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}
.vehicle-size-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.925rem;
}
.vehicle-size-table thead th {
    background: var(--light-grey);
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    border: 1px solid var(--medium-grey);
    color: var(--text-dark);
}
.vehicle-size-table td {
    padding: 9px 14px;
    border: 1px solid var(--medium-grey);
    color: var(--text-medium);
}
.vehicle-size-table tbody tr:hover {
    background: var(--light-grey);
}
.vehicle-size-note {
    max-width: 800px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--medium-grey);
    color: var(--text-medium);
    text-align: center;
}
.vehicle-size-note a {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* ==========================================================
   FAQ PAGE
   ========================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--medium-grey);
}
.faq-item:first-child {
    border-top: 1px solid var(--medium-grey);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    font-family: inherit;
    transition: color var(--transition);
}
.faq-question:hover {
    color: var(--primary);
}
.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-light);
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-item.active .faq-question::after {
    content: '\2212';
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 0;
}
.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 0 0 24px;
}
.faq-answer p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 12px;
}
.faq-answer ul,
.faq-answer ol {
    color: var(--text-medium);
    padding-left: 24px;
    margin-bottom: 12px;
    list-style: disc;
}
.faq-answer ol {
    list-style: decimal;
}
.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.6;
}
.faq-answer a {
    color: var(--primary);
    text-decoration: underline;
}
.faq-answer a:hover {
    color: var(--primary-dark);
}

/* ==========================================================
   404 PAGE
   ========================================================== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: var(--white);
    padding: 40px 20px;
}
.error-page-inner { max-width: 500px; }
.error-code {
    font-size: clamp(6rem, 20vw, 10rem);
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 0;
}
.error-page h1 { font-size: 1.8rem; margin-bottom: 16px; color: var(--white); }
.error-page p { color: rgba(255, 255, 255, 0.55); margin-bottom: 40px; }
.error-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================
   BACK TO TOP BUTTON
   ========================================================== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 120px;
    z-index: 9996;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--medium-grey);
    color: var(--text-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.back-to-top:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}
.back-to-top svg { width: 20px; height: 20px; }
@media (max-width: 768px) {
    .back-to-top { right: 88px; width: 40px; height: 40px; }
    .back-to-top svg { width: 18px; height: 18px; }
}

/* ==========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9997;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.whatsapp-float svg { fill: var(--white); width: 42px; height: 42px; }

/* ==========================================================
   SKELETON LOADING SCREENS
   ========================================================== */
.skeleton-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--medium-grey);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.skeleton-bar {
    height: 14px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--medium-grey) 25%, var(--light-grey) 50%, var(--medium-grey) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
}
.skeleton-bar-short { width: 60%; }
.skeleton-bar-medium { width: 80%; }
.skeleton-bar-tall { height: 28px; width: 40%; }
.skeleton-bar-spacer { margin-top: 8px; }
@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Service skeleton cards use same flex layout as .services-grid */
.services-grid .skeleton-card {
    width: calc(25% - 18px);
}
@media (max-width: 1024px) {
    .services-grid .skeleton-card { width: calc(50% - 12px); }
}
@media (max-width: 768px) {
    .services-grid .skeleton-card { width: 100%; }
}

/* ==========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid > .service-card { width: calc(50% - 12px); }
    .areas-grid     { grid-template-columns: repeat(3, 1fr); }
    .footer-grid    { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }

    html { scroll-padding-top: 90px; }
    .nav { height: 70px; }
    .nav-logo img { height: 48px; }
    .nav-phone {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        flex-grow: 0;
    }
    .nav-phone a { font-size: 0.95rem; }
    .hero { padding-top: 70px; }
    /* Smaller sticky page-header on mobile */
    .page-header { margin-top: 70px; top: 70px; padding: 4px 0 8px; }
    .page-header::before { height: 70px; }
    .has-announcement .page-header::before { height: 120px; }
    .page-header h1 { font-size: 1.5rem; margin-bottom: 4px; }
    .page-header > .container > p { display: none; }
    .page-header-contact a[href^="tel:"] { display: none; }

    .legal-content table { font-size: 0.75rem; table-layout: fixed; }
    .legal-content th, .legal-content td { padding: 6px 8px; word-wrap: break-word; overflow-wrap: break-word; }

    .hero-ctas  { flex-direction: column; align-items: flex-start; }
    .hero-stats { gap: 28px; }

    .services-grid > .service-card { width: 100%; }
    .features-grid  { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .areas-grid     { grid-template-columns: repeat(2, 1fr); }

    .gift-voucher-grid { grid-template-columns: 1fr; gap: 32px; }
    .gift-voucher-page { grid-template-columns: 1fr; gap: 32px; }

    .contact-form-wrapper { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .page-header-contact { flex-direction: column; gap: 12px; }
    .quick-book { gap: 8px; margin-top: 8px; }
    .quick-book select { padding: 6px 28px 6px 10px; font-size: 0.8rem; min-width: 0; }
    .quick-book .btn { padding: 6px 14px; font-size: 0.8rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }

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

    .cookie-banner-inner { flex-direction: column; text-align: center; }
    .cookie-banner-buttons { justify-content: center; width: 100%; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .areas-grid    { grid-template-columns: repeat(2, 1fr); }
    .hero-stats    { flex-direction: column; gap: 16px; }
    .contact-methods { flex-direction: column; align-items: center; }
    .error-links   { flex-direction: column; align-items: center; }
}
