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

:root {
  --primary: #1a6bff;
  --primary-dark: #0047cc;
  --primary-light: #e8f0ff;
  --accent: #ff6b1a;
  --dark: #0d1b2a;
  --dark-2: #1b2a3a;
  --gray: #6b7a8d;
  --light: #f4f7fb;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #1a6bff 0%, #0047cc 100%);
  --shadow-sm: 0 2px 8px rgba(26,107,255,0.08);
  --shadow-md: 0 8px 32px rgba(26,107,255,0.15);
  --shadow-lg: 0 24px 64px rgba(26,107,255,0.2);
  --radius: 16px;
  --radius-lg: 24px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Heebo', sans-serif; background: var(--white); color: var(--dark); overflow-x: hidden; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.3s ease;
}
.navbar.scrolled { background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); box-shadow: 0 2px 24px rgba(0,0,0,0.08); }
.nav-logo { font-size: 1.4rem; font-weight: 800; color: var(--white); text-decoration: none; transition: color 0.3s; }
.navbar.scrolled .nav-logo { color: var(--primary); }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; font-weight: 500; font-size: 0.92rem; color: rgba(255,255,255,0.9); transition: color 0.2s; }
.navbar.scrolled .nav-links a { color: var(--dark); }
.nav-links a:hover { color: var(--accent); }
.nav-cta { background: var(--accent) !important; color: var(--white) !important; padding: 9px 20px; border-radius: 50px; font-weight: 700 !important; box-shadow: 0 4px 16px rgba(255,107,26,0.3); transition: transform 0.2s, box-shadow 0.2s !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,26,0.4) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.navbar.scrolled .hamburger span { background: var(--dark); }
.mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(16px); padding: 20px 5%; box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 999; }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a { display: block; padding: 11px 16px; text-decoration: none; color: var(--dark); font-weight: 600; border-radius: 10px; transition: background 0.2s; font-size: 0.95rem; }
.mobile-nav a:hover { background: var(--light); color: var(--primary); }

/* SECTION BASE */
section { padding: 96px 5%; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge { display: inline-block; background: var(--primary-light); color: var(--primary); padding: 6px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 700; margin-bottom: 14px; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: var(--dark); line-height: 1.2; margin-bottom: 14px; }
.section-sub { font-size: 1rem; color: var(--gray); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: var(--white); padding: 15px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1rem; box-shadow: 0 8px 32px rgba(255,107,26,0.35); transition: all 0.25s ease; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,107,26,0.5); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.3); backdrop-filter: blur(10px); color: var(--white); padding: 13px 28px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: all 0.25s ease; }
.btn-secondary:hover { background: rgba(255,255,255,0.2); }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--primary); padding: 14px 28px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.95rem; box-shadow: 0 4px 20px rgba(0,0,0,0.12); transition: all 0.25s ease; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 860px; margin: 0 auto; }
.review-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04); transition: all 0.3s; position: relative; }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.quote-icon { position: absolute; top: 20px; left: 24px; font-size: 3.5rem; color: var(--primary-light); line-height: 1; font-family: Georgia, serif; }
.review-stars { color: #fbbf24; font-size: 0.95rem; margin-bottom: 12px; }
.review-text { font-size: 0.92rem; color: var(--dark-2); line-height: 1.75; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.95rem; }
.reviewer-name { font-weight: 700; font-size: 0.92rem; color: var(--dark); }
.reviewer-title { font-size: 0.78rem; color: var(--gray); }

/* CONTACT STRIP */
.contact-strip { background: linear-gradient(135deg, #0d1b2a 0%, #1a3a6b 50%, #1a6bff 100%); padding: 80px 5%; position: relative; overflow: hidden; }
.contact-strip::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); }
.contact-strip-inner { position: relative; z-index: 1; text-align: center; }
.contact-strip h2 { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.contact-strip p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 36px; }
.contact-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* CITIES */
.cities-wrap { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.city-tag { background: var(--primary-light); color: var(--primary); padding: 7px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; }

/* FOOTER */
footer { background: var(--dark); padding: 36px 5%; text-align: center; color: rgba(255,255,255,0.45); font-size: 0.88rem; }
footer a { color: var(--primary); text-decoration: none; }
footer strong { color: rgba(255,255,255,0.82); }
.footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 16px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; font-size: 0.88rem; }
.footer-links a:hover { color: var(--primary); }

/* FAB */
.fab { position: fixed; bottom: 28px; left: 28px; width: 58px; height: 58px; background: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; text-decoration: none; box-shadow: 0 6px 24px rgba(37,211,102,0.45); z-index: 999; transition: all 0.3s; animation: pulse 2.5s infinite; }
.fab:hover { transform: scale(1.1); }

/* LINKED CARDS */
a.type-card, a.service-card { text-decoration:none; color:inherit; display:block; }
.card-link { display:inline-flex; align-items:center; gap:6px; color:var(--primary); font-weight:700; font-size:0.88rem; margin-top:14px; }
a.type-card:hover .card-link, a.service-card:hover .card-link { color:var(--accent); }

/* RELATED LINKS SECTION */
.related-section { background:var(--white); padding:80px 5%; }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; max-width:1000px; margin:0 auto; }
.related-card { background:var(--light); border-radius:var(--radius-lg); padding:24px 22px; text-decoration:none; color:inherit; display:flex; align-items:center; gap:14px; transition:all 0.3s; border:1px solid rgba(0,0,0,0.04); }
.related-card:hover { background:var(--white); transform:translateX(6px); box-shadow:var(--shadow-md); border-color:rgba(26,107,255,0.15); }
.related-icon { width:46px; height:46px; background:var(--gradient); color:white; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.3rem; flex-shrink:0; }
.related-card h4 { font-size:0.95rem; font-weight:800; color:var(--dark); margin-bottom:3px; }
.related-card span { font-size:0.78rem; color:var(--primary); font-weight:600; }
@media(max-width:768px){ .related-grid { grid-template-columns:1fr; } }

