/* ============================================
   Ovenqueen — shared stylesheet
   Dual-service site (oven + carpet/upholstery)
============================================ */

/* --------------------------------------------
   CSS VARIABLES - Brand Colours
-------------------------------------------- */
:root {
    --color-primary: #1D3D3D;        /* Dark teal/green from logo background */
    --color-primary-dark: #152E2E;
    --color-primary-light: #2A5050;

    --color-secondary: #C9A227;      /* Gold from logo text */
    --color-secondary-dark: #A8871F;
    --color-secondary-light: #E0BC4A;

    --color-cream: #FBF8F4;
    --color-white: #FFFFFF;
    --color-charcoal: #2D2D2D;
    --color-charcoal-light: #4A4A4A;
    --color-grey: #6B6B6B;
    --color-grey-light: #E8E4E0;

    --color-success: #4A7C59;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 2px 8px rgba(45, 45, 45, 0.08);
    --shadow-md: 0 4px 20px rgba(45, 45, 45, 0.12);
    --shadow-lg: 0 8px 40px rgba(45, 45, 45, 0.16);
    --shadow-xl: 0 16px 60px rgba(45, 45, 45, 0.2);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------
   RESET & BASE
-------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--color-secondary-light); color: var(--color-charcoal); }

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

a { color: inherit; text-decoration: none; transition: var(--transition); }

/* --------------------------------------------
   TYPOGRAPHY
-------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-charcoal);
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p { font-size: 1.05rem; color: var(--color-grey); }

/* --------------------------------------------
   UTILITIES
-------------------------------------------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 5rem 0; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.section-header h2 { margin-bottom: 1rem; }

.bg-cream { background: var(--color-cream); }
.bg-white { background: var(--color-white); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }
.btn-primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-secondary { background: transparent; color: var(--color-charcoal); border-color: var(--color-charcoal); }
.btn-secondary:hover { background: var(--color-charcoal); color: var(--color-white); }

.btn-gold { background: var(--color-secondary); color: var(--color-charcoal); border-color: var(--color-secondary); }
.btn-gold:hover { background: var(--color-secondary-dark); border-color: var(--color-secondary-dark); transform: translateY(-2px); }

.btn-white { background: var(--color-white); color: var(--color-primary); border-color: var(--color-white); }
.btn-white:hover { background: var(--color-cream); transform: translateY(-2px); }

.btn-lg { padding: 1.15rem 2.5rem; font-size: 1rem; }

/* --------------------------------------------
   HEADER & NAV
-------------------------------------------- */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--color-primary);
    transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 0; }

.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { width: 45px; height: 45px; }
.logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem; font-weight: 500;
    color: var(--color-secondary); letter-spacing: 0.01em;
}

.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links > a, .nav-dropdown-toggle {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    background: none; border: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 0.3rem;
}
.nav-links > a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--color-secondary); transition: var(--transition);
}
.nav-links > a:hover, .nav-links > a.active { color: var(--color-secondary); }
.nav-links > a:hover::after, .nav-links > a.active::after { width: 100%; }
.nav-dropdown-toggle:hover, .nav-dropdown:hover .nav-dropdown-toggle { color: var(--color-secondary); }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-arrow { font-size: 0.7rem; transition: var(--transition); }
.nav-dropdown:hover .nav-dropdown-arrow, .nav-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute; top: 200%; left: 50%; transform: translateX(-50%);
    background: var(--color-white); border-radius: 12px; box-shadow: var(--shadow-lg);
    padding: 0.5rem; min-width: 210px;
    opacity: 0; visibility: hidden; transition: var(--transition); z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1; visibility: visible; top: 165%;
}
.nav-dropdown-menu a {
    display: block; padding: 0.65rem 1rem; color: var(--color-charcoal);
    border-radius: 8px; font-weight: 500; font-size: 0.95rem;
}
.nav-dropdown-menu a:hover { background: var(--color-cream); color: var(--color-primary); }

.header-cta { padding: 0.6rem 1.25rem; font-size: 0.9rem; white-space: nowrap; }

/* Mobile menu toggle */
.menu-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 1001;
}
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--color-secondary); transition: var(--transition); }

