/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.logo img {
  height: 48px; /* Adjust size as needed */
  width: auto;
  display: block;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-text {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
}

.gallery-section {
  padding: 3rem 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}


a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}


.reviews-section {
  text-align: center;
  padding: 3rem 1rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.review-card {
  background-color: #1e293b;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  text-align: left;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  background-color: #334155;
}

.review-card p {
  font-size: 1rem;
  color: #e2e8f0;
  margin-bottom: 0.75rem;
}

.review-card span {
  color: #facc15;
  font-size: 1.1rem;
}

.review-card h4 {
  margin-top: 0.5rem;
  font-weight: 600;
  color: #7dd3fc;
}


body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom right, #0f172a, #1e293b);
  color: #e2e8f0;
  line-height: 1.6;
}

/* Header */
header {
  background: #0f172a;
  color: white;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-weight: bold;
  font-size: 1.8rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #38bdf8;
}

.menu-toggle {
  display: none;
}

/* Hero */
/* Universal Hero Banner (used across all pages) */
.hero {
  position: relative;
  width: 100%;
  min-height: 55vh;
  max-height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.55); /* Slightly darker overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}


.hero h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  color: white;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: #38bdf8;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #cbd5e1;
  max-width: 600px;
  margin-bottom: 2rem;
}



.btn,
.btn-outline {
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border: 2px solid #38bdf8;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn {
  background-color: #38bdf8;
  color: #0f172a;
}

.btn:hover {
  background-color: #0ea5e9;
}

.btn-outline {
  background: transparent;
  color: #38bdf8;
}

.btn-outline:hover {
  background-color: #38bdf8;
  color: #0f172a;
}

/* Container & Cards */
.container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: #1e293b;
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  background: #334155;
}

.card h3 {
  color: #7dd3fc;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card p {
  color: #cbd5e1;
}

/* Footer */
footer {
  text-align: center;
  background: #0f172a;
  padding: 2rem;
  color: #64748b;
  font-size: 0.9rem;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.price-card {
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-card.light {
  background-color: #f8fafc;
  color: #0f172a;
}

.price-card.highlight {
  background-color: #ffffff;
  color: #0f172a;
}

.price-card h3 {
  font-size: 1.8rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.price-card p {
  font-size: 1rem;
  color: inherit;
  line-height: 1.5;
}

.btn-red {
  background-color: #0f172a;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin-top: auto;
  transition: background 0.3s ease;
}

.btn-red:hover {
  background-color: #1e293b;
}

/* Areas Page */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: space-between;
  align-items: flex-start;
}

.area-list {
  flex: 1 1 300px;
}

.area-list h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #f1f5f9;
}

.area-list ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: #cbd5e1;
  line-height: 1.8;
}

.area-map {
  flex: 1 1 300px;
  text-align: center;
}

.area-map img {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
}

/* Contact CTA Section */
.contact-cta {
  background-color: #1e293b;
  color: #f1f5f9;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 4rem auto 2rem;
  max-width: 900px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.contact-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #38bdf8;
}

.contact-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #cbd5e1;
}

.cta-button {
  display: inline-block;
  background-color: #38bdf8;
  color: #0f172a;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #0ea5e9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 2rem;
    top: 80px;
    background: #1e293b;
    padding: 1rem;
    border-radius: 8px;
    z-index: 100;
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    height: auto;
    padding: 3rem 1rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }

  .price-card {
    padding: 1.5rem;
  }

  .area-grid {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1rem;
    gap: 2rem;
  }

  .area-list,
  .area-map {
    text-align: center;
    width: 100%;
  }

  .area-map img {
    max-width: 100%;
    height: auto;
  }

  .area-list ul {
    padding-left: 1rem;
    text-align: left;
    display: inline-block;
  }

  .contact-cta {
    padding: 2rem 1rem;
    margin: 3rem 1rem;
  }

  .contact-cta h2 {
    font-size: 1.6rem;
  }

  .contact-cta p {
    font-size: 1rem;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
  }

  footer {
    padding: 1.5rem 1rem;
    font-size: 0.85rem;
  }
}

/* CONTACT PAGE */

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem auto;
  background: #0f172a;
  padding: 2rem;
  border-radius: 12px;
}

.contact-box {
  background: #1e293b;
  padding: 2rem;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
  background: #334155;
}

.contact-box h3 {
  color: #38bdf8;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.contact-box p {
  color: #cbd5e1;
  line-height: 1.6;
}

.contact-box a {
  color: #7dd3fc;
  font-weight: 600;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}


