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

:root {
  /* Colors */
  --color-primary: #0E5FD9;
  --color-primary-hover: #084BB3;
  --color-secondary: #FF6B35;
  --color-secondary-hover: #E0531F;
  --color-navy-dark: #121C30;
  --color-navy-light: #1D2E4D;
  --color-beige-bg: #FAF6EA;
  --color-cream-card: #FEFBF3;
  --color-text-dark: #121C30;
  --color-text-muted: #5E697D;
  --color-text-light: #D1D8E6;
  --color-white: #FFFFFF;
  --color-gold: #FFC107;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Border Radii */
  --radius-pill: 50px;
  --radius-card: 20px;
  --radius-input: 12px;
  --radius-badge: 30px;
  
  /* Transition */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-beige-bg);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

.section-title-wrap {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
  background-color: rgba(255, 107, 53, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-badge);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy-dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
}

.section-dark .section-subtitle {
  color: var(--color-text-light);
}

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

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(14, 95, 217, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 95, 217, 0.35);
}

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

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 95, 217, 0.25);
}

.btn-orange {
  background-color: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.25);
}

.btn-orange:hover {
  background-color: var(--color-secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

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

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

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background-color: rgba(250, 246, 234, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(18, 28, 48, 0.05);
  padding: 12px 0;
}

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

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

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

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

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-navy-dark);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-smooth);
}

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

.nav-cta {
  padding: 10px 24px !important;
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  border-radius: var(--radius-pill);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-1px);
}

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

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-navy-dark);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  padding-top: 160px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
  background-color: var(--color-beige-bg);
}

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

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

.hero-badge-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-badge-wrap img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-badge-txt {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-navy-dark);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-navy-dark);
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--color-primary);
}

.hero-title-images {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  vertical-align: middle;
}

.hero-title-images img {
  width: 48px;
  height: 32px;
  border-radius: 20px;
  object-fit: cover;
}

.hero-desc {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}

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

.hero-play-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-navy-dark);
  font-size: 16px;
}

.hero-play-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.hero-play-btn:hover .hero-play-icon {
  background-color: var(--color-secondary-hover);
  transform: scale(1.1);
}

.hero-members {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-members-list {
  display: flex;
}

.hero-members-list img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--color-beige-bg);
  object-fit: cover;
  margin-left: -12px;
}

.hero-members-list img:first-child {
  margin-left: 0;
}

.hero-members-txt {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.hero-members-txt span {
  color: var(--color-navy-dark);
  font-weight: 700;
}

.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(18, 28, 48, 0.12);
  z-index: 2;
  object-fit: cover;
}

.hero-shape-1 {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: rgba(255, 107, 53, 0.15);
  z-index: 1;
}

.hero-shape-2 {
  position: absolute;
  bottom: -30px;
  left: -20px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(14, 95, 217, 0.08);
  z-index: 1;
}

/* Floating Stats Section */
.floating-stats {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  padding-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background-color: var(--color-navy-dark);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  color: var(--color-white);
  box-shadow: 0 15px 40px rgba(18, 28, 48, 0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-8px);
  background-color: var(--color-navy-light);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background-color: rgba(14, 95, 217, 0.25);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.stat-card:nth-child(even) .stat-icon {
  background-color: rgba(255, 107, 53, 0.25);
  color: var(--color-secondary);
}

.stat-info h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-info p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.4;
}

/* About / Experience Section */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

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

.about-img-box img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(18, 28, 48, 0.08);
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background-color: var(--color-navy-dark);
  color: var(--color-white);
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(18, 28, 48, 0.2);
  display: flex;
  align-items: center;
  gap: 16px;
}

.exp-num {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
}

.exp-txt {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--color-navy-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-desc {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

.about-list {
  list-style: none;
  margin-bottom: 36px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}

.about-list li i {
  color: var(--color-primary);
  font-size: 20px;
}

/* Service / Offerings Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background-color: var(--color-navy-light);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  background-color: var(--color-navy-dark);
  border-color: rgba(14, 95, 217, 0.3);
  box-shadow: 0 15px 40px rgba(14, 95, 217, 0.1);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(14, 95, 217, 0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 28px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-icon {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 24px;
  line-height: 1.5;
}

.service-card-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

/* Reviews/Testimonials Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.review-card {
  background-color: var(--color-navy-light);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-card:hover {
  transform: translateY(-6px);
  background-color: var(--color-navy-dark);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.review-rating {
  color: var(--color-gold);
  font-size: 16px;
  margin-bottom: 20px;
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 24px;
  font-style: italic;
}

.review-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.review-info h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
}

.review-info span {
  font-size: 12px;
  color: var(--color-text-light);
  opacity: 0.8;
}

/* Profiles/Nurses Grid ("Team") */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 480px;
  box-shadow: 0 15px 35px rgba(18, 28, 48, 0.08);
}

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

.team-card:hover .team-img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(18, 28, 48, 0.95) 0%, rgba(18, 28, 48, 0.6) 60%, transparent 100%);
  padding: 40px 30px 30px 30px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 60%;
  transition: var(--transition-smooth);
}

.team-overlay h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-overlay p {
  font-size: 14px;
  color: var(--color-text-light);
  opacity: 0.9;
  margin-bottom: 16px;
}

.team-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

/* Booking Section */
.booking-section {
  position: relative;
  background-color: var(--color-navy-dark);
  padding: 120px 0;
  overflow: hidden;
}

