/* ============================================
   CRITICAL CSS (moved from inline)
   ============================================ */

/* Font fallback with size-adjust - prevents CLS from font loading */
@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial'), local('Helvetica'), local('sans-serif');
  font-display: swap;
  size-adjust: 107%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}

/* CRITICAL: Prevent SVG icon flash on load */
svg {
  max-width: 100%;
  height: auto;
}

.review-stars svg {
  width: 24px !important;
  height: 24px !important;
}

.trust-item svg {
  width: 16px !important;
  height: 16px !important;
}

.mobile-call-btn svg {
  width: 20px !important;
  height: 20px !important;
}

.menu-toggle svg {
  width: 24px !important;
  height: 24px !important;
}

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --primary-green: #325986;
  --secondary-green: #79CE41;
  --trust-bar-green: #7CD347;
  --primary-blue: #3da5ed;
  --secondary-blue: #2b79ad;
  --text-dark: #333;
  --text-medium: #555;
  --text-light: #777;
  --bg-light: #F1F1F1;
  --bg-white: #fff;
  --border-color: #ddd;
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 20px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;
  --font-primary: 'Inter', 'Inter Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Inter', 'Inter Fallback', sans-serif;
  --container-width: 1200px;
  --border-radius: 8px;
  --transition: 0.2s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
  font-kerning: none;
}

#wrapper {
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

img[width][height] {
  aspect-ratio: attr(width) / attr(height);
  height: auto;
}

.copyright-logo {
  aspect-ratio: 125 / 39;
  width: 125px;
  height: auto;
}

.team-member img {
  aspect-ratio: 1 / 1;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.375rem;
}

p {
  margin-bottom: var(--spacing-md);
}

strong {
  font-weight: 600;
}

.highlight {
  color: var(--primary-green);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.clear {
  clear: both;
}

main {
  contain: layout style;
}

.mobile-call-bar {
  display: none;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background-color: var(--bg-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  min-height: 100px;
  gap: var(--spacing-md);
}

.header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.header-left .logo {
  display: block;
  width: 200px;
  height: 60px;
}

.header-left .logo img {
  max-width: 200px;
  width: 200px;
  height: 60px;
  object-fit: contain;
  aspect-ratio: 200 / 60;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background-color: #7CD347;
  padding: 8px 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  min-height: 40px;
}

.trust-bar::-webkit-scrollbar {
  display: none;
}

.trust-items {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  min-width: max-content;
  font-size: 1rem;
  color: #333;
  font-weight: 600;
  min-height: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  fill: #333;
  flex-shrink: 0;
}

.trust-item a {
  color: #333;
  text-decoration: none;
  font-weight: 700;
  transition: opacity var(--transition);
}

.trust-item a:hover {
  opacity: 0.9;
}

.header-right {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-sm);
  width: 44px;
  height: 44px;
}

.menu-toggle svg {
  fill: var(--text-dark);
}

#nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--spacing-sm);
}

#nav li {
  list-style: none;
}

#nav li a {
  display: block;
  padding: var(--spacing-sm) var(--spacing-md);
  color: var(--text-dark);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.125rem;
  letter-spacing: 0.5px;
  transition: opacity var(--transition), background-color var(--transition);
}

