/* ==================== GLOBAL STYLES ==================== */
:root {
  --primary-gradient-start: #f79237;
  --primary-gradient-end: #d35324;
  --accent-green: #7bb14f;
  --accent-blue: #107fa0;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ==================== HEADER STYLES ==================== */
header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

header .container {
  padding: 1rem 0;
}

header a:first-child {
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

header a:first-child:hover {
  transform: scale(1.05);
}

header .nav {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

header .nav a {
  color: var(--text-dark);
  font-weight: 400;
  margin-left: 24px;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
  font-size: 21px;
}

header .nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    135deg,
    var(--primary-gradient-start),
    var(--primary-gradient-end)
  );
  transition: var(--transition);
}

header .nav a:hover {
  color: var(--primary-gradient-start);
}

header .nav a:hover::after {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-green), #6a9f3e);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  box-shadow: 0 4px 15px rgba(218, 114, 21, 0.3);
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(218, 114, 21, 0.4);
  color: white;
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary-gradient-start);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--primary-gradient-start);
  display: inline-block;
}

.btn-outline-primary:hover {
  background: linear-gradient(
    135deg,
    var(--primary-gradient-start),
    var(--primary-gradient-end)
  );
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(218, 114, 21, 0.4);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  padding: 100px 0 120px;
  background: linear-gradient(135deg, #fff5eb 0%, #ffe8d5 50%, #ffeee5 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(218, 114, 21, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(123, 177, 79, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
  color: var(--text-dark);
  animation: fadeInUp 0.8s ease-out;
}

.hero-section h1 span {
  background: linear-gradient(
    135deg,
    var(--primary-gradient-start),
    var(--primary-gradient-end)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section p {
  font-size: 19px;
  margin-bottom: 35px;
  color: var(--text-light);
  max-width: 540px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-section .btn-primary {
  font-size: 16px;
  padding: 16px 40px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-image {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  animation: fadeInRight 1s ease-out 0.3s both;
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: linear-gradient(
    135deg,
    var(--primary-gradient-start),
    var(--accent-green)
  );
  border-radius: 25px;
  z-index: -1;
  opacity: 0.3;
  filter: blur(20px);
}

.hero-image:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
  padding: 100px 0;
  background: var(--bg-white);
  position: relative;
}

.services-section h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent-blue);
}

.services-section .section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-box,
.service-card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-box::before,
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-gradient-start),
    var(--primary-gradient-end)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-box:hover::before,
.service-card:hover::before {
  transform: scaleX(1);
}

.service-box:hover,
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-box .icon,
.service-card .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fff5eb, #ffe8d5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  transition: var(--transition);
  color: var(--primary-gradient-start);
}

.service-box:hover .icon,
.service-card:hover .icon {
  background: linear-gradient(
    135deg,
    var(--primary-gradient-start),
    var(--primary-gradient-end)
  );
  color: white;
  transform: scale(1.1) rotate(10deg);
}

.service-box img,
.service-card img {
  width: 70px;
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-box:hover img,
.service-card:hover img {
  transform: scale(1.15) rotate(5deg);
}

.service-box h4,
.service-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-box p,
.service-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ==================== APPOINTMENT SECTION ==================== */
.appointment-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #e0f4ff 0%, #cceeff 100%);
  position: relative;
}

.appointment-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent-blue);
}

.appointment-section > .container > .row > div > p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0ffe0 0%, #e5ffcc 50%, #f5ffe5 100%);
}

.faq-section h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--accent-green);
}

.faq-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  transition: var(--transition);
  border-left: 4px solid transparent;
}

.faq-card:hover {
  border-left-color: var(--accent-green);
  transform: translateX(5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faq-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.faq-card p {
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.7;
}

/* ==================== FOOTER ==================== */
footer {
  background: linear-gradient(
    135deg,
    var(--primary-gradient-start),
    var(--primary-gradient-end)
  );
  color: var(--bg-white);
  padding: 60px 0 30px;
  margin-top: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

/* ==================== FEATURE BOXES ==================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-box {
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-gradient-start),
    var(--primary-gradient-end)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: white;
}

/* ==================== BADGES & TAGS ==================== */
.badge-custom {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--accent-green), #6a9f3e);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ==================== CTA SECTIONS ==================== */
.cta-section {
  background: linear-gradient(135deg, var(--accent-green), #6a9f3e);
}

.cta-section h2 {
  color: white;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
  .hero-section h1 {
    font-size: 42px;
  }

  .services-section h2,
  .appointment-section h2,
  .faq-section h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 70px 0 80px;
  }

  .hero-section h1 {
    font-size: 36px;
  }

  .hero-section p {
    font-size: 17px;
  }

  .services-section,
  .appointment-section,
  .faq-section {
    padding: 70px 0;
  }

  header .nav a {
    margin-left: 20px;
  }

  .services-section h2,
  .appointment-section h2,
  .faq-section h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 30px;
  }

  .hero-section p {
    font-size: 16px;
  }

  .btn-primary {
    padding: 14px 30px;
    font-size: 15px;
  }

  .services-section h2,
  .appointment-section h2,
  .faq-section h2 {
    font-size: 28px;
  }

  .service-box,
  .service-card {
    padding: 30px 20px;
  }
}

/* ==================== UTILITY CLASSES ==================== */
.section-spacing {
  padding: 100px 0;
}

.text-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-gradient-start),
    var(--primary-gradient-end)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-hover {
  transition: var(--transition);
}

.shadow-hover:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.vaccine-checkboxes .form-check-input[type="checkbox"] {
  margin: 5px 10px;
}

.floating-whatsapp {
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #25d366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.floating-whatsapp:hover {
  background: #1ebe5d;
}


#error-page {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}