*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0B1D3A;
  --navy-light: #132b52;
  --white: #FFFFFF;
  --grey: #F4F6F9;
  --grey-dark: #6B7280;
  --orange: #F47B20;
  --orange-dark: #D96A12;
  --orange-light: #FFF3E6;
  --text: #1F2937;
  --text-light: #4B5563;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1200px;

}
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.gradient-text { background: linear-gradient(135deg, var(--orange), #ff9f4a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 32px; border-radius: var(--radius-sm); font-weight: 600; font-size: 16px; border: none; cursor: pointer; transition: var(--transition); font-family: var(--font); text-align: center; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { background: var(--white); color: var(--navy); border: 2px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-cta { background: var(--orange); color: var(--white); padding: 18px 40px; font-size: 18px; }
.btn-cta:hover { background: var(--orange-dark); }
.btn-lg { padding: 18px 40px; font-size: 18px; }
.btn-sm { padding: 12px 24px; font-size: 14px; }
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #1DA851; }
.phone-link { color: var(--orange); font-weight: 700; white-space: nowrap; }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--white); box-shadow: 0 1px 3px rgba(0,0,0,0.06); transition: var(--transition); }
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; color: var(--navy); }
.logo-icon { width: 40px; height: 40px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; }
.logo span { color: var(--orange); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--text); transition: var(--transition); position: relative; }
.nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--orange); transition: var(--transition); }
.nav a:hover, .nav a.active { color: var(--orange); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav-cta { background: var(--orange); color: var(--white) !important; padding: 10px 24px; border-radius: var(--radius-sm); font-weight: 600 !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-5px); }

