/*
Theme Name: Cell Tech V2
Theme URI: https://celltechrepairs.co.uk
Author: Cell Tech
Author URI: https://celltechrepairs.co.uk
Description: Modern WordPress theme for Cell Tech mobile phone and electronics repair business. Apple and Samsung authorised repair centre serving Warrington and Knutsford.
Version: 2.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: celltech-v2
Tags: custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, woocommerce
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
    --color-primary: #070d1f;
    --color-primary-mid: #0f1a35;
    --color-primary-soft: #1a2645;
    --color-accent: #3D7FFF;
    --color-accent-hover: #2563EB;
    --color-accent-glow: rgba(61, 127, 255, 0.25);
    --color-accent-subtle: rgba(61, 127, 255, 0.08);
    --color-success: #00C896;
    --color-success-hover: #00a87e;
    --color-success-glow: rgba(0, 200, 150, 0.25);
    --color-light: #f4f6fb;
    --color-light-mid: #eaecf4;
    --color-white: #ffffff;
    --color-danger: #F05252;
    --color-text: #0d1117;
    --color-text-light: #f4f6fb;
    --color-text-muted: #6b7280;
    --color-text-muted-light: rgba(255, 255, 255, 0.6);
    --color-border: #e5e7eb;
    --color-border-dark: rgba(255, 255, 255, 0.08);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.09), 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 56px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-accent: 0 8px 32px var(--color-accent-glow);
    --shadow-success: 0 8px 32px var(--color-success-glow);
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --container-width: 1200px;
    --header-height: 72px;
    --transition: 0.25s ease;
    --transition-slow: 0.4s ease;
}

/* ==========================================================================
   CSS Reset
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--color-accent-hover);
}

a:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: 3px;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text);
    letter-spacing: -0.025em;
}

h1 { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: 2rem; font-weight: 700; letter-spacing: -0.03em; }
h3 { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 1.05rem; font-weight: 600; }
h6 { font-size: 0.95rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Layout Utilities
   ========================================================================== */

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

.section {
    padding: 72px 0;
}

.section--dark {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--color-white);
}

.section--light {
    background-color: var(--color-light);
}

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

.section-title {
    text-align: center;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

.grid {
    display: grid;
    gap: 24px;
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

.flex {
    display: flex;
    align-items: center;
}

.flex--between {
    justify-content: space-between;
}

.flex--center {
    justify-content: center;
}

.flex--wrap {
    flex-wrap: wrap;
}

.flex--gap {
    gap: 16px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    transition: all var(--transition);
    min-height: 48px;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.01em;
    position: relative;
}

.btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #2563EB 100%);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(61, 127, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1d4ed8 100%);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-success {
    background: linear-gradient(135deg, var(--color-success) 0%, #00a87e 100%);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(0, 200, 150, 0.2);
}

.btn-success:hover {
    background: linear-gradient(135deg, #00a87e 0%, #008f6a 100%);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-success);
}

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

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--color-white);
    transform: translateY(-2px);
}

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

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

.btn-sm {
    padding: 9px 18px;
    font-size: 0.875rem;
    min-height: 38px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    min-height: 56px;
    border-radius: var(--radius-md);
}

/* ==========================================================================
   Skip Link
   ========================================================================== */

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 12px 24px;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   Top Bar
   ========================================================================== */

.top-bar {
    background-color: var(--color-primary);
    color: var(--color-text-muted-light);
    font-size: 0.8rem;
    padding: 9px 0;
    display: none;
    border-bottom: 1px solid var(--color-border-dark);
}

.top-bar a {
    color: var(--color-text-muted-light);
    transition: color var(--transition);
}

.top-bar a:hover {
    color: var(--color-white);
}

.top-bar__items {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__left,
.top-bar__right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar__item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition);
}

.site-header.header--transparent {
    background-color: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
}

.site-header.header--scrolled {
    background-color: rgba(255, 255, 255, 0.97);
    border-bottom-color: var(--color-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(16px);
}

.site-header.header--scrolled .header__nav-link {
    color: var(--color-text);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.header__logo img {
    max-height: 44px;
    width: auto;
}

.header__logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.04em;
}

.header__logo-text span {
    color: var(--color-accent);
}

.header__nav {
    display: none;
    align-items: center;
    gap: 2px;
}

.header__nav-link {
    display: block;
    padding: 9px 14px;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-xs);
    transition: all var(--transition);
    letter-spacing: -0.01em;
}