#nav li a:hover,
#nav li#active a {
  opacity: 0.9;
  background-color: rgba(29, 191, 115, 0.1);
  border-radius: var(--border-radius);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  height: 60vh;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f1f1f1;
  z-index: 1;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px var(--spacing-md) var(--spacing-lg);
  color: var(--bg-white);
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.hero-content h1 {
  font-size: 2.25rem;
  color: var(--bg-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   BUTTONS - COMPOSITE ANIMATIONS ONLY
   ============================================ */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  will-change: opacity, transform;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  gap: 0px;
}

.btn-main-text {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn-sub-text {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: none;
  opacity: 0.9;
}

.btn-primary {
  background-color: #7CD347;
  color: #333;
  box-shadow: 0 4px 12px rgba(124, 211, 71, 0.3);
}

.btn-primary:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(124, 211, 71, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: var(--primary-blue);
  color: #333;
  box-shadow: 0 4px 12px rgba(61, 165, 237, 0.3);
}

.btn-secondary:hover {
  opacity: 1;
  background-color: #325986;
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(50, 89, 134, 0.4);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  padding: var(--spacing-xl) 0;
  border-bottom: 2px solid var(--primary-green);
  min-height: 600px;
}

.team-section .container {
  max-width: 1600px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  text-align: center;
}

.team-member {
  min-height: 280px;
}

.team-member img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 10px;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.team-member p {
  margin-bottom: 8px;
  font-size: 1.125rem;
  line-height: 1.4rem;
  height: 1.4rem;
  font-kerning: none;
}

.team-member h3 {
  font-size: 1.375rem;
  margin-bottom: 0;
  line-height: 1.6rem;
  height: 1.6rem;
  font-kerning: none;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: var(--spacing-xl) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-image {
  order: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-bg {
  width: 100%;
  max-width: 600px;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius);
}

.feature-content {
  order: 2;
  padding: var(--spacing-lg);
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding-left: 30px;
  margin-bottom: var(--spacing-md);
  position: relative;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
  font-size: 1.25rem;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background-color: #325986;
  color: var(--bg-white);
  padding: var(--spacing-lg) 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--bg-white);
  font-size: 2.75rem;
  margin-bottom: var(--spacing-sm);
}

.cta-banner p {
  margin-bottom: 0;
  font-size: 1.375rem;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--bg-white);
  text-align: center;
}

.reviews-section .container {
  max-width: 1900px;
}

.reviews-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: var(--spacing-sm);
}

.reviews-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  max-width: 1900px;
  margin: 0 auto;
}

.review-card {
  background-color: var(--bg-white);
  padding: var(--spacing-xl) var(--spacing-lg);
  border-radius: 20px;
  text-align: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.review-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
}

.review-text {
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-medium);
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

.review-author {
  font-size: 1rem;
  font-weight: 600;
  color: #4B5563;
  margin-bottom: var(--spacing-md);
}

.review-stars {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: fit-content;
}

.review-stars svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: var(--spacing-xl) 0;
}

.services-section.alt-bg {
  background-color: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.service-content {
  padding: var(--spacing-lg);
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.service-content .btn {
  margin-top: var(--spacing-md);
}

.service-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--border-radius);
}

/* ============================================
   USP SECTION
   ============================================ */
.usp-section {
  padding: var(--spacing-md) 0 var(--spacing-lg);
}

.usp-section .container {
  max-width: 100%;
  padding: 0;
}

.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  text-align: center;
  padding: 0 40px;
  max-width: 100%;
  margin: 0 auto;
}

.usp-item {
  min-height: 160px;
}

.usp-item img {
  width: 75px;
  height: 75px;
  margin: 0 auto var(--spacing-md);
}

.usp-item h3 {
  font-size: 1.375rem;
  color: #325986;
  margin-bottom: var(--spacing-sm);
}

.usp-item p {
  font-size: 1.125rem;
  margin-bottom: 0;
}

/* ============================================
   CONTENT SECTION
   ============================================ */
.content-section {
  padding: var(--spacing-xl) 0 0;
}

.content-section .container {
  max-width: 100%;
  padding: 0;
}

.article-section {
  padding: var(--spacing-xl) 0 0;
}

.article-content-wrapper > div {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  max-width: 100%;
  padding: 0 40px;
  margin-left: auto;
  margin-right: auto;
}

.article-content-wrapper > div:last-child {
  margin-bottom: 0;
}

.article-image {
  flex: 0 0 50%;
}

.article-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  object-fit: cover;
}

.article-content {
  flex: 1;
  padding: var(--spacing-md);
}

@media (max-width: 767px) {
  .article-content-wrapper > div {
    flex-direction: column !important;
    padding: 0 20px;
  }
  
  .article-image {
    flex: 0 0 auto;
    width: 100%;
  }
  
  .article-content {
    width: 100% !important;
    padding: var(--spacing-md) !important;
  }
  
  .usp-grid {
    padding: 0 20px;
  }
}

/* ============================================
   CTA CARDS
   ============================================ */
.cta-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  padding: 0 var(--spacing-md);
  background-color: transparent;
}

.cta-card {
  background-color: transparent;
  padding: var(--spacing-md);
  border-radius: 0;
  text-align: center;
  box-shadow: none;
  min-height: 240px;
}

.cta-card h3 {
  margin-bottom: var(--spacing-md);
}

