* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
}

body {
  background: #fcf9f4;
  color: #1a2a3a;
  line-height: 1.6;
}

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

:root {
  --gold: #d4a743;
  --gold-light: #f2e1b0;
  --navy: #1a2a3a;
  --navy-light: #2c4055;
  --white: #ffffff;
  --gray-bg: #f5f0e9;
  --shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.navbar {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  padding: 12px 0;
  border-bottom: 2px solid var(--gold-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-line {
  width: 2px;
  height: 45px;
  background: var(--gold);
  opacity: 0.6;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: center;
}

.logo-main {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--navy);
}

.logo-main span {
  color: var(--gold);
  font-weight: 300;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-weight: 500;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-size: 1rem;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 6px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.btn-book-nav {
  background: var(--gold);
  color: white !important;
  padding: 8px 22px;
  border-radius: 40px;
  font-weight: 600;
  border-bottom: none !important;
  transition: 0.2s;
}

.btn-book-nav:hover {
  background: #b8922f;
  color: white !important;
  transform: translateY(-2px);
}

.trusted-item {
  display: flex;
  align-items: center;
  border-radius: 30px;
  cursor: default;
  transition: 0.2s;
}

.trusted-icon {
  height: 100px;
  width: auto;
  display: block;
  border-radius: 4px;
}

.trusted-text {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  background: rgba(26, 42, 58, 0.7);
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 40px 0;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}

.hero-text {
  flex: 1 1 55%;
  color: white;
  max-width: 650px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 1.3rem;
  font-weight: 300;
  margin: 12px 0 10px;
  letter-spacing: 0.5px;
  color: white;
}

.hero-tagline {
  font-size: 1.1rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 60px;
  margin: 10px 0 20px;
  font-weight: 400;
  color: white;
  border: 1px solid rgba(255,255,255,0.15);
}

.hero-tagline strong {
  color: var(--gold);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 5px;
}

.btn-primary {
  background: var(--gold);
  color: white;
  padding: 14px 38px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s;
  box-shadow: 0 4px 12px rgba(212, 167, 67, 0.3);
}

.btn-primary:hover {
  background: #b8922f;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 12px 36px;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s;
}

.btn-outline:hover {
  background: white;
  color: var(--navy);
}

.hero-badge {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-weight: 500;
  color: white;
  justify-content: center;
}

.hero-badge i {
  color: var(--gold);
  margin-right: 6px;
}

.hero-trusted {
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.hero-trusted i {
  color: var(--gold);
  margin-right: 8px;
}

.hero-image-right {
  flex: 0 0 35%;
  max-width: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-right img {
  width: 100%;
  max-width: 350px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.25));
  border-radius: 20px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 15px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  margin-bottom: 0;
  margin-top: 20px;
}

.section-title em {
  font-style: italic;
}

.section-title:after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: var(--gold);
  margin-top: 8px;
}

.see-more {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.2s;
  padding: 6px 16px;
  border: 2px solid var(--gold);
  border-radius: 30px;
  white-space: nowrap;
}

.see-more:hover {
  background: var(--gold);
  color: white;
}

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

.service-card {
  background: var(--white);
  padding: 20px 15px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.25s;
  border: 1px solid #f0eadb;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.04);
  border-color: var(--gold-light);
}

.service-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--navy-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 5px;
}

.why-item {
  background: var(--white);
  padding: 28px 18px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}

.why-item i {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.before-after {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 10px 0 5px;
}

.ba-item {
  flex: 1 1 300px;
  max-width: 500px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #ede6d8;
  transition: 0.3s;
}

.ba-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.1);
}

.ba-image {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s;
}

.ba-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 42, 58, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.3s;
}

.ba-item:hover .ba-overlay {
  background: rgba(26, 42, 58, 0.3);
}

.ba-overlay i {
  font-size: 3.5rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.ba-overlay span {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.15);
  padding: 6px 24px;
  border-radius: 60px;
  backdrop-filter: blur(4px);
}

.ba-before .ba-overlay i {
  color: #ff6b6b;
}

.ba-after .ba-overlay i {
  color: #51cf66;
}

.ba-image:not([style*="background-image"]) {
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.ba-image:not([style*="background-image"])::after {
  content: '📷 Photo';
  font-size: 1.2rem;
  color: var(--navy-light);
  opacity: 0.5;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 5px;
}

.review-card {
  background: var(--white);
  padding: 24px 22px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid #f0eadb;
  transition: 0.3s;
  cursor: default;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: var(--gold-light);
}

.review-card .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.review-card p {
  font-style: italic;
  color: #2c4055;
}

.review-card .author {
  font-weight: 600;
  margin-top: 12px;
  color: var(--navy);
}

.areas-wrapper {
  background: var(--white);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid #ede6d8;
  margin-top: 5px;
}

.areas-container {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.areas-map {
  flex: 0 0 300px;
  min-height: 350px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.areas-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.areas-list-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.areas-grid {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.areas-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  padding: 4px 0;
  transition: 0.2s;
  cursor: default;
}

.area-item:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.area-item i {
  color: var(--gold);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.areas-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 2px solid var(--gold-light);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: white;
  padding: 8px 28px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.badge i {
  color: var(--gold);
  font-size: 1.1rem;
}

.cta-section {
  background: var(--navy);
  color: white;
  border-radius: 40px;
  padding: 50px 30px;
  margin: 20px 0 30px;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.4rem;
  font-weight: 600;
}

.cta-section h2 i {
  color: var(--gold);
}

.cta-section .btn-primary {
  background: white;
  color: var(--navy);
  box-shadow: none;
  margin-top: 15px;
}

.cta-section .btn-primary:hover {
  background: var(--gold-light);
}

footer {
  background: var(--navy);
  color: #cbd5d1;
  padding: 40px 0 25px;
  margin-top: 30px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

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

.footer-grid h4 {
  color: white;
  margin-bottom: 12px;
  font-weight: 500;
}

.footer-grid a {
  color: #bcc9c4;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid #2f4055;
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: #8f9f9a;
}

.footer-trusted {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.footer-trusted-icon {
  height: 200px;
  width: auto;
  display: block;
  border-radius: 8px;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .areas-map {
    flex: 0 0 100%;
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    gap: 16px;
  }
  .nav-links {
    justify-content: center;
    gap: 14px 18px;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-badge {
    justify-content: center;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .cta-section h2 {
    font-size: 1.8rem;
  }
  .logo span {
    font-size: 1.2rem;
  }
  .logo .sub {
    font-size: 0.85rem;
  }
  .areas-grid {
    gap: 25px;
  }
  .areas-wrapper {
    padding: 20px;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .see-more {
    align-self: flex-start;
  }
  .ba-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .footer-trusted {
    flex: 1 1 100%;
    margin-top: 10px;
  }
  .footer-trusted-icon {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .areas-column {
    width: 100%;
  }
  .badge {
    width: 100%;
    justify-content: center;
  }
  .areas-map {
    min-height: 180px;
  }
  .footer-trusted-icon {
    height: 100px;
  }
  .footer-grid{
    gap: 25px;
  }
}