/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --teal: #1e7a78;
  --teal-dark: #155f5d;
  --teal-light: #2a9d8f;
  --green: #8bc34a;
  --green-light: #b5d96b;
  --white: #ffffff;
  --off-white: #f7fafa;
  --text: #1a2e2e;
  --text-muted: #5a7272;
  --border: #e0eeee;
  --shadow: 0 8px 40px rgba(30, 122, 120, 0.12);
  --shadow-lg: 0 20px 60px rgba(30, 122, 120, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(30, 122, 120, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30, 122, 120, 0.45);
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--teal);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--teal);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ===== SECTION COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(30, 122, 120, 0.12), rgba(139, 195, 74, 0.12));
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(30, 122, 120, 0.2);
}

.section-header h2 {
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
}

.highlight {
  color: var(--teal);
}

/* ===== ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-left"] {
  transform: translateX(-40px);
}

[data-animate="fade-right"] {
  transform: translateX(40px);
}

[data-animate].animated {
  opacity: 1;
  transform: translate(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(30, 122, 120, 0.1);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 52px;
  max-width: 220px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-light)) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(30, 122, 120, 0.25);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 122, 120, 0.38) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--teal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #e8f6f5 0%, #f5fbf0 50%, #edf8f7 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--teal-light), transparent);
  top: -150px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.mobile-doctor-img {
  display: none;
}

@media (max-width: 992px) {
  .mobile-doctor-img {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 24px auto 16px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(30, 122, 120, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, rgba(30, 122, 120, 0.1), rgba(139, 195, 74, 0.1));
  }
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--green), transparent);
  bottom: -100px;
  left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--teal), transparent);
  top: 30%;
  left: 40%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.03);
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(30, 122, 120, 0.12), rgba(139, 195, 74, 0.15));
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(30, 122, 120, 0.2);
}

.hero-text h1 {
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: -1px;
}

.hero-qual {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius);
  object-fit: cover;
  height: 520px;
}

.image-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(30, 122, 120, 0.25), transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(30px);
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: floatCard 5s ease-in-out infinite;
}

.card-1 {
  bottom: 80px;
  left: -30px;
}

.card-2 {
  top: 80px;
  right: -20px;
  animation-delay: 2s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.card-icon {
  font-size: 1.4rem;
}

.floating-card div {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.floating-card span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-card>img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
}

.about-badge img {
  height: 36px;
}

.about-info-card {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.info-icon {
  font-size: 1.3rem;
}

.info-item small {
  font-size: 0.75rem;
  opacity: 0.8;
  display: block;
}

.info-item strong {
  font-size: 0.9rem;
  font-weight: 600;
}

.about-text h2 {
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.about-text p {
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.qual-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}

.chip {
  background: linear-gradient(135deg, rgba(30, 122, 120, 0.1), rgba(139, 195, 74, 0.1));
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  border: 1px solid rgba(30, 122, 120, 0.2);
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--green));
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  display: block;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== CONDITIONS ===== */
.conditions {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: white;
}

.conditions .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.conditions .section-header h2,
.conditions .section-header p {
  color: white;
}

.conditions .highlight {
  color: var(--green-light);
}

.conditions-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.condition-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

.condition-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.condition-item span {
  color: var(--green-light);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ===== FAQ ===== */
.FAQ {
  padding: 100px 0;
  background: var(--white);
}

.FAQ-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.FAQ-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.FAQ-question {
  width: 100%;
  background: var(--off-white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.FAQ-question:hover {
  background: rgba(30, 122, 120, 0.07);
  color: var(--teal);
}

.FAQ-item.open .FAQ-question {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white;
}

.FAQ-icon {
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.FAQ-item.open .FAQ-icon {
  transform: rotate(45deg);
}

.FAQ-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s;
  padding: 0 24px;
}

.FAQ-item.open .FAQ-answer {
  max-height: 200px;
  padding: 20px 24px;
}

.FAQ-answer p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
  align-items: stretch;
}

.contact-info-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 36px;
  height: 100%;
}

.contact-text-block h3 {
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.contact-text-block p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.contact-text-block strong {
  color: var(--text);
  font-weight: 600;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30, 122, 120, 0.12);
  background: white;
}

.form-group textarea {
  resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
}

.footer-brand img {
  height: 60px;
  max-width: 250px;
  object-fit: contain;
  margin-bottom: 16px;
  background: white;
  padding: 8px 16px;
  border-radius: 8px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  opacity: 0.7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-light);
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--green-light);
}

