/* ============================================
   DEFENSIVE RESETS — scoped to .bcgw-page to win over active-theme CSS
   ============================================ */
body.bcgw-page { background: #0a0a0a !important; color: #f5f5f5 !important; font-family: 'Inter', -apple-system, sans-serif !important; margin: 0 !important; }
body.bcgw-page h1, body.bcgw-page h2, body.bcgw-page h3, body.bcgw-page h4, body.bcgw-page h5, body.bcgw-page h6 { color: #f5f5f5 !important; font-weight: 500; line-height: 1.2; margin: 0; opacity: 1 !important; text-shadow: none !important; }
body.bcgw-page p, body.bcgw-page li, body.bcgw-page span, body.bcgw-page label, body.bcgw-page div { color: inherit; }
body.bcgw-page a { color: inherit; text-decoration: none; }
body.bcgw-page button, body.bcgw-page input, body.bcgw-page select, body.bcgw-page textarea { font-family: inherit; color: #f5f5f5; }
body.bcgw-page .nav-cta, body.bcgw-page .btn-primary, body.bcgw-page .form-submit { color: #ffffff !important; }
body.bcgw-page .btn-outline { color: #f5f5f5 !important; }
body.bcgw-page .page-header h1, body.bcgw-page .hero h1 { color: #f5f5f5 !important; }
body.bcgw-page .page-header h1 em, body.bcgw-page .hero h1 em { color: #4a82c9 !important; font-style: italic; }
body.bcgw-page .page-header p, body.bcgw-page .hero-sub { color: #f5f5f5 !important; opacity: 1 !important; }
body.bcgw-page .form-privacy { color: #6a6a6a !important; }
body.bcgw-page .booking-info-card h3, body.bcgw-page .booking-form-wrap h2, body.bcgw-page .booking-guarantee h4 { color: #f5f5f5 !important; }
body.bcgw-page .booking-info-item h4 { color: #6a6a6a !important; }
body.bcgw-page .booking-info-item p, body.bcgw-page .booking-info-item a { color: #f5f5f5 !important; }
body.bcgw-page .booking-form-wrap > p, body.bcgw-page .booking-guarantee p { color: #9a9a9a !important; }
body.bcgw-page img { max-width: 100%; height: auto; display: block; }

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

:root {
  --bg-primary: #0a0a0a;
  --bg-surface: #141414;
  --bg-elevated: #1a1a1a;
  --bg-subtle: #111111;
  --accent: #1b5db4;
  --accent-hover: #1a5567;
  --accent-muted: rgba(27, 93, 180, 0.15);
  --accent-light: #4a82c9;
  --accent-light-muted: rgba(74, 130, 201, 0.12);
  --text-primary: #f5f5f5;
  --text-secondary: #9a9a9a;
  --text-muted: #6a6a6a;
  --border: #2a2a2a;
  --border-focus: #1a5567;
  --error: #e06666;
  --success: #6bbf7b;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --max-width: 1200px;
  --section-padding: 120px;
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* Fade-in */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .fade-in { opacity: 1; transform: none; transition: none; } }
.no-js .fade-in { opacity: 1; transform: none; }

/* Nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 24px; transition: background 0.3s ease, box-shadow 0.3s ease; }
.nav.scrolled, .nav.static { background: rgba(10, 10, 10, 0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 1px 0 var(--border); }
.nav-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 120px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 100px; width: auto; }
@media (max-width: 768px) { .nav-inner { height: 110px; } .nav-logo img { height: 100px; } }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 14px; font-weight: 500; color: #ffffff; transition: color 0.2s; letter-spacing: 0.3px; text-transform: uppercase; }
.nav-links a:hover { color: var(--accent-light); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; background: var(--accent); color: #ffffff !important; font-size: 14px; font-weight: 600; border-radius: 100px; transition: background 0.2s, transform 0.2s; letter-spacing: 0.3px; }
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); margin: 5px 0; transition: 0.3s; }
.nav-mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: rgba(10, 10, 10, 0.98); backdrop-filter: blur(20px); padding: 40px 24px; z-index: 999; }
.nav-mobile-menu.active { display: flex; flex-direction: column; gap: 24px; }
.nav-mobile-menu a { font-size: 24px; font-family: var(--font-heading); color: var(--text-secondary); transition: color 0.2s; }
.nav-mobile-menu a:hover { color: var(--accent); }
.nav-phone-mobile { display: none; color: var(--accent); padding: 8px; }
@media (max-width: 768px) { .nav-phone-mobile { display: flex; align-items: center; } .nav-links { display: none; } .nav-mobile-toggle { display: block; } }

/* Hero */
.hero { position: relative; min-height: 50vh; padding: 120px 24px 80px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('https://wordpress-1248419-6337471.cloudwaysapps.com/wp-content/uploads/2026/04/Editorial_photograph_at_202604162148.jpeg'); background-size: cover; background-position: center; filter: brightness(0.3); }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.6) 70%, rgba(10,10,10,1) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 0 24px; }
.hero h1 { font-family: var(--font-heading); font-size: clamp(36px, 5.5vw, 64px); font-weight: 500; line-height: 1.15; letter-spacing: -1px; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub { font-size: clamp(15px, 1.8vw, 18px); color: var(--text-primary); line-height: 1.7; max-width: 580px; margin: 0 auto 32px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-phone { margin-top: 20px; font-size: 15px; color: var(--text-secondary); }
.hero-phone a { color: var(--text-primary); font-weight: 500; transition: color 0.2s; }
.hero-phone a:hover { color: var(--accent); }

/* Page header */
.page-header { padding: 160px 24px 60px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background-image: url('https://wordpress-1248419-6337471.cloudwaysapps.com/wp-content/uploads/2026/04/Editorial_photograph_shot_202604162143.jpeg'); background-size: cover; background-position: center; filter: brightness(0.2); z-index: -2; }
.page-header::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(74,130,201,0.15) 0%, transparent 70%); z-index: -1; }
.page-header-label { display: inline-block; font-size: 12px; font-weight: 600; color: var(--accent-light); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
.page-header h1 { font-family: var(--font-heading); font-size: clamp(40px, 6vw, 64px); font-weight: 500; line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px; }
.page-header h1 em { font-style: italic; color: var(--accent-light); }
.page-header p { font-size: 18px; color: var(--text-primary); max-width: 580px; margin: 0 auto; line-height: 1.7; }

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 16px 36px; background: var(--accent); color: #ffffff; font-size: 15px; font-weight: 600; border-radius: 100px; border: none; cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; letter-spacing: 0.3px; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(27,93,180,0.3); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 16px 36px; background: transparent; color: var(--text-primary); font-size: 15px; font-weight: 500; border-radius: 100px; border: 1px solid var(--border); cursor: pointer; transition: border-color 0.2s, background 0.2s; letter-spacing: 0.3px; }
.btn-outline:hover { border-color: var(--accent); background: var(--accent-muted); }

/* Section headers */
.section-header { margin-bottom: 64px; }
.section-label { display: inline-block; font-size: 12px; font-weight: 600; color: var(--accent-light); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
.section-title { font-family: var(--font-heading); font-size: clamp(36px, 5vw, 52px); font-weight: 500; line-height: 1.15; letter-spacing: -0.5px; }
.section-subtitle { font-size: 18px; color: var(--text-secondary); max-width: 600px; margin-top: 16px; line-height: 1.7; }
.section-cta { text-align: center; margin-top: 48px; }
.section-cta a { font-size: 15px; font-weight: 500; color: var(--accent); transition: color 0.2s; letter-spacing: 0.3px; }
.section-cta a:hover { color: var(--accent-hover); }
.section-cta a span { transition: transform 0.2s; display: inline-block; }
.section-cta a:hover span { transform: translateX(4px); }

/* Testimonials grid */
.testimonials { padding: var(--section-padding) 24px; background: var(--bg-surface); }
.testimonials-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 20px; }
.testimonial-card-stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }
.testimonial-card blockquote { font-family: var(--font-heading); font-size: 17px; font-style: italic; color: var(--text-primary); line-height: 1.6; flex-grow: 1; }
.testimonial-card-author { font-size: 13px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* Intro */
.intro { padding: var(--section-padding) 24px; }
.intro-inner { max-width: var(--max-width); margin: 0 auto; }
.intro-header { text-align: center; margin-bottom: 48px; }
.intro-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 64px; }
.intro h2 { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 40px); font-weight: 500; color: var(--accent); margin-bottom: 24px; line-height: 1.2; }
.intro .section-title { font-family: var(--font-heading); font-size: clamp(32px, 4.5vw, 48px); font-weight: 500; color: var(--text-primary); margin-bottom: 32px; line-height: 1.15; }
.intro p { font-size: 17px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }
.intro p:last-child { margin-bottom: 0; }
.intro .lead { font-size: 19px; color: var(--text-primary); margin-bottom: 32px; }
@media (max-width: 768px) { .intro-columns { grid-template-columns: 1fr; gap: 32px; } }

/* Trust bar */
.trust-bar { padding: 60px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-bar-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.trust-item { text-align: center; }
.trust-number { font-family: var(--font-heading); font-size: 48px; font-weight: 500; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.trust-label { font-size: 14px; font-weight: 500; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 2px; }

/* About */
.about { padding: var(--section-padding) 24px; background: var(--bg-subtle); position: relative; overflow: hidden; }
.about::before { content: ''; position: absolute; inset: 0; background-image: url('https://wordpress-1248419-6337471.cloudwaysapps.com/wp-content/uploads/2026/04/Extreme_close-up_panoramic_202604162138.jpeg'); background-size: cover; background-position: center; filter: brightness(0.18); z-index: 0; }
.about > * { position: relative; z-index: 1; }
.about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: center; }
.about-image { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-border { position: absolute; inset: -1px; border: 1px solid var(--border); border-radius: var(--radius); pointer-events: none; }
.about-content { display: flex; flex-direction: column; gap: 24px; }
.about-content p { font-size: 16px; color: var(--text-secondary); line-height: 1.75; }
.about-content h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 600; color: var(--text-primary); margin-top: 8px; }
.about-content ul { display: flex; flex-direction: column; gap: 12px; }
.about-content ul li { font-size: 15px; color: var(--text-secondary); line-height: 1.6; display: flex; align-items: flex-start; gap: 10px; }
.about-content ul li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 8px; }
.about-content ul li strong { color: var(--text-primary); }

/* Services detail page */
.services-detail { padding: 80px 24px 60px; }
.services-intro { max-width: 820px; margin: 0 auto 72px; text-align: center; }
.services-intro h2 { font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 36px); font-weight: 500; color: var(--accent-light); margin-bottom: 20px; line-height: 1.25; }
.services-intro p { font-size: 17px; color: var(--text-secondary); line-height: 1.8; }
.service-group { max-width: var(--max-width); margin: 0 auto 80px; }
.service-group > h2 { font-family: var(--font-heading); font-size: clamp(26px, 3vw, 32px); font-weight: 500; color: var(--text-primary); margin-bottom: 12px; letter-spacing: -0.3px; }
.service-group > .group-lead { font-size: 15px; color: var(--text-muted); font-style: italic; margin-bottom: 32px; }
.service-group > .group-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 900px) { .service-group > .group-grid { grid-template-columns: 1fr; } }
.service-detail { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 30px; transition: border-color 0.3s; }
.service-detail:hover { border-color: rgba(27, 93, 180, 0.3); }
.service-detail h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 500; margin-bottom: 10px; color: var(--text-primary); }
.service-detail .tagline { font-size: 14px; font-weight: 600; color: var(--accent-light); letter-spacing: 0.3px; margin-bottom: 12px; }
.service-detail p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; }
.service-detail ul { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.service-detail ul li { font-size: 14px; color: var(--text-secondary); line-height: 1.55; display: flex; align-items: flex-start; gap: 10px; }
.service-detail ul li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 7px; }
.service-detail ul li strong { color: var(--text-primary); }
.service-detail .price-line { font-size: 15px; color: var(--accent); font-weight: 600; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.strings-stock { max-width: 820px; margin: 0 auto 40px; background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.strings-stock h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 500; margin-bottom: 16px; }
.strings-stock ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 15px; color: var(--text-secondary); }
.strings-stock ul li::before { content: '·'; color: var(--accent); margin-right: 10px; }
.services-cta { max-width: 700px; margin: 80px auto 40px; text-align: center; padding: 48px 32px; background: linear-gradient(135deg, var(--accent-muted), var(--accent-light-muted)); border: 1px solid rgba(74, 130, 201, 0.25); border-radius: var(--radius); }
.services-cta h2 { font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 36px); font-weight: 500; margin-bottom: 14px; line-height: 1.25; }
.services-cta p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.services-cta .address { font-size: 13px; color: var(--text-muted); margin-top: 20px; }

/* About page */
.about-page { padding: 80px 24px 80px; }
.about-page-inner { max-width: 960px; margin: 0 auto; }
.about-page h2 { font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 36px); font-weight: 500; color: var(--accent-light); margin-bottom: 24px; line-height: 1.25; }
.about-page .lead { font-size: 19px; color: var(--text-primary); line-height: 1.7; margin-bottom: 28px; }
.about-page p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; }
.about-page p strong { color: var(--text-primary); font-weight: 600; }
.about-page-list { list-style: none; padding: 0; margin: 8px 0 32px; display: flex; flex-direction: column; gap: 16px; }
.about-page-list li { font-size: 16px; color: var(--text-secondary); line-height: 1.6; padding-left: 20px; position: relative; }
.about-page-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); position: absolute; left: 0; top: 10px; }
.about-page-list li strong { color: var(--text-primary); }
.about-portrait { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; margin: 60px 0 40px; }
@media (max-width: 768px) { .about-portrait { grid-template-columns: 1fr; } }
.about-portrait figure { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.about-portrait img { width: 100%; height: auto; display: block; }
.about-portrait figcaption { margin-top: 12px; font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.about-portrait .bio { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.about-signature { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.about-signature .name { font-family: var(--font-heading); font-size: 22px; font-weight: 500; color: var(--text-primary); margin-bottom: 4px; }
.about-signature .title { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Services */
.services { padding: var(--section-padding) 24px; background: var(--bg-subtle); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 32px; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--accent); opacity: 0; transition: opacity 0.3s; }
.service-card:hover { border-color: rgba(27, 93, 180, 0.3); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 64px; height: 64px; border-radius: 14px; background: var(--accent-muted); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--accent-light); }
.service-icon svg { width: 36px; height: 36px; stroke: currentColor; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 500; margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }
.service-price { font-size: 14px; font-weight: 600; color: var(--accent); letter-spacing: 0.5px; }

/* Process */
.process { padding: var(--section-padding) 24px; }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 64px; }
.process-step { display: flex; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--border); }
.process-step:last-child { border-bottom: none; }
.step-number { font-family: var(--font-heading); font-size: 36px; font-weight: 500; color: var(--accent); line-height: 1; flex-shrink: 0; width: 48px; opacity: 0.7; }
.step-content h4 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.step-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* Pricing */
.pricing { padding: var(--section-padding) 24px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-note { max-width: var(--max-width); margin: 32px auto 0; text-align: center; font-size: 12px; color: var(--text-muted); line-height: 1.6; padding: 0 24px; }
.pricing-note em { color: var(--text-secondary); font-style: normal; }
.pricing-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 28px; transition: border-color 0.3s; }
.pricing-card:hover { border-color: rgba(27, 93, 180, 0.3); }
.pricing-card.featured { border-color: var(--accent); position: relative; }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #0a0a0a; padding: 4px 16px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }
.pricing-card h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 500; margin-bottom: 8px; }
.pricing-from { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-amount { font-family: var(--font-heading); font-size: 40px; font-weight: 500; color: var(--accent); margin-bottom: 24px; line-height: 1; }
.pricing-amount span { font-size: 16px; color: var(--text-secondary); font-family: var(--font-body); font-weight: 400; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; }
.pricing-features li { font-size: 14px; color: var(--text-secondary); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.pricing-features li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 7px; }

/* Contact */
.contact { padding: var(--section-padding) 24px; background: var(--bg-subtle); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 40px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-muted); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); }
.contact-item h4 { font-size: 14px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.contact-item p, .contact-item a { font-size: 18px; font-weight: 500; color: var(--text-primary); transition: color 0.2s; }
.contact-item a:hover { color: var(--accent); }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.6) invert(0.88) contrast(0.9) brightness(0.9); }

