@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #4B6D57;
  --primary-hover: #3D5846;
  --accent-color: #E59A84;
  --accent-hover: #D48872;
  --text-dark: #1E2A22;
  --text-muted: #5A6A5E;
  --text-light: #fff;
  --bg-light: #FAF9F6;
  --bg-sage: #F2F6F3;
  --bg-white: #FFFFFF;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 50px;
  --shadow-subtle: 0 4px 20px rgba(75, 109, 87, 0.05);
  --shadow-card: 0 10px 30px rgba(30, 42, 34, 0.08);
  --shadow-lift: 0 20px 40px rgba(30, 42, 34, 0.15);
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

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

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

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

/* Section Padding */
.section {
  padding: 90px 0;
}
.section-sage {
  background-color: var(--bg-sage);
}
.section-white {
  background-color: var(--bg-white);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(75, 109, 87, 0.1);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-subtle);
}

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

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand img {
  height: 40px;
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover {
  color: var(--primary-color);
}

.nav-cta {
  background-color: var(--accent-color);
  color: var(--text-light) !important;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(229, 154, 132, 0.3);
}
.nav-cta:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 154, 132, 0.4);
}
.nav-cta::after {
  display: none !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1010;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-dark);
  margin: 5px 0;
  transition: var(--transition);
}

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

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

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

.hero-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 400;
}
.hero h1 span {
  font-style: italic;
  color: var(--primary-color);
  font-weight: 600;
}

.hero-text {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

/* Button UI */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 4px 14px rgba(75, 109, 87, 0.2);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75, 109, 87, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--text-light);
  box-shadow: 0 4px 14px rgba(229, 154, 132, 0.25);
}
.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 154, 132, 0.35);
}

/* Hero Feature Cards - overlapping at the bottom */
.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.hero-feat-card {
  padding: 30px;
  border-radius: var(--radius-md);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  transition: var(--transition);
}
.hero-feat-card:hover {
  transform: translateY(-5px);
}
.hero-feat-card.dark {
  background-color: var(--text-dark);
}
.hero-feat-card.sage {
  background-color: var(--primary-color);
}
.hero-feat-card h3 {
  font-size: 26px;
  color: var(--text-light);
  margin-bottom: 10px;
}
.hero-feat-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.hero-feat-card .feat-link {
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-feat-card .feat-link i {
  transition: var(--transition);
}
.hero-feat-card:hover .feat-link i {
  transform: translateX(5px);
}

.hero-image-wrap {
  position: relative;
}
.hero-main-img {
  width: 100%;
  border-radius: 200px 200px 0 0;
  object-fit: cover;
  height: 600px;
  box-shadow: var(--shadow-card);
}
.hero-badge-circle {
  position: absolute;
  top: 10%;
  left: -40px;
  background-color: var(--accent-color);
  color: var(--text-light);
  width: 90px;
  height: 90px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  transform: rotate(-12deg);
  box-shadow: 0 8px 20px rgba(229, 154, 132, 0.3);
  animation: floatCircle 6s ease-in-out infinite;
}

@keyframes floatCircle {
  0%, 100% { transform: translateY(0) rotate(-12deg); }
  50% { transform: translateY(-10px) rotate(-8deg); }
}

/* Stats Bar */
.stats-bar {
  padding: 40px 0;
  background-color: var(--bg-white);
  border-top: 1px solid rgba(75, 109, 87, 0.1);
  border-bottom: 1px solid rgba(75, 109, 87, 0.1);
}
.stats-row {
  display: flex;
  justify-content: space-around;
  text-align: center;
}
.stat-item h3 {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 5px;
}
.stat-item p {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
}
.about-img-left {
  grid-row: span 2;
  border-radius: var(--radius-full) var(--radius-full) 0 var(--radius-full);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
.about-img-right-1 {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 230px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
.about-img-right-2 {
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  width: 100%;
  height: 230px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.about-content .section-label {
  color: var(--accent-color);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.about-content h2 {
  font-size: 48px;
  margin-bottom: 24px;
  font-weight: 400;
}
.about-content h2 span {
  font-style: italic;
  color: var(--primary-color);
}

.about-content p {
  font-size: 16px;
  margin-bottom: 24px;
}

.about-exp-box {
  display: flex;
  gap: 25px;
  background-color: var(--bg-sage);
  padding: 24px;
  border-radius: var(--radius-md);
  margin-bottom: 35px;
}
.about-exp-num {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}
.about-exp-text {
  font-size: 15px;
  align-self: center;
  font-weight: 500;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
}
.about-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}
.about-feat-item i {
  color: var(--primary-color);
  font-size: 18px;
}

/* Logos Slider */
.logos-bar {
  padding: 50px 0;
  background-color: var(--bg-sage);
  overflow: hidden;
}
.logos-title {
  text-align: center;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 600;
}
.logos-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.logos-row img {
  height: 30px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: var(--transition);
}
.logos-row img:hover {
  opacity: 0.9;
  filter: grayscale(0%);
}

/* Why Choose Us Section */
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.why-left-box {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.why-left-box h2 {
  color: var(--text-light);
  font-size: 42px;
  margin-bottom: 24px;
  font-weight: 400;
}
.why-left-box h2 span {
  font-style: italic;
  color: var(--accent-color);
}
.why-left-box p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 15px;
}
.why-item-icon {
  background-color: rgba(255, 255, 255, 0.15);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-item-icon i {
  color: var(--text-light);
  font-size: 20px;
}
.why-item-content h4 {
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 4px;
}
.why-item-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

.why-right-wrap {
  position: relative;
}
.why-right-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* Service Grid (6 Cards) */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}
.section-header .section-label {
  color: var(--accent-color);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}
.section-header h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 400;
}
.section-header h2 span {
  font-style: italic;
  color: var(--primary-color);
}

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

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card);
}

.service-img-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}
.service-icon-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: var(--bg-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-subtle);
  z-index: 2;
}
.service-icon-badge i {
  color: var(--primary-color);
  font-size: 24px;
}

