/* ============================================
   Toura-Clean — Brand Variables
   ============================================ */
:root {
  --navy: #113952;
  --navy-dark: #0c2839;
  --navy-soft: #1c4d6b;
  --teal: #1294aa;
  --teal-dark: #0c7686;
  --teal-light: #4bc2d3;
  --bg-page: #ffffff;
  --bg-tint: #eaf7fd;
  --bg-tint-2: #d9effc;
  --text: #123146;
  --text-muted: #4f6b7d;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(17, 57, 82, 0.1);
  --shadow-sm: 0 4px 14px rgba(17, 57, 82, 0.08);
  --font-head: 'Baloo 2', 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.2;
  font-weight: 700;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-teal { color: var(--teal); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(18, 148, 170, 0.35);
}
.btn-primary:hover { background: var(--teal-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.hero .btn-outline {
  border-color: #fff;
  color: #fff;
}
.hero .btn-outline:hover {
  background: #fff;
  color: var(--navy);
}

.btn-block { width: 100%; }

/* ============================================
   Header / Nav
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--bg-tint-2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 20px;
}

.brand-logo {
  height: 56px;
  width: auto;
  border-radius: 10px;
}

.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.98rem;
  position: relative;
}
.main-nav a:hover { color: var(--teal); }

.nav-cta { margin-left: 24px; padding: 10px 22px; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 12px;
}
.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--navy);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg-tint) 0%, var(--bg-tint-2) 100%);
  padding: 90px 0 70px;
  color: var(--navy);
}

.hero-media { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

/* Animated stand-in until a real video montage is dropped in videos/hero-montage.mp4 */
.hero-placeholder-bg {
  position: absolute;
  inset: -10%;
  background: linear-gradient(120deg, var(--bg-tint-2), var(--teal-light), var(--bg-tint), var(--navy-soft), var(--bg-tint-2));
  background-size: 400% 400%;
  animation: heroShimmer 18s ease infinite;
  opacity: 0.55;
}
@keyframes heroShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Blue wash over the video/placeholder so hero text stays readable on top */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 57, 82, 0.55);
}

.sparkle {
  position: absolute;
  color: rgba(17, 57, 82, 0.25);
  font-size: 1.4rem;
}
.sparkle-1 { top: 12%; left: 6%; font-size: 2rem; }
.sparkle-2 { top: 22%; right: 10%; }
.sparkle-3 { bottom: 18%; left: 14%; font-size: 1.1rem; }
.sparkle-4 { top: 55%; right: 20%; font-size: 1.6rem; color: rgba(18, 148, 170, 0.4); }
.sparkle-5 { bottom: 10%; right: 6%; }

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  color: var(--teal-dark);
  font-weight: 700;
  margin-bottom: 10px;
}

.hero .eyebrow {
  color: var(--teal-light);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 32px;
}

.hero .hero-sub {
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.trust-strip li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}
.trust-icon { font-size: 1.1rem; }

/* ============================================
   Social strip
   ============================================ */
.social-strip {
  background: var(--bg-tint-2);
  padding: 14px 0;
}
.social-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.social-strip-links { display: flex; gap: 10px; align-items: center; }
.social-strip-links a { color: var(--teal-dark); font-weight: 700; }
.social-strip-links a:hover { color: var(--navy); }
.social-strip .dot { color: var(--navy-soft); }

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 88px 0;
}
.section-alt {
  background: var(--bg-tint);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}
.eyebrow-light { color: rgba(255,255,255,0.8); }

/* ============================================
   Grid / Cards
   ============================================ */
.grid {
  display: grid;
  gap: 28px;
}
.services-grid { grid-template-columns: repeat(3, 1fr); }
.why-grid { grid-template-columns: repeat(4, 1fr); margin-bottom: 70px; }
.testimonial-grid { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 2px solid var(--bg-tint-2);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--teal-light);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-tint-2);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--text-muted); margin-bottom: 0; font-size: 0.98rem; }