.mobile-nav {
    display: none; position: fixed; inset: 0; background: var(--color-cream);
    z-index: 999; padding: 6rem 2rem 2rem; flex-direction: column; align-items: center; gap: 1.25rem;
    overflow-y: auto;
}
.mobile-nav.active { display: flex; }
.mobile-nav a { font-size: 1.2rem; font-weight: 500; color: var(--color-charcoal); padding: 0.4rem 0; }
.mobile-nav .mobile-subhead {
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--color-primary); margin-top: 0.5rem;
}
.mobile-nav-close {
    position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none;
    font-size: 2rem; cursor: pointer; color: var(--color-charcoal);
}

/* --------------------------------------------
   HERO (homepage)
-------------------------------------------- */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 8rem 0 5rem; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-white) 50%, var(--color-grey-light) 100%);
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -10%; width: 70%; height: 200%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    opacity: 0.05; border-radius: 50%; z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-text { animation: fadeInUp 0.8s ease forwards; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-tagline {
    display: inline-flex; align-items: center; gap: 0.75rem;
    background: var(--color-white); padding: 0.5rem 1.25rem; border-radius: 50px;
    font-size: 0.9rem; font-weight: 500; color: var(--color-primary);
    margin-bottom: 1.5rem; box-shadow: var(--shadow-sm);
}
.hero-tagline .icon { font-size: 1.1rem; }
.hero h1 { margin-bottom: 1.5rem; color: var(--color-charcoal); }
.hero h1 .highlight { color: var(--color-primary); }
.hero-description { font-size: 1.2rem; line-height: 1.8; margin-bottom: 2rem; max-width: 520px; }
.hero-ctas { display: flex; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.hero-features { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; color: var(--color-charcoal-light); }
.hero-feature .icon { color: var(--color-success); font-size: 1.2rem; }

.hero-visual { position: relative; animation: fadeInUp 0.8s 0.2s ease forwards; opacity: 0; }
.hero-image-main { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-xl); background: var(--color-charcoal); }
.hero-image-main.hero-logo { background: transparent; box-shadow: none; display: flex; align-items: center; justify-content: center; }
.hero-image-main.hero-logo img { max-width: 560px; width: 100%; height: auto; border-radius: 20px; object-fit: contain; }
.hero-image-main img { width: 100%; height: auto; object-fit: cover; }

.hero-phone-badge {
    position: absolute; top: 20px; right: -20px; background: var(--color-primary);
    color: var(--color-white); padding: 0.75rem 1.25rem; border-radius: 12px;
    box-shadow: var(--shadow-md); animation: float 4s 1s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-phone-badge a { display: flex; align-items: center; gap: 0.5rem; color: var(--color-white); font-weight: 600; }

/* --------------------------------------------
   PAGE HERO (interior pages)
-------------------------------------------- */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 10rem 0 4rem; text-align: center; color: var(--color-white); position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.05) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .hero-tagline { color: var(--color-primary); }
.page-hero h1 { color: var(--color-white); margin-bottom: 1rem; font-size: clamp(2.25rem, 5vw, 3.5rem); }
.page-hero p { color: rgba(255, 255, 255, 0.9); font-size: 1.15rem; max-width: 640px; margin: 0 auto 2rem; }
.page-hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------
   BREADCRUMB
-------------------------------------------- */
.breadcrumb { background: var(--color-cream); padding: 1rem 0; border-bottom: 1px solid var(--color-grey-light); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.9rem; }
.breadcrumb li { color: var(--color-grey); }
.breadcrumb li::after { content: '›'; margin-left: 0.5rem; color: var(--color-grey); }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a { color: var(--color-primary); font-weight: 500; }
.breadcrumb a:hover { color: var(--color-secondary-dark); }

/* --------------------------------------------
   TRUST BAR
-------------------------------------------- */
.trust-bar { background: var(--color-white); padding: 1.5rem 0; border-bottom: 1px solid var(--color-grey-light); }
.trust-items { display: flex; justify-content: center; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; font-weight: 500; color: var(--color-charcoal-light); }
.trust-item .icon { font-size: 1.25rem; }

/* --------------------------------------------
   SERVICE HUB CARDS (homepage)
-------------------------------------------- */
.hub { background: var(--color-white); }
.hub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.hub-card {
    background: var(--color-cream); border-radius: 24px; padding: 2.5rem; text-align: center;
    border: 1px solid var(--color-grey-light); transition: var(--transition); display: flex; flex-direction: column;
}
.hub-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--color-primary); }
.hub-card-icon {
    width: 80px; height: 80px; margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2.25rem;
}
.hub-card h3 { margin-bottom: 0.75rem; font-size: 1.6rem; }
.hub-card p { margin-bottom: 1.25rem; }
.hub-card .hub-price { font-size: 1.25rem; font-weight: 700; color: var(--color-primary); font-family: var(--font-body); margin-bottom: 1.5rem; }
.hub-card .btn { margin-top: auto; }

