/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f8fa;
  color: #1f2937;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

section {
  padding: 80px 7%;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px;
}

.section-tag {
  color: #0d9488;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.section-heading h2 {
  font-size: 2.3rem;
  color: #0f172a;
  margin-bottom: 12px;
}

.section-heading p {
  color: #64748b;
}


/* ================= HEADER ================= */
.topbar {
  width: 100%;
  min-height: 78px;
  padding: 14px 7%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 25px rgba(15, 23, 42, 0.08);
}

.topbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  color: #0f172a;
  white-space: nowrap;
}

/* Official logo styling */
.topbar-logo img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 18px;
  background: #ffffff;
  padding: 4px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-nav a {
  text-decoration: none;
  color: #334155;
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
}

.topbar-nav a::after {
  content: "";
  width: 0;
  height: 3px;
  background: #0d9488;
  position: absolute;
  left: 0;
  bottom: -7px;
  border-radius: 999px;
  transition: 0.3s ease;
}

.topbar-nav a:hover {
  color: #0d9488;
}

.topbar-nav a:hover::after {
  width: 100%;
}

.topbar-btn {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  color: #ffffff;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(13, 148, 136, 0.25);
  transition: 0.3s ease;
}

.topbar-btn:hover {
  background: linear-gradient(135deg, #0f766e, #0d9488);
  transform: translateY(-2px);
}


/* ================= HERO ================= */
.hero-banner {
  min-height: 670px;
  position: relative;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.78), rgba(13, 148, 136, 0.45)),
    url("images1/house1.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 7%;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.45), transparent 35%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.22), transparent 35%);
}

