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

/* ==========================================
   DESIGN TOKENS & CSS VARIABLES
   ========================================== */
:root {
  --primary: #FFB800;
  --primary-hover: #FFA000;
  --primary-light: #FFF8E7;
  --secondary: #00A8E8;
  --secondary-light: #E0F7FA;
  --accent: #A73B24;
  --dark: #3F1B18;
  --dark-light: #4E2320;
  --gray: #8C7A77;
  --light-gray: #EDE7E4;
  --bg: #FAF6F0;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(63, 27, 24, 0.04);
  --shadow-md: 0 8px 30px rgba(63, 27, 24, 0.08);
  --shadow-lg: 0 16px 40px rgba(63, 27, 24, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-blur: blur(12px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
}

.section-tag {
  display: inline-block;
  background-color: rgba(167, 59, 36, 0.08);
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--gray);
  font-size: 1.125rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* ==========================================
   UTILITY CLASSES & BUTTONS
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--dark);
  box-shadow: 0 8px 24px rgba(255, 184, 0, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 160, 0, 0.3);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--dark);
  border: 1px solid var(--light-gray);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.25rem 0;
}

header.scrolled {
  background: rgba(250, 246, 240, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(237, 231, 228, 0.8);
  padding: 0.875rem 0;
  box-shadow: var(--shadow-sm);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark);
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--gray);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--dark);
  transition: var(--transition);
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  padding: 10rem 0 6rem 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 184, 0, 0.07) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(63, 27, 24, 0.04) 0%, transparent 40%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.hero-tag span {
  color: #FBBF24;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-title span {
  color: var(--dark);
  background: linear-gradient(120deg, var(--primary-light) 0%, var(--primary-light) 100%);
  padding: 0 8px;
  border-radius: var(--radius-sm);
  border-bottom: 3px double var(--primary);
  position: relative;
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hero-bullets {
  display: flex;
  gap: 2rem;
  border-top: 1px solid var(--light-gray);
  padding-top: 2rem;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--gray);
}

.bullet-item i {
  color: var(--secondary);
  font-size: 1.25rem;
}

/* Hero Visual Column */
.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.hero-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

/* Overlays on Hero Image */
.hero-overlay {
  position: absolute;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 4s ease-in-out infinite;
}

.overlay-treatment {
  top: 10%;
  left: -8%;
  animation-delay: 0s;
}

.overlay-rating {
  bottom: 10%;
  right: -5%;
  animation-delay: 2s;
}

.hero-overlay .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.overlay-rating .icon-box {
  background: var(--secondary-light);
  color: var(--secondary);
}

.hero-overlay-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.hero-overlay-info p {
  font-size: 0.8rem;
  color: var(--gray);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .hero {
    padding: 8rem 0 4rem 0;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-image-wrapper img {
    height: 400px;
  }
  .overlay-treatment {
    left: 2%;
  }
  .overlay-rating {
    right: 2%;
  }
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats {
  padding: 3rem 0;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--gray);
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   ABOUT US SECTION
   ========================================== */
.about {
  padding: 6rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

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

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--primary);
  color: var(--dark);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.experience-badge h3 {
  font-size: 2rem;
  color: var(--dark);
  line-height: 1;
}

.experience-badge p {
  font-size: 0.9rem;
  font-weight: 500;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.feature-card:nth-child(2) .feature-icon {
  background-color: var(--secondary-light);
  color: var(--secondary);
}

.feature-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray);
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-img-box img {
    height: 350px;
  }
  .experience-badge {
    left: 20px;
  }
}

/* ==========================================
   SERVICES SECTION (INTERACTIVE)
   ========================================== */
.services {
  padding: 6rem 0;
  background-color: #F2EDE4;
}

.services-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* Sidebar List of Services */
.services-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background-color: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.service-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray);
  transition: var(--transition);
}

.service-tab:hover {
  background-color: var(--bg);
  color: var(--dark);
}

.service-tab.active {
  background-color: var(--primary);
  color: var(--dark);
}

.service-tab i {
  font-size: 1.1rem;
  opacity: 0.5;
  transition: var(--transition);
}

.service-tab.active i {
  opacity: 1;
  transform: translateX(3px);
}

/* Detailed Display Pane */
.service-display {
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.service-display.active {
  display: grid;
  animation: fadeIn 0.4s ease-in-out forwards;
}

.service-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-info .service-desc-text {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.service-includes {
  margin-bottom: 2.5rem;
}

.service-includes h4 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-includes ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.service-includes li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--gray);
}

.service-includes li i {
  color: var(--secondary);
}

.service-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
}

.service-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

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

@media (max-width: 992px) {
  .services-layout {
    grid-template-columns: 1fr;
  }
  .service-display {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .service-media img {
    height: 240px;
  }
}

/* ==========================================
   DOCTORS SECTION
   ========================================== */
.doctors {
  padding: 6rem 0;
}

.doctor-profile-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 3rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}

.doctor-photo-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.doctor-photo-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.doctor-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--secondary);
  color: var(--white);
  padding: 0.4rem 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}

.doctor-details h3 {
  font-size: 2.25rem;
  margin-bottom: 0.25rem;
}

.doctor-title {
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.doctor-bio {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.doctor-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--light-gray);
  padding-top: 2rem;
}

.doc-stat-item h4 {
  font-size: 1.25rem;
  color: var(--dark);
}

.doc-stat-item p {
  font-size: 0.85rem;
  color: var(--gray);
}

@media (max-width: 768px) {
  .doctor-profile-card {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 2.5rem;
  }
  .doctor-photo-wrapper img {
    height: 300px;
  }
  .doctor-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
  padding: 6rem 0;
  background-color: var(--bg);
  overflow: hidden;
}

.reviews-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  min-height: 280px;
}

.review-slide {
  display: none;
  text-align: center;
  animation: slideIn 0.5s ease-in-out forwards;
}

.review-slide.active {
  display: block;
}

.review-stars {
  color: #FBBF24;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 2rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--gray);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--light-gray);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
  .review-text {
    font-size: 1.15rem;
  }
}

/* ==========================================
   BLOG / ARTICLES SECTION
   ========================================== */
.blogs {
  padding: 6rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-image {
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.75rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card h3:hover {
  color: var(--primary);
}

.blog-card p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}

.blog-link:hover {
  gap: 0.75rem;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   CONTACT, MAPS & TIMINGS
   ========================================== */
.contact {
  padding: 6rem 0;
  background-color: var(--white);
  border-top: 1px solid var(--light-gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-text p, .contact-text a {
  font-size: 0.95rem;
  color: var(--gray);
}

.timings-card {
  background-color: var(--bg);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px dashed var(--light-gray);
}

.timings-card h4 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timings-card h4 i {
  color: var(--primary);
}

.timing-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem;
}

.timing-row:last-child {
  border-bottom: none;
}

.timing-row span:last-child {
  font-weight: 600;
  color: var(--dark);
}

/* Map visual */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
  height: 100%;
  min-height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .map-wrapper {
    min-height: 300px;
  }
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background-color: var(--dark);
  color: #94A3B8;
  padding: 5rem 0 2rem 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand h3 span {
  color: var(--primary);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-btn:hover {
  background-color: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
}

.footer-column h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-column a {
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}



/* ==========================================
   SCROLL REVEAL & MICRO INTERACTIONS
   ========================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