.header__nav-link:hover,
.header__nav-link--active {
    color: var(--color-accent);
    background-color: var(--color-accent-subtle);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__cta {
    display: none;
}

/* Mega Menu */
.mega-menu-trigger {
    position: relative;
}

.mega-menu-trigger .header__nav-link::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-top: 3.5px solid currentColor;
    margin-left: 5px;
    vertical-align: middle;
    opacity: 0.6;
    transition: transform var(--transition);
}

.mega-menu-trigger:hover .header__nav-link::after {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.04);
    padding: 28px 32px;
    min-width: 680px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    z-index: 100;
}

.mega-menu-trigger:hover .mega-menu,
.mega-menu-trigger:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.mega-menu__column h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 14px;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
}

.mega-menu__column a {
    display: block;
    padding: 5px 0;
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
}

.mega-menu__column a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    cursor: pointer;
    z-index: 1001;
    border-radius: var(--radius-xs);
    transition: background var(--transition);
}

.hamburger:hover {
    background: var(--color-light);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: var(--color-white);
    z-index: 999;
    padding: 96px 28px 40px;
    overflow-y: auto;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
}

.mobile-menu.is-open {
    right: 0;
}

.mobile-menu__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 13, 31, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu__overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__link {
    display: block;
    padding: 13px 0;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid var(--color-border);
    letter-spacing: -0.01em;
    transition: color var(--transition);
}

.mobile-menu__link:hover {
    color: var(--color-accent);
}

.mobile-menu__submenu {
    display: none;
    padding-left: 16px;
}

.mobile-menu__submenu.is-open {
    display: block;
}

.mobile-menu__submenu a {
    display: block;
    padding: 9px 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition);
}

.mobile-menu__submenu a:hover {
    color: var(--color-accent);
}

