/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --blue: #0A3A63;
    --blue-light: #0063C9;
    --blue-dark: #062A4A;
    --gold: #F5A623;
    --gold-dark: #D4900E;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --red: #E53935;
    --green: #10B981;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: var(--gray-800); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border: 2px solid transparent; border-radius: var(--radius-sm); font-size: 15px; font-weight: 600; cursor: pointer; text-decoration: none; transition: var(--transition); text-align: center; line-height: 1.4; }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-primary { background: var(--blue-light); color: var(--white); border-color: var(--blue-light); }
.btn-primary:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-dark:hover { background: var(--blue); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--gray-900); border-color: var(--gold); font-weight: 700; }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header { background: var(--blue); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-md); }
.nav-bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 20px; }
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo img { height: 56px; width: auto; }
.nav-menu { display: flex; gap: 28px; }
.nav-link { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; transition: var(--transition); position: relative; padding: 4px 0; }
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease; border-radius: 1px; }
.nav-link:hover::after { width: 100%; }
.header-cta { display: flex; gap: 10px; }
.btn-header-phone, .btn-header-wa { display: inline-flex; align-items: center; gap: 6px; color: var(--white); font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: var(--radius-sm); transition: var(--transition); white-space: nowrap; }
.btn-header-phone { background: rgba(255,255,255,0.1); }
.btn-header-phone:hover { background: rgba(255,255,255,0.2); }
.btn-header-wa { background: #25D366; color: var(--white); }
.btn-header-wa:hover { background: #1DA851; }
.mobile-menu-toggle { display: none; flex-direction: column; cursor: pointer; background: none; border: none; gap: 5px; padding: 8px; }
.mobile-menu-toggle span { width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); overflow: hidden; background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 40%, var(--blue-light) 100%); }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('https://drmb-plumbing.co.uk/wp-content/uploads/2024/08/mmexport1529047614839.webp') center/cover no-repeat; opacity: 0.08; }
.hero-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 120px; background: linear-gradient(transparent, rgba(10,58,99,0.3)); }
.hero-content { position: relative; z-index: 2; padding: 40px 24px; max-width: 900px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.3); color: var(--gold); padding: 8px 20px; border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 28px; backdrop-filter: blur(4px); }
.hero h1 { font-size: clamp(36px, 6vw, 64px); font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.02em; }
.hero h1 span { color: var(--gold); }
.hero-sub { font-size: clamp(16px, 2vw, 20px); line-height: 1.6; opacity: 0.9; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.15); }
.stat { text-align: center; }
.stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--gold); }
.stat span { font-size: 13px; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--gray-900); padding: 18px 0; }
.trust-items { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 14px; font-weight: 500; white-space: nowrap; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--blue); margin-bottom: 12px; letter-spacing: -0.02em; }
.section-header p { font-size: 18px; color: var(--gray-600); max-width: 600px; margin: 0 auto; }

/* ===== SERVICES ===== */
.services { padding: 96px 0; background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); padding: 36px 28px; border-radius: var(--radius); border: 1px solid var(--gray-200); transition: var(--transition); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: var(--blue-light); }
.service-icon { width: 64px; height: 64px; background: rgba(0,99,201,0.08); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.service-card p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* ===== WHY US ===== */
.why-us { padding: 96px 0; background: var(--white); }
.why-us-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.why-us-text h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--blue); margin-bottom: 16px; letter-spacing: -0.02em; }
.why-intro { font-size: 18px; color: var(--gray-600); margin-bottom: 36px; line-height: 1.7; }
.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { width: 48px; height: 48px; min-width: 48px; background: rgba(245,166,35,0.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.why-point h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.why-point p { font-size: 15px; color: var(--gray-600); line-height: 1.6; }
.why-us-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xl); }
.why-us-image img { width: 100%; height: 100%; object-fit: cover; min-height: 500px; }

