/* ============================================
   GLOBAL STYLES
   ============================================ */

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

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: var(--color-text-primary);
  background: linear-gradient(to bottom, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  position: relative;
  overflow-x: hidden;
}

/* Subtle background pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-bg-radial);
  pointer-events: none;
  z-index: -1;
}

/* ============================================
   HEADER STYLES
   ============================================ */

header {
  background: var(--gradient-header);
  backdrop-filter: blur(10px);
  padding: 2rem 0 1.5rem;
  border-bottom: 3px solid transparent;
  border-image: var(--gradient-border) 1;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: padding;
}

/* Shrunk header state */
header.scrolled {
  padding: 0.75rem 0;
}

header.scrolled .logo-area img {
  height: 50px;
}

header.scrolled .tagline {
  opacity: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

header.scrolled h1 {
  font-size: 1.4rem;
  margin-bottom: 0;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: margin-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-area img {
  height: 80px;
  width: auto;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: height;
}

.logo-text {
  text-align: left;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
  font-weight: 500;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1), margin-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: font-size, margin-bottom;
}

.tagline {
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 300;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, height;
}

/* ============================================
   NAVIGATION
   ============================================ */

/* Hide mobile nav by default (desktop) */
.mobile-nav {
  display: none;
}

/* Desktop navigation */
.desktop-nav {
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin: 0;
  transition: margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-radius: 0;
  font-size: 1rem;
  position: relative;
  overflow: visible;
}

.desktop-nav a.nav-button::before {
  display: none;
}

.desktop-nav a.nav-button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-secondary-orange-bright), var(--color-secondary-red));
  transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.desktop-nav a.nav-button:hover {
  color: var(--color-secondary-red);
  transform: none;
}

.desktop-nav .cta-nav-button,
.mobile-nav .cta-nav-button {
  display: inline-block !important;
  background: var(--gradient-coral);
  color: white !important;
  padding: 0.7rem !important;
  text-decoration: none;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden !important;
}

.desktop-nav .cta-nav-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--overlay-white-light);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  border-radius: 50%;
  pointer-events: none;
  display: block !important;
}

.desktop-nav .cta-nav-button:hover::before {
  width: 300px;
  height: 300px;
}

.desktop-nav .cta-nav-button span,
.mobile-nav .cta-nav-button span {
  position: relative;
  z-index: 1;
}


/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background:
    var(--gradient-hero-overlay),
    url('https://images.unsplash.com/photo-1762955911431-4c44c7c3f408?w=1600&q=80') center/cover no-repeat;
  padding: 8rem 2rem;
  min-height: 900px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 2.8rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: var(--gradient-coral);
  color: white;
  padding: 1.2rem 3rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--overlay-white-light);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  border-radius: 50%;
  pointer-events: none;
}

.cta-button:not(:disabled):hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:not(:disabled):hover {
  transform: translateY(-3px);
}

.cta-button:disabled {
  background: linear-gradient(135deg, #a0a0a0 0%, #888888 100%);
  cursor: not-allowed;
  opacity: 0.6;
}

.cta-button span {
  position: relative;
  z-index: 1;
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
  margin: 0 auto;
  /* padding: 4rem 2rem; */
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.section-wrapper {
  max-width: 1200px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  /* margin-bottom: 5rem; */
  padding: 3.5rem;
  padding-bottom: 8rem;
}

section h2 {
  color: var(--color-primary-dark);
  font-size: 2.3rem;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 1rem;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary-red), var(--color-secondary-orange));
}

section h3 {
  color: var(--color-primary);
  font-size: 1.7rem;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

section p,
section li {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--color-text-tertiary);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

/* ============================================
   PARALLAX SECTION
   ============================================ */

.parallax-section {
  position: relative;
  overflow: visible;
  background: transparent;
  border: none;
  padding: 0;
  min-height: 600px;
  padding: 8rem;
}

.parallax-section::before {
  content: '';
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-border-strong);
}

