/* ============================================
   LuxuryPortableBathrooms.com — Stylesheet
   Design: Premium, elegant, gold-accent
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary-blue: #0097cf;
  --dark-blue: #004e72;
  --gold: #ffb548;
  --gold-hover: #e6a33e;
  --near-black: #101820;
  --warm-light: #faf8f5;
  --light-gray: #cfd2d4;
  --white: #ffffff;
  --red-accent: #f3523f;
  --green-accent: #00a27e;
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: var(--near-black);
  line-height: 1.7;
  background-color: var(--warm-light);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-blue);
}

h1 { font-size: 48px; letter-spacing: -0.5px; }
h2 { font-size: 36px; font-weight: 600; }
h3 { font-size: 24px; font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }

p { margin-bottom: 1em; }
a { color: var(--primary-blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--dark-blue); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Navigation --- */
.nav {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 24px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.nav-logo img {
  height: 36px;
}

.nav-logo-tagline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dark-blue);
  font-weight: 600;
  border-left: 1px solid var(--light-gray);
  padding-left: 14px;
  line-height: 1.3;
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--near-black);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--dark-blue);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--near-black) !important;
  padding: 10px 24px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--gold-hover) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--near-black);
  transition: var(--transition);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-blue);
  overflow: hidden;
}

.hero-interior {
  min-height: 40vh;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,78,114,0.7) 0%, rgba(16,24,32,0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 60px 24px;
}

.hero h1 {
  color: var(--white);
  font-size: 52px;
  margin-bottom: 20px;
}

.hero-interior h1 {
  font-size: 42px;
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 20px;
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--near-black);
}

.btn-gold:hover {
  background: var(--gold-hover);
  color: var(--near-black);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,181,72,0.4);
}

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

.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--primary-blue);
  color: var(--white);
}

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

.btn-helper {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
}

.btn-helper-dark {
  color: var(--near-black);
  opacity: 0.6;
}

/* --- Credibility Strip --- */
.credibility-strip {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 20px 0;
}

.credibility-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.credibility-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--near-black);
}

.credibility-item .icon {
  color: var(--gold);
  font-size: 20px;
}

/* --- Section Spacing --- */
.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--white);
}

.section-dark {
  background: var(--dark-blue);
  color: var(--white);
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: #666;
  font-weight: 300;
}

/* --- Event Type Cards --- */
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  text-decoration: none;
  color: var(--near-black);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  color: var(--near-black);
}

.event-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--light-gray);
}

.event-card-body {
  padding: 24px;
}

.event-card-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.event-card-body p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: #555;
  margin-bottom: 12px;
}

.event-card-meta {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
}

.event-card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}

.event-card-link:hover {
  color: var(--gold-hover);
}

/* --- Feature Blocks --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-block {
  text-align: center;
  padding: 20px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(255,181,72,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
}

.feature-block h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-block p {
  font-size: 15px;
  font-weight: 300;
  color: #555;
  line-height: 1.6;
}

/* --- Sizing Guide --- */
.sizing-guide {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.sizing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px 0;
}

.sizing-tier {
  padding: 28px;
  border-radius: var(--radius-sm);
  background: var(--warm-light);
  border: 1px solid rgba(0,0,0,0.06);
}

.sizing-tier .tier-guests {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-blue);
  display: block;
  margin-bottom: 8px;
}

.sizing-tier .tier-trailer {
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
}

/* --- Service Area Map --- */
.service-area-map {
  width: 100%;
  height: 500px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  z-index: 1;
}

.service-area-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-area-info h3 {
  margin-bottom: 16px;
}

.location-list {
  list-style: none;
  margin-bottom: 28px;
}

.location-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 400;
  color: #444;
}

.location-list li:last-child {
  border-bottom: none;
}

.location-pin {
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

.location-name {
  font-weight: 600;
  color: var(--dark-blue);
  display: block;
}

.location-detail {
  font-size: 13px;
  color: #888;
  font-weight: 300;
}

.service-area-note {
  font-size: 14px;
  color: #888;
  font-weight: 300;
  font-style: italic;
}

/* --- Resource Grid --- */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.resource-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.resource-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--dark-blue);
}

.resource-card p {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.6;
  flex: 1;
}

.resource-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}

.resource-card:hover .resource-link {
  color: var(--gold-hover);
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--dark-blue);
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 600;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-banner .btn-gold {
  margin-right: 16px;
}

.cta-phone {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.cta-phone:hover {
  color: var(--gold);
}

/* --- Product Sections --- */
.product-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.product-section:last-of-type {
  border-bottom: none;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-layout.reverse {
  direction: rtl;
}

.product-layout.reverse > * {
  direction: ltr;
}

.product-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--light-gray);
}

