 /* Base Reset */
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  background-color: #f4f7f9;
  color: #2b2b2b;
  line-height: 1.6;
  font-size: 16px;
}

/* Layout Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.6rem;
  font-weight: bold;
  white-space: nowrap; /* Prevent wrapping */
  flex-shrink: 1;       /* Allow it to scale on smaller screens */
}

.logo span {
  display: inline-block;
}

.l-icon {
  height: 1.4em;
  vertical-align: middle;
  object-fit: contain;
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.3rem;
    gap: 0.3rem;
  }

  .l-icon {
    height: 1.2em;
  }
}

/* Header Styling */
header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1.5rem 2rem;
background-color: #ffffff;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
position: sticky;
top: 0;
z-index: 999;
}

.logo {
flex: 1;
font-size: 1.8rem;
font-weight: bold;
letter-spacing: 1px;
text-align: left;
}

nav {
flex: 2;
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 1rem;
}

nav a {
text-transform: uppercase;
font-size: 0.9rem;
color: #333;
letter-spacing: 0.5px;
transition: color 0.2s ease-in-out;
}

nav a:hover {
color: #6d859c;
}

.spacer {
flex: 1;
}    

/* Call to Action Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #111;
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #333;
}

/* Hero Section (Updated Fullscreen Style) */
.hero-fullscreen {
  text-align: center;
  background-color: #fff;
}

.hero-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.hero-content {
  background-color: #fff;
  text-align: center;
  padding: 3rem 2rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content .subtext {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #333;
}

.hero-buttons {
  display: flex;
  justify-content: space-between; /* pushes buttons to edges */
  align-items: center;
  gap: 1rem;
  max-width: 500px; /* optional: control total width */
  margin: 2rem auto; /* center the button group */
  width: 100%;
}

.btn-primary,
.btn-secondary {
  flex: 1;
  max-width: 48%; /* ensure they don't overflow on smaller screens */
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: #2a4ed4;
  color: white;
}

.btn-primary:hover {
  background-color: #1c3bb5;
}

.btn-secondary {
  background-color: white;
  color: #2a4ed4;
  border: 2px solid #2a4ed4;
}

.btn-secondary:hover {
  background-color: #f0f0f0;
}

.hero-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* Sections */
section {
  padding: 4rem 2rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}    

/* Reviews */
.review {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.review p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.stars {
  color: gold;
  font-size: 1.1rem;
}

/* Hours & Areas */
.hours-table {
  overflow-x: auto;
  margin-top: 1rem;
}

.hours-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.hours-table td {
  padding: 1rem;
  font-size: 1rem;
  color: #444;
  border-bottom: 1px solid #eee;
}

.hours-table td:first-child {
  font-weight: bold;
  color: #555;
  border-right: 1px solid #ddd; /* 🔹 vertical line between day and time */
  width: 50%;
}    

.map-container {
  margin-top: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}  

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background-color: #ffffff;
  border-top: 1px solid #e2e2e2;
}

.contact-info a {
  display: inline-block;
  margin: 0 0.5rem;
  color: #2b2b2b;
  font-weight: bold;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: #6d859c;
}

/* Responsive Layout */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .container,
  section {
    padding: 2rem 1rem;
  }
}

.why-choose {
  background-color: #f9fbfc;
  padding: 4rem 2rem;
  text-align: center;
}

.why-choose .subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.why-choose-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  gap: 0.4rem;
}

.why-heading .l-icon {
  height: 1em;            /* Match the height of the heading text */
  width: auto;            /* Keep original image proportions */
  vertical-align: middle; /* Align it nicely with text */
  margin: 0 0.25rem;      /* Optional spacing around the image */
}

.features-cards.modern-layout {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.features-cards .card {
  flex: 1 1 300px;
  max-width: 360px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.features-cards .card:hover {
  transform: translateY(-5px);
}

.features-cards .card i {
  font-size: 2rem;
  color: #2563eb;
  margin-bottom: 1rem;
}

.features-cards .card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.features-cards .card p {
  font-size: 1rem;
  color: #444;
}

.features-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(90deg, #2563eb, #1e40af);
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  font-weight: bold;
  font-size: 0.9rem;
  gap: 1rem;
}

.feature i {
  font-size: 2rem;
  border: 2px solid white;
  border-radius: 50%;
  padding: 0.75rem;
}

@media (max-width: 768px) {
  .features-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .features-section {
    grid-template-columns: 1fr;
  }
}

.features-cards.modern-layout {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.features-cards.modern-layout .card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.features-cards.modern-layout .card:hover {
  transform: translateY(-5px);
}

.features-cards.modern-layout .card i {
  font-size: 1.8rem;
  color: #2563eb;
}

.features-cards.modern-layout h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #1a1a1a;
}

.features-cards.modern-layout p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.cta-banner {
  background: #ffffff;
  color: rgb(0, 0, 0);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-banner h2 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.cta-whatsapp,
.cta-facebook {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-whatsapp {
  background: #25D366;
  color: white;
}

.cta-whatsapp:hover {
  background: #1ebe5b;
}

.cta-facebook {
  background: #1877F2;
  color: white;
}

.cta-facebook:hover {
  background: #0e5fd3;
}

.site-footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding: 4rem 2rem 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid #1e293b;
}

.footer-column h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer-column p,
.footer-column li {
  margin-bottom: 0.6rem;
  color: #cbd5e1;
}

.footer-column a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #60a5fa;
}

.footer-column i {
  margin-right: 0.5rem;
  color: #94a3b8;
}

.footer-bottom {
  text-align: center;
  color: #94a3b8;
  font-size: 0.85rem;
  padding-top: 1rem;
}

.info-section {
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.info-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.info-image img {
  max-width: 100%;
  width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.info-text {
  flex: 1;
  max-width: 600px;
}

.info-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #1e293b;
}

.info-text p {
  font-size: 1rem;
  color: #334155;
  margin-bottom: 1rem;
}

.info-button {
  display: inline-block;
  background-color: #22c55e;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.info-button i {
  margin-right: 0.5rem;
}

.info-button:hover {
  background-color: #16a34a;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center; /* Fix the mobile header alignment */
    text-align: center;
  }

  .logo {
    justify-content: center;
    text-align: center;
  }

  nav {
    justify-content: center;
    text-align: center;
  }

  .info-text {
    max-width: 100%;
  }
}

.swiper {
  width: 100%;
  padding: 2rem 0;
}

.swiper-slide img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* === Fix Hero Spacing & Image Sizing === */
.hero-fullscreen {
  padding: 0 !important; /* Remove unwanted padding */
  margin: 0;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

/* Desktop Optimization */
@media (min-width: 1024px) {
  .hero-img {
    max-height: 75vh;
    object-fit: cover;
  }
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .hero-img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* Optional: Reduce spacing under image */
.hero-content {
  padding: 2rem 1rem;
}