.mobile-menu__cta {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu__cta .btn {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    background: linear-gradient(145deg, var(--color-primary) 0%, #0c1530 40%, #0f2050 100%);
    color: var(--color-text-light);
    padding: 96px 0 80px;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 15% 60%, rgba(61, 127, 255, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 85% 20%, rgba(0, 200, 150, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 70% 90%, rgba(61, 127, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><defs><pattern id="g" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M 80 0 L 0 0 0 80" fill="none" stroke="rgba(255,255,255,0.025)" stroke-width="0.5"/></pattern></defs><rect width="80" height="80" fill="url(%23g)"/></svg>');
    pointer-events: none;
    opacity: 0.6;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-success);
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.hero__title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero__title span {
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 2.25rem;
    line-height: 1.7;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero--page {
    min-height: auto;
    padding: 72px 0 56px;
}

.hero--page .hero__title {
    font-size: 2rem;
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */

.trust-bar {
    background: var(--color-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.trust-bar__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
    padding: 7px 14px;
    background: var(--color-light);
    border-radius: 100px;
    border: 1px solid var(--color-border);
    white-space: nowrap;
    letter-spacing: -0.01em;
    transition: all var(--transition);
}

.trust-bar__item:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.trust-bar__icon {
    font-size: 1rem;
}

.trust-bar__stars {
    color: #F59E0B;
    letter-spacing: 1px;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-xs);
    transition: all var(--transition-slow);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-success));
    opacity: 0;
    transition: opacity var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: transparent;
}

.card:hover::before {
    opacity: 1;
}

.card__icon {
    width: 52px;
    height: 52px;
    background: var(--color-accent-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: var(--color-accent);
    transition: all var(--transition);
}

.card:hover .card__icon {
    background: linear-gradient(135deg, var(--color-accent), #2563EB);
    color: white;
    transform: scale(1.05);
}

.card__title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.card__text {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    margin-bottom: 16px;
    line-height: 1.65;
}

.card__price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 14px;
}

.card__link {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--color-accent);
}

.card__link::after {
    content: '\2192';
    transition: transform var(--transition);
}

.card__link:hover::after {
    transform: translateX(5px);
}

/* Glass Card */
.card--glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
}

.card--glass::before {
    background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
}

.card--glass .card__title {
    color: var(--color-white);
}

.card--glass .card__text {
    color: rgba(255, 255, 255, 0.65);
}

/* ==========================================================================
   How It Works
   ========================================================================== */

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 880px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step__number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent) 0%, #2563EB 100%);
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 24px rgba(61, 127, 255, 0.3);
    letter-spacing: -0.02em;
}

.step__title {
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.step__text {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ==========================================================================
   Why Choose Us / Split Section
   ========================================================================== */

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

.split__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(145deg, var(--color-primary) 0%, #0f2050 100%);
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split__image--placeholder {
    color: var(--color-accent);
    font-size: 4rem;
    opacity: 0.5;
}

.split__content h2 {
    margin-bottom: 1rem;
}

.split__content p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
}

.feature-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--color-border);
}

.feature-list__item:last-child {
    border-bottom: none;
}

.feature-list__icon {
    color: var(--color-success);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 3px;
    background: rgba(0, 200, 150, 0.1);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   Reviews
   ========================================================================== */

.reviews-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    overflow: hidden;
}

.review-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    position: relative;
}

.review-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.review-card__stars {
    color: #F59E0B;
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-card__text {
    font-size: 0.92rem;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.65;
    font-style: italic;
    color: var(--color-text-muted);
}

.review-card__author {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.review-card__date {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

/* ==========================================================================
   Locations
   ========================================================================== */

.location-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all var(--transition-slow);
}

.location-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.location-card__map {
    height: 220px;
    background: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 2rem;
}

.location-card__map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-card__content {
    padding: 28px;
}

.location-card__title {
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.location-card__detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 9px;
    font-size: 0.92rem;
    color: var(--color-text-muted);
}

.location-card__detail-icon {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-accent);
}

.location-card__actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */

.cta-banner {
    background: linear-gradient(145deg, var(--color-primary) 0%, #0c1530 50%, #0f2050 100%);
    color: var(--color-text-light);
    text-align: center;
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 50% 120%, rgba(61, 127, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 10%, rgba(0, 200, 150, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: -0.03em;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 2.25rem;
    font-size: 1.1rem;
    position: relative;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-banner .btn {
    position: relative;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background-color: var(--color-primary);
    color: var(--color-text-muted-light);
    padding: 64px 0 0;
    border-top: 1px solid var(--color-border-dark);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--color-border-dark);
}

.footer__col h3 {
    color: var(--color-white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer__description {
    color: var(--color-text-muted-light);
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.7;
}

.footer__logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.04em;
}

.footer__logo-text span {
    color: var(--color-accent);
}

.footer__social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer__social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--color-border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted-light);
    transition: all var(--transition);
    font-size: 0.95rem;
}

.footer__social a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
    transform: translateY(-2px);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 9px;
}

.footer__links a {
    color: var(--color-text-muted-light);
    font-size: 0.9rem;
    transition: color var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer__links a:hover {
    color: var(--color-white);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--color-text-muted-light);
    font-size: 0.9rem;
}

.footer__contact-icon {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-accent);
}

.footer__certifications {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border-dark);
}

.footer__cert {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all var(--transition);
}

.footer__cert:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.7);
}

.footer__bottom {
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition);
}

.footer__bottom a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Page Content
   ========================================================================== */

.page-content {
    padding: 64px 0;
}

.page-content__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.page-content__main {
    min-width: 0;
}

.page-content__main h2,
.page-content__main h3,
.page-content__main h4 {
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.page-content__main ul,
.page-content__main ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.page-content__main ol {
    list-style: decimal;
}

.page-content__main li {
    margin-bottom: 0.5rem;
}

.page-content__main blockquote {
    border-left: 3px solid var(--color-accent);
    padding: 16px 24px;
    margin: 1.75rem 0;
    background: var(--color-accent-subtle);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--color-text-muted);
}

.page-content__main table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--color-border);
}

.page-content__main th,
.page-content__main td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
}

.page-content__main th {
    background: var(--color-light);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Sidebar
   ========================================================================== */

.sidebar .widget {
    background: var(--color-light);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid var(--color-border);
}

.sidebar .widget-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent);
    color: var(--color-text-muted);
}

.sidebar .widget ul {
    list-style: none;
    padding: 0;
}

.sidebar .widget li {
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.92rem;
}

.sidebar .widget li:last-child {
    border-bottom: none;
}

.sidebar .widget a {
    color: var(--color-text);
}

.sidebar .widget a:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   Blog / Archive
   ========================================================================== */

.post-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--color-border);
    transition: all var(--transition-slow);
}

.post-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: transparent;
}

