/* ==========================================================================
   DESIGN SYSTEM - THE LUXE PARLOR (Rebranded & Reconstructed Style Sheet)
   ========================================================================== */

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

:root {
  /* Colors derived from reference image */
  --bg-primary: #ffffff;
  --bg-secondary: #f4f9f6;
  --bg-mint: #eafaf1;
  --bg-dark: #0a2240;
  
  --accent-green: #00b074;
  --accent-green-hover: #009662;
  --accent-orange: #ffa800;
  --accent-orange-hover: #e69700;
  
  --text-dark: #061a33;
  --text-muted: #5c6b73;
  --text-light: #ffffff;
  
  --border-color: #e2ede7;
  --white: #ffffff;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: all 0.2s ease-in-out;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(6, 26, 51, 0.03);
  --shadow-md: 0 10px 30px rgba(6, 26, 51, 0.05);
  --shadow-lg: 0 20px 40px rgba(6, 26, 51, 0.08);
  --shadow-green: 0 10px 30px rgba(0, 176, 116, 0.15);
  --shadow-hover: 0 22px 48px rgba(6, 26, 51, 0.12);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-pill: 100px;
  --radius-circle: 50%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

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

p {
  margin-bottom: 1.5rem;
}

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

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

/* Common Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-bg-alt {
  background-color: var(--bg-secondary);
}

.section-mint {
  background-color: var(--bg-mint);
}

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

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

.section-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.section-header {
  margin-bottom: 60px;
}

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

.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  background-color: var(--bg-mint);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

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

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Row Headers for sections with side buttons */
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.section-header-row .section-header {
  margin-bottom: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 8px;
}

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

.btn-primary:hover {
  background-color: var(--accent-green-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-secondary {
  background-color: var(--accent-orange);
  color: var(--text-dark);
  font-weight: 700;
}

.btn-secondary:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 168, 0, 0.25);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--accent-green);
  color: var(--accent-green);
}

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

.btn-text-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.btn-text-link i {
  font-size: 18px;
  transition: var(--transition-fast);
}

.btn-text-link:hover {
  color: var(--accent-green);
}

.btn-text-link:hover i {
  transform: translateX(4px);
}

/* Sticky Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand span {
  color: var(--accent-green);
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-green);
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
}

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

.nav-links a:hover {
  color: var(--accent-green);
}

.nav-links .nav-cta {
  background-color: var(--accent-green);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  transition: var(--transition-smooth);
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-links .nav-cta:hover {
  background-color: var(--accent-green-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background-color: var(--text-dark);
  border-radius: 4px;
  transition: var(--transition-fast);
}

/* Page Hero Header (Inner pages) */
.page-hero {
  padding: 180px 0 100px 0;
  background-color: var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, var(--bg-mint) 0%, transparent 60%);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 20px;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
}

/* --------------------------------------------------------------------------
   HOMEPAGE LAYOUT (Derived from reference image)
   -------------------------------------------------------------------------- */

/* 1. Hero Section */
.hero-section {
  padding: 200px 0 120px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background-color: var(--bg-mint);
  border-radius: var(--radius-circle);
  z-index: 1;
  opacity: 0.6;
  filter: blur(50px);
}

.hero-section .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-section .section-label {
  margin-bottom: 24px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title span.green-text {
  color: var(--accent-green);
}

.hero-desc {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

/* 2. Top Card Grid Overlay */
.top-card-section {
  margin-top: -60px;
  position: relative;
  z-index: 5;
  padding-bottom: 80px;
}

.top-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.top-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-green);
}

.top-card-icon {
  width: 70px;
  height: 70px;
  background-color: var(--bg-mint);
  color: var(--accent-green);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.top-card:hover .top-card-icon {
  background-color: var(--accent-green);
  color: var(--white);
}

.top-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.top-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.top-card-btn {
  width: 48px;
  height: 48px;
  background-color: var(--accent-green);
  color: var(--white);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition-smooth);
  margin-top: auto;
}

