/* =============================================
   RUDY'S HANDYMAN SERVICES — Main Stylesheet
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ---- Variables ---- */
:root {
  --orange: #ff7e05;
  --navy: #012349;
  --navy-light: #0d2a4a;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray: #5f6062;
  --light-gray: #f4f4f4;
  --font: 'Poppins', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--black); background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: var(--font); }

/* ---- Scroll Animations ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: var(--orange);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 80px;
  gap: 40px;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 16px;
  font-weight: 400;
}
.topbar-item svg { width: 20px; height: 20px; flex-shrink: 0; }
.topbar-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.5); }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 0 80px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { height: 90px; width: auto; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .brand { font-size: 24px; font-weight: 700; color: var(--orange); letter-spacing: 1px; }
.nav-logo-text .sub { font-size: 11px; font-weight: 500; color: var(--navy); letter-spacing: 2px; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 50px;
}
.nav-links a {
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.nav-cta {
  background: var(--orange);
  color: white !important;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: #e06e00; transform: translateY(-2px); }

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

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-badge {
  display: inline-block;
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: #e06e00; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}
.btn-outline:hover { background: white; color: var(--black); transform: translateY(-2px); }

.hero-stats {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background: rgba(1,35,73,0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-stat-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,126,5,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-stat-icon svg { width: 26px; height: 26px; color: var(--orange); }
.hero-stat-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-label { font-size: 16px; color: rgba(255,255,255,0.8); margin-top: 4px; }

/* PW Hero specific */
.hero-pw .hero-content { max-width: 100%; text-align: center; margin: 0 auto; }
.hero-pw .hero-content .hero-badge { display: block; text-align: center; }
.hero-pw h1 { font-size: clamp(32px, 4vw, 60px); text-align: center; }
.hero-pw p { text-align: center; margin: 0 auto 40px; max-width: 900px; }
.hero-pw .hero-buttons { justify-content: center; }
.hero-pw { min-height: 75vh; padding: 120px 80px; }

/* =============================================
   SECTION COMMON
   ============================================= */
.section { padding: 80px; }
.section-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title.white { color: white; }
.section-sub {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 900px;
}

/* =============================================
   SERVICES ICON BAR
   ============================================= */
