/* ==========================================================================
   Al Hind - Health Tourism Enterprises
   Clean, Responsive, Standalone Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Open+Sans:wght@400;600;700;800&family=Raleway:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-blue: #1a74b1;
  --primary-blue-dark: #0d5d91;
  --accent-gold: #feb005;
  --accent-gold-hover: #ffc044;
  --accent-gold-dark: #d99300;
  --dark-bg: #363636;
  --dark-footer: #282828;
  --text-color: #444444;
  --text-light: #666666;
  --border-color: #e5e5e5;
  --font-main: 'Raleway', sans-serif;
  --font-heading: 'Raleway', sans-serif;
  --font-sans: 'Open Sans', sans-serif;
  --font-alt: 'Lato', sans-serif;
}

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

html, body {
  width: 100%;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #f7f9fa;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover, a:focus {
  color: var(--accent-gold);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ==========================================================================
   Header Elements
   ========================================================================== */
#header {
  position: relative;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

/* Sticky Header on Scroll */
.lpd-sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

.lpd-sticky-header.is-sticky {
  transform: translateY(0);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo img {
  max-height: 65px;
  width: auto;
  display: block;
}

/* Navigation Menu */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  display: block;
  padding: 12px 18px;
  font-family: var(--font-alt);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #333333;
  letter-spacing: 0.5px;
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease;
}

.nav-menu li a:hover,
.nav-menu li.active a {
  background-color: var(--primary-blue);
  color: #ffffff;
}

/* Header Bottom Contact Bar (Duo-color) */
.header-bottom {
  display: flex;
  width: 100%;
}

.header-bottom-container {
  display: flex;
  width: 100%;
}

.contact-info-block {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.contact-phone-block {
  background-color: var(--primary-blue);
  flex: 0 0 35%;
}

.contact-email-block {
  background-color: var(--accent-gold);
  flex: 1;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
}

.contact-icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.contact-info-block a {
  color: #ffffff;
  margin: 0 4px;
}

.contact-info-block a:hover {
  text-decoration: underline;
  color: #f1f1f1;
}

/* Mobile Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-blue);
  cursor: pointer;
  padding: 5px;
}

/* ==========================================================================
   Hero Slider (Revolution Slider Style)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background-color: #222;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.slide-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 960px;
  padding: 0 20px;
}

.slide-heading {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  padding: 12px 26px 15px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 0.6s ease;
}

.slide-heading.bg-blue {
  background-color: rgba(4, 92, 152, 0.85);
}

.slide-heading.bg-dark {
  background-color: rgba(0, 0, 0, 0.75);
}

.slide-subheading {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  padding: 10px 22px;
  background-color: rgba(243, 156, 18, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.7s ease;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background-color: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background-color: var(--primary-blue);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 25px;
}

.slider-arrow.next {
  right: 25px;
}

.slider-bullets {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.slider-bullet {
  width: 14px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
}

.slider-bullet.active,
.slider-bullet:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: scale(1.2);
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Page Title & Breadcrumb (For Subpages)
   ========================================================================== */
#title-breadcrumb {
  background-color: #e9ecef;
  padding: 35px 0;
  border-bottom: 1px solid #dde2e6;
  margin-bottom: 40px;
}

#title-breadcrumb h1 {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
}

/* ==========================================================================
   Main Content Section
   ========================================================================== */
#main {
  padding: 60px 0 80px;
  min-height: 450px;
}