.top-card:hover .top-card-btn {
  background-color: var(--accent-orange);
  color: var(--text-dark);
}

/* 3. Circular Layout Section (Feature Presentation) */
.circular-feature-section {
  padding: 80px 0;
  background-color: var(--white);
}

.circular-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.circular-feature-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-media-bg {
  position: absolute;
  width: 85%;
  height: 85%;
  border: 2px dashed var(--accent-green);
  border-radius: var(--radius-circle);
  z-index: 1;
  animation: rotateCircle 30s linear infinite;
}

.circle-media-img {
  position: relative;
  width: 75%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-circle);
  border: 10px solid var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.circle-floating-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-green);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-green);
  z-index: 3;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
}

.circle-floating-badge span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.8;
}

.circular-feature-content h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
}

.circular-feature-content p {
  margin-bottom: 30px;
  font-size: 16px;
}

.feature-check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
  list-style: none;
}

.feature-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
}

.feature-check-icon {
  width: 28px;
  height: 28px;
  background-color: var(--bg-mint);
  color: var(--accent-green);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* 4. Stats Counter Bar (Full Width Green Banner) */
.stats-banner {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-hover) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 90%, rgba(255,255,255,0.1) 0%, transparent 50%);
  z-index: 1;
}

.stats-banner .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 60px;
}

.stats-banner-text h2 {
  color: var(--white);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.stats-banner-text p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  font-size: 16px;
}

.stats-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stats-banner-card {
  padding: 20px;
  border-left: 3px solid var(--accent-orange);
}

.stats-banner-card h3 {
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.stats-banner-card p {
  margin-bottom: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
}

/* 5. Why Choose Us Section */
.why-choose-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.why-choose-media {
  position: relative;
}

.why-choose-img {
  width: 90%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 0.95;
}

.why-choose-badge {
  position: absolute;
  top: 10%;
  left: -8px;
  background-color: var(--accent-orange);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.why-choose-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.why-choose-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  list-style: none;
  margin-top: 30px;
  margin-bottom: 40px;
}

.why-choose-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-dark);
}

.why-choose-list-item i {
  color: var(--accent-green);
  font-size: 18px;
}

/* 6. Popular Services Section */
.services-section {
  padding: 100px 0;
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-green);
}

.service-card-media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.service-card-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: var(--accent-green);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.service-card-body {
  padding: 30px 24px;
}

.service-card-body h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}

.service-card-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--accent-green);
}

.service-card-price span {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 6px;
}

/* 7. Meet The Team Section */
.team-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.team-info-side {
  max-width: 480px;
}

.team-info-side h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.team-collage-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
}

.team-member-circle {
  position: relative;
  border-radius: var(--radius-circle);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  border: 6px solid var(--white);
  aspect-ratio: 1;
}

.team-member-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.team-member-circle:hover img {
  transform: scale(1.1);
}

/* Stagger placement like reference image */
.team-member-circle:nth-child(1) {
  width: 170px;
  justify-self: end;
  align-self: end;
}
.team-member-circle:nth-child(2) {
  width: 200px;
  justify-self: start;
  align-self: center;
}
.team-member-circle:nth-child(3) {
  width: 180px;
  justify-self: end;
  align-self: start;
}
.team-member-circle:nth-child(4) {
  width: 220px;
  justify-self: start;
  align-self: start;
}

