@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');

:root {
  /* Colors */
  --primary: #009688;
  --primary-light: #e8f8f6;
  --primary-hover: #00796b;
  --primary-glow: rgba(0, 150, 136, 0.3);
  --secondary: #00bfa5;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --grey: #64748b;
  --light-grey: #f8fafc;
  --border-color: #e2e8f0;
  --white: #ffffff;
  --success: #10b981;
  --danger: #ef4444;

  /* Font Families */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transition speeds */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.03);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.05), 0 10px 10px -5px rgba(0,0,0,0.03);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark-light);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--light-grey);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Global Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Glassmorphism utility */
.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-lg);
  border-radius: 16px;
  transition: var(--transition-normal);
}
.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 150, 136, 0.2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-slow);
  border: none;
  position: relative;
  overflow: hidden;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px var(--primary-glow);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(0, 150, 136, 0.4);
  transform: scale(1.03);
}

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

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition-normal);
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  height: 60px;
}
.logo-wrapper img {
  height: 100%;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--dark-light);
  position: relative;
  padding: 8px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-normal);
}
.nav-link:hover {
  color: var(--primary);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: var(--transition-normal);
}

/* Common Section Styles */
section {
  padding: 100px 0;
  position: relative;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}
.section-subtitle {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: 38px;
  margin-bottom: 16px;
}
.section-description {
  color: var(--grey);
  font-size: 16px;
}

/* --- HERO SECTION --- */
.hero-section {
  min-height: 100vh;
  padding-top: 140px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #e8f8f6 0%, #ffffff 50%, #f1faf9 100%);
  position: relative;
  overflow: hidden;
}

/* Background Animations wrapper */
.hero-bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
}
.hero-headline {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero-headline span {
  color: var(--primary);
}
.hero-subheading {
  font-size: 19px;
  color: var(--grey);
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 16px;
}

/* Interactive SVG Hero Area */
.hero-interactive-area {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Floating interactive SVG styles */
.medical-interactive-container {
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 500px;
  position: relative;
}

/* --- STATS SECTION --- */
.stats-section {
  padding: 50px 0;
  background: var(--light-grey);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 32px 20px;
}
.stat-number {
  font-size: 42px;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 8px;
  display: block;
}
.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-light);
}

/* --- SERVICES SECTION --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(100px circle at var(--x, 0px) var(--y, 0px), rgba(0, 150, 136, 0.08), transparent 80%);
  pointer-events: none;
}
.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  transition: var(--transition-normal);
}
.service-card:hover .service-icon-box {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}
.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--grey);
  font-size: 14px;
  margin-bottom: 24px;
  flex-grow: 1;
}
.service-card-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card-link svg {
  transition: var(--transition-fast);
}
.service-card:hover .service-card-link svg {
  transform: translateX(4px);
}

/* --- HOME COLLECTION SECTION --- */
.home-collection-section {
  background: linear-gradient(135deg, #ffffff 0%, #e8f8f6 100%);
  overflow: hidden;
}
.collection-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.collection-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.collection-image-wrapper img {
  width: 100%;
  display: block;
}
.collection-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
}
.collection-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.collection-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.collection-feature-text {
  font-weight: 600;
  font-size: 15px;
}

/* --- WHY CHOOSE SECTION --- */
.why-choose-section {
  background: var(--light-grey);
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  padding: 32px 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}
.why-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.why-card p {
  color: var(--grey);
  font-size: 14px;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 36px 28px;
}
.testimonial-stars {
  color: #ffb020;
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-text {
  color: var(--dark-light);
  font-style: italic;
  margin-bottom: 24px;
  font-size: 15px;
}
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  display: block;
}
.testimonial-role {
  color: var(--grey);
  font-size: 13px;
}