.post-card__image {
    height: 200px;
    background: var(--color-light);
    overflow: hidden;
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card__image img {
    transform: scale(1.06);
}

.post-card__content {
    padding: 22px;
}

.post-card__meta {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    display: flex;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.post-card__title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.post-card__title a {
    color: var(--color-text);
}

.post-card__title a:hover {
    color: var(--color-accent);
}

.post-card__excerpt {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.65;
}

/* Single Post */
.single-post__header {
    margin-bottom: 2.5rem;
}

.single-post__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.single-post__content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.single-post__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.single-post__tag {
    padding: 5px 13px;
    background: var(--color-light);
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.single-post__tag:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

.single-post__share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.single-post__share span {
    font-weight: 600;
    font-size: 0.9rem;
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

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

/* Post Navigation */
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.post-nav__item {
    padding: 16px 20px;
    background: var(--color-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.post-nav__item:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-xs);
}

.post-nav__label {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.post-nav__title {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.92rem;
    letter-spacing: -0.01em;
}

.post-nav__item:hover .post-nav__title {
    color: var(--color-accent);
}

.post-nav__item--next {
    text-align: right;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 3rem;
}

.pagination .page-numbers {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--color-light);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(61, 127, 255, 0.25);
}

/* ==========================================================================
   Repairs Grid
   ========================================================================== */

.repair-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--color-border);
    transition: all var(--transition-slow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.repair-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-success));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.repair-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: transparent;
}

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

.repair-card__icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 16px;
    background: var(--color-accent-subtle);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all var(--transition);
}

.repair-card:hover .repair-card__icon {
    background: linear-gradient(135deg, var(--color-accent), #2563EB);
}

.repair-card__title {
    font-size: 1.05rem;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.repair-card__text {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.repair-card__price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-accent);
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--color-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--color-border);
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info__item:last-child {
    margin-bottom: 0;
}

.contact-info__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-accent);
    flex-shrink: 0;
    box-shadow: var(--shadow-xs);
}

.contact-info__label {
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
}

.contact-info__value {
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 400px;
    background: var(--color-light);
    box-shadow: var(--shadow-sm);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Form 7 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: all var(--transition);
    background: var(--color-white);
    color: var(--color-text);
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(61, 127, 255, 0.12);
}

.wpcf7 textarea {
    min-height: 140px;
    resize: vertical;
}

.wpcf7 input[type="submit"] {
    background: linear-gradient(135deg, var(--color-success) 0%, var(--color-success-hover) 100%);
    color: var(--color-white);
    border: none;
    padding: 13px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    min-height: 48px;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(0, 200, 150, 0.2);
    letter-spacing: -0.01em;
}

.wpcf7 input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-success);
}

.wpcf7 p {
    margin-bottom: 14px;
}

.wpcf7-response-output {
    border-radius: var(--radius-sm) !important;
    padding: 13px 16px !important;
}

/* ==========================================================================
   Booking Page
   ========================================================================== */

.booking-frame {
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.booking-info {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 2rem;
}

.booking-info p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==========================================================================
   Search
   ========================================================================== */

.search-form {
    display: flex;
    max-width: 580px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1.5px solid var(--color-border);
    transition: border-color var(--transition);
}

.search-form:focus-within {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(61, 127, 255, 0.1);
}

.search-form__input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    font-size: 0.95rem;
    outline: none;
    background: var(--color-white);
    color: var(--color-text);
}

.search-form__submit {
    padding: 14px 22px;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background var(--transition);
    letter-spacing: -0.01em;
}

.search-form__submit:hover {
    background: var(--color-accent-hover);
}

.search-results__item {
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
}

.search-results__title {
    margin-bottom: 8px;
}

.search-results__title a {
    color: var(--color-text);
}

.search-results__title a:hover {
    color: var(--color-accent);
}