/* GALLERY */
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; max-width:1180px; margin:0 auto; }
.gallery-item { position:relative; overflow:hidden; border-radius:var(--radius-lg); box-shadow:var(--shadow-sm); aspect-ratio:4/3; background:var(--light); cursor:zoom-in; transition:all 0.3s; }
.gallery-item:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.gallery-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.5s ease; }
.gallery-item:hover img { transform:scale(1.06); }
.gallery-item .gallery-caption { position:absolute; inset:auto 0 0 0; background:linear-gradient(transparent,rgba(13,27,42,0.85)); color:#fff; padding:34px 18px 16px; font-size:0.88rem; font-weight:600; opacity:0; transform:translateY(10px); transition:opacity 0.3s, transform 0.3s; }
.gallery-item:hover .gallery-caption { opacity:1; transform:translateY(0); }
.gallery-grid.cols-2 { grid-template-columns:repeat(2,1fr); max-width:900px; }
.gallery-grid.cols-4 { grid-template-columns:repeat(4,1fr); }
/* Lightbox */
.lightbox { position:fixed; inset:0; background:rgba(13,27,42,0.95); display:none; align-items:center; justify-content:center; z-index:2000; padding:24px; cursor:zoom-out; }
.lightbox.open { display:flex; animation:fadeInDown 0.25s ease; }
.lightbox img { max-width:100%; max-height:100%; border-radius:12px; box-shadow:0 16px 60px rgba(0,0,0,0.5); }
.lightbox-close { position:absolute; top:18px; right:24px; color:#fff; font-size:2rem; background:none; border:none; cursor:pointer; line-height:1; }
@media(max-width:1024px){ .gallery-grid, .gallery-grid.cols-4 { grid-template-columns:repeat(2,1fr); } }
@media(max-width:480px){ .gallery-grid, .gallery-grid.cols-2, .gallery-grid.cols-4 { grid-template-columns:1fr; max-width:380px; } }

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes float { 0%,100%{transform:translateY(-50%);} 50%{transform:translateY(calc(-50% - 10px));} }
@keyframes pulse { 0%,100%{box-shadow:0 6px 24px rgba(37,211,102,0.45);} 50%{box-shadow:0 6px 32px rgba(37,211,102,0.7),0 0 0 8px rgba(37,211,102,0.1);} }
.reveal { opacity:0; transform:translateY(36px); transition:opacity 0.65s ease, transform 0.65s ease; animation:revealFallback 1s 2s ease forwards; }
.reveal.visible { opacity:1; transform:translateY(0); animation:none; }
@keyframes revealFallback { to { opacity:1; transform:translateY(0); } }
/* Honor users who prefer reduced motion */
@media(prefers-reduced-motion: reduce){
  .reveal { opacity:1; transform:none; animation:none; transition:none; }
}

/* RESPONSIVE */
/* TABLET (1024px and below) - switch nav to hamburger earlier since we have 7 items */
@media(max-width:1024px){
  .nav-links { display:none; }
  .hamburger { display:flex; }
}

/* MOBILE (768px and below) */
@media(max-width:768px){
  .reviews-grid { grid-template-columns:1fr; }
  section { padding:64px 5%; }
  .navbar { height:64px; padding:0 5%; }
  .nav-logo { font-size:1.2rem; }
  .mobile-nav { top:64px; }
  .section-header { margin-bottom:42px; }
  .section-title { font-size:clamp(1.5rem, 5vw, 2rem); }
  .section-sub { font-size:0.95rem; padding:0 4%; }
  .footer-links { gap:14px; row-gap:10px; }
  .footer-links a { font-size:0.85rem; }
  .contact-strip { padding:64px 5%; }
  .contact-strip h2 { font-size:clamp(1.4rem, 5vw, 2rem); }
  .contact-strip p { font-size:0.95rem; padding:0 4%; }
  .related-grid { grid-template-columns:1fr; max-width:380px; }
  .city-tag { font-size:0.82rem; padding:6px 14px; }
  /* Touch-friendly buttons */
  .btn-primary, .btn-secondary, .btn-white { padding:14px 24px; font-size:0.95rem; min-height:48px; box-sizing:border-box; }
  /* FAB positioning */
  .fab { width:54px; height:54px; bottom:20px; left:20px; font-size:1.5rem; }
}

/* SMALL MOBILE (480px and below) */
@media(max-width:480px){
  body { font-size:15px; }
  section { padding:56px 5%; }
  .navbar { padding:0 5%; }
  .nav-logo { font-size:1.1rem; }
  .nav-cta { padding:7px 14px !important; font-size:0.82rem !important; }
  .mobile-nav { padding:16px 5%; }
  .mobile-nav a { padding:13px 14px; font-size:0.95rem; }
  .section-header { margin-bottom:36px; }
  .section-badge { font-size:0.75rem; padding:5px 14px; }
  .section-title { font-size:1.5rem; line-height:1.25; }
  .section-sub { font-size:0.9rem; line-height:1.6; }
  .review-card { padding:24px 20px; }
  .review-text { font-size:0.88rem; }
  .reviewer-avatar { width:40px; height:40px; }
  .quote-icon { top:14px; left:18px; font-size:2.8rem; }
  /* All CTAs full width on small mobile */
  .contact-actions { flex-direction:column; align-items:stretch; width:100%; max-width:340px; margin-left:auto; margin-right:auto; gap:12px; }
  .contact-actions a { width:100%; justify-content:center; }
  /* Footer */
  footer { padding:32px 5%; font-size:0.82rem; }
  .footer-links { gap:10px 16px; }
  .footer-links a { font-size:0.82rem; }
  /* Cities */
  .cities-wrap { gap:8px; }
  .city-tag { font-size:0.78rem; padding:5px 12px; }
  /* Related cards */
  .related-card { padding:18px 16px; gap:12px; }
  .related-icon { width:40px; height:40px; font-size:1.1rem; }
  .related-card h4 { font-size:0.9rem; }
  /* FAB even smaller */
  .fab { width:50px; height:50px; bottom:16px; left:16px; font-size:1.4rem; }
}

/* TINY SCREENS (380px and below) - older phones */
@media(max-width:380px){
  .nav-logo { font-size:1rem; }
  .nav-cta { padding:6px 10px !important; font-size:0.75rem !important; }
  .nav-cta::before { content:''; }
  .btn-primary, .btn-secondary, .btn-white { padding:13px 18px; font-size:0.88rem; }
  .section-title { font-size:1.35rem; }
}

/* LANDSCAPE PHONES - prevent overflow on small height */
@media(max-height:500px) and (orientation:landscape){
  .navbar { height:56px; }
  .mobile-nav { top:56px; max-height:calc(100vh - 56px); overflow-y:auto; }
}