.parallax-section::after {
  content: '';
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-border-strong);
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: calc(100vw - 0px);
  height: 100%;
  background-image:
    var(--gradient-parallax-overlay),
    url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
}

/* ============================================
   MISSION SECTION
   ============================================ */

.mission-box {
  background: var(--gradient-warm);
  padding: 2.5rem;
  border-left: 5px solid var(--color-secondary-orange);
  margin: 2rem 0;
}

.mission-box p {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--gradient-section);
  padding: 2.5rem;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-service-card);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-orange);
}

.service-card h3 {
  color: var(--color-primary-dark);
  margin-top: 0;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.service-price {
  font-weight: 600;
  color: var(--color-secondary-red);
  font-size: 1.2rem;
  margin-top: 1.5rem;
}

/* ============================================
   VALUES LIST
   ============================================ */

.values-list {
  list-style: none;
  padding-left: 0;
}

.values-list li {
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(248, 252, 254, 0.7) 100%);
  border-left: 5px solid;
  border-image: linear-gradient(180deg, var(--color-secondary-orange), var(--color-accent-teal)) 1;
  transition: all 0.3s;
}

.values-list li:hover {
  transform: translateX(10px);
}

.values-list li strong {
  color: var(--color-primary-dark);
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
  font-weight: 600;
}

/* ============================================
   WHO WE SERVE SECTION
   ============================================ */