/* --------------------------------------------
   SERVICES PRICING GRID (oven page)
-------------------------------------------- */
.services { background: var(--color-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
    background: var(--color-cream); border-radius: 20px; padding: 2rem;
    transition: var(--transition); border: 1px solid transparent; text-align: center;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.service-icon {
    width: 60px; height: 60px; margin: 0 auto 1.25rem auto;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem;
}
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { font-size: 0.95rem; margin-bottom: 1rem; }
.service-price { font-size: 1.5rem; font-weight: 700; color: var(--color-primary); font-family: var(--font-body); }

/* --------------------------------------------
   PRICING CARDS (carpet — per room)
-------------------------------------------- */
.pricing-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.25rem; max-width: 920px; margin: 0 auto;
}
.price-card {
    background: var(--color-cream); border-radius: 16px; padding: 1.75rem 1.25rem; text-align: center;
    border: 1px solid var(--color-grey-light); transition: var(--transition);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.price-card .price-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.price-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.price-card .price { font-size: 1.6rem; font-weight: 700; color: var(--color-primary); font-family: var(--font-body); }
.price-card .price-note { font-size: 0.85rem; color: var(--color-grey); }

/* --------------------------------------------
   PACKAGES / BUNDLES
-------------------------------------------- */
.packages-section { margin-top: 3rem; }
.packages-section > h3 { text-align: center; margin-bottom: 1.5rem; }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; max-width: 920px; margin: 0 auto; }
.package-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white); border-radius: 20px; padding: 2rem; text-align: center; transition: var(--transition);
}
.package-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.package-card h4 { color: var(--color-white); margin-bottom: 0.75rem; font-size: 1.25rem; }
.package-card p { color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; margin-bottom: 1rem; }
.package-price { font-size: 2rem; font-weight: 700; font-family: var(--font-body); }

/* --------------------------------------------
   HOW IT WORKS (steps)
-------------------------------------------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 960px; margin: 0 auto; }
.step-card { text-align: center; padding: 1rem; }
.step-number {
    width: 64px; height: 64px; margin: 0 auto 1.25rem;
    background: var(--color-secondary-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--color-primary);
}
.step-card h3 { margin-bottom: 0.5rem; font-size: 1.3rem; }
.step-card p { font-size: 0.95rem; }

/* --------------------------------------------
   CHECKLIST (what's included / what we clean)
-------------------------------------------- */
.checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 2rem; max-width: 800px; margin: 0 auto; list-style: none; }
.checklist li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1rem; color: var(--color-charcoal-light); }
.checklist li::before { content: '✓'; color: var(--color-success); font-weight: 700; flex-shrink: 0; }

/* tags row (types of oven / what we clean) */
.tag-row { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; max-width: 800px; margin: 0 auto; }
.tag {
    background: var(--color-cream); border: 1px solid var(--color-grey-light);
    border-radius: 50px; padding: 0.6rem 1.25rem; font-size: 0.95rem; font-weight: 500; color: var(--color-charcoal);
}