.product-info h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.product-positioning {
  font-style: italic;
  color: #666;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 300;
}

.product-capacity {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-capacity .capacity-badge {
  background: rgba(255,181,72,0.15);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.product-features {
  list-style: none;
  margin-bottom: 24px;
}

.product-features li {
  padding: 6px 0;
  font-size: 15px;
  font-weight: 400;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.product-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.product-footprint {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}

/* --- Sizing Table --- */
.sizing-table-wrapper {
  overflow-x: auto;
}

.sizing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}

.sizing-table thead {
  background: var(--dark-blue);
}

.sizing-table th {
  padding: 14px 20px;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sizing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 15px;
}

.sizing-table tbody tr:nth-child(even) {
  background: rgba(0,0,0,0.02);
}

.sizing-table tbody tr:hover {
  background: rgba(255,181,72,0.06);
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filter {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  border: 1px solid var(--light-gray);
  color: var(--near-black);
}

.gallery-filter.active,
.gallery-filter:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--near-black);
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial-quote-mark {
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  font-size: 14px;
  color: var(--near-black);
}

.testimonial-role {
  font-size: 13px;
  color: #888;
  font-weight: 400;
}

/* --- Contact Form Layout --- */
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

.form-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.form-section h3 {
  margin-bottom: 8px;
}

.form-section .form-helper {
  font-size: 15px;
  color: #666;
  margin-bottom: 28px;
}

.contact-sidebar {
  background: var(--dark-blue);
  border-radius: var(--radius);
  padding: 40px;
  color: var(--white);
}

.contact-sidebar h3 {
  color: var(--white);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 15px;
}

.contact-item .contact-icon {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item a {
  color: var(--white);
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-sidebar .sidebar-note {
  margin-top: 28px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* HubSpot Form Overrides */

/* Form container */
#hubspot-form .hs-form {
  font-family: 'Poppins', sans-serif !important;
}

/* Fieldsets — spacing between field groups */
#hubspot-form .hs-form fieldset {
  max-width: 100% !important;
  margin-bottom: 20px !important;
}

#hubspot-form .hs-form .hs-form-field {
  margin-bottom: 18px !important;
}

/* Labels */
#hubspot-form .hs-form label {
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--near-black) !important;
  margin-bottom: 6px !important;
  display: block !important;
}

#hubspot-form .hs-form label .hs-form-required {
  color: var(--gold) !important;
}

/* Text inputs */
#hubspot-form .hs-form .hs-input {
  width: 100% !important;
  border-radius: 8px !important;
  border: 1.5px solid #dde0e3 !important;
  padding: 12px 16px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  color: var(--near-black) !important;
  background: var(--white) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
  -webkit-appearance: none !important;
}

#hubspot-form .hs-form .hs-input:focus {
  outline: none !important;
  border-color: var(--primary-blue) !important;
  box-shadow: 0 0 0 3px rgba(0, 151, 207, 0.12) !important;
}

#hubspot-form .hs-form .hs-input::placeholder {
  color: #aaa !important;
  font-weight: 300 !important;
}

/* Select dropdowns */
#hubspot-form .hs-form select.hs-input {
  height: 48px !important;
  cursor: pointer !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  padding-right: 40px !important;
}

/* Textareas */
#hubspot-form .hs-form textarea.hs-input {
  min-height: 100px !important;
  resize: vertical !important;
  line-height: 1.6 !important;
}

/* Checkboxes — "What service do you need?" */
#hubspot-form .hs-form .inputs-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 8px 0 0 !important;
}

#hubspot-form .hs-form .hs-form-checkbox,
#hubspot-form .hs-form .hs-form-booleancheckbox {
  margin-bottom: 0 !important;
  padding: 0 !important;
}

#hubspot-form .hs-form .hs-form-checkbox label,
#hubspot-form .hs-form .hs-form-booleancheckbox label {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 14px !important;
  margin: 0 !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: background 0.15s ease !important;
  font-weight: 400 !important;
  font-size: 14px !important;
}

#hubspot-form .hs-form .hs-form-checkbox label:hover,
#hubspot-form .hs-form .hs-form-booleancheckbox label:hover {
  background: rgba(0, 151, 207, 0.05) !important;
}

#hubspot-form .hs-form input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  border-radius: 4px !important;
  border: 1.5px solid #bbb !important;
  cursor: pointer !important;
  accent-color: var(--primary-blue) !important;
  flex-shrink: 0 !important;
}