/* 8. Happy Clients Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #061a33 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials-section .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.testimonials-content h2 {
  color: var(--white);
  font-size: 38px;
  margin-bottom: 24px;
}

.testimonials-slider {
  position: relative;
}

.testimonial-slide {
  outline: none;
}

.testimonial-quote {
  font-size: 20px;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-size: 80px;
  position: absolute;
  top: -40px;
  left: -20px;
  color: rgba(0, 176, 116, 0.2);
  font-family: var(--font-heading);
}

.testimonial-author-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author-avatar {
  width: 60px;
  height: 60px;
  background-color: var(--accent-green);
  color: var(--white);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  box-shadow: var(--shadow-green);
}

.testimonial-author-meta h4 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}

.testimonial-author-meta span {
  font-size: 13px;
  color: var(--accent-green);
  font-weight: 600;
  text-transform: uppercase;
}

.testimonials-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.testimonials-side-img {
  width: 85%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 8px solid rgba(255, 255, 255, 0.05);
}

.testimonials-floating-avatars {
  position: absolute;
  top: 10%;
  left: -20px;
  background-color: rgba(10, 34, 64, 0.85);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
}

.testimonials-floating-avatars img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-circle);
  border: 2px solid var(--accent-green);
}

.testimonials-floating-avatars span {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}

/* 9. Booking/Contact Section */
.booking-section {
  padding: 100px 0;
  background-color: var(--white);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.booking-media {
  display: flex;
  justify-content: center;
}

.booking-host-img {
  width: 85%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 0.95;
}

.booking-form-container {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 50px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.booking-form-container h2 {
  font-size: 32px;
  margin-bottom: 14px;
}

.booking-form-container p {
  font-size: 15px;
  margin-bottom: 30px;
}

/* Modern Form Controls */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--border-color);
  background-color: var(--white);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300b074' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
  padding-right: 40px;
}

textarea.form-control {
  border-radius: var(--radius-md);
  resize: vertical;
  min-height: 120px;
}

.form-control::placeholder {
  color: #a0aec0;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 4px rgba(0, 176, 116, 0.1);
}

/* --------------------------------------------------------------------------
   FOOTER (Solid green matching reference design)
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--accent-green);
  color: var(--white);
  padding: 80px 0 30px 0;
  position: relative;
}

.footer h4, .footer a, .footer p {
  color: var(--white);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 50px;
  margin-bottom: 30px;
}

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

.footer-brand .navbar-brand {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 20px;
}

.footer-brand .navbar-brand span {
  color: var(--accent-orange);
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  background-color: var(--accent-orange);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.footer-col {
  flex: 1 1 180px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-orange);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  opacity: 0.85;
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--accent-orange);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  opacity: 0.8;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

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

/* --------------------------------------------------------------------------
   COOKIE CONSENT BANNER
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 600px;
  background-color: rgba(10, 34, 64, 0.95);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
  animation: slideUp 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-inner p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-inner p a {
  color: var(--accent-green);
  text-decoration: underline;
}

.cookie-inner p a:hover {
  color: var(--white);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-buttons .btn {
  padding: 8px 20px;
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   RESPONSIVE LAYOUTS
   -------------------------------------------------------------------------- */

/* Tablet Breakpoint (992px) */
@media (max-width: 992px) {
  .section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 32px;
  }

  .hero-title {
    font-size: 42px;
  }

  .top-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .top-card-section {
    margin-top: -30px;
    padding-bottom: 60px;
  }

  .circular-feature-grid,
  .stats-banner .container,
  .why-choose-grid,
  .services-grid,
  .team-grid,
  .testimonials-section .container,
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .circular-feature-media,
  .why-choose-media,
  .team-collage-side,
  .testimonials-media,
  .booking-media {
    order: -1;
  }

  .team-collage-side {
    max-width: 500px;
    margin: 0 auto;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-color);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links .nav-cta {
    display: inline-block;
    width: 100%;
    max-width: 280px;
  }
  
  .footer-grid {
    justify-content: flex-start;
  }
}

/* Mobile Breakpoint (768px) */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .form-group.full-width {
    grid-column: span 1;
  }

  .booking-form-container {
    padding: 30px 20px;
  }

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

/* Animations */
@keyframes rotateCircle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Slick Carousel Dots Styling */
.slick-dots {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  justify-content: center;
  list-style: none;
  padding: 0;
  width: 100%;
}

.slick-dots li {
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: var(--radius-circle);
  background-color: rgba(255, 255, 255, 0.3);
  transition: var(--transition-smooth);
}

.slick-dots li.slick-active span {
  background-color: var(--accent-green);
  transform: scale(1.3);
}

.slick-dots li:hover span {
  background-color: var(--accent-orange);
}