.search-results__excerpt {
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

/* ==========================================================================
   404 Page
   ========================================================================== */

.error-404 {
    text-align: center;
    padding: 96px 0;
}

.error-404__code {
    font-size: 7rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.15;
    letter-spacing: -0.05em;
}

.error-404__title {
    margin-bottom: 1rem;
}

.error-404__text {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.error-404__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

/* ==========================================================================
   WooCommerce Overrides
   ========================================================================== */

.woocommerce-page .site-main {
    padding: 48px 0;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.woocommerce ul.products li.product {
    float: none;
    width: auto !important;
    margin: 0 !important;
    padding: 0;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--color-border);
    transition: all var(--transition-slow);
}

.woocommerce ul.products li.product:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: transparent;
}

.woocommerce ul.products li.product a img {
    margin: 0;
    border-radius: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 14px 16px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.woocommerce ul.products li.product .price {
    padding: 7px 16px;
    color: var(--color-accent);
    font-weight: 700;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: linear-gradient(135deg, var(--color-accent), #2563EB) !important;
    color: var(--color-white) !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    padding: 11px 18px !important;
    border: none !important;
    transition: all var(--transition) !important;
    box-shadow: 0 4px 12px rgba(61, 127, 255, 0.2) !important;
    letter-spacing: -0.01em !important;
}

.woocommerce ul.products li.product .button {
    margin: 0 16px 16px !important;
    display: inline-block;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: linear-gradient(135deg, #2563EB, #1d4ed8) !important;
    transform: translateY(-1px) !important;
    box-shadow: var(--shadow-accent) !important;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: linear-gradient(135deg, var(--color-success), var(--color-success-hover)) !important;
    box-shadow: 0 4px 12px rgba(0, 200, 150, 0.2) !important;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    box-shadow: var(--shadow-success) !important;
}

.woocommerce nav.woocommerce-pagination ul {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    padding: 9px 15px;
    background: var(--color-light);
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: 1px solid var(--color-border);
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

.woocommerce .woocommerce-ordering,
.woocommerce .woocommerce-result-count {
    margin-bottom: 24px;
}

.woocommerce .woocommerce-ordering select {
    padding: 9px 14px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
}

/* Single Product */
.woocommerce div.product {
    margin-bottom: 2rem;
}

.woocommerce div.product div.images {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.woocommerce div.product .product_title {
    font-size: 1.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.woocommerce div.product p.price {
    font-size: 1.5rem;
    color: var(--color-accent);
    font-weight: 700;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin: 2rem 0 0;
    border-bottom: 2px solid var(--color-border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: none;
    background: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: 11px 22px;
    font-weight: 600;
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
}

/* Cart */
.woocommerce table.shop_table {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.woocommerce table.shop_table th {
    background: var(--color-light);
    font-weight: 600;
    padding: 13px 16px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
}

.woocommerce table.shop_table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-border);
}

.woocommerce .cart-collaterals .cart_totals {
    background: var(--color-light);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--color-border);
}

/* Checkout */
.woocommerce form .form-row label {
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: -0.01em;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    padding: 12px 15px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(61, 127, 255, 0.1);
}

/* Notices */
.woocommerce-message,
.woocommerce-info {
    border-top-color: var(--color-accent) !important;
    background-color: rgba(61, 127, 255, 0.06);
    border-radius: var(--radius-sm);
}

.woocommerce-error {
    border-top-color: var(--color-danger) !important;
    background-color: rgba(240, 82, 82, 0.06);
    border-radius: var(--radius-sm);
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--color-accent) !important;
}

/* ==========================================================================
   Forms (General)
   ========================================================================== */

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 6px;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: all var(--transition);
    background: var(--color-white);
    color: var(--color-text);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(61, 127, 255, 0.1);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* ==========================================================================
   Animations
   ========================================================================== */

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }

    .btn:hover,
    .card:hover,
    .repair-card:hover,
    .post-card:hover {
        transform: none;
    }
}

/* ==========================================================================
   Responsive — Tablet (768px)
   ========================================================================== */

@media (min-width: 768px) {
    h1 { font-size: 3.2rem; }
    h2 { font-size: 2.4rem; }

    .top-bar {
        display: block;
    }

    .section {
        padding: 88px 0;
    }

    .grid--2 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }

    .steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .split {
        grid-template-columns: 1fr 1fr;
    }

    .reviews-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-content__inner--sidebar {
        grid-template-columns: 1fr 280px;
    }

    .hero__title {
        font-size: 3.2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
    }

    .header__cta {
        display: inline-flex;
    }
}

/* ==========================================================================
   Responsive — Desktop (1024px)
   ========================================================================== */

@media (min-width: 1024px) {
    h1 { font-size: 3.75rem; }
    h2 { font-size: 2.75rem; }

    .container {
        padding: 0 40px;
    }

    .header__nav {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .grid--3 { grid-template-columns: repeat(3, 1fr); }
    .grid--4 { grid-template-columns: repeat(4, 1fr); }

    .reviews-slider {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
    }

    .hero {
        padding: 128px 0 108px;
        min-height: 640px;
    }

    .hero__title {
        font-size: 3.75rem;
    }

    .split {
        gap: 72px;
    }
}

/* ==========================================================================
   Responsive — Large Desktop (1200px)
   ========================================================================== */

@media (min-width: 1200px) {
    .container {
        padding: 0 20px;
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================================================
   Repair Service Page Template
   ========================================================================== */

/* Hero */
.repair-hero {
    background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-mid) 55%, var(--color-primary-soft) 100%);
    padding: 72px 0 60px;
    position: relative;
    overflow: hidden;
}

.repair-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 90% at -5% 50%, rgba(61, 127, 255, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 105% 0%, rgba(0, 200, 150, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.repair-hero__inner {
    position: relative;
    max-width: 720px;
}

.repair-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 18px;
}

.repair-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition);
}

.repair-hero__breadcrumb a:hover {
    color: var(--color-white);
}

.repair-hero__breadcrumb span[aria-hidden] {
    color: rgba(255, 255, 255, 0.25);
}

.repair-hero__title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 14px;
}

.repair-hero__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.65;
    margin-bottom: 0;
}

