:root {
  --primary: #0d7377;
  --primary-light: #14b8a6;
  --primary-dark: #095a5e;
  --accent: #f59e0b;
  --dark: #1a2b3c;
  --text: #2d3748;
  --text-light: #4a5568;
  --bg: #f0fdfa;
  --white: #ffffff;
  --border: #ccfbf1;
  --radius: 18px;
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 18px 36px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  border: 2px solid var(--primary-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s,
    background 0.2s,
    border-color 0.2s;
  mix-blend-mode: difference;
}
.custom-cursor.hover {
  width: 42px;
  height: 42px;
  background: rgba(20, 184, 166, 0.25);
  border-color: transparent;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: none;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(13, 115, 119, 0.3);
}
.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(13, 115, 119, 0.4);
}
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  box-shadow: none;
}
.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #1ebc58;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e0f2f1;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.logo {
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: none;
}
.logo i {
  color: var(--primary-light);
  font-size: 26px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
}
nav ul li a {
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  cursor: none;
}
nav ul li a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.header-phone {
  background: #e6fffa;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: none;
}
.hamburger {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: var(--primary);
  cursor: none;
}
.side-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 200;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
  transition: left 0.3s;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
}
.side-menu.active {
  left: 0;
}
.side-menu .close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 24px;
  cursor: none;
  color: #64748b;
}
.side-menu ul {
  list-style: none;
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.side-menu ul li a {
  font-weight: 500;
  font-size: 16px;
  padding: 12px 16px;
  display: block;
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  cursor: none;
}
.side-menu ul li a:hover {
  background: #f0fdfa;
  color: var(--primary);
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
  display: none;
  cursor: none;
}
.overlay.active {
  display: block;
}

@media (max-width: 768px) {
  nav ul,
  .header-phone {
    display: none;
  }
  .hamburger {
    display: block;
  }
}

/* Hero with particles canvas */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d7377 0%, #14b8a6 100%);
  color: #fff;
  overflow: hidden;
}
.hero canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f0fdfa' fill-opacity='1' d='M0,160L48,176C96,192,192,224,288,218.7C384,213,480,171,576,165.3C672,160,768,192,864,202.7C960,213,1056,203,1152,186.7C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E")
    no-repeat bottom;
  background-size: cover;
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.hero p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 28px;
}
.hero-info {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }
}

/* Sections */
section {
  padding: 40px 0;
  position: relative;
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  text-align: center;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-light);
  margin: 14px auto 0;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto 50px;
  font-size: 15px;
}
.bg-white {
  background: #fff;
}

/* About Section */
.about-row {
  display: flex;
  align-items: center;
  gap: 50px;
}
.about-img {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.about-img:hover img {
  transform: scale(1.04);
}
.about-text {
  flex: 1;
}
.about-text h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
}
.feature-list {
  list-style: none;
  margin-top: 16px;
}
.feature-list li {
  padding: 6px 0 6px 30px;
  position: relative;
  color: var(--text-light);
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
@media (max-width: 768px) {
  .about-row {
    flex-direction: column;
  }
  .about-img img {
    height: 300px;
  }
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 35px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
  cursor: none;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.service-card .s-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e6fffa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 22px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* AMC Plans */
.amc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.amc-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  transition: var(--transition);
  text-align: center;
  cursor: none;
}
.amc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.amc-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--primary-dark);
}
.amc-card ul {
  list-style: none;
  margin: 18px 0;
}
.amc-card ul li {
  padding: 6px 0;
  color: var(--text-light);
  font-size: 14px;
}
.price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin: 12px 0;
}

/* Areas */
.area-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}
.area-badge {
  background: #e6fffa;
  color: var(--primary-dark);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  border: 1px solid #b2f0e0;
  cursor: none;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-light);
  cursor: none;
}
.review-card .stars {
  color: #f59e0b;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.review-card p {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 14px;
}
.review-card .reviewer {
  font-weight: 600;
  color: var(--dark);
}

/* Contact */
.contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.map-col {
  flex: 1;
  min-width: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-col iframe {
  width: 100%;
  height: 380px;
  border: 0;
}
.details-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  cursor: none;
}
.contact-item i {
  font-size: 20px;
  color: var(--primary);
  width: 24px;
  margin-top: 4px;
}
.contact-item h4 {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-item p,
.contact-item a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  cursor: none;
}

/* Footer */
footer {
  background: var(--dark);
  color: #ccc;
  padding: 60px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-bottom: 35px;
}
.footer-col h4 {
  color: #f0fdfa;
  font-size: 17px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--primary-light);
}
.footer-col p,
.footer-col li {
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  display: block;
  padding: 0px 0;
  transition: color 0.2s;
  cursor: none;
}
.footer-col ul li a:hover {
  color: #fff;
}
.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 18px;
  transition: var(--transition);
  cursor: none;
}
.social-icons a:hover {
  background: var(--primary-light);
  color: #fff;
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  font-size: 13px;
  color: #888;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 90;
}
.floating-buttons a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s;
  cursor: none;
}
.floating-buttons a:hover {
  transform: scale(1.08);
}
.float-call {
  background: var(--primary);
}
.float-whatsapp {
  background: #25d366;
} /*  */

/* ========== Gallery Section ========== */
#gallery {
  padding: 80px 0;
  background: var(--bg); /* uses your existing background variable */
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