/* --------------------------------------------
   ABOUT / WHY US
-------------------------------------------- */
.about { background: var(--color-cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: auto; }
.about-content h2 { margin-bottom: 1.5rem; }
.about-content > p { margin-bottom: 2rem; }
.about-features { display: grid; gap: 1.25rem; }
.about-feature { display: flex; gap: 1rem; align-items: flex-start; }
.about-feature-icon {
    width: 48px; height: 48px; background: var(--color-secondary-light); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0;
}
.about-feature-icon.icon-sparkling { background: var(--color-primary-light); }
.about-feature-text h4 { margin-bottom: 0.25rem; }
.about-feature-text p { font-size: 0.9rem; }

/* --------------------------------------------
   AREAS COVERED
-------------------------------------------- */
.areas { background: var(--color-primary); color: var(--color-white); position: relative; overflow: hidden; }
.areas::before {
    content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.05) 100%);
}
.areas .section-label { color: var(--color-secondary); }
.areas .section-header h2 { color: var(--color-white); }
.areas .section-header p { color: rgba(255, 255, 255, 0.8); }
.areas-single-block {
    background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px; padding: 2.5rem; text-align: center; position: relative; z-index: 1;
}
.areas-single-block .areas-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.areas-single-block h3 { color: var(--color-white); font-size: 1.35rem; font-weight: 500; line-height: 1.6; }
.areas-note { text-align: center; margin-top: 2rem; color: rgba(255, 255, 255, 0.8); font-size: 0.95rem; }
.areas-note a { color: var(--color-secondary); font-weight: 600; }

/* --------------------------------------------
   GUARANTEE
-------------------------------------------- */
.guarantee { background: var(--color-white); }
.guarantee-box {
    max-width: 800px; margin: 0 auto; text-align: center;
    background: linear-gradient(135deg, var(--color-secondary-light), var(--color-cream));
    border-radius: 24px; padding: 3rem; border: 2px solid var(--color-secondary);
}
.guarantee-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.guarantee-box h2 { margin-bottom: 1rem; }
.guarantee-box p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* --------------------------------------------
   FAQ ACCORDION
-------------------------------------------- */
.faq { background: var(--color-cream); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--color-white); border-radius: 12px; margin-bottom: 1rem; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-question {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    padding: 1.25rem 1.5rem; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
    color: var(--color-charcoal); display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-question:hover { color: var(--color-primary); }
.faq-icon { flex-shrink: 0; font-size: 1.5rem; line-height: 1; color: var(--color-secondary-dark); transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 1.5rem 1.25rem; font-size: 1rem; color: var(--color-grey); }
.faq-item.open .faq-answer { max-height: 600px; }

/* --------------------------------------------
   CONTACT FORM (Formspree)
-------------------------------------------- */
.contact-section { background: var(--color-cream); }
.contact-section .container { max-width: 720px; }
.contact-section h2 { text-align: center; margin-bottom: 0.5rem; }
.contact-section > .container > p { text-align: center; margin-bottom: 2.5rem; }
.enquiry-form { background: var(--color-white); border-radius: 20px; padding: 2.5rem; box-shadow: var(--shadow-md); }
.form-row { margin-bottom: 1.25rem; }
.form-row label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--color-charcoal); }
.form-row input, .form-row select, .form-row textarea {
    width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--color-grey-light); border-radius: 10px;
    font-family: var(--font-body); font-size: 1rem; color: var(--color-charcoal); background: var(--color-cream);
    transition: var(--transition);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none; border-color: var(--color-primary); background: var(--color-white);
}
.enquiry-form .btn-primary { width: 100%; margin-top: 0.5rem; }

/* --------------------------------------------
   CROSS-SELL BANNER
-------------------------------------------- */
.cross-sell { background: var(--color-white); }
.cross-sell-box {
    max-width: 900px; margin: 0 auto; background: var(--color-cream); border: 1px solid var(--color-grey-light);
    border-radius: 20px; padding: 2.5rem; text-align: center;
}
.cross-sell-box h2 { margin-bottom: 0.75rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.cross-sell-box p { margin-bottom: 1.5rem; }

/* --------------------------------------------
   CTA
-------------------------------------------- */
.cta { background: var(--color-charcoal); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content { position: relative; z-index: 1; }
.cta h2 { color: var(--color-white); margin-bottom: 1rem; }
.cta p { color: rgba(255, 255, 255, 0.8); font-size: 1.15rem; margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-phone { display: block; margin-top: 1.5rem; }
.cta-phone a { color: var(--color-secondary); font-size: 1.75rem; font-weight: 700; font-family: var(--font-display); }
.cta-phone a:hover { color: var(--color-secondary-light); }

/* --------------------------------------------
   WHATSAPP FLOAT
-------------------------------------------- */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px;
    background-color: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25); z-index: 1000; transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* --------------------------------------------
   FOOTER
-------------------------------------------- */
.footer { background: var(--color-charcoal); color: var(--color-white); padding: 4rem 0 2rem; border-top: 3px solid var(--color-primary); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-brand .footer-logo-icon { width: 40px; height: 40px; object-fit: contain; }
.footer-brand .footer-logo-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--color-secondary); letter-spacing: 0.01em; }
.footer-brand p { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; max-width: 320px; }
.footer-heading { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--color-white); margin-bottom: 1.25rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }
.footer-links a:hover { color: var(--color-secondary); }
.footer-contact p { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; margin-bottom: 0.5rem; }
.footer-contact a { color: rgba(255, 255, 255, 0.7); }
.footer-contact a:hover { color: var(--color-secondary); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: rgba(255, 255, 255, 0.5); font-size: 0.85rem; }

