@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --primary: hsl(222, 47%, 16%);
  --primary-light: hsl(222, 40%, 25%);
  --primary-rgb: 22, 28, 45;
  --accent: hsl(35, 92%, 47%);
  --accent-hover: hsl(35, 92%, 40%);
  --accent-light: hsl(35, 92%, 96%);
  --success: hsl(152, 76%, 34%);
  --success-light: hsl(152, 76%, 95%);
  --danger: hsl(350, 76%, 45%);
  --danger-light: hsl(350, 76%, 95%);
  
  /* Backgrounds */
  --bg-main: hsl(210, 20%, 98%);
  --bg-surface: hsl(0, 0%, 100%);
  --bg-surface-glass: rgba(255, 255, 255, 0.85);
  
  /* Text */
  --text-main: hsl(222, 47%, 12%);
  --text-muted: hsl(215, 16%, 47%);
  --text-light: hsl(210, 20%, 98%);
  
  /* Borders */
  --border: hsl(214, 32%, 91%);
  --border-focus: hsl(222, 47%, 40%);
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px -1px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 24px -4px rgba(22, 28, 45, 0.06), 0 4px 12px -2px rgba(22, 28, 45, 0.03);
  --shadow-lg: 0 24px 48px -8px rgba(22, 28, 45, 0.1), 0 8px 16px -4px rgba(22, 28, 45, 0.04);
  --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);

  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

ul {
  list-style: none;
}

/* Common Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.1rem;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  cursor: pointer;
  border: 1px solid transparent;
  gap: 0.5rem;
  font-size: 0.95rem;
}

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

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -8px rgba(217, 119, 6, 0.4);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -8px rgba(22, 28, 45, 0.2);
}

.btn-outline-white {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

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

/* Floating Glassmorphism Navbar */
.navbar {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: var(--bg-surface-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  top: 0;
  width: 100%;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 2rem;
}

.nav-brand {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  left: 0;
  transition: var(--transition-normal);
}

.nav-toggle span:nth-child(1) { top: 4px; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 18px; }

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}

/* Hero Section */
.hero {
  padding: 10rem 0 6rem 0;
  background: radial-gradient(circle at 10% 20%, rgba(217, 119, 6, 0.05) 0%, rgba(22, 28, 45, 0.02) 90%);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  background-color: var(--accent-light);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(217, 119, 6, 0.15);
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-bg {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  filter: blur(40px);
  opacity: 0.15;
  z-index: 1;
  animation: morphing 15s ease-in-out infinite alternate;
}

.hero-image {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: var(--transition-slow);
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Floating Card inside Hero */
.hero-floating-card {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: white;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
  border-left: 5px solid var(--success);
  animation: float 4s ease-in-out infinite;
}

.floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--success-light);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.floating-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.floating-info p {
  font-size: 0.75rem;
}

/* Core Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--bg-surface);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--accent);
  transition: var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.value-card:hover::before {
  height: 100%;
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background-color: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 0.95rem;
}

/* Home Quick Inquiry */
.quick-inquiry {
  background-color: var(--primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: 4rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  margin-top: -3rem;
  z-index: 10;
}

.quick-inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.inquiry-left h2 {
  color: white;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.inquiry-left p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.inquiry-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.inquiry-bullets svg {
  color: var(--accent);
}

.inquiry-form-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  color: var(--text-main);
}

.inquiry-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--bg-main);
  padding-bottom: 0.5rem;
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  color: var(--text-main);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

/* Service page styles */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-item-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card-banner {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.service-card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-item-card:hover .service-card-banner img {
  transform: scale(1.08);
}

.service-card-hours {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.service-card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.service-card-body p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-highlights-list {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-highlights-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
}

.service-highlights-list svg {
  color: var(--success);
  width: 16px;
  height: 16px;
}

.service-card-footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem 2rem;
  background-color: var(--bg-main);
}

.service-card-link {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.service-card-link svg {
  transition: var(--transition-fast);
}

.service-card-link:hover {
  color: var(--accent);
}

.service-card-link:hover svg {
  transform: translateX(4px);
}

/* Service Area Banner */
.service-area-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 5rem 4rem;
  text-align: center;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-area-banner h2 {
  color: white;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.service-area-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto 3rem auto;
}

.cities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.city-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
  transition: var(--transition-normal);
}

.city-badge:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px -4px rgba(217, 119, 6, 0.4);
}

/* About Screen specific components */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-group {
  position: relative;
}

.about-img-large {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid white;
  z-index: 2;
  position: relative;
}

.about-img-small {
  position: absolute;
  bottom: -3rem;
  right: -2rem;
  width: 55%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 6px solid white;
  z-index: 3;
  animation: float 5s ease-in-out infinite alternate;
}

.about-experience-badge {
  position: absolute;
  top: -2rem;
  left: -2rem;
  background: var(--accent);
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 4;
}

.about-experience-badge h4 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.about-experience-badge p {
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.founder-quote {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 2.5rem;
}

.founder-quote-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.founder-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
}

.founder-title {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

/* Vetting Process steps timeline */
.vetting-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.vetting-step {
  text-align: center;
  position: relative;
}

.vetting-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 35px;
  left: 60%;
  width: 80%;
  height: 2px;
  border-top: 2px dashed var(--border);
  z-index: 1;
}

.vetting-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--accent);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.vetting-step:hover .vetting-num {
  background: var(--accent);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 20px -6px rgba(217, 119, 6, 0.4);
}

