/* =========================================
   Global Theme Variables
========================================= */
:root {
  --theme-color: #b38b59;
  --theme-hover: #946d40;
  --theme-accent: #f4d35e; /* secondary accent */
  --text-dark: #222;
  --text-body: #333;
  --text-light: #555;
  --bg-light: #faf8f6;
  --bg-paper: #fffefc;
  --bg-white: #fff;
}

/* =========================================
   Global reset
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.7;
  font-size: 18px;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================================
   Header
========================================= */
.site-header {
  background: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  
 
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--text-dark);
  text-decoration: none;
}

/* Menu Links */
.menu {
  display: flex;
  align-items: center;
}

.menu a {
  margin-left: 2rem;
  text-decoration: none;
  color: var(--text-body);
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: var(--theme-color);
}

/* Toggle Button */
.nav-toggle {
  display: none;
  font-size: 1.7rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .menu {
    flex-direction: column;
    width: 100%;
    display: none;
    background: var(--bg-white);
    padding: 1rem 0;
    border-top: 1px solid #eee;
  }

  .menu a {
    margin: 0.5rem 0;
  }

  .menu.menu-open {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* =========================================
   Buttons
========================================= */
.btn {
  padding: 0.7rem 1.4rem;
  border-radius: 5px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn.primary {
  background: var(--theme-color);
  color: #fff;
}

.btn.primary:hover {
  background: var(--theme-hover);
}

.btn.ghost {
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
}

.btn.ghost:hover {
  background: var(--theme-color);
  color: #fff;
}

.btn.small {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  background: var(--theme-color);
  color: #fff;
}

.btn.small:hover {
  background: var(--theme-hover);
}

/* =========================================
   Hero Section
========================================= */
.hero {
  background: linear-gradient(rgba(179, 139, 89, 0.05), rgba(179, 139, 89, 0.05));
  padding: 80px 0;
}

.hero-inner.two-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 50%;
  max-width: 600px;
}

.hero-text h1 {
  font-family: 'Lora', serif;
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.cta-row {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

.hero-image-wrap {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hero-inner.two-col {
    flex-direction: column;
    text-align: center;
  }
  .hero-text,
  .hero-image-wrap {
    flex: 1 1 100%;
  }
  .cta-row {
    justify-content: center;
  }
}

/* =========================================
   Sections
========================================= */
.section {
  padding: 4rem 0;
}

.section.alt {
  background: var(--bg-light);
}

.section h2, 
.section h3 {
  color: var(--theme-color);
  margin-bottom: 1rem;
}

/* Two Column Layout */
.two-col {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================
   Cards
========================================= */
.grid.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Services Cards */
.card {
  background: var(--bg-paper);
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* Sticky note effect */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 40px solid var(--theme-color);
  border-left: 40px solid transparent;
  border-radius: 0 12px 0 0;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.card-icon {
  max-width: 70px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(3deg);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  font-family: 'Lora', serif;
  color: var(--text-dark);
}

.card p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  min-height: 40px;
}

/* Price Badge */
.card strong {
  display: inline-block;
  background: var(--theme-color);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0.8rem;
}

/* Clinic Info List */
.card.soft ul.bullet {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1.2rem;
  margin-left: 0;
}
.card.soft ul.bullet li {
  margin-bottom: 0.5rem;
}
.card.soft {
  text-align: left;
}

/* =========================================
   Contact Section
========================================= */
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.contact-btn {
  padding: 0.7rem 1.1rem;
  background: var(--theme-color);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: var(--theme-hover);
}

.contact-list li {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

/* Map */
.map-wrap iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 10px;
}

/* =========================================
   Footer
========================================= */
.site-footer {
  background: linear-gradient(to right, var(--bg-light), #f5f2ed);
  color: var(--text-dark);
  padding: 70px 0 30px;
  position: relative;
  border-top: 1px solid rgba(179, 139, 89, 0.2);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(179, 139, 89, 0.15);
  text-align: center;
  font-size: 14px;
  color: #666;
}

.footer-heading {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-hover);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--theme-color);
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}

.footer-nav a:hover {
  color: var(--theme-color);
  transform: translateX(3px);
}

/* =========================================
   Back to Top
========================================= */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--theme-color);
  color: #fff;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(107, 70, 70, 0.15);
  transition: background 0.3s ease;
  z-index: 1000;
}

.back-to-top:hover {
  background: var(--theme-hover);
}

/* =========================================
   Misc
========================================= */
.top-link:hover {
  text-decoration: underline;
}

/* Vision Image */
.vision-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  opacity: 50%;
}

#btn {
  border: 1px solid var(--theme-color);
  border-radius: 20px;
  padding: 10px;
}