.cta-card .btn {
  margin-top: var(--spacing-md);
  width: auto;
  max-width: none;
  min-width: auto;
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-page {
  padding: var(--spacing-xl) 0;
  background-color: var(--bg-white);
  min-height: 60vh;
}

.booking-page * {
  box-sizing: border-box;
}

.booking-page .container {
  max-width: 100% !important;
  padding: 0 !important;
  width: 100%;
}

.booking-page h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  padding: 0 var(--spacing-md);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.booking-grid {
  background-color: var(--bg-white);
  padding: var(--spacing-lg) 0;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.booking-grid > * {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.booking_form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
  background-color: var(--bg-white);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.booking_form > * {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.booking_sidebar {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-light);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
}

.booking_note {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.booking_note .h_style {
  font-size: 1.375rem;
  line-height: 1.4;
  margin: 0 auto;
  text-align: center;
}

.image_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: var(--spacing-lg);
  justify-content: space-evenly;
  align-items: flex-start;
  padding: 0;
}

.image_grid_basis {
  text-align: center;
  flex: 0 0 auto;
  width: 120px;
  margin: 0 var(--spacing-sm);
}

.image_grid_basis img {
  width: 100%;
  max-width: 100px;
  height: auto;
  margin: 0 auto var(--spacing-sm);
}

.image_grid_basis h3 {
  font-size: 1.125rem;
  margin: 0;
  color: #3da5ed;
  font-weight: 600;
  line-height: 1.3;
}

.image_grid_basis a {
  color: #3da5ed;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.image_grid_basis a:hover {
  opacity: 0.8;
}

/* ============================================
   PHONE CENTER - CLEANED UP VERSION
   ============================================ */
.phone_center {
  padding: var(--spacing-lg) 0;
  background-color: transparent;
  border-radius: 0;
  text-align: left;
  margin-top: var(--spacing-md);
}

.phone_center h1,
.phone_center h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  font-size: 1.75rem;
}

.phone_center p {
  margin-bottom: var(--spacing-md);
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.phone_center p::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.6;
}

#iframe_container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.booking_form iframe,
.booking_sidebar iframe {
  width: 100%;
  max-width: 600px;
  border: none;
  min-height: 600px;
  display: block;
  margin: 0 auto;
}

iframe#fs_frame_4,
iframe#fs_frame_15 {
  width: 100% !important;
  max-width: 600px !important;
  margin: 0 auto !important;
  display: block !important;
}

.iframe_wide {
  width: 100%;
  border: none;
}

.booking_note {
  background-color: transparent;
  border-left: 4px solid var(--primary-green);
  padding-left: var(--spacing-md);
}

.booking_note .span_style {
  display: inline-block;
  line-height: 1.5;
}

.modal-body .button {
  background-color: #7CD347;
  color: #333;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(124, 211, 71, 0.3);
}

.modal-body .button:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

.row {
  margin: 0;
}

.col-md-4,
.col-md-12 {
  padding: var(--spacing-sm);
}

.no_float {
  float: none;
}

.phone_no_padding {
  padding: 0;
}

/* ============================================
   CONTENT PAGE
   ============================================ */
.content-page {
  padding: var(--spacing-xl) 0;
  min-height: 60vh;
  background-color: var(--bg-white);
}

.content-page .container {
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
}

.content-page .container > * {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--spacing-lg);
}

.content-page h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  font-size: 2.5rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--spacing-md);
}

/* ============================================
   CHECKLISTA PAGE STYLING
   ============================================ */

.booking-grid > .grid-flex {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: stretch;
  min-height: 400px;
  width: 100%;
  max-width: 100% !important;
  margin: 0 !important;
  background-color: var(--bg-white);
}

.booking-grid > .grid-flex:first-child {
  margin-top: 0;
}

.booking-grid > .grid-flex:last-of-type {
  margin-bottom: 0;
}

.booking-grid > .grid_column_container {
  background-color: var(--bg-white);
}

.booking-grid > .grid-flex:nth-child(even) {
  background-color: var(--bg-light);
}

.booking-grid > .grid-flex:nth-child(odd) {
  background-color: var(--bg-white);
}

.booking-grid > .grid-flex .col {
  flex: 1;
  min-height: 400px;
}

.booking-grid > .grid-flex .col-text {
  flex: 1 1 50%;
  min-height: auto;
  max-width: 50%;
  background-image: none !important;
}

.booking-grid > .grid-flex:last-of-type {
  display: flex;
  width: 100%;
  gap: 0;
  min-height: auto;
}