.footer-contact p {
  font-size: 0.88rem;
  margin-bottom: 10px;
  opacity: 0.8;
}

.footer-contact a {
  color: var(--green-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.6;
}

/* ===== APPOINTMENT PAGE ===== */
.page-header {
  padding: 160px 0 60px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: white;
  text-align: center;
}

.page-header h1 {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.page-header p {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.9;
}

.appointment-section {
  padding: 80px 0 100px;
  background: var(--off-white);
}

.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.map-container iframe {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: var(--off-white);
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.select-wrapper select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30, 122, 120, 0.12);
  background: white;
  outline: none;
}

.select-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
}

.appointment-form {
  margin-top: 0;
  height: auto;
}

.appointment-form h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text);
}

@keyframes successPop {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
  }
}

.btn-success-anim {
  animation: successPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(135deg, #2a9d5c, #38b87a) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 36px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-text {
    text-align: center;
  }

  .about-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .qual-chips {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .conditions-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-box {
    order: 2;
  }

  .appointment-form-container {
    order: 1;
  }

  .appointment-grid {
    grid-template-columns: 1fr;
  }

  .appointment-info {
    order: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {

  /* Section Spacing */
  .hero {
    padding: 100px 20px 60px;
  }

  .about,
  .services,
  .conditions,
  .FAQ,
  .contact {
    padding: 60px 0;
  }

  .page-header {
    padding: 120px 0 40px;
  }

  .appointment-section {
    padding: 40px 0 60px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* Typography */
  .hero-text h1 {
    font-size: 2.2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  /* Navbar & Hamburger */
  .nav-logo {
    position: relative;
    z-index: 998;
  }

  .nav-logo img {
    height: 42px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    font-size: 1.1rem;
    z-index: 999;
    border-left: 1px solid var(--border);

    /* Animation */
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    box-shadow: 0 0 0 100vw rgba(15, 30, 40, 0);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease, opacity 0.4s, visibility 0.4s;
    display: flex;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    box-shadow: 0 0 0 100vw rgba(15, 30, 40, 0.5);
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* Elements */
  .about-img-card>img {
    height: 320px;
  }

  .about-grid {
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .conditions-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .FAQ-question {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .contact-grid {
    gap: 30px;
  }

  .contact-info-box {
    padding: 30px 24px;
  }

  .contact-form {
    padding: 30px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Stats Section Wrap */
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .stat {
    width: 45%;
  }
}

/* ===== FLOATING FEEDBACK BUTTON & MODAL ===== */
.floating-feedback-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(32, 128, 116, 0.4);
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.floating-feedback-btn.show-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-feedback-btn.show-btn:hover {
  transform: translateY(-5px);
  background-color: #1a6b60;
  box-shadow: 0 8px 25px rgba(32, 128, 116, 0.6);
}

.floating-feedback-btn i {
  font-size: 1.2rem;
}

.feedback-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 25, 47, 0.7);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.feedback-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.feedback-modal-content {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.feedback-modal-overlay.show .feedback-modal-content {
  transform: scale(1);
}

.feedback-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--navy);
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.feedback-modal-close:hover {
  color: var(--teal);
}

.feedback-modal-content h3 {
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.feedback-modal-content p {
  color: var(--gray);
  margin-bottom: 24px;
}

@media (max-width: 576px) {
  .floating-feedback-btn {
    bottom: 20px;
    right: 20px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .feedback-modal-content {
    padding: 24px;
  }
}