/* ===== RECENT WORK ===== */
.recent-work { padding: 96px 0; background: var(--gray-50); }
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; grid-auto-rows: 260px; }
.work-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.work-item-tall { grid-row: span 2; }
.work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.work-item:hover img { transform: scale(1.08); }
.work-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(10,58,99,0.9) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; opacity: 0; transition: opacity 0.3s ease; }
.work-item:hover .work-overlay { opacity: 1; }
.work-overlay h4 { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.work-overlay p { color: rgba(255,255,255,0.8); font-size: 14px; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 96px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--gray-50); padding: 36px; border-radius: var(--radius); border: 1px solid var(--gray-200); transition: var(--transition); position: relative; }
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.testimonial-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-size: 72px; color: var(--blue-light); opacity: 0.1; font-family: Georgia, serif; line-height: 1; }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }
.reviewer strong { display: block; font-size: 15px; color: var(--gray-900); }
.reviewer span { font-size: 13px; color: var(--gray-400); }
.reviews-cta { text-align: center; margin-top: 48px; }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 72px 0; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%); color: var(--white); text-align: center; }
.cta-content h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 12px; }
.cta-content p { font-size: 18px; opacity: 0.9; margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== SERVICE AREAS ===== */
.service-areas { padding: 80px 0; background: var(--gray-50); }
.areas-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 800px; margin: 0 auto; }
.area-tag { background: var(--white); color: var(--blue); padding: 10px 20px; border-radius: 50px; font-size: 14px; font-weight: 600; border: 1px solid var(--gray-200); transition: var(--transition); }
.area-tag:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ===== TECH PITCH ===== */
.tech-pitch { padding: 96px 0; background: var(--gray-900); color: var(--white); overflow: hidden; }
.pitch-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: center; }
.pitch-badge { display: inline-block; background: rgba(245,166,35,0.15); color: var(--gold); padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 700; margin-bottom: 20px; letter-spacing: 0.05em; text-transform: uppercase; }
.pitch-text h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; margin-bottom: 20px; color: var(--white); }
.pitch-lead { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.pitch-services { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.pitch-services li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: rgba(255,255,255,0.9); }
.pitch-card { background: var(--gray-800); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xl); }
.pitch-card-header { display: flex; gap: 8px; padding: 14px 18px; background: rgba(0,0,0,0.3); }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #28CA42; }
.pitch-card-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.pitch-mockup-line { height: 10px; border-radius: 5px; background: rgba(255,255,255,0.08); }
.pitch-mockup-block { height: 80px; border-radius: var(--radius-sm); background: rgba(0,99,201,0.15); border: 1px solid rgba(0,99,201,0.2); }
.w40 { width: 40%; } .w60 { width: 60%; } .w70 { width: 70%; } .w80 { width: 80%; } .w90 { width: 90%; }
.pitch-caption { text-align: center; margin-top: 16px; font-size: 14px; color: var(--gray-400); font-style: italic; }

/* ===== CONTACT ===== */
.contact { padding: 96px 0; background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--gray-50); border-radius: var(--radius-sm); border: 1px solid var(--gray-200); }
.contact-card h3 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.contact-card a { color: var(--blue-light); font-weight: 600; font-size: 15px; }
.contact-card a:hover { text-decoration: underline; }
.contact-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 15px; font-family: inherit; color: var(--gray-800); background: var(--gray-50); transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(0,99,201,0.1); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ===== FOOTER ===== */
.footer { background: var(--blue-dark); color: rgba(255,255,255,0.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img { margin-bottom: 16px; height: 36px; }
.footer-brand img[alt="Gas Safe Register"] { opacity: 0.8; height: 36px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; text-decoration: none; }
.footer-brand img { margin-bottom: 16px; height: 40px; }
.footer-brand img[alt="Gas Safe Register"] { opacity: 0.8; height: 36px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.footer-reg { font-size: 13px; color: var(--gold); font-weight: 600; }
.footer-links h4, .footer-contact h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact p { margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.7); font-size: 14px; transition: var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition); }
.footer-social a:hover { background: var(--gold); color: var(--gray-900); }
.footer-bottom { display: flex; justify-content: space-between; padding: 24px 0; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--gold); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .work-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-content { grid-template-columns: 1fr; gap: 40px; }
    .why-us-image { order: -1; }
    .why-us-image img { min-height: 300px; }
    .pitch-layout { grid-template-columns: 1fr; }
    .pitch-visual { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 768px) {
    .nav-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--blue-dark); flex-direction: column; padding: 24px; gap: 16px; box-shadow: var(--shadow-xl); z-index: 999; }
    .nav-menu.active { display: flex; }
    .nav-link { font-size: 16px; padding: 8px 0; }
    .mobile-menu-toggle { display: flex; }
    .header-cta { display: none; }
    .logo img { height: 44px; }
    .breadcrumb-bar { display: none; }
    .hero { min-height: 85vh; }
    .hero-stats { gap: 24px; }
    .stat strong { font-size: 24px; }
    .trust-items { gap: 20px; }
    .trust-item { font-size: 12px; }
    .services-grid { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .work-item-tall { grid-row: span 1; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .areas-grid { gap: 8px; }
    .area-tag { font-size: 13px; padding: 8px 16px; }
    section { padding: 64px 0; }
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 28px; }
}

