/* =============================================
   CORPORATE WEBSITE — DESIGN SYSTEM
   ============================================= */

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

/* ---------- Accessibility & Focus ---------- */
*:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #1a3a6b;
  --primary-light: #2a5ba8;
  --primary-dark: #0f2548;
  --accent: #0ea5e9;
  --accent-light: #38bdf8;
  --accent-dark: #0284c7;
  --dark: #0f172a;
  --dark-lighter: #1e293b;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.highlight {
  color: var(--accent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(26, 58, 107, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 58, 107, 0.45);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-right: 40px;
}

.navbar-brand .brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-btn {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  padding: 10px 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.nav-dropdown:hover .nav-dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown-content a {
  color: var(--gray-700) !important;
  background: transparent !important;
  padding: 10px 20px;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-dropdown-content a:hover {
  background: var(--gray-50) !important;
  color: var(--primary) !important;
  padding-left: 25px;
}

.nav-cta {
  margin-left: auto;
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  margin-left: auto;
}

.hamburger span {
  width: 28px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  animation: float 20s infinite ease-in-out;
}

.hero-bg-shapes .shape:nth-child(1) {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.hero-bg-shapes .shape:nth-child(2) {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  animation-delay: -5s;
}

.hero-bg-shapes .shape:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 60%;
  animation-delay: -10s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent-light), var(--accent), #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Coming Soon Badge ---------- */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border-radius: 50px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
  animation: comingSoonFloat 3s ease-in-out infinite;
}

.coming-soon-icon {
  font-size: 1.1rem;
}

.coming-soon-text {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.coming-soon-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  opacity: 0;
  animation: comingSoonPulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes comingSoonFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes comingSoonPulse {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- About Section ---------- */
.about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-content p {
  color: var(--gray-600);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.about-feature .icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.about-feature span {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

.about-image {
  position: relative;
}

.about-image .image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image .image-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-image .floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-image .floating-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.about-image .floating-card .info .number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
}

.about-image .floating-card .info .label {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ---------- Featured Services Slider ---------- */
.services-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.featured-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.featured-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  min-height: 460px;
}

.slide-image-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}

.slide-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-slide:hover .slide-image-wrapper img {
  transform: scale(1.05);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.05) 100%);
  pointer-events: none;
}

.slide-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 20px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.slide-icon.student {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.slide-icon.realestate {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.slide-icon.legal {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.slide-icon.visa {
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
}

.slide-content h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.slide-content p {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.8;
  max-width: 440px;
}

.slide-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  transition: var(--transition);
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(56, 189, 248, 0.12));
  border-radius: var(--radius);
  width: fit-content;
}

.slide-link:hover {
  gap: 16px;
  color: var(--accent);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.14), rgba(56, 189, 248, 0.2));
}

.slide-link .arrow {
  transition: var(--transition);
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark);
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.slider-arrow:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(26, 58, 107, 0.35);
}

.slider-arrow.disabled {
  opacity: 0.35;
  cursor: default;
}

.slider-arrow.disabled:hover {
  background: rgba(255, 255, 255, 0.85);
  color: var(--dark);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

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

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

/* Slider Dots */
.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--primary);
  width: 32px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(26, 58, 107, 0.3);
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(56, 189, 248, 0.1) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  color: var(--gray-400);
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-brand .brand-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand .brand-name .footer-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.footer-col h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--gray-400);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  padding: 0;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
  padding-left: 0;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gray-500);
  font-size: 0.85rem;
}

/* ---------- Page Hero (Inner Pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(14, 165, 233, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(56, 189, 248, 0.08) 0%, transparent 50%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.page-hero .breadcrumb a:hover {
  color: var(--white);
}

.page-hero .breadcrumb .sep {
  font-size: 0.7rem;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  line-height: 1.8;
}

/* ---------- Service Detail Page ---------- */
.service-overview {
  background: var(--white);
}

.service-overview .overview-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.service-overview .overview-content p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.9;
}

.sub-services {
  background: var(--off-white);
}

.sub-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  justify-items: center;
}

.sub-services-grid .sub-service-card {
  width: 100%;
  max-width: 500px;
  /* Prevents cards from stretching too wide when alone on a row */
}