.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.serve-item {
  background: linear-gradient(135deg,
      rgba(100, 200, 220, 0.12) 0%,
      rgba(255, 142, 83, 0.12) 100%);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.serve-item:hover {
  transform: scale(1.05);
  border-color: var(--border-teal-medium);
}

.serve-item h4 {
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 500;
}

/* ============================================
   FOCUS AREA CATEGORY CARDS
   ============================================ */

.focus-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.focus-category {
  background: var(--gradient-section);
  padding: 2rem;
  border-left: 5px solid;
  transition: all 0.3s;
}

.focus-category:nth-child(1) {
  border-left-color: var(--color-accent-blue);
}

.focus-category:nth-child(2) {
  border-left-color: var(--color-secondary-coral);
}

.focus-category:nth-child(3) {
  border-left-color: var(--color-primary-light);
}

.focus-category:nth-child(4) {
  border-left-color: var(--color-accent-purple);
}

.focus-category:hover {
  transform: translateY(-5px);
}

.focus-category h4 {
  color: var(--color-text-secondary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.focus-category h4 .material-icons {
  font-size: 1.8rem;
  opacity: 0.8;
}

.focus-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.focus-category li {
  padding: 0.6rem 0;
  margin: 0;
  color: var(--color-text-tertiary);
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
}

.focus-category li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--color-accent-blue);
  font-size: 0.8rem;
}

/* ============================================
   EXPERIENCE CATEGORY CARDS
   ============================================ */

.experience-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.experience-category {
  background: var(--gradient-section);
  padding: 2rem;
  border-top: 4px solid;
  transition: all 0.3s;
}

.experience-category:nth-child(1) {
  border-top-color: var(--color-accent-blue);
}

.experience-category:nth-child(2) {
  border-top-color: var(--color-primary-light);
}

.experience-category:nth-child(3) {
  border-top-color: var(--color-secondary-coral);
}

.experience-category:hover {
  transform: translateY(-5px);
}

.experience-category h4 {
  color: var(--color-text-secondary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.experience-category h4 .material-icons {
  font-size: 1.6rem;
  opacity: 0.8;
}

.experience-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.experience-category li {
  padding: 0.5rem 0;
  margin: 0;
  color: var(--color-text-tertiary);
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
}

.experience-category li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent-blue);
  font-weight: bold;
  font-size: 1rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-info {
  background: linear-gradient(135deg, var(--color-accent-blue) 0%, var(--color-accent-blue-medium) 50%, var(--color-primary-light) 100%);
  color: white;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.contact-info h3 {
  color: white;
  margin-top: 0;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.contact-info p {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.contact-info a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  background: rgba(255, 255, 255, 0.25);
  display: inline-block;
  margin: 0.5rem;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.contact-info a:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-footer-border);
}

footer p {
  margin: 0.5rem 0;
  opacity: 0.95;
}

footer a {
  color: var(--color-warm-peach);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ============================================
   HIGHLIGHT BOXES
   ============================================ */

.highlight-box {
  background: var(--gradient-highlight);
  border-left: 5px solid var(--color-warm-orange);
  padding: 2rem;
  margin: 2rem 0;
}

.highlight-box strong {
  color: var(--color-warm-orange-dark);
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */

.decorative-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 0.5rem;
}

.dot-orange {
  background: var(--color-secondary-orange-bright);
}

.dot-teal {
  background: var(--color-accent-teal);
}

.dot-purple {
  background: var(--color-accent-purple);
}

/* ============================================
   CONNECTION CARD
   ============================================ */

.connection-card {
  margin-top: 3rem;
  text-align: center;
  padding: 3rem;
  background: var(--gradient-section);
  border: 2px solid var(--border-teal);
}

.connection-card h3 {
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.connection-card a {
  color: var(--color-secondary-red);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s;
  display: inline-block;
  padding: 0.5rem 1rem;
}

.connection-card a:hover {
  background: var(--overlay-coral-light);
  transform: translateX(5px);
}

/* ============================================
   SIMPLIFIED HERO FOR BOOKING PAGE
   ============================================ */

.hero-simple {
  min-height: 300px;
  padding: 4rem 2rem;
}

.hero-simple h2 {
  font-size: 2.5rem;
  margin-bottom: 0;
}

/* ============================================
   TWO-COLUMN CONTACT/BOOKING LAYOUT
   ============================================ */

#contact-booking {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
}

.contact-booking-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

/* Left Column - Contact Info */
.contact-info-column {
  position: sticky;
  top: 120px;
}

.contact-info-column h2 {
  color: var(--color-primary-dark);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.contact-info-column p {
  color: var(--color-text-tertiary);
  line-height: 1.7;
}

.contact-details {
  margin: 2.5rem 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-teal);
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-item .material-icons {
  color: var(--color-primary);
  font-size: 2rem;
  margin-top: 0.25rem;
}

.contact-item h4 {
  color: var(--color-primary-dark);
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.contact-item p {
  margin: 0;
  color: var(--color-text-tertiary);
  line-height: 1.6;
}

.contact-item a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s;
}

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

.info-box {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(248, 252, 254, 0.7) 100%);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--color-primary);
}

.info-box h4 {
  color: var(--color-primary-dark);
  font-size: 1.1rem;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.info-box p {
  margin: 0;
  color: var(--color-text-tertiary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Right Column - Form */
.booking-form-column {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(248, 252, 254, 0.95) 100%);
  padding: 3rem;
  border: 2px solid var(--border-teal);
}

.booking-form {
  width: 100%;
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  color: var(--color-primary-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid rgba(100, 200, 220, 0.3);
  background: white;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: var(--color-text-primary);
  transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--overlay-primary-light);
}

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

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-weight: 400;
  color: var(--color-text-tertiary);
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 4px;
  position: relative;
}

.checkbox-label:hover {
  color: var(--color-primary-dark);
  background: var(--overlay-primary-light);
}

.checkbox-label input[type="checkbox"] {
  /* Hide the default checkbox */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin-right: 4px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-primary);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
  background: white;
  vertical-align: middle;
}

.checkbox-label input[type="checkbox"]:hover {
  border-color: var(--color-primary-dark);
  box-shadow: 0 0 0 3px var(--overlay-primary-light);
}

.checkbox-label input[type="checkbox"]:checked {
  background-color: var(--color-primary-pale);
  border-color: var(--color-primary-light);
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 0px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.checkbox-label input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--overlay-primary-medium);
}

.checkbox-label span {
  flex: 1;
  line-height: 1.6;
  vertical-align: middle;
}

.form-submit {
  text-align: center;
  margin-top: 2.5rem;
}

.form-submit button {
  border: none;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
}

.form-submit button:hover {
  transform: translateY(-3px);
}

.form-note {
  text-align: center;
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg,
      rgba(255, 142, 83, 0.1) 0%,
      rgba(100, 200, 220, 0.1) 100%);
  color: var(--color-text-tertiary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   HAMBURGER MENU (Mobile Navigation)
   ============================================ */

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 998;
  position: relative;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.hamburger-menu .material-icons {
  font-size: 2rem;
  color: var(--color-primary-dark);
  transition: all 0.3s ease;
}

.close-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1001;
}

.close-menu-btn .material-icons {
  font-size: 2rem;
  color: var(--color-primary-dark);
  transition: all 0.3s ease;
}

.close-menu-btn:hover .material-icons {
  color: var(--color-secondary-red-bright);
}

.mobile-menu-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--shadow-dark);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.active {
  display: block;
  opacity: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  /* Show hamburger menu on mobile */
  .hamburger-menu {
    display: block;
  }

  /* Hide desktop nav on mobile */
  .desktop-nav {
    display: none;
  }

  /* Mobile nav drawer */
  .mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, var(--color-bg-white) 0%, var(--color-bg-light) 100%);
    box-shadow: -4px 0 20px var(--shadow-light);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 2rem 0;
  }

  .mobile-nav.active {
    right: 0;
  }

  /* Show close button inside mobile nav drawer */
  .close-menu-btn {
    display: block;
  }

  /* Hide hamburger button when drawer is open */
  .hamburger-menu.hidden {
    opacity: 0;
    pointer-events: none;
  }

  h1 {
    font-size: 1.5rem;
  }

  .tagline {
    font-size: 0.85rem;
  }

  .hero {
    padding: 5rem 2rem;
    min-height: 500px;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .logo-area {
    gap: 0.75rem;
  }

  .logo-area img {
    height: 60px;
  }

  .logo-text {
    text-align: left;
  }

  /* Mobile navigation list styling */
  .mobile-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    list-style: none;
  }

  .mobile-nav li {
    width: 100%;
    border-bottom: 1px solid var(--border-teal);
  }

  .mobile-nav li:last-child {
    border-bottom: none;
  }

  .mobile-nav .nav-button {
    width: 100%;
    text-align: left;
    display: block;
    padding: 1.2rem 1rem;
    font-size: 1.1rem;
  }

  .mobile-nav .cta-nav-button {
    margin-top: 1rem !important;
    text-align: center !important;
    width: auto !important;
  }

  /* Disable hover effects on mobile (touch devices don't hover) */
  .mobile-nav .cta-nav-button:hover::before {
    width: 0 !important;
    height: 0 !important;
  }

  section {
    padding: 1.5rem 1rem;
  }

  .section-wrapper {
    padding: 0;
  }

  /* Disable parallax on mobile for better performance */
  .parallax-bg {
    background-attachment: scroll;
    position: relative;
    margin-left: 0;
    margin-right: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  .parallax-section {
    min-height: auto;
    padding: 3rem 1rem;
  }

  .container {
    padding: 0;
    margin: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  section h2 {
    font-size: 1.8rem;
  }

  /* Form responsive styles */
  .booking-form-container {
    padding: 2rem 1.5rem;
  }

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

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  /* Two-column booking layout - mobile */
  .contact-booking-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 1.5rem;
  }

  .contact-info-column {
    position: static;
  }

  .booking-form-column {
    padding: 2rem 1.5rem;
  }

  .hero-simple {
    min-height: 250px;
    padding: 3rem 2rem;
  }

  .hero-simple h2 {
    font-size: 2rem;
  }

  /* Grid layouts - force single column on mobile */
  .serve-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .experience-categories {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Text alignment - ensure proper centering */
  .serve-item,
  .experience-category {
    text-align: left;
  }

  .serve-item h4,
  .experience-category h4 {
    text-align: left;
  }

  /* Contact details - mobile friendly */
  .contact-details {
    gap: 1rem;
  }

  .contact-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  /* Info boxes - full width on mobile */
  .info-box {
    margin-bottom: 1.5rem;
  }
}
