@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  background-color: #8db2a2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

a:hover {
  color: #3a6b55;
}

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

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

/* ===== HEADER ===== */
.header {
  background: #8db2a2;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.contact-bar {
  text-align: center;
  padding: 8px 16px;
  font-size: 14px;
  color: #fff;
}

.contact-bar a {
  color: #fff;
}

@media (min-width: 1024px) {
  .contact-bar {
    display: block;
  }
}

@media (max-width: 1023px) {
  .contact-bar {
    display: none;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  color: #fff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s;
}

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

.nav-links a.active {
  color: #fff;
}

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

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-block;
    background: #fff;
    color: #8db2a2;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
  }
  .nav-cta:hover {
    background: #f0f0f0;
    color: #8db2a2;
  }
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-nav {
  display: none;
  background: #8db2a2;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* ===== HERO ===== */
.hero {
  background: #fff;
  padding: 48px 24px;
  display: flex;
  justify-content: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-logo {
  height: 80px;
  width: auto;
}

.hero-tagline {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-align: center;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero-logo-box {
  background: #fff;
  border: 4px solid #8db2a2;
  border-radius: 8px;
  padding: 16px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-box img {
  height: 60px;
  width: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero-tagline {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-align: center;
  margin-bottom: 16px;
}

.hero-bottom {
  background: #fff;
  padding: 32px 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 8px 40px;
  border-radius: 48px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.hero-btn:hover {
  opacity: 0.85;
}

.hero-btn-green {
  background: #8db2a2;
  color: #000;
}

.hero-bg {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 24px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-block;
  background: #8db2a2;
  color: #fff;
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #6d9a86;
  color: #fff;
}

/* ===== SECTIONS ===== */
.section {
  background: #fff;
  padding: 60px 0;
  margin-top: 40px;
}

.section-green {
  background: #8db2a2;
  padding: 60px 0;
  color: #fff;
  margin-top: 40px;
}

.section-green .section-title {
  color: #fff;
}

.section-title {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  text-align: center;
  color: #000;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 52px;
  }
}

/* ===== ABOUT ===== */
.about-layout {
  display: grid;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-card {
  text-align: left;
  padding: 0;
}

.about-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.about-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #000;
  opacity: 0.9;
}

.about-image {
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 0;
  display: block;
  margin: 0 auto;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card-body {
  padding: 20px;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #000;
}

/* ===== SERVICES PAGE LIST ===== */
.service-list {
  max-width: 800px;
  margin: 0 auto;
}

.service-list-item {
  padding: 32px 0;
  border-bottom: 1px solid #eee;
}

.service-list-item:last-child {
  border-bottom: none;
}

.service-list-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.service-list-item p {
  font-size: 15px;
  line-height: 1.8;
}

.service-featured-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 40px;
}

/* ===== PRICE LIST PREVIEW ===== */
.price-preview {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.price-preview img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* ===== PRICE LIST GALLERY ===== */
.price-gallery {
  display: grid;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .price-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.price-gallery img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.price-gallery img:hover {
  transform: scale(1.02);
}

/* ===== CONNECT / SOCIAL ===== */
.connect-section {
  color: #fff;
  text-align: center;
  padding: 60px 0;
}

.connect-section h2 {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.connect-section p {
  font-size: 18px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.connect-section.connect-section-white {
  background: #fff;
  color: #000;
}

.connect-section.connect-section-white h2 {
  color: #000;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
}

.connect-section.connect-section-white p {
  opacity: 0.7;
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: background 0.3s, transform 0.2s;
}

.social-links a:hover {
  transform: scale(1.1);
}

.social-links svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.social-icon-facebook { background: #1877F2; }
.social-icon-facebook:hover { background: #0d65d9; }
.social-icon-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon-treatwell { background: #FF6B35; }
.social-icon-maps { background: #4285F4; }
.social-icon-whatsapp { background: #25D366; }

/* ===== REVIEWS ===== */
.reviews-section {
  background: #fff;
  padding: 60px 0;
  text-align: center;
  margin-top: 40px;
}

.reviews-header {
  margin-bottom: 40px;
}

.reviews-header h2 {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.google-badge span {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.reviews-business {
  font-size: 16px;
  color: #000;
  margin-bottom: 8px;
}

.reviews-stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-bottom: 8px;
}

.reviews-count {
  font-size: 14px;
  color: #000;
}

.reviews-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.carousel-arrow {
  background: #fff;
  border: 1px solid #ddd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
  color: #000;
}

.carousel-arrow:hover {
  background: #8db2a2;
  color: #fff;
  border-color: #8db2a2;
}

.reviews-grid {
  display: grid;
  gap: 24px;
  flex: 1;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: left;
  color: #000;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

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

.review-card .reviewer {
  font-weight: 700;
  color: #000;
  font-size: 14px;
}

.review-stars {
  display: flex;
  gap: 1px;
}

.review-card .date {
  font-size: 13px;
  color: #000;
  margin-bottom: 12px;
}

.review-card .text {
  font-size: 14px;
  line-height: 1.6;
  color: #000;
}

/* ===== CONTACT ===== */
.contact-section {
  background: #fff;
  padding: 60px 0;
  scroll-margin-top: 80px;
  color: #000;
  margin-top: 40px;
}

.contact-section .section-title {
  margin-bottom: 16px;
  color: #000;
}

.contact-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.contact-intro h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.contact-intro p {
  font-size: 15px;
  color: #000;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  margin: 16px 0;
  transition: background 0.3s;
}

.whatsapp-btn:hover {
  background: #1da851;
  color: #fff;
}

.whatsapp-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.contact-grid {
  display: grid;
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info {
  padding: 0;
}

.contact-right {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-info h4 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

.contact-info p {
  margin-bottom: 8px;
  font-size: 15px;
  color: #000;
}

.contact-info a {
  color: #8db2a2;
  text-decoration: underline;
}

.contact-social {
  margin-top: 8px;
}

.contact-social h4 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.contact-social .social-links {
  justify-content: flex-start;
}

.hours-box {
  background: #f5f5f5;
  padding: 16px;
  border-radius: 8px;
  margin-top: 16px;
}

.hours-box h4 {
  margin-bottom: 8px;
  color: #000;
}

.hours-box p {
  color: #000;
}

/* ===== CONTACT BOOKING ===== */
.contact-booking {
  background: #f9f9f9;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  color: #000;
}

.contact-booking h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.contact-booking p {
  font-size: 15px;
  color: #000;
  margin-bottom: 8px;
}

/* ===== MAP ===== */
.map-container {
  margin-top: 24px;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8db2a2;
  font-weight: 600;
  margin-bottom: 16px;
  text-decoration: underline;
}

.contact-right iframe {
  width: 100%;
  flex: 1;
  min-height: 400px;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

/* ===== FOOTER ===== */
.footer {
  background: #8db2a2;
  color: #fff;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
}

.footer p,
.footer a {
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
}

.footer a:hover {
  color: #fff;
  opacity: 0.8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
}

.footer-links a:hover {
  opacity: 0.8;
}

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

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.35);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.3);
  font-size: 13px;
}

.footer-bottom p {
  margin-bottom: 4px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: #fff;
  padding: 24px;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  flex: 1;
  min-width: 300px;
  max-width: 700px;
}

.cookie-content h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.cookie-content p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

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

.btn-cookie-decline,
.btn-cookie-accept {
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-cookie-decline {
  background: transparent;
  border: 1px solid #8db2a2;
  color: #8db2a2;
}

.btn-cookie-decline:hover {
  background: rgba(141, 178, 162, 0.2);
}

.btn-cookie-accept {
  background: #8db2a2;
  border: 1px solid #8db2a2;
  color: #fff;
}

.btn-cookie-accept:hover {
  background: #6d9a86;
  border-color: #6d9a86;
}

/* ===== UTILITIES ===== */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.page-inner {
  min-height: 100vh;
}

/* ===== SECTION SPACING ===== */
.section + .section,
.section-green + .section-green,
.section + .section-green,
.section-green + .section,
.reviews-section + .connect-section,
.reviews-section + .contact-section {
  margin-top: 0;
}

.hero + .section-green,
.hero + .section,
.hero + .reviews-section,
.hero + .contact-section {
  margin-top: 0;
}

.section-gap {
  margin-top: 40px;
}