/* --------------------------------------------
   GALLERY
-------------------------------------------- */
.gallery-section { padding: 5rem 0; background: var(--color-white); }
.gallery-intro { text-align: center; max-width: 700px; margin: 0 auto 2.5rem; }
.gallery-intro h2 { margin-bottom: 1rem; color: var(--color-charcoal); }
.gallery-intro p { color: var(--color-grey); }

/* filter tabs */
.gallery-tabs { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 3rem; }
.gallery-tab {
    background: var(--color-cream); border: 1px solid var(--color-grey-light); border-radius: 50px;
    padding: 0.65rem 1.5rem; font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
    color: var(--color-charcoal); cursor: pointer; transition: var(--transition);
}
.gallery-tab:hover { border-color: var(--color-primary); color: var(--color-primary); }
.gallery-tab.active { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-white); }

.gallery-grid { display: grid; gap: 3rem; }
.gallery-item { background: var(--color-cream); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); max-width: 800px; margin: 0 auto; width: 100%; }
.gallery-item[hidden] { display: none; }

/* two-image comparison (oven + upholstery pair) */
.gallery-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--color-grey-light); }
.comparison-side { position: relative; background: var(--color-charcoal); }
.comparison-side img { width: 100%; height: auto; max-height: 350px; object-fit: contain; display: block; }
.comparison-label {
    position: absolute; top: 1rem; left: 1rem; background: var(--color-charcoal); color: var(--color-white);
    padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
.comparison-side.after .comparison-label { background: var(--color-success); }

/* single composite image (carpet before|after in one file) */
.gallery-composite img { width: 100%; height: auto; display: block; }

.gallery-info { padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.gallery-info h3 { font-size: 1.1rem; color: var(--color-charcoal); }
.gallery-badge {
    display: flex; align-items: center; gap: 0.5rem; background: var(--color-secondary-light);
    padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; color: var(--color-charcoal); white-space: nowrap;
}

/* inline gallery slice (service pages) */
.gallery-slice { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1000px; margin: 0 auto 2rem; }
.gallery-slice figure { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); background: var(--color-cream); }
.gallery-slice img { width: 100%; height: auto; display: block; }
.gallery-slice figcaption { padding: 0.75rem 1rem; font-size: 0.85rem; color: var(--color-grey); text-align: center; }
.gallery-slice-cta { text-align: center; }

/* --------------------------------------------
   RESPONSIVE
-------------------------------------------- */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
    .hero-text { text-align: center; }
    .hero-description { margin: 0 auto 2rem; }
    .hero-ctas, .hero-features { justify-content: center; }
    .hero-phone-badge { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-image { max-width: 500px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .header-cta { padding: 0.5rem 1rem; font-size: 0.8rem; }
    .hero { min-height: auto; padding: 7rem 0 4rem; }
    .hub-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .checklist { grid-template-columns: 1fr; }
    .gallery-slice { grid-template-columns: 1fr; }
    .gallery-comparison { grid-template-columns: 1fr; }
    .comparison-side img { max-height: 300px; }
    .gallery-info { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 0 auto; }
    .footer-brand .footer-logo { justify-content: center; }
    .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
    html { font-size: 15px; }
    .container { padding: 0 1rem; }
    .hero-ctas, .page-hero-ctas, .cta-buttons { flex-direction: column; }
    .hero-ctas .btn, .page-hero-ctas .btn, .cta-buttons .btn { width: 100%; }
    .trust-items { gap: 1.25rem; }
    .trust-item { font-size: 0.8rem; }
    .services-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .service-card { padding: 1rem; }
    .service-icon { width: 44px; height: 44px; font-size: 1.25rem; }
    .service-card h3 { font-size: 1rem; }
    .service-card p { font-size: 0.8rem; }
    .service-price { font-size: 1.15rem; }
    .enquiry-form { padding: 1.5rem; }
}

/* --------------------------------------------
   COOKIE CONSENT BANNER
-------------------------------------------- */
#cookie-banner {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1100;
    background: var(--color-primary); color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2); padding: 1rem 0;
}
#cookie-banner .cookie-inner {
    max-width: 1100px; margin: 0 auto; padding: 0 1.5rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem 1.5rem; flex-wrap: wrap;
}
#cookie-banner p { color: rgba(255, 255, 255, 0.9); font-size: 0.9rem; margin: 0; max-width: 720px; }
#cookie-banner a { color: var(--color-secondary); text-decoration: underline; }
#cookie-banner .cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
#cookie-banner button {
    font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; border-radius: 50px;
    padding: 0.6rem 1.5rem; cursor: pointer; border: 2px solid transparent; transition: var(--transition);
}
.cookie-accept { background: var(--color-secondary); color: var(--color-charcoal); border-color: var(--color-secondary); }
.cookie-accept:hover { background: var(--color-secondary-dark); border-color: var(--color-secondary-dark); }
.cookie-reject { background: transparent; color: var(--color-white); border-color: rgba(255, 255, 255, 0.6); }
.cookie-reject:hover { background: rgba(255, 255, 255, 0.12); }
@media (max-width: 600px) {
    #cookie-banner .cookie-actions { width: 100%; }
    #cookie-banner button { flex: 1; }
}