.booking-shape-1 {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 40px solid rgba(255, 107, 53, 0.03);
}

.booking-shape-2 {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 60px solid rgba(14, 95, 217, 0.04);
}

.booking-box {
  background-color: var(--color-cream-card);
  max-width: 800px;
  margin: 0 auto;
  border-radius: 30px;
  padding: 60px 80px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  color: var(--color-navy-dark);
}

.booking-box h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}

.booking-box p {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-group label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
}

.form-control {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 20px;
  border-radius: var(--radius-input);
  border: 1px solid rgba(18, 28, 48, 0.1);
  background-color: var(--color-white);
  color: var(--color-text-dark);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(14, 95, 217, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.booking-form button {
  grid-column: span 2;
  margin-top: 12px;
  width: 100%;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}

.blog-featured {
  background-color: var(--color-cream-card);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(18, 28, 48, 0.04);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.blog-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(18, 28, 48, 0.08);
}

.blog-feat-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.blog-feat-content {
  padding: 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-secondary);
  background-color: rgba(255, 107, 53, 0.1);
  padding: 4px 12px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.blog-feat-content h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 24px;
}

.blog-list-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-side-card {
  background-color: var(--color-cream-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(18, 28, 48, 0.04);
  display: flex;
  height: 232px;
  transition: var(--transition-smooth);
}

.blog-side-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(18, 28, 48, 0.06);
}

.blog-side-img {
  width: 40%;
  height: 100%;
  object-fit: cover;
}

.blog-side-content {
  width: 60%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-side-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.faq-left {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-left h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.faq-left p {
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--color-cream-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(18, 28, 48, 0.03);
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.faq-item.active {
  border-color: rgba(14, 95, 217, 0.2);
  box-shadow: 0 10px 25px rgba(18, 28, 48, 0.05);
}

.faq-header {
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  user-select: none;
}

.faq-icon-arrow {
  font-size: 20px;
  color: var(--color-primary);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-content {
  padding: 0 30px 24px 30px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Footer Section */
.footer {
  background-color: var(--color-navy-dark);
  color: var(--color-white);
  padding: 80px 0 30px 0;
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 40px;
  margin-bottom: 24px;
}

.footer-brand-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-brand-logo span {
  color: var(--color-primary);
}

.footer-brand p {
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.8;
}

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

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.footer-social-btn:hover {
  background-color: var(--color-primary);
  transform: translateY(-3px);
}

.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: 35px;
  height: 2px;
  background-color: var(--color-primary);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: var(--color-text-light);
  font-size: 14px;
  opacity: 0.8;
}

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

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

.footer-newsletter p {
  font-size: 14px;
  color: var(--color-text-light);
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.footer-newsletter-form input {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  flex-grow: 1;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-form input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.footer-newsletter-form button {
  background-color: var(--color-primary);
  border: none;
  color: var(--color-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.footer-newsletter-form button:hover {
  background-color: var(--color-primary-hover);
  transform: scale(1.05);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  font-size: 13px;
  color: var(--color-text-light);
  opacity: 0.7;
}

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

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: -350px;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--color-navy-dark);
  color: var(--color-white);
  padding: 20px 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-top: 2px solid rgba(14, 95, 217, 0.3);
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cookie-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-light);
}

.cookie-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

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

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

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

.cookie-btn-accept:hover {
  background-color: var(--color-primary-hover);
}

.cookie-btn-decline {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.cookie-btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Secondary Page Layouts */
.page-hero {
  background-color: var(--color-navy-dark);
  color: var(--color-white);
  padding: 160px 0 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.page-content-wrap {
  padding: 100px 0;
}

.legal-content {
  background-color: var(--color-cream-card);
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(18, 28, 48, 0.03);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 16px 0;
  color: var(--color-navy-dark);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.legal-content ul {
  margin-bottom: 24px;
  padding-left: 24px;
  font-size: 15px;
  color: var(--color-text-muted);
}

.legal-content li {
  margin-bottom: 10px;
}

/* Thank You Card */
.thank-you-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-beige-bg);
  padding: 24px;
}

.thank-you-card {
  background-color: var(--color-white);
  padding: 60px 48px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(18, 28, 48, 0.08);
  max-width: 500px;
  width: 100%;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(14, 95, 217, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 30px auto;
}

.thank-you-card h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-navy-dark);
  margin-bottom: 16px;
}

.thank-you-card p {
  color: var(--color-text-muted);
  font-size: 16px;
  margin-bottom: 36px;
  line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section {
    padding: 80px 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-members {
    justify-content: center;
  }
  
  .floating-stats {
    margin-top: 0;
    padding-top: 40px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-side-card {
    height: auto;
    flex-direction: column;
  }
  
  .blog-side-img {
    width: 100%;
    height: 200px;
  }
  
  .blog-side-content {
    width: 100%;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .faq-left {
    position: static;
    text-align: center;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 44px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-box {
    padding: 40px 24px;
  }
  
  .booking-form {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .booking-form button {
    grid-column: span 1;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .legal-content {
    padding: 30px 20px;
  }
  
  /* Navigation mobile menu */
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 24px;
    right: 24px;
    background-color: var(--color-cream-card);
    border-radius: 20px;
    padding: 30px;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 35px rgba(18, 28, 48, 0.1);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 8px 0;
    display: block;
  }
  
  /* Menu icon active state */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }
}