/* --- CTA BANNER --- */
.cta-section {
  padding: 80px 0;
}
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-title {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 16px;
}
.cta-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 36px auto;
}
.cta-banner .btn {
  background: var(--white);
  color: var(--primary);
}
.cta-banner .btn:hover {
  background: var(--primary-light);
  color: var(--primary-hover);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* --- INNER PAGE HERO --- */
.inner-hero {
  padding: 160px 0 80px 0;
  background: linear-gradient(135deg, #e8f8f6 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.inner-hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}
.inner-hero-title {
  font-size: 52px;
  margin-bottom: 16px;
}
.breadcrumbs {
  display: flex;
  gap: 8px;
  color: var(--grey);
  font-weight: 500;
  font-size: 15px;
}
.breadcrumbs a:hover {
  color: var(--primary);
}
.breadcrumbs span {
  color: var(--primary);
}

/* --- ABOUT PAGE CONTENT --- */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.story-image {
  border-radius: 16px;
  width: 100%;
  height: 220px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.story-image-tall {
  grid-row: span 2;
  height: 456px;
}
.story-content h2 {
  font-size: 36px;
  margin-bottom: 24px;
}
.story-content p {
  color: var(--grey);
  margin-bottom: 20px;
}

.mission-vision-section {
  background: var(--light-grey);
}
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.mv-card {
  padding: 48px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}
.mv-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.mv-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}
.mv-card p {
  color: var(--grey);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.value-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: var(--transition-normal);
}
.value-card:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-5px);
}
.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: var(--transition-normal);
}
.value-card:hover .value-icon {
  background: var(--primary);
  color: var(--white);
}
.value-card h4 {
  font-size: 18px;
}

/* --- SERVICES PAGE CONTENT --- */
.services-category-section {
  border-bottom: 1px solid var(--border-color);
}
.services-category-section:last-of-type {
  border-bottom: none;
}
.service-items-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.service-item-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  background: var(--white);
  transition: var(--transition-normal);
}
.service-item-row:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 150, 136, 0.3);
}
.service-item-meta h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--primary);
}
.service-item-meta p {
  color: var(--grey);
  font-size: 14px;
}
.service-item-details {
  border-left: 2px solid var(--border-color);
  padding-left: 32px;
}
.service-detail-block {
  margin-bottom: 16px;
}
.service-detail-block:last-child {
  margin-bottom: 0;
}
.service-detail-label {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--dark-light);
  display: block;
  margin-bottom: 4px;
}
.service-detail-val {
  color: var(--grey);
  font-size: 14px;
}
.service-item-cta {
  text-align: right;
}
.service-item-cta .btn {
  width: 100%;
  max-width: 200px;
}

/* --- CONTACT PAGE CONTENT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-text h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.contact-info-text p {
  color: var(--grey);
  font-size: 15px;
  white-space: pre-line;
}
.contact-info-text a:hover {
  color: var(--primary);
}

.contact-form-panel {
  padding: 40px;
}
.form-title {
  font-size: 28px;
  margin-bottom: 8px;
}
.form-desc {
  color: var(--grey);
  margin-bottom: 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group.full-width {
  grid-column: span 2;
}
.form-label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--light-grey);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  transition: var(--transition-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.contact-form-panel button {
  width: 100%;
  margin-top: 10px;
}

/* Map Section */
.map-section {
  padding: 0;
  height: 450px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}