.sub-service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.sub-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.sub-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.sub-service-card:hover::before {
  opacity: 1;
}

.sub-service-card .card-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 16px;
}

.sub-service-card .card-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(56, 189, 248, 0.15));
}

.sub-service-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.sub-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sub-service-card:hover .sub-service-image img {
  transform: scale(1.06);
}

.sub-service-body {
  padding: 32px 36px 36px;
}

.sub-service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.sub-service-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.8;
}

.sub-service-card ul {
  margin-top: 16px;
}

.sub-service-card ul li {
  padding: 6px 0;
  color: var(--gray-600);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sub-service-card ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Contact Page ---------- */
.contact-section {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form-card,
.appointment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}

.contact-form-card h3,
.appointment-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-form-card>p,
.appointment-card>p {
  color: var(--gray-500);
  margin-bottom: 28px;
  font-size: 0.9rem;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.9rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--dark);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---------- Calendar ---------- */
.calendar {
  margin-bottom: 24px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.calendar-header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.calendar-nav {
  display: flex;
  gap: 8px;
}

.calendar-nav button {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: var(--transition);
  font-size: 0.9rem;
}

.calendar-nav button:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-grid .day-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calendar-grid .day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-700);
  border: none;
  background: none;
}

.calendar-grid .day:hover:not(.disabled):not(.empty) {
  background: var(--gray-100);
}

.calendar-grid .day.selected {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.calendar-grid .day.today {
  border: 2px solid var(--accent);
  font-weight: 700;
}

.calendar-grid .day.disabled {
  color: var(--gray-300);
  cursor: not-allowed;
}

.calendar-grid .day.empty {
  cursor: default;
}

/* ---------- Time Slots ---------- */
.time-slots {
  margin-bottom: 24px;
}

.time-slots h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.time-slot {
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.time-slot:hover:not(.booked) {
  border-color: var(--primary);
  color: var(--primary);
}

.time-slot.selected {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.time-slot.booked {
  background: var(--gray-50);
  border-color: var(--gray-200);
  color: var(--gray-400);
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ---------- Confirmation Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal .modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.modal h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.modal p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ---------- Admin Page ---------- */
.admin-section {
  background: var(--off-white);
  min-height: 80vh;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.admin-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
}

.admin-filters {
  display: flex;
  gap: 12px;
  align-items: center;
}

.admin-filters input {
  padding: 10px 16px;
  font-family: var(--font);
  font-size: 0.875rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: var(--transition);
}

.admin-filters input:focus {
  border-color: var(--accent);
}

.admin-table-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table thead th {
  padding: 16px 20px;
  text-align: left;
  background: var(--gray-50);
  font-weight: 600;
  color: var(--gray-600);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--gray-100);
}

.admin-table tbody td {
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.admin-table tbody tr:hover {
  background: var(--gray-50);
}

.admin-table tbody tr:last-child td {
  border-bottom: none;
}

.admin-table .badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.admin-table .badge.confirmed {
  background: #d1fae5;
  color: #065f46;
}

.btn-delete {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--danger);
  background: transparent;
  color: var(--danger);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-delete:hover {
  background: var(--danger);
  color: var(--white);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-400);
}

.empty-state .icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.empty-state p {
  font-size: 1rem;
}

/* ---------- Appointment Card Redesign ---------- */
.appointment-card {
  position: relative;
  overflow: hidden;
}

.appointment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary-light));
  z-index: 2;
}

.appointment-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}

.appointment-header-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(56, 189, 248, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.appointment-card-header h3 {
  margin-bottom: 4px;
}

.appointment-card-header p {
  margin-bottom: 0;
}

/* Step Indicator */
.appointment-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  padding: 20px 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
}

.appointment-steps .step {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: var(--transition);
}

.appointment-steps .step.active {
  opacity: 1;
}

.appointment-steps .step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-300);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: var(--transition);
}

.appointment-steps .step.active .step-number {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.3);
}

.appointment-steps .step span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
}

.appointment-steps .step.active span {
  color: var(--dark);
}

.appointment-steps .step-line {
  width: 40px;
  height: 2px;
  background: var(--gray-200);
  margin: 0 8px;
  flex-shrink: 0;
}