.services-bar {
  padding: 50px 80px;
  background: white;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
.services-bar-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.svc-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.25s;
  min-width: 120px;
}
.svc-icon-card:hover { transform: translateY(-6px); }
.svc-icon-circle {
  width: 100px;
  height: 100px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
}
.svc-icon-card:hover .svc-icon-circle {
  background: var(--navy);
  box-shadow: 0 8px 24px rgba(1,35,73,0.25);
}
.svc-icon-circle svg { width: 46px; height: 46px; color: white; }
.svc-icon-card span { font-size: 16px; font-weight: 500; color: var(--black); text-align: center; }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 80px;
  background: white;
}
.about-text .section-sub { margin-bottom: 28px; }
.checklist { margin: 24px 0 36px; display: flex; flex-direction: column; gap: 14px; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  color: var(--black);
  font-weight: 500;
}
.check-dot {
  width: 24px;
  height: 24px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-dot svg { width: 14px; height: 14px; color: white; }

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.about-img-main {
  grid-column: 1 / 3;
  grid-row: 1;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-small {
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
}
.about-img-small img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  background: var(--orange);
  color: white;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(255,126,5,0.4);
  z-index: 2;
}
.about-badge .num { font-size: 28px; font-weight: 800; }
.about-badge .lbl { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* =============================================
   PROFESSIONAL SERVICES GRID
   ============================================= */
.pro-services {
  background: var(--light-gray);
  padding: 100px 80px;
  text-align: center;
}
.pro-services .section-sub { margin: 0 auto 60px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 370px;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.service-card-name {
  color: white;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-card-dot {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  background: var(--orange);
  border-radius: 50%;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 100px 80px;
  background: white;
}
.bullet-list { margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }
.bullet-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  color: var(--black);
}
.bullet-dot {
  width: 15px;
  height: 15px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--light-gray);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
}
.stat-card .num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card .lbl { font-size: 17px; color: var(--black); font-weight: 400; }
.stat-card.wide { grid-column: 1 / 3; }

/* =============================================
   GALLERY
   ============================================= */
.gallery-section {
  background: var(--navy);
  padding: 100px 80px;
}
.gallery-section .section-sub { color: rgba(255,255,255,0.6); margin-bottom: 50px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,126,5,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(255,126,5,0.25); }
.gallery-item-overlay svg {
  width: 40px; height: 40px;
  color: white; opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; }

/* =============================================
   BOOKING FORM
   ============================================= */
.booking-section {
  background: var(--navy);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.booking-left {}
.booking-left .section-label { font-size: 15px; letter-spacing: 6px; }
.booking-left .section-title { font-size: clamp(28px, 3vw, 46px); color: white; margin-bottom: 20px; }
.booking-left p { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 40px; }
.support-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.support-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--orange);
}
.support-avatar img { width: 100%; height: 100%; object-fit: cover; }
.support-info .name { font-size: 17px; font-weight: 600; color: white; }
.support-info .role { font-size: 14px; color: rgba(255,255,255,0.6); }

.booking-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: white;
  border: none;
  outline: none;
  border-radius: 50px;
  padding: 16px 26px;
  font-size: 18px;
  font-family: var(--font);
  color: var(--gray);
  font-weight: 500;
  transition: box-shadow 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { box-shadow: 0 0 0 3px rgba(255,126,5,0.4); }
.form-textarea {
  border-radius: 20px;
  resize: vertical;
  min-height: 130px;
  padding: 18px 26px;
}
.form-select { cursor: pointer; appearance: none; }
.form-submit {
  background: var(--orange);
  color: white;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
}
.form-submit:hover { background: #e06e00; transform: translateY(-2px); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { padding: 100px 80px; background: white; }
.testimonials .section-title { text-align: center; margin-bottom: 8px; }
.testimonials .section-label { display: block; text-align: center; }
.testimonials .section-sub { text-align: center; margin: 0 auto 60px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: white;
  border: 1px solid #ebebeb;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.12); transform: translateY(-4px); }
.testimonial-top { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.testimonial-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-name { font-size: 18px; font-weight: 600; color: var(--black); }
.testimonial-title { font-size: 14px; color: var(--gray); margin-top: 4px; }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { width: 18px; height: 18px; fill: var(--orange); color: var(--orange); }
.testimonial-text { font-size: 16px; color: var(--gray); line-height: 1.7; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--navy);
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 380px;
  overflow: hidden;
}
.cta-text { padding: 60px 0; }
.cta-text .section-sub { color: rgba(255,255,255,0.75); max-width: 500px; margin-bottom: 32px; }
.cta-text .section-title { color: white; }
.cta-image {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 380px;
  overflow: hidden;
}
.cta-image img { height: 100%; width: auto; object-fit: cover; object-position: top; max-width: 100%; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: white;
  padding: 80px;
  border-top: 1px solid #e8e8e8;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 80px; width: auto; }
.footer-desc { font-size: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social-btn {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.footer-social-btn:hover { background: var(--navy); transform: translateY(-2px); }
.footer-social-btn svg { width: 20px; height: 20px; color: white; }

.footer-col h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 16px; color: var(--black); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--black);
  line-height: 1.5;
}
.footer-contact-item svg { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid #e8e8e8;
  padding-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--gray);
}

/* =============================================
   PRESSURE WASHING — specific sections
   ============================================= */
.pw-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 80px;
  background: white;
}
.pw-intro-images {
  position: relative;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 12px;
}
.pw-intro-img-main { border-radius: 16px; overflow: hidden; height: 500px; }
.pw-intro-img-main img { width: 100%; height: 100%; object-fit: cover; }
.pw-intro-img-side { border-radius: 16px; overflow: hidden; height: 500px; }
.pw-intro-img-side img { width: 100%; height: 100%; object-fit: cover; }
.pw-years-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(255,126,5,0.4);
  z-index: 2;
}
.pw-years-badge .num { font-size: 32px; font-weight: 800; }
.pw-years-badge .lbl { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

.pw-services-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
}
.pw-services-img {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.pw-services-img img { width: 100%; height: 100%; object-fit: cover; }
.pw-services-box {
  background: var(--navy);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pw-services-box .section-label { color: var(--orange); }
.pw-services-box .section-title { color: white; margin-bottom: 36px; }
.pw-services-list { display: flex; flex-direction: column; gap: 20px; }
.pw-service-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
  font-size: 18px;
}
.pw-check {
  width: 30px; height: 30px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pw-check svg { width: 16px; height: 16px; color: white; }

.pw-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 80px;
  background: var(--light-gray);
}
.pw-why-right { display: flex; gap: 20px; flex-wrap: wrap; align-items: flex-start; }
.pw-why-right .stats-col { display: flex; flex-direction: column; gap: 20px; flex: 1; min-width: 140px; }

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
  padding: 100px 80px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--navy) 100%);
}
.faq-section .section-title { color: white; text-align: center; margin-bottom: 12px; }
.faq-section .section-label { display: block; text-align: center; color: rgba(255,255,255,0.8); font-size: 14px; letter-spacing: 6px; }
.faq-sub {
  text-align: center;
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 60px;
}
.faq-list { display: flex; flex-direction: column; gap: 16px; max-width: 1300px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: white;
  font-size: 19px;
  font-weight: 500;
  font-family: var(--font);
  gap: 20px;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,255,255,0.05); }