.service-body {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-body h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.service-body p {
  font-size: 15px;
  margin-bottom: 24px;
  flex-grow: 1;
}
.service-price {
  font-size: 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.service-price .old {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}
.service-card .btn-accent {
  align-self: flex-start;
  padding: 10px 24px;
  font-size: 14px;
}

/* Callout Banner */
.callout-banner {
  background-color: var(--bg-sage);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  margin-top: 50px;
}
.callout-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 100%;
  background-image: url('../img/why.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
.callout-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}
.callout-banner h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 400;
}
.callout-banner h2 span {
  font-style: italic;
  color: var(--primary-color);
}
.callout-banner p {
  font-size: 16px;
  margin-bottom: 30px;
}

/* Booking Section */
.booking-section {
  position: relative;
  background-image: linear-gradient(rgba(30, 42, 34, 0.85), rgba(30, 42, 34, 0.85)), url('../img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-light);
}
.booking-section h2 {
  color: var(--text-light);
}
.booking-section p {
  color: rgba(255, 255, 255, 0.7);
}
.booking-form-wrap {
  background-color: var(--bg-white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-dark);
}
.booking-form-wrap h3 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 35px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group-full {
  grid-column: span 2;
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.form-control {
  padding: 14px 20px;
  border: 1px solid rgba(75, 109, 87, 0.2);
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--primary-color);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(75, 109, 87, 0.15);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.booking-form-wrap .btn {
  width: 100%;
  padding: 16px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}
.pricing-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 50px 40px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}
.pricing-card.featured {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 1px solid var(--primary-color);
}
.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .price span,
.pricing-card.featured p {
  color: var(--text-light);
}
.pricing-card-badge {
  position: absolute;
  top: 25px;
  right: -35px;
  background-color: var(--accent-color);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 40px;
  transform: rotate(45deg);
  text-transform: uppercase;
}
.pricing-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
}
.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 24px;
  line-height: 1;
}
.pricing-card .price span {
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-card p {
  font-size: 14px;
  margin-bottom: 30px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  flex-grow: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.pricing-features i {
  font-size: 16px;
}
.pricing-card:not(.featured) .pricing-features i {
  color: var(--primary-color);
}
.pricing-card.featured .pricing-features i {
  color: var(--accent-color);
}
.pricing-card.featured .btn {
  background-color: var(--bg-white);
  color: var(--primary-color);
}
.pricing-card.featured .btn:hover {
  background-color: var(--bg-sage);
  color: var(--primary-hover);
}

/* Testimonial Area */
.testimonial-area {
  background-color: var(--bg-sage);
}
.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-card {
  text-align: center;
  padding: 20px;
}
.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--accent-color);
  line-height: 1;
  height: 40px;
  margin-bottom: 20px;
}
.testimonial-text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 30px;
  line-height: 1.4;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  object-fit: cover;
}
.testimonial-author h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}
.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Newsletter Section */
.newsletter-section {
  background-color: var(--bg-white);
  padding: 70px 0;
  border-top: 1px solid rgba(75, 109, 87, 0.1);
}
.newsletter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.newsletter-inner h3 {
  font-size: 36px;
  font-weight: 400;
  max-width: 450px;
}
.newsletter-inner h3 span {
  font-style: italic;
  color: var(--primary-color);
}
.newsletter-form {
  display: flex;
  gap: 15px;
  width: 100%;
  max-width: 550px;
}
.newsletter-form .form-control {
  flex-grow: 1;
  background-color: var(--bg-sage);
}
.newsletter-form .btn {
  white-space: nowrap;
}