.booking-grid > .grid-flex:last-of-type .col-text {
  flex: 1 1 50%;
  padding: 60px 80px;
  min-height: 450px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.booking-grid > .grid-flex:last-of-type .col-text:first-child {
  background-color: var(--bg-white) !important;
}

.booking-grid > .grid-flex:last-of-type .col-text:last-child {
  background-color: var(--bg-light) !important;
}

.booking-grid > .grid-flex:last-of-type .col-text iframe {
  width: 100%;
  max-width: 100%;
}

.booking-grid > .grid-flex .col-text:not(.col-image)::before,
.booking-grid > .grid-flex .col-text:not(.col-image)::after {
  display: none;
}

.booking-grid > .grid-flex .col-image {
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.booking-grid > .grid-flex .col-text:not(.col-image) {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl);
}

.booking-grid > .grid-flex .col-left {
  padding: var(--spacing-xl);
  align-items: flex-start;
}

.booking-grid > .grid-flex .Aligner-item {
  width: 100%;
}

.booking-grid > .grid-flex .inner {
  width: 100%;
  max-width: 600px;
}

.booking-grid > .grid-flex .default_padding {
  padding: 0;
}

.booking-grid > .grid-flex .show_me {
  display: block;
}

.booking-grid > .grid-flex .hide_me {
  display: none;
}

.booking-grid > .grid_column_container {
  padding: var(--spacing-xl) var(--spacing-md);
  text-align: center;
  background-color: var(--bg-white);
  width: 100%;
  max-width: 100% !important;
  margin: 0 !important;
}

.booking-grid > .grid_column_container .button_thumb_green2 {
  display: inline-block;
  background-color: #7CD347;
  color: #333;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(124, 211, 71, 0.3);
  margin-top: var(--spacing-md);
}

.booking-grid > .grid_column_container .button_thumb_green2:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(124, 211, 71, 0.4);
}

.booking-grid > .grid-flex #iframe_container {
  width: 100%;
}

.booking-grid > .grid-flex iframe {
  width: 100%;
  border: none;
  min-height: 300px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: #325986;
  color: var(--bg-white);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  justify-items: center;
  text-align: center;
}

.footer-col h4 {
  color: #7CD347;
  margin-bottom: var(--spacing-md);
  margin-top: 0;
  font-size: 1.5rem;
  text-decoration: none;
}

.footer-col p {
  margin-bottom: var(--spacing-md);
  font-size: 1.25rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-col a {
  color: var(--bg-white);
  font-weight: 600;
  transition: opacity var(--transition);
  will-change: opacity;
}

.footer-col a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-col img {
  aspect-ratio: 340 / 168;
  width: 100%;
  max-width: 680px;
  height: auto;
  border-radius: var(--border-radius);
  margin: 0 auto;
}

/* ============================================
   COPYRIGHT
   ============================================ */
.copyright {
  background-color: var(--bg-white);
  padding: var(--spacing-md) 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
  min-height: 100px;
}

.copyright-logo {
  width: 125px;
  height: 39px;
  aspect-ratio: 125 / 39;
  margin: 0 auto var(--spacing-sm);
}

.copyright p {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 0;
  line-height: 20px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.booking-page .grid-flex {
  display: flex;
  gap: 0;
  align-items: stretch;
  border: none !important;
  padding: 0;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.booking-page .col-left {
  flex: 0 0 50%;
  border: none !important;
  background-color: var(--bg-white);
  padding: var(--spacing-lg);
  border-radius: 0;
  box-shadow: none;
}

.booking-page .col-image {
  flex: 0 0 50%;
  min-height: 600px;
  border-radius: 0;
  border: none !important;
  margin-left: 0;
}

.booking-page .inner {
  padding: var(--spacing-lg);
  border: none !important;
}

.booking-page .text-align-center {
  text-align: center;
}

#contact-form {
  max-width: 100%;
  margin: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none !important;
}

#contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px !important;
  margin-top: 0;
  color: var(--text-dark);
  font-size: 1.125rem;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  margin-top: -5px !important;
  margin-bottom: var(--spacing-lg);
  border: 1px solid #d1d5db;
  border-radius: 20px;
  font-family: var(--font-primary);
  font-size: 1.125rem;
  transition: box-shadow var(--transition), border-color var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: #7CD347;
  box-shadow: 0 4px 12px rgba(124, 211, 71, 0.3);
}

#contact-form textarea {
  min-height: 200px;
  resize: vertical;
}