/* --------------------------------------------
   FOOTER — legal / business identity
-------------------------------------------- */
.footer-legal {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
    gap: 0.75rem 1.5rem; padding-bottom: 1.25rem;
}
.footer-business { color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; margin: 0; }
.footer-legal-links { display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center; }
.footer-legal-links a, .footer-link-btn { color: rgba(255, 255, 255, 0.7); font-size: 0.85rem; }
.footer-legal-links a:hover, .footer-link-btn:hover { color: var(--color-secondary); }
.footer-link-btn { background: none; border: none; padding: 0; cursor: pointer; font-family: var(--font-body); }

/* Footer social icons */
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.1rem; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.1);
    display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.8); transition: var(--transition);
}
.footer-social a:hover { background: var(--color-secondary); color: var(--color-charcoal); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
@media (max-width: 768px) { .footer-social { justify-content: center; } }

/* Enquiry form consent line */
.form-consent { font-size: 0.85rem; color: var(--color-grey); margin-top: 1rem; text-align: center; }
.form-consent a { color: var(--color-primary); text-decoration: underline; }

/* --------------------------------------------
   LEGAL / POLICY PAGES (privacy, cookies)
-------------------------------------------- */
.legal { padding: 3rem 0 4rem; background: var(--color-white); }
.legal .container { max-width: 820px; }
.legal h2 { color: var(--color-primary); font-size: clamp(1.4rem, 3vw, 1.75rem); margin: 2rem 0 0.75rem; }
.legal h3 { color: var(--color-primary); font-size: 1.15rem; margin: 1.5rem 0 0.5rem; }
.legal p { margin-bottom: 1rem; color: var(--color-charcoal-light); }
.legal ul { margin: 0 0 1rem 1.4rem; }
.legal li { margin-bottom: 0.5rem; color: var(--color-charcoal-light); }
.legal a { color: var(--color-primary); text-decoration: underline; }
.legal .updated { font-size: 0.9rem; color: var(--color-grey); margin-bottom: 1.5rem; }
.legal hr { margin: 2rem 0; border: none; border-top: 1px solid var(--color-grey-light); }
.legal table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.95rem; }
.legal th, .legal td { border: 1px solid var(--color-grey-light); padding: 0.6rem 0.75rem; text-align: left; vertical-align: top; }
.legal th { background: var(--color-cream); color: var(--color-primary); }
