/* ========================
   GLOBAL STYLES
======================== */
body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

/* ========================
   NAVBAR & LOGO
======================== */
.logo-img {
  height: 45px;
  margin-right: 8px;
}

.brand-text {
  font-weight: bold;
  font-size: 14px;
  color: white;
  line-height: 1.2;
}

.navbar {
  background-color: #212529 !important;
}

.navbar-nav .nav-link {
  color: white;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: #ffc107;
}

@media (max-width: 768px) {
  .brand-text {
    font-size: 12px;
    max-width: 150px;
    white-space: normal;
  }
  .navbar-nav .nav-link {
    padding: 8px 10px;
    font-size: 14px;
  }
  .btn-sm {
    padding: 6px 10px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .brand-text {
    font-size: 11px;
    max-width: 120px;
  }
  .logo-img {
    height: 38px;
  }
  .navbar-nav .nav-link {
    font-size: 13px;
  }
}

/* ========================
   HERO SECTIONS
======================== */
.hero-section {
  text-align: center;
  padding: 60px 15px;
}

.hero-section h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

.hero-section p {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
}

.hero-section .d-flex {
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 15px;
  }
  .hero-section .d-flex {
    flex-direction: column;
    gap: 12px;
  }
}

.hero-about {
  background: url('../images/photo1.avif') center/cover no-repeat;
  color: white;
  padding: 100px 0;
  position: relative;
}
.hero-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.hero-about .container {
  position: relative;
  z-index: 2;
}

.appointment-hero {
  background: url('../images/photo2.avif') center/cover no-repeat;
  padding: 100px 0;
  position: relative;
}
.appointment-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.appointment-hero .container {
  position: relative;
  z-index: 2;
}

.contact-hero {
  background: linear-gradient(to right, #0d6efd, #004085);
  color: white;
  padding: 60px 0;
}

/* ========================
   OWNER IMAGE
======================== */
.owner-img {
  max-width: 100px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ========================
   ICON BOXES
======================== */
.icon-box {
  background: white;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.icon-box i {
  font-size: 2.5rem;
  color: #0d6efd;
  margin-bottom: 15px;
}

/* ========================
   CARDS & SERVICES
======================== */
.card, .p-4.shadow-sm.bg-white {
  padding: 20px !important;
}

@media (max-width: 768px) {
  .card h5, .p-4.shadow-sm.bg-white h5 {
    font-size: 1.1rem;
  }
  .card p, .p-4.shadow-sm.bg-white p {
    font-size: 0.9rem;
  }
}

/* ========================
   TESTIMONIALS
======================== */
.testimonials .col-md-4 {
  display: flex;
}
.testimonials .bg-light {
  flex: 1;
}

@media (max-width: 768px) {
  .testimonials .col-md-4 {
    margin-bottom: 20px;
  }
}

/* ========================
   CALL TO ACTION
======================== */
.cta-section {
  padding: 50px 15px;
}

.cta-section h2 {
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
}

.cta-section p {
  font-size: clamp(0.9rem, 2.2vw, 1rem);
}

/* ========================
   BUTTONS
======================== */
.btn-primary {
  background-color: #0d6efd;
  border: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #0b5ed7;
  transform: translateY(-2px);
}

.btn {
  white-space: normal;
  word-wrap: break-word;
}

/* ========================
   CONTACT & MAP
======================== */
.map-container iframe {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  min-height: 300px;
  width: 100%;
}

/* ========================
   FOOTER
======================== */
.footer {
  background-color: #111;
  color: #f8f9fa;
  font-size: 0.95rem;
  padding: 40px 20px;
}

.footer a {
  color: #f8f9fa;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer a:hover {
  color: #ffc107;
}

.footer-logo {
  max-width: 140px;
  height: auto;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a i {
  color: #ffc107;
}

/* Social Icons */
.footer .social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
.footer .social-icons a {
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 10px;
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
}
.footer .social-icons a:hover {
  background: #ffc107;
  color: #111;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  .footer .social-icons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer-logo {
    max-width: 120px;
  }
  .footer .social-icons a {
    font-size: 1rem;
    padding: 6px 8px;
  }
}