.faq-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.faq-icon::before { width: 16px; height: 2px; }
.faq-icon::after { width: 2px; height: 16px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 36px 28px;
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
}

/* =============================================
   PW CTA BANNER
   ============================================= */
.pw-cta {
  position: relative;
  min-height: 380px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}
.pw-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.pw-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}
.pw-cta-text {
  position: relative;
  z-index: 1;
  padding: 60px 80px;
}
.pw-cta-text .section-label { color: var(--orange); }
.pw-cta-text .section-title { color: white; margin-bottom: 16px; }
.pw-cta-text p { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 32px; }
.pw-cta-image {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 380px;
  padding-right: 80px;
  overflow: hidden;
}
.pw-cta-image img { height: 100%; width: auto; object-fit: cover; max-width: 100%; }

/* =============================================
   RESPONSIVE — Tablet & Mobile
   ============================================= */
@media (max-width: 1100px) {
  .navbar { padding: 0 40px; }
  .section, .about, .why-us, .gallery-section, .booking-section,
  .testimonials, .cta-banner, .pw-intro, .pw-why, .faq-section { padding-left: 40px; padding-right: 40px; }
  .hero { padding: 60px 40px; }
  .hero-stats { right: 40px; padding: 30px 36px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar { padding: 0 40px; }
  .services-bar { padding: 50px 40px; }
  .footer { padding: 60px 40px; }
  .cta-banner { padding: 0 40px; }
  footer { padding: 60px 40px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: white; justify-content: center; align-items: center; gap: 36px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 24px; }
  .hamburger { display: flex; z-index: 1000; position: relative; }
  .navbar { padding: 0 24px; }

  .about, .why-us, .pw-intro, .pw-why { grid-template-columns: 1fr; gap: 50px; }
  .booking-section { grid-template-columns: 1fr; gap: 50px; }
  .cta-banner { grid-template-columns: 1fr; }
  .cta-image { display: none; }
  .pw-services-section { grid-template-columns: 1fr; }
  .pw-services-img { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { position: static; transform: none; margin-top: 40px; width: 100%; }
  .hero { flex-direction: column; align-items: flex-start; }
  .hero-pw { text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card.wide { grid-column: span 2; }
  .topbar { flex-direction: column; height: auto; padding: 12px 24px; gap: 8px; }
  .topbar-divider { display: none; }
  .services-bar-inner { gap: 24px; }
  .section, .about, .why-us, .gallery-section, .booking-section,
  .testimonials, .pw-intro, .pw-why, .faq-section { padding-left: 24px; padding-right: 24px; }
  .hero { padding: 60px 24px; }
  .services-bar { padding: 40px 24px; }
  footer { padding: 50px 24px; }
  .cta-banner { padding: 60px 24px; }
  .pw-cta-text { padding: 60px 24px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .topbar-item { font-size: 13px; }
  .testimonial-grid { grid-template-columns: 1fr; }
}