.hero-content {
  max-width: 930px;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.hero-small {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #ccfbf1;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-content h1 {
  font-size: 3.65rem;
  line-height: 1.12;
  margin-bottom: 22px;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero-subtext {
  max-width: 740px;
  margin: 0 auto 32px;
  font-size: 1.16rem;
  color: #e2e8f0;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-main-btn,
.hero-secondary-btn {
  display: inline-block;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.3s ease;
  text-align: center;
}

.hero-main-btn {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(13, 148, 136, 0.32);
}

.hero-main-btn:hover {
  background: linear-gradient(135deg, #0f766e, #0d9488);
  transform: translateY(-3px);
}

.hero-secondary-btn {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.hero-secondary-btn:hover {
  background: #ecfeff;
  color: #0f766e;
  transform: translateY(-3px);
}


/* ================= TRUST STRIP ================= */
.trust-strip {
  padding: 24px 7%;
  background: linear-gradient(135deg, #0f172a, #134e4a);
  color: #ffffff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  font-weight: 800;
}

.trust-strip div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 16px;
  border-radius: 999px;
}


/* ================= SERVICES ================= */
.services {
  background: linear-gradient(180deg, #ffffff, #f0fdfa);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  border: 1px solid rgba(13, 148, 136, 0.12);
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ccfbf1, #dbeafe);
  border-radius: 50%;
  position: absolute;
  top: -30px;
  right: -30px;
}

.service-card:hover {
  transform: translateY(-8px);
  background: #ecfeff;
  border-color: #14b8a6;
  box-shadow: 0 18px 42px rgba(13, 148, 136, 0.18);
}

.service-card h3 {
  color: #0f172a;
  font-size: 1.3rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: #64748b;
  position: relative;
  z-index: 1;
}


/* ================= TRUST / BOOKING DETAILS ================= */
.why-choose-us {
  background: linear-gradient(135deg, #f1f5f9, #e0f2fe);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  border-top: 5px solid #14b8a6;
  transition: 0.3s ease;
}

.why-card:nth-child(2) {
  border-top-color: #3b82f6;
}

.why-card:nth-child(3) {
  border-top-color: #f59e0b;
}

.why-card:nth-child(4) {
  border-top-color: #22c55e;
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-card h3 {
  color: #0f172a;
  margin-bottom: 10px;
}

.why-card p {
  color: #64748b;
}


/* ================= AREAS ================= */
.areas-section {
  background: #ffffff;
}

#payment {
  background: linear-gradient(135deg, #ecfeff, #f8fafc);
}

#areas {
  background: linear-gradient(135deg, #ffffff, #eff6ff);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.areas-grid div {
  background: linear-gradient(135deg, #ecfeff, #dbeafe);
  color: #0f766e;
  padding: 18px;
  text-align: center;
  border-radius: 18px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(13, 148, 136, 0.12);
}

.areas-grid div:nth-child(3n) {
  background: linear-gradient(135deg, #fef3c7, #fff7ed);
  color: #92400e;
}

.areas-grid div:nth-child(4n) {
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
  color: #166534;
}


/* ================= GALLERY ================= */
.gallery-section {
  background: linear-gradient(135deg, #f8fafc, #ecfeff);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.11);
  transition: 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}


/* ================= BEFORE AFTER ================= */
.before-after-section {
  background: linear-gradient(180deg, #ffffff, #fefce8);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 950px;
  margin: 0 auto;
}

.before-after-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.18);
}

.before-after-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.before-after-card h3 {
  padding: 20px 18px 5px;
  text-align: center;
  color: #0f172a;
}

.before-after-card p {
  padding: 0 20px 24px;
  text-align: center;
  color: #64748b;
}


/* ================= REVIEWS ================= */
.reviews-section {
  background: linear-gradient(135deg, #f1f5f9, #ccfbf1);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
}

.reviews-summary,
.review-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.16);
  text-align: center;
}

.reviews-badge {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  margin: 0 auto 15px;
  box-shadow: 0 12px 24px rgba(13, 148, 136, 0.25);
}

.reviews-score {
  font-weight: 900;
  color: #0f172a;
  margin-top: 8px;
}

.reviews-count {
  color: #64748b;
  margin-bottom: 20px;
}

.reviews-btn {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.3s ease;
}

.reviews-btn:hover {
  background: linear-gradient(135deg, #0f766e, #0d9488);
  transform: translateY(-2px);
}


/* ================= SOCIAL SECTION ================= */
.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.social-links a {
  color: #ffffff;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(13, 148, 136, 0.18);
  transition: 0.3s ease;
}

.social-links a:nth-child(1) {
  background: linear-gradient(135deg, #1877f2, #3b82f6);
}

.social-links a:nth-child(2) {
  background: linear-gradient(135deg, #ec4899, #f97316);
}

.social-links a:nth-child(3) {
  background: linear-gradient(135deg, #111827, #475569);
}

.social-links a:hover {
  transform: translateY(-3px);
}


/* ================= FAQ ================= */
.faq-section {
  background: linear-gradient(135deg, #f8fafc, #f0fdfa);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 20px;
  margin-bottom: 15px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  border: 1px solid rgba(13, 148, 136, 0.1);
}

.faq-question {
  width: 100%;
  border: none;
  background: #ffffff;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 900;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 1.5rem;
  color: #0d9488;
  transition: 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: #64748b;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}


/* ================= CONTACT ================= */
.contact-section {
  background: linear-gradient(135deg, #ffffff, #ecfeff);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: start;
}

.contact-text h2 {
  font-size: 2.3rem;
  color: #0f172a;
  margin-bottom: 15px;
}

.contact-text > p {
  color: #64748b;
  margin-bottom: 22px;
}

.contact-details {
  background: #ffffff;
  padding: 26px;
  border-radius: 22px;
  margin-bottom: 22px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  border-left: 6px solid #0d9488;
}

.contact-details p {
  margin-bottom: 10px;
}

.contact-details a {
  color: #0d9488;
  text-decoration: none;
  font-weight: 800;
}

.contact-details a:hover {
  text-decoration: underline;
}

.opening-hours {
  background: linear-gradient(135deg, #ccfbf1, #dbeafe);
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.opening-hours h3 {
  color: #0f172a;
  margin-bottom: 10px;
}

.contact-form {
  background: #ffffff;
  padding: 36px;
  border-radius: 26px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
  display: grid;
  gap: 16px;
  border: 1px solid rgba(13, 148, 136, 0.14);
}

.contact-form h3 {
  color: #0f172a;
  font-size: 1.5rem;
}

.contact-form p {
  color: #64748b;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  font-family: inherit;
  font-size: 1rem;
  background: #ffffff;
  color: #0f172a;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.15);
}

button {
  font-family: inherit;
}

.contact-form button {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  color: #ffffff;
  border: none;
  padding: 15px 20px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 12px 24px rgba(13, 148, 136, 0.22);
}

.contact-form button:hover {
  background: linear-gradient(135deg, #0f766e, #0d9488);
  transform: translateY(-2px);
}

.success-message {
  color: #0f766e;
  font-weight: 700;
  margin-top: 5px;
}


/* ================= MAP ================= */
.location-map {
  padding: 0;
}

.location-map iframe {
  display: block;
}


/* ================= PRIVACY ================= */
.privacy-section {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  max-width: 100%;
}

.privacy-section p {
  max-width: 900px;
  margin: 0 auto;
  color: #64748b;
  text-align: center;
}


/* ================= FOOTER ================= */
.site-footer {
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.22), transparent 30%),
    linear-gradient(135deg, #020617, #0f172a, #134e4a);
  color: #cbd5e1;
  padding: 60px 7% 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 35px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

/* Official footer logo styling */
.footer-logo-row img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 18px;
  background: #ffffff;
  padding: 4px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
}

.footer-logo-row h3 {
  color: #ffffff;
}

.footer-column h4 {
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 9px;
}

.footer-column a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-column a:hover {
  color: #99f6e4;
}

.footer-social-section {
  text-align: center;
  padding: 35px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  margin-top: 35px;
}

.footer-social-section h4 {
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-social-section .social-links a {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.footer-social-section .social-links a:hover {
  background: #ffffff;
  color: #0f172a;
}

.footer-whatsapp-btn {
  display: inline-block;
  background: linear-gradient(135deg, #25D366, #16a34a);
  color: #ffffff;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.22);
  transition: 0.3s ease;
}

.footer-whatsapp-btn:hover {
  background: linear-gradient(135deg, #1ebe5d, #15803d);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #94a3b8;
}


/* ================= FLOATING WHATSAPP ================= */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: linear-gradient(135deg, #25D366, #16a34a);
  color: #ffffff;
  text-decoration: none;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  z-index: 9999;
  transition: 0.3s ease;
}

.floating-whatsapp:hover {
  background: linear-gradient(135deg, #1ebe5d, #15803d);
  transform: translateY(-3px);
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .topbar {
    flex-wrap: wrap;
  }

  .topbar-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .areas-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 768px) {
  section {
    padding: 60px 6%;
  }

  .topbar {
    padding: 12px 6%;
  }

  .topbar-logo span {
    font-size: 0.9rem;
  }

  .topbar-nav {
    gap: 12px;
  }

  .topbar-nav a {
    font-size: 0.88rem;
  }

  .hero-banner {
    min-height: 590px;
    padding: 90px 6%;
  }

  .hero-content h1 {
    font-size: 2.35rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid,
  .why-grid,
  .areas-grid,
  .gallery-grid,
  .before-after-grid,
  .contact-container,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .before-after-card img {
    height: 240px;
  }

  .section-heading h2,
  .contact-text h2 {
    font-size: 1.9rem;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    padding: 13px 18px;
    font-size: 0.9rem;
  }
}


@media (max-width: 480px) {
  .topbar-logo img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .footer-logo-row img {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .topbar-btn {
    padding: 9px 15px;
    font-size: 0.88rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .service-card,
  .why-card,
  .contact-form {
    padding: 24px;
  }
}