/* ===== RESPONSIVE: SMALL ===== */
@media (max-width: 480px) {
    .hero h1 { font-size: 32px; }
    .hero-sub { font-size: 15px; }
    .hero-stats { gap: 16px; flex-direction: column; padding-top: 24px; }
    .work-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .trust-items { flex-direction: column; align-items: center; gap: 12px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ===== INNER PAGES — SHARED COMPONENTS ===== */

/* Breadcrumb */
.breadcrumb-bar { background: var(--blue-dark); border-bottom: none; padding: 10px 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb span:last-child { color: #fff; font-weight: 500; }

/* Page Hero */
.page-hero { position: relative; padding: 80px 0 72px; color: var(--white); background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 40%, var(--blue-light) 100%); }
.page-hero--blue { background: linear-gradient(135deg, #062A4A 0%, #0A3A63 50%, #0063C9 100%); }
.page-hero-content { text-align: center; max-width: 820px; margin: 0 auto; padding: 0 24px; }
.page-hero h1 { font-size: clamp(30px,5vw,52px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.02em; }
.page-hero h1 span { color: var(--gold); }
.page-hero-sub { font-size: clamp(15px,2vw,18px); opacity: 0.9; line-height: 1.7; margin-bottom: 32px; }
.hero-price-badge { display: inline-block; background: rgba(245,166,35,0.2); border: 1px solid rgba(245,166,35,0.4); color: var(--gold); padding: 10px 24px; border-radius: 50px; font-size: 16px; margin-top: 20px; }
.hero-price-badge strong { font-size: 22px; font-weight: 800; }

/* WhatsApp button */
.btn-wa { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-wa:hover { background: #1DA851; border-color: #1DA851; transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* Content two-col layout */
.content-two-col { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
.content-main h2 { font-size: clamp(26px,3.5vw,38px); font-weight: 800; color: var(--blue); margin-bottom: 20px; }
.content-main h3 { font-size: 22px; font-weight: 700; color: var(--blue); margin-bottom: 16px; }
.content-lead { font-size: 18px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
.content-main p { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }

/* Checklist */
.checklist { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.checklist-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--gray-700); line-height: 1.5; }
.checklist-item svg { flex-shrink: 0; margin-top: 2px; }

/* Price Card */
.price-card { background: var(--white); border: 2px solid var(--blue); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: sticky; top: 96px; }
.price-card-header { background: var(--blue); color: var(--white); padding: 28px 24px; text-align: center; }
.price-card-header h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.price-card-header p { font-size: 13px; opacity: 0.8; margin-top: 8px; }
.price-display { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-bottom: 4px; }
.price-from { font-size: 14px; opacity: 0.8; }
.price-amount { font-size: 52px; font-weight: 900; color: var(--gold); line-height: 1; }
.price-card-body { padding: 24px; }
.price-features { list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 10px; }
.price-features li { font-size: 15px; color: var(--gray-700); padding: 4px 0; border-bottom: 1px solid var(--gray-100); }
.price-note { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: 12px; }

/* Info cards grid */
.info-cards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.info-card { background: var(--white); padding: 28px 24px; border-radius: var(--radius); border: 1px solid var(--gray-200); }
.info-card-icon { width: 60px; height: 60px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.info-card h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.info-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.step-card { background: var(--white); padding: 36px 28px; border-radius: var(--radius); text-align: center; border: 1px solid var(--gray-200); position: relative; }
.step-number { width: 56px; height: 56px; border-radius: 50%; background: var(--blue); color: var(--white); font-size: 24px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step-card h3 { font-size: 19px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.step-card p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* Services detail layout */
.service-detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }
.service-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-box { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px 24px; }
.sidebar-box h3 { font-size: 17px; font-weight: 700; color: var(--blue); margin-bottom: 16px; }
.brands-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-tag { background: var(--white); border: 1px solid var(--gray-200); color: var(--gray-700); padding: 6px 14px; border-radius: 50px; font-size: 14px; font-weight: 600; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 20px 0; font-size: 16px; font-weight: 600; color: var(--gray-900); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: inherit; }
.faq-question::after { content: '+'; font-size: 22px; color: var(--blue-light); flex-shrink: 0; }
.faq-question.open::after { content: '−'; }
.faq-answer { display: none; padding: 0 0 20px; font-size: 15px; color: var(--gray-600); line-height: 1.7; }
.faq-answer.open { display: block; }

/* Services page grid */
.services-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-page-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); overflow: hidden; transition: var(--transition); }
.service-page-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: var(--blue-light); }
.service-page-card-icon { padding: 32px 28px 0; }
.service-page-card-icon .service-icon { width: 72px; height: 72px; border-radius: var(--radius); background: rgba(0,99,201,0.08); display: flex; align-items: center; justify-content: center; }
.service-page-card-body { padding: 20px 28px 28px; }
.service-page-card-body h3 { font-size: 20px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.service-page-card-body p { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }

/* Contact page */
.contact-page-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-page-map { border-radius: var(--radius); overflow: hidden; height: 300px; border: 1px solid var(--gray-200); }
.contact-page-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.opening-hours-grid { display: flex; flex-direction: column; gap: 8px; }
.hours-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--gray-100); }
.hours-row span:first-child { color: var(--gray-600); }
.hours-row span:last-child { font-weight: 600; color: var(--gray-900); }

/* Booking/Stripe page */
.booking-layout { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }
.booking-form-wrap { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-lg); }
.booking-form-wrap h2 { font-size: 26px; font-weight: 800; color: var(--blue); margin-bottom: 8px; }
.booking-form-wrap .form-lead { color: var(--gray-600); margin-bottom: 28px; }
.trust-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--gray-200); }
.trust-badge { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gray-600); font-weight: 500; }
.trust-badge svg { color: var(--green); }
.price-summary-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px 24px; }
.price-summary-card h3 { font-size: 17px; font-weight: 700; color: var(--blue); margin-bottom: 16px; }
.price-option { padding: 14px 0; border-bottom: 1px solid var(--gray-200); display: flex; justify-content: space-between; align-items: center; }
.price-option:last-child { border-bottom: none; }
.price-option-name { font-size: 15px; font-weight: 600; color: var(--gray-900); }
.price-option-desc { font-size: 13px; color: var(--gray-600); margin-top: 2px; }
.price-option-price { font-size: 20px; font-weight: 800; color: var(--blue); }

/* Responsive inner pages */
@media (max-width: 1024px) {
    .content-two-col, .service-detail-layout, .booking-layout { grid-template-columns: 1fr; }
    .price-card { position: static; }
    .info-cards-grid { grid-template-columns: repeat(2,1fr); }
    .contact-page-layout { grid-template-columns: 1fr; }
    .services-page-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .info-cards-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .services-page-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 56px 0 48px; }
    .booking-form-wrap { padding: 24px; }
}
@media (max-width: 480px) {
    .info-cards-grid { grid-template-columns: 1fr; }
}