/* CTA banner */
.cta-banner { padding: 100px 24px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background-image: url('https://wordpress-1248419-6337471.cloudwaysapps.com/wp-content/uploads/2026/04/Ultrawide_macro_photo_202604162148.jpeg'); background-size: cover; background-position: center; filter: brightness(0.25); }
.cta-banner::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(27,93,180,0.2) 0%, rgba(27,93,180,0.08) 40%, transparent 70%); }
.cta-banner-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.cta-banner h2 { font-family: var(--font-heading); font-size: clamp(32px, 4vw, 44px); font-weight: 500; margin-bottom: 16px; line-height: 1.2; }
.cta-banner p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }

/* Booking */
.booking { padding: 80px 24px 120px; }
.booking-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .booking-grid { grid-template-columns: 1fr; gap: 40px; } }
.booking-info { position: sticky; top: 110px; }
.booking-info-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; margin-bottom: 24px; }
.booking-info-card h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 500; margin-bottom: 20px; }
.booking-info-list { display: flex; flex-direction: column; gap: 20px; }
.booking-info-item { display: flex; gap: 14px; align-items: flex-start; }
.booking-info-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--accent-muted); display: flex; align-items: center; justify-content: center; color: var(--accent-light); flex-shrink: 0; }
.booking-info-item h4 { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.booking-info-item p, .booking-info-item a { font-size: 15px; font-weight: 500; color: var(--text-primary); line-height: 1.5; transition: color 0.2s; }
.booking-info-item a:hover { color: var(--accent-light); }
.booking-guarantee { background: linear-gradient(135deg, var(--accent-muted), var(--accent-light-muted)); border: 1px solid rgba(74, 130, 201, 0.25); border-radius: var(--radius); padding: 24px 28px; display: flex; gap: 14px; align-items: flex-start; }
.booking-guarantee-icon { color: var(--accent-light); flex-shrink: 0; margin-top: 2px; }
.booking-guarantee h4 { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.booking-guarantee p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* Booking form */
.booking-form-wrap { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px 44px; }
@media (max-width: 600px) { .booking-form-wrap { padding: 32px 24px; } }
.booking-form-wrap h2 { font-family: var(--font-heading); font-size: 28px; font-weight: 500; margin-bottom: 8px; }
.booking-form-wrap > p { font-size: 15px; color: var(--text-secondary); margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.form-field { margin-bottom: 24px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; letter-spacing: 0.3px; }
.form-field label .required { color: var(--accent-light); margin-left: 2px; }
.form-field .sublabel { display: block; font-size: 11px; font-weight: 500; color: var(--text-muted); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-field input[type="text"], .form-field input[type="email"], .form-field input[type="tel"], .form-field select, .form-field textarea { width: 100%; background: var(--bg-primary); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; font-family: var(--font-body); font-size: 15px; color: var(--text-primary); transition: border-color 0.2s, background 0.2s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--border-focus); background: var(--bg-elevated); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-muted); }
.form-field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a82c9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; cursor: pointer; }
.form-field select option { background: var(--bg-surface); color: var(--text-primary); }
.form-field textarea { min-height: 120px; resize: vertical; font-family: var(--font-body); }
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-option { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--bg-primary); border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.radio-option:hover { border-color: var(--accent); background: var(--bg-elevated); }
.radio-option input[type="radio"] { appearance: none; width: 18px; height: 18px; border: 2px solid var(--border); border-radius: 50%; cursor: pointer; position: relative; flex-shrink: 0; transition: border-color 0.2s; }
.radio-option input[type="radio"]:checked { border-color: var(--accent-light); }
.radio-option input[type="radio"]:checked::after { content: ''; position: absolute; inset: 3px; background: var(--accent-light); border-radius: 50%; }
.radio-option:has(input:checked) { border-color: var(--accent); background: var(--accent-muted); }
.radio-option-content { flex-grow: 1; }
.radio-option-label { font-size: 15px; font-weight: 600; color: var(--text-primary); display: block; margin-bottom: 2px; }
.radio-option-time { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.form-submit { width: 100%; background: var(--accent); color: #ffffff; border: none; padding: 18px 36px; font-family: var(--font-body); font-size: 16px; font-weight: 600; border-radius: 100px; cursor: pointer; letter-spacing: 0.3px; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.form-submit:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(27, 93, 180, 0.4); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success { display: none; background: rgba(107, 191, 123, 0.1); border: 1px solid rgba(107, 191, 123, 0.3); border-radius: var(--radius); padding: 32px; text-align: center; }
.form-success.active { display: block; }
.form-success-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(107, 191, 123, 0.15); color: var(--success); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-success h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 500; color: var(--text-primary); margin-bottom: 10px; }
.form-success p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.form-error { display: none; background: rgba(224, 102, 102, 0.1); border: 1px solid rgba(224, 102, 102, 0.3); border-radius: var(--radius-sm); padding: 12px 16px; margin-bottom: 20px; color: var(--error); font-size: 14px; }
.form-error.active { display: block; }
.form-privacy { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 16px; line-height: 1.5; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* Footer */
.footer { padding: 48px 24px; border-top: 1px solid var(--border); }
.footer-inner { max-width: var(--max-width); margin: 0 auto; display: flex; flex-direction: column; gap: 32px; align-items: center; text-align: center; }
.footer-logo-img { height: 100px; width: auto; }
.footer-tagline { font-size: 14px; color: var(--text-secondary); max-width: 400px; line-height: 1.6; }
.footer-contact { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; font-size: 14px; color: var(--text-secondary); }
.footer-contact a { color: var(--text-primary); transition: color 0.2s; }
.footer-contact a:hover { color: var(--accent-light); }
.footer-contact span.sep { color: var(--border); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text-primary); }
.footer-copy { font-size: 13px; color: var(--text-muted); }

/* Mobile sticky CTA */
.mobile-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; padding: 12px 16px; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-top: 1px solid var(--border); }
.mobile-sticky-cta a { display: block; text-align: center; padding: 14px; background: var(--accent); color: #ffffff; font-size: 15px; font-weight: 600; border-radius: 100px; letter-spacing: 0.3px; }
@media (max-width: 768px) { .mobile-sticky-cta { display: block; } .footer { padding-bottom: 80px; } }

/* Responsive */
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } .pricing-grid { grid-template-columns: repeat(2, 1fr); } .process-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { :root { --section-padding: 80px; } .services-grid { grid-template-columns: 1fr; } .about-grid { grid-template-columns: 1fr; gap: 40px; } .about-image { aspect-ratio: 16/10; position: static; } .contact-grid { grid-template-columns: 1fr; } .pricing-grid { grid-template-columns: 1fr; } .trust-bar-inner { grid-template-columns: 1fr; gap: 32px; } .trust-item { padding: 20px 0; border-bottom: 1px solid var(--border); } .trust-item:last-child { border-bottom: none; } .footer-inner { flex-direction: column; text-align: center; } .hero h1 { letter-spacing: -0.5px; } }
@media (max-width: 480px) { .hero-buttons { flex-direction: column; align-items: stretch; } .btn-primary, .btn-outline { justify-content: center; } }