#contact-button {
  background-color: #7CD347;
  color: var(--text-dark);
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 4px 12px rgba(124, 211, 71, 0.3);
  width: 100%;
  max-width: 300px;
  display: block;
  margin: var(--spacing-md) auto 0;
}

#contact-button:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

/* ============================================
   TABLET BREAKPOINT (768px+)
   ============================================ */
@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
  
  .mobile-call-bar {
    display: none;
  }
  
  .hero .btn-secondary {
    display: inline-flex;
  }
  
  h1 {
    font-size: 2.75rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .reviews-title {
    font-size: 3rem;
  }
  
  .hero {
    min-height: 450px;
    height: 65vh;
    max-height: 650px;
  }
  
  .hero-content h1 {
    font-size: 3.25rem;
  }
  
  .hero-buttons {
    flex-direction: row;
    gap: 40px;
  }
  
  .team-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
  
  .team-section {
    min-height: 300px;
  }
  
  .team-member {
    min-height: 200px;
  }
  
  .team-member img {
    width: 100%;
    max-width: 150px;
  }
  
  .cta-banner {
    padding: 60px 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
  }
  
  .feature-image {
    order: 1;
  }
  
  .feature-content {
    order: 2;
    text-align: left;
  }
  
  .feature-bg {
    height: 500px;
    max-width: 100%;
  }
  
  .reviews-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .services-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
  }
  
  .service-content {
    text-align: left;
  }
  
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-cards {
    grid-template-columns: 1fr 1fr;
    padding: 40px var(--spacing-md) 80px var(--spacing-md);
  }
  
  .content-section {
    padding-bottom: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr 2fr;
    align-items: start;
    justify-items: center;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .site-footer .container {
    max-width: 1600px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .header-main {
    min-height: 100px;
  }
  
  .trust-bar {
    position: relative;
    bottom: auto;
    padding: 8px 20px;
    min-height: 40px;
    box-shadow: none;
  }
  
  .trust-items {
    font-size: 1rem;
    gap: 20px;
    justify-content: space-between;
  }
  
  .trust-item {
    display: flex !important;
  }
  
  .menu-toggle {
    display: none;
  }
  
  #nav {
    display: flex;
  }
  
  .booking-grid > .grid-flex {
    min-height: 500px;
  }
  
  .booking-grid > .grid-flex .col-image {
    min-height: 500px;
  }
  
  .booking-grid > .grid-flex .col-text:not(.col-image) {
    padding: var(--spacing-xl) 60px;
  }
  
  .booking-grid > .grid-flex .col-left {
    padding: var(--spacing-xl) 60px;
  }
  
  .booking_form {
    float: left;
    width: 50%;
    max-width: none;
    padding: var(--spacing-xl);
    margin-right: var(--spacing-lg);
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  
  .booking_form > * {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .booking_note {
    max-width: 600px;
    text-align: center;
  }
  
  #iframe_container {
    max-width: 600px;
    justify-content: center;
  }
  
  .booking_sidebar {
    float: left;
    width: calc(50% - var(--spacing-lg));
    padding: var(--spacing-xl);
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
  }
  
  .booking-grid::after {
    content: "";
    display: table;
    clear: both;
  }
  
  .image_grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-evenly;
    align-items: flex-start;
    padding: 0;
  }
  
  .image_grid_basis {
    flex: 0 0 auto;
    width: 120px;
    margin: 0 var(--spacing-md);
  }
  
  .image_grid_basis img {
    max-width: 90px;
  }
  
  .image_grid_basis h3 {
    font-size: 1.125rem;
  }
}

/* ============================================
   DESKTOP BREAKPOINT (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .hero {
    min-height: 500px;
    height: 70vh;
    max-height: 700px;
  }
  
  .hero-content h1 {
    font-size: 4.25rem;
  }
  
  .reviews-title {
    font-size: 3.5rem;
  }
  
  .article-content-wrapper > div {
    padding: 0 80px;
  }
  
  .usp-grid {
    padding: 0 80px;
  }
  
  .usp-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .container {
    padding: 0 var(--spacing-lg);
  }
  
  .site-footer .container {
    max-width: 1600px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ============================================
   MOBILE MENU (BELOW 768px)
   ============================================ */