#hubspot-form .hs-form .hs-form-checkbox label span,
#hubspot-form .hs-form .hs-form-booleancheckbox label span {
  font-size: 14px !important;
  font-weight: 400 !important;
}

/* Radio buttons */
#hubspot-form .hs-form input[type="radio"] {
  width: 18px !important;
  height: 18px !important;
  accent-color: var(--primary-blue) !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
}

#hubspot-form .hs-form .hs-form-radio label {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 14px !important;
  margin: 0 !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  font-weight: 400 !important;
  font-size: 14px !important;
}

#hubspot-form .hs-form .hs-form-radio label:hover {
  background: rgba(0, 151, 207, 0.05) !important;
}

/* Dependent fields — flex layout for side-by-side */
#hubspot-form .hs-form .hs-dependent-field {
  margin-top: 4px !important;
}

/* Multi-column fieldsets */
#hubspot-form .hs-form .form-columns-2 {
  display: flex !important;
  gap: 16px !important;
}

#hubspot-form .hs-form .form-columns-2 .hs-form-field {
  flex: 1 !important;
}

/* Error messages */
#hubspot-form .hs-form .hs-error-msgs {
  list-style: none !important;
  padding: 0 !important;
  margin: 6px 0 0 !important;
}

#hubspot-form .hs-form .hs-error-msgs li label {
  color: var(--red-accent) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  padding: 0 !important;
}

/* Submit button */
#hubspot-form .hs-form .hs-button {
  background: var(--gold) !important;
  color: var(--near-black) !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 16px 32px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  margin-top: 8px !important;
}

#hubspot-form .hs-form .hs-button:hover {
  background: var(--gold-hover) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(255, 181, 72, 0.4) !important;
}

/* Legal consent / GDPR text */
#hubspot-form .hs-form .legal-consent-container {
  margin-top: 16px !important;
}

#hubspot-form .hs-form .legal-consent-container p {
  font-size: 12px !important;
  color: #888 !important;
  line-height: 1.5 !important;
}

/* Date picker inputs */
#hubspot-form .hs-form input[type="date"] {
  height: 48px !important;
  cursor: pointer !important;
}

/* Hide the form title if HubSpot renders one (we have our own h3) */
#hubspot-form .hs-form .hs-richtext {
  font-size: 14px !important;
  color: #666 !important;
  margin-bottom: 16px !important;
}

/* Submitted message */
#hubspot-form .submitted-message {
  text-align: center !important;
  padding: 40px 20px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 18px !important;
  color: var(--dark-blue) !important;
  font-weight: 500 !important;
}

/* --- FAQ Accordion --- */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-blue);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Poppins', sans-serif;
}

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

.faq-chevron {
  font-size: 20px;
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 15px;
  font-weight: 300;
  color: #555;
  line-height: 1.7;
}

/* --- Floating CTA --- */
.floating-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--dark-blue);
  padding: 10px 24px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.floating-cta.visible {
  display: flex;
}

.floating-cta .cta-phone {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}

.floating-cta .btn-gold {
  padding: 8px 20px;
  font-size: 13px;
}

/* --- Footer --- */
.footer {
  background: var(--near-black);
  padding: 60px 0 32px;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo-img {
  height: 36px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

.footer h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 300;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.7);
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .service-area-layout {
    grid-template-columns: 1fr !important;
  }
  .service-area-map {
    height: 350px;
    order: -1;
  }

  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }

  .hero { min-height: 60vh; }
  .hero h1 { font-size: 36px; }
  .hero-interior h1 { font-size: 30px; }
  .hero p { font-size: 16px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    gap: 16px;
  }

  .credibility-items {
    gap: 20px;
    font-size: 12px;
  }

  .event-grid {
    grid-template-columns: 1fr !important;
  }

  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .sizing-tiers {
    grid-template-columns: 1fr !important;
  }

  .product-layout,
  .product-layout.reverse {
    grid-template-columns: 1fr !important;
    direction: ltr;
    gap: 24px;
  }

  .product-img {
    height: 260px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }

  .resource-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-layout {
    grid-template-columns: 1fr !important;
  }

  /* HubSpot form mobile */
  #hubspot-form .hs-form .form-columns-2 {
    flex-direction: column !important;
    gap: 0 !important;
  }

  .form-section {
    padding: 24px !important;
  }

  .section {
    padding: 60px 0;
  }

  .sizing-guide {
    padding: 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Mobile floating CTA at bottom */
  .floating-cta {
    top: auto;
    bottom: 0;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .cta-banner .btn-gold {
    margin-right: 0;
    margin-bottom: 12px;
  }
}