.appointment-confirm-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
  border: none !important;
  font-size: 1.05rem !important;
  padding: 18px 32px !important;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(26, 58, 107, 0.25);
}

.appointment-confirm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 58, 107, 0.35) !important;
}

.appointment-info-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--gray-400);
  text-align: center;
}

/* Enhanced Calendar */
.calendar-grid .day.selected {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(26, 58, 107, 0.25);
}

.calendar-grid .day:hover:not(.disabled):not(.empty):not(.selected) {
  background: rgba(14, 165, 233, 0.08);
  color: var(--primary);
}

/* Enhanced Time Slots */
.time-slot {
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  padding: 12px 8px !important;
}

.time-slot.selected {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  border-color: transparent !important;
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.25);
}

/* ---------- Success Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 24px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s ease;
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1;
}

.modal h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.modal p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.modal-details {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
  text-align: left;
}

.modal-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.modal-detail-row+.modal-detail-row {
  border-top: 1px solid var(--gray-100);
}

.modal-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

.modal-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.modal-status-note {
  font-size: 0.82rem !important;
  color: var(--gray-400) !important;
  font-style: italic;
  margin-bottom: 24px !important;
}

.modal .btn {
  min-width: 160px;
  padding: 14px 32px;
}

@media (max-width: 480px) {
  .modal {
    padding: 32px 24px;
  }

  .modal h3 {
    font-size: 1.25rem;
  }

  .modal-details {
    padding: 16px;
  }
}

/* ---------- Form Validation Styles ---------- */
.field-error {
  display: none;
  font-size: 0.78rem;
  color: #dc2626;
  margin-top: 6px;
  padding-left: 2px;
  font-weight: 500;
  animation: slideDown 0.3s ease;
}