.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px 0;
  font-size: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-col h3, .footer-col h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 24px;
}
.footer-logo {
  height: 55px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer-desc {
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.footer-contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
}

/* --- AMBULANCE ICON HOVER ANIMATION --- */
.ambulance-svg {
  transition: transform 0.5s ease;
}
.btn-ambulance:hover .ambulance-svg {
  animation: drive 1.2s infinite linear;
}
@keyframes drive {
  0% { transform: translateX(0); }
  30% { transform: translateX(10px) translateY(-1px); }
  60% { transform: translateX(-5px) translateY(1px); }
  100% { transform: translateX(0); }
}

/* --- WORD-BY-WORD REVEAL --- */
.word-reveal {
  opacity: 0;
  transform: translateY(20px);
}

/* --- ADMIN PANEL PREVIEW INTERFACE --- */
.admin-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  background: var(--light-grey);
}
.admin-sidebar {
  background: var(--dark);
  color: var(--white);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
}
.admin-logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}
.admin-menu-item {
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.admin-menu-item:hover, .admin-menu-item.active {
  background: var(--primary);
  color: var(--white);
}
.admin-main {
  padding: 40px;
  overflow-y: auto;
  max-height: 100vh;
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}
.admin-header h1 {
  font-size: 28px;
}
.admin-tab-content {
  display: none;
}
.admin-tab-content.active {
  display: block;
}
.admin-form-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
}
.admin-form-title {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  color: var(--primary);
}
.admin-save-bar {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 20px;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
.admin-table th, .admin-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}
.admin-table th {
  background: var(--light-grey);
  font-weight: 600;
  color: var(--dark);
}
.admin-table tr:hover {
  background: rgba(0, 150, 136, 0.02);
}
.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}
.badge-success { background: #e6f4ea; color: #137333; }
.badge-info { background: #e8f0fe; color: #1a73e8; }
.badge-warning { background: #fef7e0; color: #b06000; }

.notification-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--dark);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}
.notification-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1024px) {
  .hero-headline { font-size: 42px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-content { margin: 0 auto; }
  .hero-buttons { justify-content: center; }
  .hero-interactive-area { height: 400px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .story-section { grid-template-columns: 1fr; gap: 40px; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .service-item-row { grid-template-columns: 1fr; gap: 20px; }
  .service-item-details { border-left: none; padding-left: 0; border-top: 1px solid var(--border-color); padding-top: 20px; }
  .service-item-cta { text-align: left; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.open {
    left: 0;
  }
  .mobile-toggle {
    display: block;
  }
  .header-actions .btn {
    display: none;
  }
  .mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .collection-grid { grid-template-columns: 1fr; gap: 40px; }
  .collection-features { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .why-choose-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .admin-container { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
}

/* --- PRICE LIST & GALLERY CUSTOM STYLES --- */
.price-list-container, .gallery-container {
  margin-top: 40px;
}

/* Search bar */
.search-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto 40px auto;
}
.search-input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}
.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
}
.search-icon-svg {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey);
  pointer-events: none;
}

/* Category Tabs */
.tabs-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 10px 20px;
  border-radius: 20px;
  background: var(--light-grey);
  border: 1px solid var(--border-color);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-normal);
}
.tab-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}
.tab-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 10px var(--primary-glow);
}

/* Price List Tables */
.price-table-wrapper {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  margin-bottom: 40px;
  display: none; /* Controlled by active tab */
}
.price-table-wrapper.active {
  display: block;
  animation: fadeIn 0.5s ease;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th, .price-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}
.price-table th {
  background: var(--light-grey);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark);
  font-size: 16px;
}
.price-table tr:last-child td {
  border-bottom: none;
}
.price-table tbody tr {
  transition: var(--transition-fast);
}
.price-table tbody tr:hover {
  background: rgba(0, 150, 136, 0.02);
}
.test-name {
  font-weight: 500;
  color: var(--dark);
}
.test-price {
  font-weight: 600;
  color: var(--primary);
  font-size: 18px;
}
.btn-table-book {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 15px;
}

/* Original Image toggle section */
.original-photo-toggle {
  text-align: center;
  margin-bottom: 50px;
}
.original-photo-wrapper {
  max-width: 800px;
  margin: 30px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary);
  display: none;
  animation: slideDown 0.4s ease;
}
.original-photo-wrapper.active {
  display: block;
}
.original-photo-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  background: var(--white);
  transition: var(--transition-slow);
}
.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 150, 136, 0.2);
}
.gallery-image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card:hover .gallery-image {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.1) 80%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: var(--transition-normal);
}
.gallery-card:hover .gallery-overlay {
  opacity: 1;
}
.gallery-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.gallery-desc {
  color: #cbd5e1;
  font-size: 13px;
}
.gallery-zoom-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
  z-index: 5;
}
.gallery-card:hover .gallery-zoom-btn {
  opacity: 1;
  transform: scale(1);
}
.gallery-zoom-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  position: relative;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: block;
}
.lightbox-caption {
  color: var(--white);
  text-align: center;
  margin-top: 16px;
  font-size: 16px;
  font-family: var(--font-heading);
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  cursor: pointer;
  font-size: 30px;
  transition: var(--transition-fast);
}
.lightbox-close:hover {
  color: var(--primary);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive updates for Price List and Gallery */
@media (max-width: 768px) {
  .price-table th, .price-table td {
    padding: 12px 16px;
  }
  .test-price {
    font-size: 16px;
  }
  .price-table th:nth-child(3), .price-table td:nth-child(3) {
    padding-right: 12px;
  }
  .tab-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