/* Why us */
.why-item { text-align: center; padding: 0 10px; }
.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--bg-tint-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-sm);
}
.why-item h3 { font-size: 1.1rem; }
.why-item p { color: var(--text-muted); font-size: 0.95rem; }
.why-item-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.9rem;
}
.why-item-link:hover { color: var(--teal); }

/* Process */
.process {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 14px;
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 14px;
}
.process-step h4 { font-size: 1.05rem; margin-bottom: 6px; }
.process-step p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0; }
.process-connector {
  width: 60px;
  height: 2px;
  background: var(--bg-tint-2);
  margin-top: 20px;
  flex-shrink: 0;
}

/* Gallery */
.gallery-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 20px;
}
.follow-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Job clip boxes */
.clip-grid { grid-template-columns: repeat(3, 1fr); }
.clip-box {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--bg-tint-2);
}
.clip-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Testimonials */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  margin: 0;
  border: 2px solid var(--bg-tint-2);
}
.testimonial p {
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 16px;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--teal-dark);
  font-weight: 600;
}

/* Shop */
.shop-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin: 0 auto;
}
.product-card {
  background: var(--white);
  border: 2px solid var(--bg-tint-2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--teal-light);
}
.product-image {
  aspect-ratio: 3 / 4;
  background: var(--bg-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-body h3 { font-size: 1.05rem; }
.product-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
  flex: 1;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
}
.product-price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
}
.btn-add-cart { padding: 10px 16px; font-size: 0.9rem; }

/* Header cart icon */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cart-toggle {
  position: relative;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Cart drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 40, 57, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 90;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 360px;
  max-width: 90vw;
  background: var(--white);
  box-shadow: -8px 0 30px rgba(17, 57, 82, 0.2);
  z-index: 91;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--bg-tint-2);
}
.cart-drawer-head h3 { margin: 0; }
.cart-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--navy);
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-empty { color: var(--text-muted); text-align: center; margin-top: 30px; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--bg-tint-2);
}
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 0.95rem; margin-bottom: 4px; }
.cart-item-price { color: var(--text-muted); font-size: 0.85rem; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--bg-tint-2);
  background: var(--bg-tint);
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}
.qty-value { min-width: 16px; text-align: center; font-weight: 600; }
.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  opacity: 0.6;
  padding: 10px;
  min-width: 40px;
  min-height: 40px;
}
.cart-item-remove:hover { opacity: 1; }
.cart-footer {
  padding: 18px 24px 24px;
  border-top: 1px solid var(--bg-tint-2);
}
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.cart-shipping-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.cart-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin: 10px 0 0;
}

/* ============================================
   Contact
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-tint-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-item p { margin-bottom: 0; color: var(--text-muted); }
.contact-info-item a:hover { color: var(--teal-dark); }

.contact-social {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}
.contact-social a {
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid var(--bg-tint-2);
  font-weight: 600;
  font-size: 0.9rem;
}
.contact-social a:hover { background: var(--bg-tint-2); }

.contact-form {
  background: var(--white);
  border: 2px solid var(--bg-tint-2);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 20px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--bg-tint-2);
  font-family: var(--font-body);
  font-size: 16px; /* keeps iOS Safari from auto-zooming the page on focus */
  color: var(--text);
  background: var(--bg-page);
  transition: border-color 0.15s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form-note {
  margin: 14px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-dark);
  min-height: 1.2em;
}
.form-note-error { color: #c0392b; }
.form-row-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 50px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
  height: 48px;
  border-radius: 8px;
  margin-bottom: 12px;
}
.footer-brand { max-width: 280px; font-size: 0.9rem; }
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a:hover { color: var(--teal-light); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.footer-social a:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .clip-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .process { flex-wrap: wrap; gap: 30px; }
  .process-connector { display: none; }
  .process-step { flex-basis: 45%; }
}

@media (max-width: 720px) {
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--bg-tint-2);
  }
  .main-nav.open a { display: block; }

  .services-grid, .why-grid, .clip-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .form-row-split { grid-template-columns: 1fr; }
  .process-step { flex-basis: 100%; }
  .hero { padding: 60px 0 50px; }
  .section { padding: 60px 0; }
}