/* Footer styling */
.footer {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 80px 0 40px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand {
  max-width: 320px;
}
.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
  display: block;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 15px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}
.footer-social a:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

.footer-col {
  min-width: 150px;
}
.footer-col h4 {
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.footer-col ul a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom-links {
  display: flex;
  gap: 25px;
}
.footer-bottom-links a:hover {
  color: var(--accent-color);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  width: 90%;
  max-width: 600px;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-lift);
  border-radius: var(--radius-md);
  padding: 24px;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, visibility 0.5s ease;
  border-left: 5px solid var(--primary-color);
}
.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}
.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-inner p {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
}
.cookie-inner p a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-buttons .btn {
  padding: 8px 20px;
  font-size: 13px;
}

/* Inner Page Hero Header */
.inner-hero {
  padding: 150px 0 70px;
  background-color: var(--bg-sage);
  text-align: center;
}
.inner-hero h1 {
  font-size: 54px;
  margin-bottom: 12px;
}
.breadcrumbs {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
.breadcrumbs a {
  color: var(--primary-color);
}

/* Contact page elements */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.contact-info-panel {
  background-color: var(--bg-sage);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
}
.contact-info-panel h3 {
  font-size: 28px;
  margin-bottom: 24px;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-info-item {
  display: flex;
  gap: 15px;
}
.contact-info-item i {
  color: var(--primary-color);
  font-size: 20px;
  margin-top: 4px;
}
.contact-info-item h4 {
  font-size: 16px;
  margin-bottom: 5px;
}
.contact-info-item p {
  font-size: 14px;
  margin: 0;
}

/* Thank You & Legal Page layout */
.content-page-wrap {
  padding: 90px 0;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-white);
  padding: 50px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
}
.legal-content h2 {
  font-size: 32px;
  margin: 30px 0 15px;
  font-weight: 600;
}
.legal-content h3 {
  font-size: 22px;
  margin: 25px 0 10px;
}
.legal-content p, .legal-content ul {
  margin-bottom: 20px;
  font-size: 15px;
}
.legal-content ul {
  padding-left: 20px;
}
.legal-content li {
  margin-bottom: 8px;
  color: var(--text-muted);
}

/* Thank You Card */
.thank-you-card {
  text-align: center;
  max-width: 600px;
  margin: 120px auto;
  background-color: var(--bg-white);
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border-top: 6px solid var(--primary-color);
}
.thank-you-card i {
  font-size: 64px;
  color: var(--primary-color);
  margin-bottom: 24px;
  display: block;
}
.thank-you-card h1 {
  font-size: 44px;
  margin-bottom: 16px;
}
.thank-you-card p {
  font-size: 16px;
  margin-bottom: 30px;
}

/* Slick Carousel adjustments */
.slick-dots {
  display: flex !important;
  justify-content: center;
  list-style: none;
  gap: 8px;
  margin-top: 30px;
}
.slick-dots li button {
  font-size: 0;
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: rgba(75, 109, 87, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.slick-dots li.slick-active button {
  background-color: var(--primary-color);
  width: 24px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-image-wrap {
    order: -1;
  }
  .hero-main-img {
    height: 450px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }
  .hero-features {
    grid-template-columns: 1fr;
  }
  .stats-row {
    flex-direction: column;
    gap: 30px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .booking-form-wrap {
    padding: 30px 20px;
  }
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 50px 20px;
    gap: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
  }
  .nav-links.active {
    left: 0;
  }
  .menu-toggle {
    display: block;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