/* Hero */
.hero { padding: 140px 0 100px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: var(--white); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -30%; width: 800px; height: 800px; background: radial-gradient(circle, rgba(244,123,32,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-pattern { position: absolute; inset: 0; opacity: 0.03; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); padding: 8px 16px; border-radius: 50px; font-size: 11px; margin-bottom: 24px; }
.hero-badge-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 { font-size: 42px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; letter-spacing: -1px; }
.hero p { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 540px; line-height: 1.6; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat strong { font-size: 22px; font-weight: 800; display: block; color: var(--orange); }
.hero-stat span { font-size: 11px; color: rgba(255,255,255,0.6); }
.hero-image { position: relative; }
.hero-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.hero-image-badge { position: absolute; bottom: -20px; left: -20px; background: var(--orange); color: white; padding: 16px 24px; border-radius: var(--radius-sm); text-align: center; font-weight: 700; font-size: 11px; box-shadow: var(--shadow); }
.hero-image-badge strong { font-size: 22px; display: block; }

/* Hero v2 (for inner pages) */
.hero-sm { padding: 164px 0 60px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: var(--white); text-align: center; }
.hero-sm h1 { font-size: 42px; font-weight: 800; margin-bottom: 12px; }
.hero-sm p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 640px; margin: 0 auto; }
.breadcrumbs { display: flex; justify-content: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumbs a { color: var(--orange); }
.breadcrumbs a:hover { text-decoration: underline; }

/* Sections */
section { padding: 80px 0; }
.section-title { font-size: 36px; font-weight: 800; color: var(--navy); margin-bottom: 16px; text-align: center; }
.section-subtitle { font-size: 18px; color: var(--text-light); text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-label { display: inline-flex; align-items: center; gap: 8px; background: var(--orange-light); color: var(--orange); padding: 6px 14px; border-radius: 50px; font-size: 13px; font-weight: 600; }

/* Trust Badges */
.trust-badges { background: var(--grey); padding: 24px 0; }
.trust-badges-inner { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text-light); }
.trust-badge svg { width: 28px; height: 28px; flex-shrink: 0; }
.trust-badge-icon { width: 40px; height: 40px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }

/* Services Overview */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid #E5E7EB; border-radius: var(--radius); padding: 32px; transition: var(--transition); }
.service-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card-icon { width: 56px; height: 56px; background: var(--orange-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 24px; color: var(--orange); }
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.service-card-link { color: var(--orange); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.service-card-link:hover { gap: 10px; }

/* Why Choose Us */
.why-choose { background: var(--grey); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { text-align: center; padding: 40px 24px; background: var(--white); border-radius: var(--radius); box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.why-icon { width: 64px; height: 64px; margin: 0 auto 20px; background: var(--navy); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--orange); }
.why-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-light); }

/* Reviews / Testimonials */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--grey); border-radius: var(--radius); padding: 32px; position: relative; }
.testimonial-stars { color: #f59e0b; font-size: 18px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
.testimonial-name { font-weight: 600; font-size: 15px; color: var(--navy); }
.testimonial-location { font-size: 13px; color: var(--text-light); }
.testimonial-quote { position: absolute; top: 20px; right: 24px; font-size: 64px; color: var(--orange); opacity: 0.15; line-height: 1; font-family: Georgia, serif; }

/* Before & After Gallery */
.gallery { background: var(--grey); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(11,29,58,0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); color: white; font-weight: 600; font-size: 14px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-badge { position: absolute; top: 12px; left: 12px; background: var(--orange); color: white; padding: 4px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; }

/* Service Areas */
.service-areas { background: var(--white); }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.area-tag { display: flex; align-items: center; gap: 8px; background: var(--grey); padding: 12px 18px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; min-height: 44px; transition: var(--transition); cursor: default; }
.area-tag:hover { background: var(--orange-light); color: var(--orange); }
.area-tag svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--orange); }
.area-map { margin-top: 32px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.area-map iframe { width: 100%; height: 400px; border: 0; }

/* FAQ */
.faq { background: var(--grey); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius-sm); border: 1px solid #E5E7EB; overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; background: none; border: none; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--navy); text-align: left; font-family: var(--font); transition: var(--transition); }
.faq-question:hover { color: var(--orange); }
.faq-question svg { transition: var(--transition); flex-shrink: 0; }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-light); line-height: 1.7; font-size: 15px; }
.faq-item.active .faq-answer-inner { padding: 0 24px 20px; }

/* Booking / Contact Form */
.booking { background: var(--white); }
.booking-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.booking-info h2 { text-align: left; }
.booking-info p { color: var(--text-light); margin-bottom: 24px; }
.booking-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.booking-detail-icon { width: 48px; height: 48px; background: var(--orange-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--orange); font-size: 20px; }
.booking-detail h4 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.booking-detail p { font-size: 14px; margin-bottom: 0; }
.booking-form { background: var(--grey); padding: 40px; border-radius: var(--radius); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 2px solid #E5E7EB; border-radius: var(--radius-sm); font-size: 15px; font-family: var(--font); transition: var(--transition); background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,123,32,0.1); }
.form-group textarea { height: 120px; resize: vertical; }
.form-error { color: #dc2626; font-size: 13px; margin-top: 4px; display: none; }
.form-success { background: #d1fae5; color: #065f46; padding: 16px; border-radius: var(--radius-sm); text-align: center; font-weight: 600; display: none; }

/* Emergency CTA Banner */
.emergency-cta { background: linear-gradient(135deg, var(--navy), #0a1628); color: var(--white); text-align: center; padding: 64px 0; }
.emergency-cta h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.emergency-cta p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.emergency-cta .btn { font-size: 20px; padding: 20px 48px; }
.emergency-cta .small-text { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 16px; }

/* CTA Banner (light) */
.cta-banner { background: linear-gradient(135deg, var(--orange), #ff9f4a); color: var(--white); text-align: center; padding: 56px 0; }
.cta-banner h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.cta-banner p { font-size: 18px; opacity: 0.9; margin-bottom: 24px; }
.cta-banner .btn { background: var(--navy); color: var(--white); }
.cta-banner .btn:hover { background: #0a1628; }

/* Reviews Page Specific */
.reviews-header { text-align: center; margin-bottom: 48px; }
.reviews-rating { font-size: 64px; font-weight: 800; color: var(--navy); }
.reviews-stars-large { color: #f59e0b; font-size: 32px; margin: 8px 0; }
.reviews-count { color: var(--text-light); font-size: 16px; }
.reviews-filter { display: flex; justify-content: center; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.reviews-filter button { padding: 10px 24px; border: 2px solid #E5E7EB; background: var(--white); border-radius: 50px; font-size: 14px; font-weight: 500; cursor: pointer; transition: var(--transition); font-family: var(--font); }
.reviews-filter button:hover, .reviews-filter button.active { border-color: var(--orange); background: var(--orange-light); color: var(--orange); }
.reviews-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.review-card { background: var(--grey); border-radius: var(--radius); padding: 32px; }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.review-stars { color: #f59e0b; font-size: 16px; }
.review-date { font-size: 13px; color: var(--text-light); }
.review-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 16px; }
.review-author { font-weight: 600; color: var(--navy); }
.review-service { font-size: 13px; color: var(--orange); font-weight: 500; }

/* About Page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.about-image-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.about-stat { text-align: center; background: var(--grey); padding: 16px; border-radius: var(--radius-sm); }
.about-stat strong { font-size: 24px; color: var(--orange); display: block; }
.about-stat span { font-size: 13px; color: var(--text-light); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.team-card { text-align: center; background: var(--grey); border-radius: var(--radius); padding: 32px 24px; }
.team-avatar { width: 96px; height: 96px; border-radius: 50%; background: var(--navy); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; color: white; font-size: 36px; font-weight: 700; }
.team-card h4 { font-size: 18px; font-weight: 700; color: var(--navy); }
.team-card p { font-size: 14px; color: var(--text-light); }

/* Service Page Specific */
.service-hero-content { max-width: 800px; }
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.service-detail-content h2 { font-size: 28px; color: var(--navy); margin: 32px 0 16px; }
.service-detail-content h2:first-child { margin-top: 0; }
.service-detail-content p { margin-bottom: 16px; color: var(--text-light); line-height: 1.7; }
.service-detail-content ul { margin-bottom: 16px; padding-left: 20px; }
.service-detail-content ul li { color: var(--text-light); margin-bottom: 8px; list-style: disc; }
.service-sidebar { position: sticky; top: 96px; }
.service-sidebar-card { background: var(--grey); border-radius: var(--radius); padding: 32px; margin-bottom: 24px; }
.service-sidebar-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.service-sidebar-card .btn { width: 100%; }
.service-sidebar-phone { text-align: center; margin-top: 16px; }
.service-sidebar-phone a { font-size: 24px; font-weight: 800; color: var(--orange); }
.service-sidebar-phone p { font-size: 13px; color: var(--text-light); margin-bottom: 4px; }
.service-pricing { background: var(--grey); border-radius: var(--radius); padding: 24px; }
.service-pricing-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #E5E7EB; }
.service-pricing-item:last-child { border-bottom: none; }
.service-pricing-item span:first-child { font-weight: 500; }
.service-pricing-item span:last-child { font-weight: 700; color: var(--orange); }

/* Service Area Page */
.area-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.area-card { background: var(--grey); padding: 20px; border-radius: var(--radius-sm); transition: var(--transition); display: block; text-decoration: none; }
.area-card:hover { background: var(--orange-light); transform: translateY(-2px); }
.area-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.area-card p { font-size: 13px; color: var(--text-light); }

/* Floating Button */
.floating-btn { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; flex-direction: column; gap: 12px; }
.floating-btn a { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; box-shadow: var(--shadow-lg); transition: var(--transition); font-size: 24px; }
.floating-btn a:hover { transform: scale(1.1); }
.floating-phone { background: var(--orange); }
.floating-email { background: var(--navy); }
.floating-whatsapp { background: #25D366; }

/* Footer */
/* Conversion Bar */
.conversion-bar { background: var(--orange); border-top: 3px solid var(--orange-dark); padding: 20px 0; text-align: center; }
.conversion-bar p { color: var(--white); font-size: 14px; margin-bottom: 0; }
.conversion-bar .conversion-link { display: inline-block; background: var(--white); color: var(--navy); font-weight: 700; font-size: 14px; padding: 8px 20px; border-radius: 6px; text-decoration: none; margin-left: 8px; transition: var(--transition); }
.conversion-bar .conversion-link:hover { background: var(--grey); color: var(--navy); }

.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-about h3 { color: var(--white); font-size: 20px; font-weight: 800; margin-bottom: 16px; }
.footer-about p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.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; transition: var(--transition); }
.footer-social a:hover { background: var(--orange); }
.footer h4 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; transition: var(--transition); display: inline-block; padding: 4px 0; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 48px; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* Service nav tabs */
.service-tabs { display: flex; gap: 0; background: var(--grey); border-radius: var(--radius); overflow: hidden; margin-bottom: 48px; }
.service-tab { flex: 1; padding: 16px; text-align: center; font-weight: 600; font-size: 14px; cursor: pointer; transition: var(--transition); border: none; background: none; font-family: var(--font); }
.service-tab:hover { background: rgba(244,123,32,0.08); color: var(--orange); }
.service-tab.active { background: var(--orange); color: var(--white); }

/* Process Steps */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 48px 0; }
.process-step { text-align: center; position: relative; }
.process-step:not(:last-child)::after { content: ''; position: absolute; top: 28px; right: -12px; width: 24px; height: 2px; background: var(--orange); opacity: 0.3; }
.process-step-num { width: 56px; height: 56px; margin: 0 auto 16px; background: var(--orange); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; }
.process-step h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-light); }

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 { font-size: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-wrapper { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { gap: 40px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .area-list-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 24px; gap: 16px; box-shadow: var(--shadow); max-height: calc(100vh - 72px); overflow-y: auto; }
  .nav.open { display: flex; }
  .hamburger { display: flex; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  section { padding: 48px 0; }
  .section-title { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
  .booking-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-sm h1 { font-size: 28px; }
  .hero-stat strong { font-size: 22px; }
  .team-grid { grid-template-columns: 1fr; }
  .area-list-grid { grid-template-columns: 1fr; }
  .filter-buttons { flex-wrap: wrap; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-image-stats { grid-template-columns: repeat(3, 1fr); }
  .floating-btn { bottom: 16px; right: 16px; }
  .floating-btn a { width: 48px; height: 48px; font-size: 20px; }
  .service-tabs { flex-wrap: wrap; }
  .service-tab { flex: 1 1 calc(50% - 4px); }
  .emergency-cta h2 { font-size: 28px; }
  .cta-banner h2 { font-size: 28px; }
  .reviews-rating { font-size: 48px; }
  .landing-hero { padding: 120px 0 60px; }
  .landing-hero h1 { font-size: 32px; }
  .landing-hero p { font-size: 16px; margin-bottom: 28px; }
  .steps-grid { grid-template-columns: 1fr; }
  .landing-form { padding: 24px; }
  .pricing-card { padding: 24px; }
  .pricing-amount { font-size: 36px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 28px; letter-spacing: 0; }
  .hero p { font-size: 15px; }
  .hero-sm h1 { font-size: 24px; }
  .hero-sm p { font-size: 15px; }
  .logo { font-size: 18px; }
  .container { padding: 0 16px; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 24px; }
  .section-subtitle { font-size: 15px; margin-bottom: 32px; }
  .hero-stat strong { font-size: 20px; }
  .service-card { padding: 24px; }
  .service-card-icon { width: 48px; height: 48px; font-size: 20px; }
  .service-card h3 { font-size: 18px; }
  .service-card p { font-size: 14px; }
  .why-card { padding: 32px 16px; }
  .why-icon { width: 56px; height: 56px; }
  .why-card h3 { font-size: 16px; }
  .testimonial-card { padding: 24px; }
  .emergency-cta h2 { font-size: 24px; }
  .emergency-cta p { font-size: 15px; }
  .cta-banner h2 { font-size: 24px; }
  .cta-banner p { font-size: 15px; }
  .reviews-rating { font-size: 40px; }
  .reviews-filter button { padding: 8px 16px; font-size: 13px; }
  .review-card { padding: 24px; }
  .area-tag { padding: 10px 14px; font-size: 13px; }
  .faq-question { padding: 16px; font-size: 15px; }
  .faq-answer-inner { padding: 0 16px 16px; font-size: 14px; }
  .faq-item.active .faq-answer-inner { padding: 0 16px 16px; }
  .service-tab { flex: 1 1 100%; font-size: 13px; padding: 12px; }
  .area-map iframe { height: 280px; }
  .about-image-stats { grid-template-columns: 1fr; gap: 8px; }
  .hero-image-badge { position: relative; bottom: 0; left: 0; margin-top: -20px; width: calc(100% - 32px); }
  .pricing-card { padding: 20px; }
  .pricing-amount { font-size: 32px; }
  .landing-hero { padding: 100px 0 40px; }
  .landing-hero h1 { font-size: 24px; letter-spacing: 0; margin-bottom: 16px; }
  .landing-hero p { font-size: 14px; margin-bottom: 24px; }
  .needs-list { grid-template-columns: 1fr; }
  .need-item { padding: 12px 16px; font-size: 14px; }
  .landing-form { padding: 16px; }
  .step-card { padding: 24px 16px; }
  .booking-form { padding: 16px; }
  .booking-detail-icon { width: 40px; height: 40px; font-size: 16px; }
  .hero-badge { font-size: 12px; padding: 6px 12px; }
  .hero-stat span { font-size: 12px; }
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Map placeholder */
.map-placeholder { background: var(--grey); border-radius: var(--radius); height: 400px; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 16px; }
.map-placeholder iframe { width: 100%; height: 100%; border: 0; border-radius: var(--radius); }

/* Guarantee badge */
.guarantee-badge { display: inline-flex; align-items: center; gap: 8px; background: #d1fae5; color: #065f46; padding: 8px 16px; border-radius: 50px; font-size: 14px; font-weight: 600; }

/* Loading state */
.btn.loading { pointer-events: none; opacity: 0.7; }
.btn.loading::after { content: ''; width: 16px; height: 16px; border: 2px solid transparent; border-top-color: currentColor; border-radius: 50%; animation: spin 0.6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Price highlight */
.price-highlight { font-size: 14px; background: var(--orange-light); color: var(--orange); padding: 2px 10px; border-radius: 4px; font-weight: 600; }

/* Disclosures */
.disclosure { font-size: 12px; color: var(--text-light); margin-top: 12px; }

/* Landing Page */
.landing-hero { padding: 160px 0 80px; background: linear-gradient(135deg, var(--navy) 0%, #0a1628 100%); color: var(--white); position: relative; overflow: hidden; text-align: center; }
.landing-hero h1 { font-size: 42px; font-weight: 800; line-height: 1.15; margin-bottom: 24px; letter-spacing: -1px; }
.landing-hero p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 640px; margin: 0 auto 32px; line-height: 1.7; }
.landing-hero .btn-lg { margin-bottom: 12px; }
.pricing-card { background: var(--white); border: 2px solid #E5E7EB; border-radius: var(--radius); padding: 40px; text-align: center; transition: var(--transition); }
.pricing-card.featured { border-color: var(--orange); box-shadow: 0 4px 24px rgba(244,123,32,0.15); }
.pricing-amount { font-size: 48px; font-weight: 800; color: var(--navy); margin: 16px 0 8px; }
.pricing-amount span { font-size: 16px; font-weight: 400; color: var(--text-light); }
.pricing-detail { color: var(--text-light); font-size: 14px; margin-bottom: 24px; line-height: 1.6; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 32px; text-align: left; }
.pricing-features li { padding: 10px 0; display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text); border-bottom: 1px solid #F3F4F6; }
.pricing-features li::before { content: '✓'; color: var(--orange); font-weight: 700; font-size: 16px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.step-card { text-align: center; padding: 32px 20px; background: var(--grey); border-radius: var(--radius); }
.step-num { width: 48px; height: 48px; margin: 0 auto 16px; background: var(--orange); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; }
.step-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.needs-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; margin-top: 32px; }
.need-item { display: flex; align-items: center; gap: 12px; background: var(--grey); padding: 16px 20px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 500; }
.need-item svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--orange); }
.landing-form { max-width: 720px; margin: 0 auto; background: var(--white); padding: 48px; border-radius: var(--radius); box-shadow: var(--shadow); }