@media (max-width: 767px) {
  .container {
    padding: 0 20px !important;
    max-width: 100%;
  }
  
  .mobile-call-bar {
    display: block;
    background: transparent;
    padding: 8px 20px 12px;
    text-align: center;
    position: static;
    order: 3;
  }
  
  .site-header {
    display: flex;
    flex-direction: column;
  }
  
  .mobile-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #325986;
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(50, 89, 134, 0.3);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  
  .mobile-call-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }
  
  .mobile-call-btn svg {
    width: 20px;
    height: 20px;
    fill: #fff;
  }
  
  .menu-toggle {
    display: block;
  }
  
  #nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    background-color: var(--bg-white);
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    min-width: 200px;
    z-index: 9999;
  }
  
  #nav li {
    width: 100%;
  }
  
  #nav li a {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
  }
  
  #nav li:last-child a {
    border-bottom: none;
  }
  
  .header-main {
    padding: 20px;
    min-height: 70px;
    flex-wrap: nowrap;
    gap: var(--spacing-sm);
  }
  
  .header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
  }
  
  .header-left .logo {
    width: 160px;
    height: 48px;
  }
  
  .header-left .logo img {
    width: 160px;
    height: 48px;
    aspect-ratio: 160 / 48;
  }
  
  .header-right {
    flex-shrink: 0;
    margin-left: auto;
  }
  
  .trust-bar {
    position: static;
    padding: 10px 20px;
    min-height: 50px;
    box-shadow: none;
  }
  
  .trust-items {
    gap: 20px;
    font-size: 0.95rem;
    justify-content: center;
    min-height: 30px;
  }
  
  .trust-item {
    display: none;
  }
  
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    display: flex;
  }
  
  .trust-item svg {
    width: 16px;
    height: 16px;
  }
  
  .hero {
    min-height: 320px;
    height: 50vh;
    max-height: 500px;
  }
  
  .hero-content {
    padding: 40px 20px 20px;
    gap: 20px;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
    margin: 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .hero .btn {
    padding: 10px 24px;
    gap: 0px;
  }
  
  .hero .btn-main-text {
    font-size: 1.125rem;
  }
  
  .hero .btn-sub-text {
    font-size: 0.875rem;
  }
  
  .hero .btn-secondary {
    display: none;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .hero .btn {
    width: auto;
    max-width: none;
  }
  
  .cta-card .btn {
    width: auto;
    max-width: none;
  }
  
  .team-section {
    padding: 20px 0 !important;
    border-bottom: none !important;
  }
  
  .features-section {
    padding: 20px 0 !important;
  }
  
  .services-section {
    padding: 20px 0 !important;
  }
  
  .reviews-section {
    padding: 20px 0 !important;
  }
  
  .usp-section {
    padding: 20px 0 !important;
  }
  
  .content-section {
    padding: 20px 0 !important;
  }
  
  .article-section {
    padding: 20px 0 !important;
  }
  
  .booking-page {
    padding: 20px 0 !important;
  }
  
  .content-page {
    padding: 20px 0 !important;
  }
  
  .cta-cards {
    padding: 20px !important;
  }
  
  .features-grid {
    padding: 0 !important;
  }
  
  .usp-grid {
    padding: 0 !important;
  }
  
  .feature-content {
    padding: 20px !important;
  }
  
  .service-content {
    padding: 20px !important;
  }
  
  .article-content-wrapper > div {
    padding: 0 !important;
    margin-bottom: 0;
  }
  
  .article-content {
    padding: 20px !important;
  }
  
  .team-grid {
    gap: 20px 10px !important;
    padding: 0 !important;
  }
  
  .team-member {
    min-height: 180px !important;
  }
  
  .team-member img {
    width: 75%;
    max-width: none;
    margin: 0 auto 10px;
  }
  
  .content-page .container {
    padding: 0 20px !important;
  }
  
  .content-page .container > * {
    padding: 0 !important;
  }
  
  .content-page h2 {
    padding: 0 !important;
  }
  
  .booking-page .container {
    padding: 0 20px !important;
  }
  
  .booking-grid {
    padding: 20px 0 !important;
  }
  
  .booking-page .grid-flex {
    flex-direction: column;
    gap: 0;
  }
  
  .booking-page .col-left,
  .booking-page .col-image {
    flex: 0 0 auto;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    border-radius: 0;
  }
  
  .booking-page .col-left {
    padding: 20px !important;
    margin-bottom: 0;
    background-color: var(--bg-white);
    box-shadow: none;
  }
  
  .booking-page .col-image {
    min-height: 400px;
    border-radius: 0;
  }
  
  .booking-grid > .grid-flex {
    flex-direction: column;
    min-height: auto;
    width: 100%;
    max-width: 100% !important;
    margin: 0 !important;
  }
  
  .booking-grid > .grid-flex:first-child {
    margin-top: 0;
  }
  
  .booking-grid > .grid-flex:last-of-type {
    margin-bottom: 0;
  }
  
  .booking-grid > .grid-flex .col-image {
    min-height: 300px;
    order: 1;
  }
  
  .booking-grid > .grid-flex .col-text {
    order: 2;
    padding: 20px !important;
    width: 100%;
    max-width: 100%;
  }
  
  .booking-grid > .grid-flex .col-left {
    padding: 20px !important;
    width: 100%;
  }
  
  .booking-grid > .grid-flex:last-of-type .col-text {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 20px !important;
    min-height: auto;
  }
  
  .booking-grid > .grid-flex .show_me {
    display: none;
  }
  
  .booking-grid > .grid-flex .hide_me {
    display: block;
  }
  
  .booking-grid > .grid_column_container {
    padding: 20px !important;
    width: 100%;
    max-width: 100% !important;
    margin: 0 !important;
  }
  
  .booking-grid > .grid_column_container .button_thumb_green2 {
    padding: 12px 30px;
    font-size: 1.125rem;
    width: 100%;
    max-width: 300px;
  }
  
  .booking_form,
  .booking_sidebar {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px 0;
    padding: 20px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .booking_form > * {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .booking_note {
    max-width: 100%;
    text-align: center;
    padding: 20px !important;
  }
  
  #iframe_container {
    max-width: 100%;
    justify-content: center;
    padding: 0 !important;
  }
  
  .booking_sidebar {
    padding: 20px !important;
    max-width: 100%;
    margin: 0 0 20px 0;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    align-items: stretch;
  }
  
  .image_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 !important;
    justify-items: center;
  }
  
  .image_grid_basis {
    flex: none;
    width: auto;
    margin: 0;
    text-align: center;
  }
  
  .image_grid_basis img {
    max-width: 90px;
    margin: 0 auto var(--spacing-sm);
  }
  
  .image_grid_basis h3 {
    font-size: 1rem;
  }
  
  .phone_center {
    padding: 20px 0 !important;
  }
  
  .phone_center h1,
  .phone_center h2 {
    font-size: 1.5rem;
  }
  
  .phone_center p {
    padding-left: 25px;
    font-size: 0.95rem;
  }
  
  .phone_center p::before {
    font-size: 1.125rem;
  }
  
  .booking_note .h_style {
    font-size: 1rem;
  }
  
  .site-footer {
    padding: 20px 0 !important;
  }
  
  .site-footer .container {
    padding: 0 20px !important;
  }
  
  .copyright {
    padding: 20px !important;
  }
  
  .booking-page .inner {
    padding: 20px !important;
  }
  
  #contact-form {
    padding: 0 !important;
  }
  
  .team-section .container,
  .features-section .container,
  .services-section .container,
  .reviews-section .container,
  .usp-section .container {
    padding: 0 20px !important;
  }
  
  .feature-bg,
  .service-image img,
  .team-member img,
  .review-card {
    width: 100%;
    max-width: 100%;
  }
  
  .usp-item img {
    width: 75px !important;
    max-width: 75px !important;
    height: 75px !important;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .site-header,
  .menu-toggle,
  .hero-buttons,
  .cta-banner,
  .cta-cards,
  .site-footer {
    display: none;
  }
}

/* Fix H1 font-size in sections - prevents browser auto-adjustment */
section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
  font-size: inherit;
}

/* Then explicitly set sizes */
section h1, .hero-content h1 { font-size: 2.25rem; }
section h2, .reviews-title { font-size: 2rem; }
section h3 { font-size: 1.5rem; }
section h4 { font-size: 1.375rem; }

@media (min-width: 768px) {
  section h1 { font-size: 2.75rem; }
  section h2 { font-size: 2.25rem; }
  .hero-content h1 { font-size: 3.25rem; }
  .reviews-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  section h1 { font-size: 3.5rem; }
  .hero-content h1 { font-size: 4.25rem; }
  .reviews-title { font-size: 3.5rem; }
}