.vetting-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.vetting-step p {
  font-size: 0.85rem;
}

/* Booking page styles */
.booking-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.booking-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.booking-form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--bg-main);
  padding-bottom: 0.75rem;
}

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

/* Calculator Card widget */
.calc-card {
  background: var(--primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: sticky;
  top: 7rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.calc-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.calc-card h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 0.75rem;
}

.calc-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.calc-row.total {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.25rem;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.calc-row.total span:last-child {
  color: var(--accent);
}

.calc-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  margin-top: 1.5rem;
  text-align: center;
}

/* Custom Checkbox/Radio */
.radio-tile-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.radio-tile-label {
  position: relative;
  cursor: pointer;
}

.radio-tile-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  text-align: center;
  height: 100%;
}

.radio-tile svg {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.radio-tile span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
}

.radio-tile-label input:checked + .radio-tile {
  border-color: var(--accent);
  background-color: var(--accent-light);
}

.radio-tile-label input:checked + .radio-tile span {
  color: var(--accent-hover);
}

.radio-tile-label input:checked + .radio-tile svg {
  color: var(--accent);
}

/* Contact page structures */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item-link {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background-color: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-item-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.contact-item-details p {
  font-size: 0.95rem;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  margin-top: 1rem;
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
  border: none;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -8px rgba(37, 211, 102, 0.4);
}

.map-container-wrapper {
  margin-top: 4rem;
  background: white;
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.map-container-wrapper h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

#map {
  height: 380px;
  width: 100%;
  border-radius: var(--radius-md);
  z-index: 1;
}

/* Testimonial slider styles */
.testimonial-section {
  background-color: var(--primary-light);
  color: white;
}

.testimonial-section .section-title {
  color: white;
}

.testimonial-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  padding: 1.5rem;
  text-align: center;
  box-sizing: border-box;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
  position: relative;
}

.testimonial-quote-icon {
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  font-family: Georgia, serif;
  position: absolute;
  top: 1rem;
  left: 2rem;
}

.testimonial-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
}

.author-role {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* Premium Footer */
.footer {
  background-color: var(--primary);
  color: white;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-about .brand-title {
  color: white;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1.25rem;
  font-size: 0.9rem;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  align-items: flex-start;
}

.footer-contact-item svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

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

/* Success Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 28, 45, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.85);
  transition: var(--transition-normal);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--success-light);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem auto;
}

.modal-content h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.modal-content p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* Keyframes & Animations */
@keyframes morphing {
  0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { border-radius: 50% 50% 30% 70% / 50% 60% 40% 60%; }
  100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .quick-inquiry-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-img-group {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .vetting-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .vetting-step:nth-child(2)::after {
    display: none;
  }
  
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .calc-card {
    position: static;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  
  .navbar {
    padding: 0.75rem 1.5rem;
  }
  
  .nav-links {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-normal);
  }
  
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-actions {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .vetting-timeline {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .vetting-step::after {
    display: none !important;
  }
  
  .quick-inquiry {
    padding: 2rem;
  }
  
  .inquiry-form-card {
    padding: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Mobile View - Side-by-side 2 column cards */
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  
  .service-item-card {
    border-radius: var(--radius-sm) !important;
  }
  
  .service-card-banner {
    height: 115px !important;
  }
  
  .service-card-hours {
    font-size: 0.6rem !important;
    padding: 0.2rem 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }
  
  .service-card-body {
    padding: 0.75rem !important;
  }
  
  .service-card-body h3 {
    font-size: 0.95rem !important;
    margin-bottom: 0.25rem !important;
  }
  
  .service-card-body p {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.5rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .service-highlights-list {
    display: none !important; /* Hide list on mobile to save vertical space */
  }
  
  .service-card-footer {
    padding: 0.5rem 0.75rem !important;
  }
  
  .service-card-link {
    font-size: 0.75rem !important;
  }
}

/* Sticky WhatsApp Button & Mobile Bottom Nav styles */
.whatsapp-sticky {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: var(--transition-normal);
  animation: pulse-wa 2s infinite;
}

.whatsapp-sticky:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
  background-color: #128c7e;
  color: white;
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  border-top: 1px solid var(--border);
  z-index: 9998;
}

@media (max-width: 768px) {
  .bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.5rem 0;
  }
  
  .bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
  }
  
  .bottom-nav-item svg {
    margin-bottom: 0.2rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
  }
  
  .bottom-nav-item:hover,
  .bottom-nav-item.active {
    color: var(--accent);
  }
  
  .bottom-nav-item:hover svg,
  .bottom-nav-item.active svg {
    color: var(--accent);
  }
  
  .whatsapp-sticky {
    bottom: 5.5rem !important;
    right: 1.5rem !important;
    width: 50px !important;
    height: 50px !important;
  }
  
  .whatsapp-sticky svg {
    width: 26px !important;
    height: 26px !important;
  }
  
  body {
    padding-bottom: 4.5rem !important;
  }
}