.section-box {
  background: #ffffff;
  border-radius: 8px;
  padding: 45px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.section-title {
  color: var(--primary-blue);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.deco-sep-line {
  height: 4px;
  width: 100px;
  background-color: #ffcc66;
  margin-bottom: 25px;
  border-radius: 2px;
}

.lead-content {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 30px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(254, 176, 5, 0.3);
}

.btn-blue {
  background-color: var(--primary-blue);
  color: #ffffff;
}

.btn-blue:hover {
  background-color: var(--primary-blue-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 116, 177, 0.3);
}

/* Separator Icon in Medical Treatment */
.separator-icon-wrap {
  text-align: center;
  margin: 40px 0;
  position: relative;
}

.separator-icon-wrap::before,
.separator-icon-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background-color: #e0e0e0;
}

.separator-icon-wrap::before {
  left: 5%;
}

.separator-icon-wrap::after {
  right: 5%;
}

.separator-icon-wrap img {
  display: inline-block;
  width: 42px;
  height: auto;
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 0 10px;
}

/* Package Treatment Grid */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 15px;
  margin-top: 25px;
  list-style: none;
}

.treatment-card {
  background-color: #fcfcfc;
  border: 1px solid #eaedf0;
  border-left: 4px solid var(--primary-blue);
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #2c3e50;
  display: flex;
  align-items: center;
  transition: all 0.25s ease;
}

.treatment-card::before {
  content: "✦";
  color: var(--accent-gold);
  font-size: 14px;
  margin-right: 12px;
}

.treatment-card:hover {
  background-color: #ffffff;
  border-left-color: var(--accent-gold);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Forms (Medical Report & Contact) */
.form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 35px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.form-legend {
  border-bottom: 2px solid #edf2f7;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.form-legend h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 8px;
}

.form-label .required {
  color: #e53e3e;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid #cbd5e0;
  border-radius: 4px;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(26, 116, 177, 0.15);
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-col {
  flex: 1;
}

.form-radio-group {
  display: flex;
  gap: 25px;
  align-items: center;
  padding: 6px 0;
}

.form-radio-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

/* Contact Info Card */
.contact-detail-box {
  background: #ffffff;
  border-radius: 8px;
  padding: 35px;
  border-left: 5px solid var(--primary-blue);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.contact-detail-box h2 {
  font-size: 24px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.contact-detail-box p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
}

.contact-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(26, 116, 177, 0.1);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 14px;
  flex-shrink: 0;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
#footer-meta {
  background-color: var(--accent-gold);
  color: #ffffff;
}

.footer-meta-wrap {
  display: flex;
  flex-wrap: wrap;
}

.footer-meta-col {
  padding: 35px 25px;
  flex: 1;
}

.footer-meta-col.first-col {
  background-color: var(--primary-blue);
  flex: 0 0 35%;
}

.sm-label {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.25s ease;
}

.social-btn:hover {
  background-color: #ffffff;
  color: var(--primary-blue);
  transform: translateY(-3px);
}

.fm-item-title {
  font-family: var(--font-alt);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.fm-item-sep {
  height: 2px;
  width: 50px;
  background-color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.fm-item-subtitle {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

/* Footer Bottom */
#footer-bottom {
  background-color: var(--dark-bg);
  padding: 25px 0;
  color: #b0b0b0;
  font-size: 13px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright a {
  color: var(--accent-gold);
}

.copyright a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 991px) {
  .hero-slider-section {
    height: 420px;
  }
  .slide-heading {
    font-size: 28px;
  }
  .slide-subheading {
    font-size: 16px;
  }
  .contact-phone-block {
    flex: 0 0 45%;
  }
  .footer-meta-col.first-col {
    flex: 0 0 100%;
  }
  .footer-meta-col {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  .main-nav {
    display: none;
    width: 100%;
    margin-top: 15px;
  }
  .main-nav.is-open {
    display: block;
  }
  .nav-menu {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-menu li a {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
  }
  .header-bottom-container {
    flex-direction: column;
  }
  .contact-phone-block,
  .contact-email-block {
    flex: 100%;
  }
  .hero-slider-section {
    height: 350px;
  }
  .slide-heading {
    font-size: 22px;
    padding: 8px 16px;
  }
  .slide-subheading {
    font-size: 14px;
    padding: 6px 14px;
  }
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .section-box {
    padding: 25px 20px;
  }
  .footer-meta-col {
    flex: 0 0 100%;
    padding: 25px 20px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}