.field-error.active {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.input-error,
input.input-error,
textarea.input-error,
select.input-error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

.input-valid,
input.input-valid {
  border-color: #10b981 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

/* ---------- Enhanced Micro-interactions ---------- */

/* Card hover lift */
.service-card,
.about-feature,
.contact-info-card,
.appointment-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.about-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Button press effect */
.btn:active {
  transform: translateY(1px) scale(0.98);
}

/* Smooth link underline animation */
.footer-col a {
  position: relative;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col a:hover {
  padding-left: 4px;
}

/* Image hover zoom */
.image-wrapper img,
.slide-image-wrapper img {
  transition: transform 0.6s ease;
}

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

/* Navbar smooth transition */
.navbar {
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Staggered reveal for cards in grid */
.reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.reveal:nth-child(4) {
  transition-delay: 0.3s;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .featured-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .slide-image-wrapper {
    min-height: 320px;
  }

  .slide-content {
    padding: 40px 36px;
  }

  .slide-content h3 {
    font-size: 1.6rem;
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 4px;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }

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

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-btn {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    cursor: pointer;
  }

  .nav-dropdown-content {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    min-width: 100%;
    border-radius: 0;
    display: none;
    /* Hidden by default on mobile */
  }

  .nav-dropdown.active .nav-dropdown-content {
    display: flex;
    /* Show when active */
  }

  .nav-dropdown-content a {
    padding: 10px 16px 10px 32px;
    color: rgba(255, 255, 255, 0.7) !important;
  }

  .nav-dropdown-content a:hover {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    padding-left: 36px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-stat .number {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .slide-content {
    padding: 32px 24px;
  }

  .slide-content h3 {
    font-size: 1.4rem;
  }

  .slide-content p {
    font-size: 0.95rem;
  }

  .slide-image-wrapper {
    min-height: 260px;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .time-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .sub-services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .admin-table-wrapper {
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .time-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal {
    padding: 32px;
  }

  .coming-soon-badge {
    padding: 8px 18px;
    gap: 8px;
  }

  .coming-soon-text {
    font-size: 0.75rem;
  }

  .appointment-steps {
    flex-wrap: wrap;
    gap: 8px;
  }

  .appointment-steps .step-line {
    display: none;
  }

  .appointment-steps .step span {
    font-size: 0.7rem;
  }

  .appointment-card-header {
    flex-direction: column;
    gap: 12px;
  }
}

/* ---------- Legal / Privacy Content ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
}

.legal-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-block h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.legal-block p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-block ul {
  list-style: disc;
  padding-left: 24px;
  margin-top: 8px;
  margin-bottom: 12px;
}

.legal-block ul li {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-block a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-block a:hover {
  color: var(--accent-dark);
}

/* ---------- Cookie Consent Popup ---------- */
.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cookie-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.cookie-popup {
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  transform: scale(0.85) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-overlay.visible .cookie-popup {
  transform: scale(1) translateY(0);
}

.cookie-popup-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1;
}

.cookie-popup-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.cookie-popup-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.cookie-popup-text a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.cookie-popup-text a:hover {
  color: var(--accent);
}

.cookie-popup-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.cookie-popup-actions .btn {
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  flex: 1;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  border: none;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.3);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(14, 165, 233, 0.4);
}

.cookie-btn-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

@media (max-width: 480px) {
  .cookie-popup {
    padding: 32px 24px;
  }

  .cookie-popup-title {
    font-size: 1.1rem;
  }

  .cookie-popup-actions {
    flex-direction: column;
  }

  .cookie-popup-actions .btn {
    width: 100%;
  }
}

/* ---------- KVKK Checkbox in Forms ---------- */
.kvkk-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.kvkk-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.kvkk-consent label {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  cursor: pointer;
}

.kvkk-consent label a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.kvkk-consent label a:hover {
  color: var(--accent-dark);
}

/* ---------- Cookie Consent ---------- */
.cookie-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 24px;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.cookie-overlay.visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-overlay.visible .cookie-popup {
  pointer-events: auto;
}

.cookie-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 32px;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--gray-200);
}

.cookie-popup-icon {
  font-size: 2rem;
  line-height: 1;
}

.cookie-popup-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

.cookie-popup-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.cookie-popup-text a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-popup-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: flex-end;
}

.cookie-btn-accept {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 10px 24px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn-accept:hover {
  background: var(--primary-dark);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--gray-600);
  border-radius: var(--radius);
  padding: 10px 24px;
  font-weight: 600;
  border: 1px solid var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn-reject:hover {
  background: var(--gray-100);
  color: var(--dark);
}

@media (max-width: 768px) {
  .cookie-overlay {
    padding: 16px;
  }

  .cookie-popup-actions {
    flex-direction: column;
  }

  .cookie-btn-accept,
  .cookie-btn-reject {
    width: 100%;
  }
}

/* ---------- FAQ Accordion ---------- */
.faq-section {
  padding-top: 60px;
  padding-bottom: 100px;
}

.faq-category {
  margin-bottom: 56px;
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-category h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: -0.02em;
}

.faq-category h3 .faq-cat-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

.faq-details {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  overflow: hidden;
}

.faq-details:hover {
  border-color: var(--accent-light);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.12);
}

.faq-details summary {
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  list-style: none;
  user-select: none;
  transition: var(--transition);
  gap: 16px;
}

.faq-details summary:hover {
  color: var(--primary);
}

.faq-details summary::-webkit-details-marker {
  display: none;
}

.faq-details summary::marker {
  display: none;
  content: '';
}

.faq-details summary::after {
  content: '';
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-details[open] summary::after {
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.35);
}

.faq-details[open] summary {
  color: var(--primary);
  border-bottom: 1px solid var(--gray-100);
}

.faq-details[open] {
  border-color: var(--accent-light);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.1);
}

.faq-answer {
  padding: 24px 28px;
  background: var(--gray-50);
}

.faq-answer p {
  color: var(--gray-600);
  margin-bottom: 0;
  line-height: 1.75;
  font-size: 1rem;
}

/* ---------- Process Timeline ---------- */
.process-section {
  padding-top: 60px;
  padding-bottom: 100px;
  background: var(--white);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  width: 2px;
  background: var(--gray-200);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  padding-left: 120px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-number {
  position: absolute;
  left: 26px;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  box-shadow: 0 0 0 8px var(--white);
  z-index: 2;
}

.timeline-item:hover .timeline-number {
  background: var(--accent);
  color: var(--white);
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
}

.timeline-content h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.timeline-content p {
  color: var(--gray-600);
  margin-bottom: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    padding-left: 80px;
  }

  .timeline-number {
    left: 6px;
    width: 48px;
    height: 48px;
  }
}