.repair-hero__actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

/* btn variant for dark backgrounds */
.btn-outline-light {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: var(--color-white);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all var(--transition);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--color-white);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Trust strip */
.repair-trust {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 14px 0;
}

.repair-trust__items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.repair-trust__item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text);
    padding: 6px 14px;
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.repair-trust__item .check {
    color: var(--color-success);
    font-weight: 700;
}

/* Two-column layout */
.repair-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0 72px;
}

/* Prose typography */
.prose {
    min-width: 0;
    line-height: 1.78;
    color: var(--color-text);
}

.prose > *:first-child {
    margin-top: 0;
}

.prose h2 {
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--color-primary);
    margin-top: 2.25rem;
    margin-bottom: 0.75rem;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-border);
}

.prose h2:first-child {
    margin-top: 0;
}

.prose h3 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-primary);
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prose h3::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 1.1em;
    background: linear-gradient(180deg, var(--color-accent), var(--color-success));
    border-radius: 2px;
    flex-shrink: 0;
}

.prose p {
    margin-bottom: 1rem;
    color: #374151;
}

.prose strong {
    font-weight: 600;
    color: var(--color-text);
}

.prose ul {
    margin: 0.75rem 0 1.25rem;
    padding: 0;
    list-style: none;
}

.prose ul li {
    position: relative;
    padding: 6px 0 6px 1.75rem;
    color: #374151;
    border-bottom: 1px solid var(--color-border);
}

.prose ul li:last-child {
    border-bottom: none;
}

.prose ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-success));
    border-radius: 50%;
}

.prose a {
    color: var(--color-accent);
    font-weight: 500;
}

.prose a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

/* Sidebar booking card */
.repair-booking-card {
    background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-mid) 100%);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: var(--color-text-light);
    border: 1px solid var(--color-border-dark);
    position: relative;
    overflow: hidden;
}

.repair-booking-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 60% at 50% 110%, rgba(61, 127, 255, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.repair-booking-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    position: relative;
    color: var(--color-white);
}

.repair-booking-card__subtitle {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 22px;
    position: relative;
    line-height: 1.6;
}

.repair-booking-card__features {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 24px;
    position: relative;
}

.repair-booking-card__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.8);
}

.repair-booking-card__feature-icon {
    color: var(--color-success);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.repair-booking-card__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.repair-booking-card__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 22px 0 16px;
    position: relative;
}

.repair-booking-card__hours {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    position: relative;
}

/* Legacy flex-section content — hide raw junk, show nothing (content extracted via PHP) */
.flex-section { display: none; }

/* Old page-hero override to match new theme */
.page-hero {
    background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-mid) 60%, var(--color-primary-soft) 100%);
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at -5% 50%, rgba(61, 127, 255, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 105% 0%, rgba(0, 200, 150, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero h1 {
    color: var(--color-white);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
}

/* Responsive */
@media (min-width: 900px) {
    .repair-layout {
        grid-template-columns: 1fr 320px;
        align-items: start;
    }

    .repair-sidebar {
        position: sticky;
        top: calc(var(--header-height) + 24px);
    }

    .repair-hero__title {
        font-size: 2.8rem;
    }

    .repair-hero__actions {
        flex-wrap: nowrap;
    }

    .page-hero h1 {
        font-size: 2.75rem;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .site-header,
    .top-bar,
    .site-footer,
    .cta-banner,
    .hamburger,
    .btn {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }
}
