/* =============================
   THE WIPE CREW - Main Stylesheet
   ============================= */

:root {
  --primary: #1b5e9e;
  --primary-light: #e8f2fc;
  --accent: #3dbfb0;
  --accent-dark: #2a9e91;
  --dark: #1c2b3a;
  --text: #333333;
  --text-muted: #666;
  --white: #ffffff;
  --light-bg: #f5f9ff;
  --border: #dde8f5;
  --shadow: 0 4px 20px rgba(27, 94, 158, 0.1);
  --radius: 10px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }

img { max-width: 100%; display: block; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.nav-logo-text {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.nav-links .btn-book {
  background: var(--accent);
  color: var(--white) !important;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
}

.nav-links .btn-book:hover { background: var(--accent-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0d3260 100%);
  color: var(--white);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 60% 40%, rgba(61,191,176,0.12) 0%, transparent 60%);
}

.hero-content { position: relative; max-width: 780px; margin: 0 auto; }

.hero-badge {
  display: inline-block;
  background: rgba(61,191,176,0.2);
  border: 1px solid rgba(61,191,176,0.4);
  color: var(--accent);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero h1 span { color: var(--accent); }

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 2rem;
}

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(61,191,176,0.35);
}

.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); color: var(--white); }

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
}

.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }

.btn-dark {
  background: var(--primary);
  color: var(--white);
}
.btn-dark:hover { background: #154e80; transform: translateY(-2px); color: var(--white); }

/* ===== SECTIONS ===== */
.section { padding: 5rem 2rem; }
.section-light { background: var(--light-bg); }
.section-white { background: var(--white); }
.section-dark { background: var(--dark); color: var(--white); }

.section-header { text-align: center; margin-bottom: 3rem; }

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.section-dark .section-header h2 { color: var(--white); }

.section-header p {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-dark .section-header p { color: rgba(255,255,255,0.75); }

.section-label {
  display: block;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.container { max-width: 1100px; margin: 0 auto; }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s;
}

.step-card:hover { transform: translateY(-4px); }

.step-icon {
  width: 72px;
  height: 72px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 2rem;
}

.step-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.step-card h3 { font-size: 1.15rem; color: var(--dark); margin-bottom: 0.75rem; }
.step-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== TRUST SECTION ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.trust-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
}

.trust-item .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.trust-item h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.5rem; }
.trust-item p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ===== BADGES ROW ===== */
.badges-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

.badge-item .check { color: var(--accent); font-size: 1.2rem; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(27,94,158,0.15); }

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body { padding: 1.5rem; }
.service-card-body h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 0.6rem; }
.service-card-body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

.about-hero h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
.about-hero p { color: rgba(255,255,255,0.85); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

.mission-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-size: 1rem;
  color: var(--text);
}

.mission-list li .check {
  color: var(--accent);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.about-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-info-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-info-card .icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.about-info-card h4 { color: var(--primary); font-size: 1rem; margin-bottom: 0.4rem; }
.about-info-card p { color: var(--text-muted); font-size: 0.9rem; }

.about-office {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-office img {
  border-radius: var(--radius);
  width: 100%;
  height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.office-text h3 { font-size: 1.5rem; color: var(--dark); margin-bottom: 1rem; }
.office-text p { color: var(--text-muted); margin-bottom: 1rem; }
.office-text .contact-item { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; color: var(--text); }
.office-text .contact-item span { color: var(--accent); }

/* ===== FAQ ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 3.5rem 2rem;
  text-align: center;
}

.page-hero h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto; }

.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-q {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
  user-select: none;
}

.faq-q:hover { color: var(--primary); }

.faq-q .chevron {
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-q .chevron { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 1.5rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

.faq-item.open .faq-a { display: block; padding-top: 1rem; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: 1.2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding: 1rem 1.2rem;
  background: var(--light-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-detail .icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-detail strong { color: var(--dark); display: block; font-size: 0.85rem; margin-bottom: 0.2rem; }
.contact-detail a, .contact-detail span { color: var(--text-muted); font-size: 0.95rem; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-form-card h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--dark); margin-bottom: 0.4rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,94,158,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand .logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-brand .logo-icon { width: 38px; height: 38px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.footer-brand .logo-text { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.footer-brand .logo-text span { color: var(--accent); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.2rem; }

.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  transition: all 0.2s;
  text-decoration: none;
}
.footer-social a:hover { background: var(--accent); color: var(--white); }

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  text-align: center;
  margin-top: 3rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 1.75rem; max-width: 500px; margin-left: auto; margin-right: auto; }

.cta-banner .btn {
  background: var(--white);
  color: var(--primary);
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
}
.cta-banner .btn:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }

/* ===== BOOK PAGE ===== */
.book-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.book-section h2 { font-size: 1.6rem; color: var(--dark); margin-bottom: 0.5rem; text-align: center; }
.book-section > p { color: var(--text-muted); text-align: center; margin-bottom: 2.5rem; }

.book-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== GIFT CARD ===== */
.gift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}

.gift-card-visual {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 16px;
  padding: 3rem 2rem;
  color: var(--white);
  text-align: center;
  box-shadow: 0 10px 40px rgba(27,94,158,0.3);
}

.gift-card-visual .gc-icon { font-size: 4rem; margin-bottom: 1rem; }
.gift-card-visual h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.5rem; }
.gift-card-visual p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.gift-card-visual .stars { font-size: 1.5rem; margin-top: 1rem; letter-spacing: 3px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 420px; }
  .trust-grid { grid-template-columns: 1fr; max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-office { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gift-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark); padding: 1rem 2rem 2rem; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 4rem 1.5rem; }
  .section { padding: 3rem 1.5rem; }
  .hero-btns { flex-direction: column; align-items: center; }
}
