/* ========== HOME PAGE — HERO SLIDER ========== */
.hero {
  position: relative; min-height: 100vh;
  background: var(--color-dark); overflow: hidden;
}
.hero-track {
  display: flex; min-height: 100vh;
  transition: transform 0.9s cubic-bezier(.77,0,.18,1);
  will-change: transform;
}
.hero-slide {
  flex: 0 0 100%; min-height: 100vh;
  position: relative; display: flex; align-items: center;
  padding: var(--space-xl); padding-top: 110px;
  overflow: hidden;
}
.hero-slide-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slide-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 20%; opacity: 0.22;
  transform: scale(1.04); transition: transform 8s ease-out;
}
.hero-slide.active .hero-slide-bg img { transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(10,16,21,0.97) 0%, rgba(26,31,37,0.86) 50%, rgba(14,124,123,0.28) 100%); }
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: linear-gradient(rgba(14,124,123,0.05) 1px, transparent 1px), linear-gradient(90deg,rgba(14,124,123,0.05) 1px, transparent 1px);
  background-size: 60px 60px; animation: gridShift 30s linear infinite;
}
.hero-glow-orb { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 2; pointer-events: none; }
.hero-glow-orb--1 { width: 500px; height: 500px; background: rgba(14,124,123,0.2); top: 10%; right: 15%; animation: orbPulse 8s ease-in-out infinite alternate; }
.hero-glow-orb--2 { width: 350px; height: 350px; background: rgba(158,146,133,0.12); bottom: 10%; left: 10%; animation: orbPulse 10s ease-in-out infinite alternate-reverse; }
/* @keyframes orbPulse is defined in main.css */

.hero-content {
  position: relative; z-index: 5; max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center;
}
.hero-text { color: var(--color-white); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,124,123,0.15); border: 1px solid rgba(14,124,123,0.3);
  padding: 6px 16px; border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--color-primary-light); margin-bottom: var(--space-lg);
  backdrop-filter: blur(10px); animation: badgePulse 3s ease-in-out infinite;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--color-primary); border-radius: 50%; animation: dotBlink 2s ease-in-out infinite; }
@keyframes badgePulse { 0%,100% { box-shadow: 0 0 0 0 rgba(14,124,123,0.2); } 50% { box-shadow: 0 0 0 8px rgba(14,124,123,0); } }
/* @keyframes dotBlink is defined in main.css */
.hero-deco-line { width: 56px; height: 2px; background: var(--gradient-primary); margin-bottom: var(--space-lg); }
.hero-title { font-family: var(--font-display); font-size: clamp(2.8rem, 5.5vw, 5.2rem); line-height: 0.98; margin-bottom: var(--space-lg); letter-spacing: -2px; }
.hero-title .accent { display: block; background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-family: var(--font-body); font-size: 1.05rem; color: rgba(255,255,255,0.62); line-height: 1.8; margin-bottom: var(--space-xl); max-width: 460px; }
.hero-buttons { display: flex; gap: var(--space-md); flex-wrap: wrap; }

/* Slide text animation */
.hero-slide .hero-text > * { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1); }
.hero-slide.active .hero-text > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.15s; }
.hero-slide.active .hero-text > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.28s; }
.hero-slide.active .hero-text > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.40s; }
.hero-slide.active .hero-text > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.52s; }
.hero-slide.active .hero-text > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.62s; }

/* Image side */
.hero-image-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-image-frame { position: relative; width: 400px; height: 500px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-glow), var(--shadow-lg); animation: heroImgFloat 6s ease-in-out infinite; }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-image-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,124,123,0.35) 0%, transparent 55%); pointer-events: none; }
@keyframes heroImgFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-image-ring { display: none; }

/* Slider controls */
.hero-controls {
  position: absolute; bottom: 64px; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; align-items: center; gap: var(--space-lg);
}
.hero-prev, .hero-next {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  color: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; backdrop-filter: blur(8px);
}
.hero-prev:hover, .hero-next:hover { background: var(--color-primary); border-color: var(--color-primary); }
.hero-prev svg, .hero-next svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.hero-dots { display: flex; gap: 8px; align-items: center; }
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none; cursor: pointer;
  transition: all 0.4s cubic-bezier(.22,1,.36,1); padding: 0;
}
.hero-dot.active { width: 28px; border-radius: 4px; background: var(--color-primary); }

/* Scroll indicator */
.hero-scroll { position: absolute; bottom: 112px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(14,124,123,0.6), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ========== SECTION A – ABOUT ========== */
.about-section { position: relative; padding: var(--space-3xl) 0; background: var(--color-bg); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center; }
.about-desc { font-size: 1.05rem; color: var(--color-text); line-height: 1.8; margin-bottom: var(--space-xl); }
.about-bullets { display: flex; flex-direction: column; gap: var(--space-md); margin-bottom: var(--space-xl); }
.about-bullet { display: flex; align-items: flex-start; gap: var(--space-md); }
.about-bullet-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(14,124,123,0.08); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.about-bullet-icon svg { width: 22px; height: 22px; stroke: var(--color-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.about-bullet-text strong { display: block; font-weight: 700; font-size: 0.95rem; color: var(--color-title); margin-bottom: 2px; }
.about-bullet-text span { font-size: 0.875rem; color: var(--color-meta); }
.about-image-wrap { position: relative; }
.about-image-frame { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.about-image-frame img { width: 100%; height: 560px; object-fit: cover; object-position: center 35%; }
.about-image-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(14,124,123,0.35) 100%); pointer-events: none; }
.about-float-badge { position: absolute; bottom: 28px; left: 28px; z-index: 2; background: rgba(255,255,255,0.1); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-md); padding: 14px 22px; color: white; }
.about-float-badge .badge-num { font-family: var(--font-display); font-size: 2rem; color: var(--color-accent); line-height: 1; }
.about-float-badge .badge-text { font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 3px; }
.about-deco-ring { position: absolute; top: -20px; right: -20px; width: 180px; height: 180px; border: 2px solid rgba(14,124,123,0.15); border-radius: 50%; animation: ringRotate 30s linear infinite; z-index: 0; }
.about-deco-ring::after { content: ''; position: absolute; inset: 20px; border: 1px dashed rgba(200,169,110,0.2); border-radius: 50%; }

/* ========== SECTION C – SERVICES ========== */
.services-section { position: relative; padding: var(--space-3xl) 0; background: var(--color-bg-alt); overflow: hidden; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.service-card { background: var(--color-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.5s cubic-bezier(.22,1,.36,1); position: relative; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-primary); transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(.22,1,.36,1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-img { overflow: hidden; position: relative; background: var(--color-bg-alt); }
.service-card-img img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.8s ease; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body { padding: var(--space-lg); }
.service-card-body h3 { font-family: var(--font-display); font-size: 1.45rem; color: var(--color-title); margin: var(--space-sm) 0; line-height: 1.2; }
.service-card-body p { font-size: 0.9rem; color: var(--color-text); line-height: 1.65; margin-bottom: var(--space-md); }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--color-primary); transition: gap 0.3s ease; }
.service-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; transition: transform 0.3s ease; }
.service-card:hover .service-link { gap: 10px; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ========== SECTION: LOCATIONS ========== */
.locations-section {
  position: relative; min-height: 760px; overflow: hidden;
  background: var(--color-dark); display: flex; flex-direction: column;
}
.locations-map-bg { position: absolute; inset: 0; z-index: 0; }
.locations-map-bg iframe {
  width: 100%; height: 100%; border: 0; display: block;
  filter: saturate(0.35) brightness(0.45) contrast(1.1); transform: scale(1.03);
}
.locations-map-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,16,21,0.82) 0%, rgba(10,16,21,0.55) 40%, rgba(10,16,21,0.78) 100%);
}
.locations-grid-lines {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: linear-gradient(rgba(14,124,123,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(14,124,123,0.06) 1px, transparent 1px);
  background-size: 60px 60px; animation: gridShift 30s linear infinite;
}
.locations-orb { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 2; pointer-events: none; }
.locations-orb--1 { width: 480px; height: 480px; background: rgba(14,124,123,0.22); top: -80px; right: -60px; animation: orbPulse 9s ease-in-out infinite alternate; }
.locations-orb--2 { width: 320px; height: 320px; background: rgba(200,169,110,0.12); bottom: -60px; left: -40px; animation: orbPulse 12s ease-in-out infinite alternate-reverse; }
.locations-inner {
  position: relative; z-index: 5; max-width: 1280px; margin: 0 auto; width: 100%;
  padding: var(--space-3xl) var(--space-xl) var(--space-2xl); box-sizing: border-box;
}
.locations-header { text-align: center; margin-bottom: var(--space-2xl); }
.locations-label { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--color-accent); margin-bottom: var(--space-sm); }
.locations-title { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.6rem); color: var(--color-white); line-height: 1.1; margin-bottom: var(--space-md); }
.locations-title .loc-title-accent { display: block; background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.locations-subtitle { font-size: 1rem; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 520px; margin: 0 auto; }
.locations-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); align-items: stretch; }

/* Location glass card */
.loc-card {
  background: rgba(26,31,37,0.72); backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-xl);
  padding: var(--space-xl); position: relative; overflow: hidden;
  display: flex; flex-direction: column; transition: all 0.5s cubic-bezier(.22,1,.36,1); cursor: default;
}
.loc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-primary); transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(.22,1,.36,1); }
.loc-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(14,124,123,0.06) 0%, transparent 60%); opacity: 0; transition: opacity 0.5s ease; pointer-events: none; border-radius: var(--radius-xl); }
.loc-card:hover { transform: translateY(-10px) scale(1.015); border-color: rgba(14,124,123,0.4); box-shadow: 0 24px 60px rgba(0,0,0,0.5), var(--shadow-glow); }
.loc-card:hover::before { transform: scaleX(1); }
.loc-card:hover::after { opacity: 1; }
.loc-card--featured { background: rgba(14,124,123,0.18); border-color: rgba(14,124,123,0.45); box-shadow: 0 0 0 1px rgba(14,124,123,0.25), var(--shadow-glow); }
.loc-card--featured::before { transform: scaleX(1); }
.loc-featured-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--gradient-primary); color: var(--color-white); font-size: 0.62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-full); margin-bottom: var(--space-lg); box-shadow: 0 4px 16px rgba(14,124,123,0.4); animation: badgePulse 3s ease-in-out infinite; }
.loc-featured-badge svg { width: 10px; height: 10px; stroke: currentColor; fill: currentColor; }
.loc-pin-wrap { position: relative; display: inline-flex; margin-bottom: var(--space-lg); }
.loc-pin-pulse { display: none; }
.loc-pin { width: 52px; height: 52px; flex-shrink: 0; background: var(--gradient-warm); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(200,169,110,0.35); position: relative; z-index: 1; }
.loc-pin svg { width: 22px; height: 22px; stroke: var(--color-white); fill: none; stroke-width: 2; stroke-linecap: round; }
.loc-pin--accent { background: var(--gradient-warm); box-shadow: 0 8px 24px rgba(200,169,110,0.35); }
.loc-card-name { font-family: var(--font-display); font-size: 1.45rem; color: var(--color-white); line-height: 1.2; margin-bottom: 4px; }
.loc-card-district { font-size: 0.72rem; color: var(--color-primary-light); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: var(--space-lg); }
.loc-divider { width: 32px; height: 2px; background: var(--gradient-primary); border-radius: 2px; margin-bottom: var(--space-lg); }
.loc-card-address { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: var(--space-lg); display: flex; gap: 10px; align-items: flex-start; }
.loc-card-address svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 4px; stroke: var(--color-primary-light); fill: none; stroke-width: 2; }
.loc-plans { flex: 1; margin-bottom: var(--space-lg); }
.loc-plans-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: var(--space-sm); }
.loc-plans-grid { display: flex; flex-wrap: wrap; gap: 5px; }
.loc-plan-tag { font-size: 0.68rem; font-weight: 600; background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.65); padding: 3px 9px; border-radius: var(--radius-full); border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s ease; }
.loc-plan-tag:hover { background: rgba(14,124,123,0.25); border-color: rgba(14,124,123,0.4); color: var(--color-primary-light); }
.loc-card-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--color-primary-light); margin-top: auto; transition: gap 0.3s ease, color 0.3s ease; }
.loc-card-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; transition: transform 0.3s ease; }
.loc-card:hover .loc-card-link { gap: 14px; color: var(--color-accent); }
.loc-card:hover .loc-card-link svg { transform: translateX(5px); }

/* Location stats bar */
.locations-stats { display: flex; align-items: center; justify-content: center; gap: var(--space-2xl); margin-top: var(--space-2xl); padding-top: var(--space-xl); border-top: 1px solid rgba(255,255,255,0.07); }
.loc-stat { text-align: center; }
.loc-stat-num { font-family: var(--font-display); font-size: 2rem; color: var(--color-primary-light); line-height: 1; margin-bottom: 4px; }
.loc-stat-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.loc-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* ========== SECTION D – NUMBERED STEPS ========== */
.steps-section { position: relative; padding: var(--space-3xl) 0; background: var(--color-dark); overflow: hidden; }
.steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: center; }
.steps-intro-text { font-size: 1rem; color: rgba(255,255,255,0.55); line-height: 1.8; max-width: 460px; margin-bottom: var(--space-2xl); }
.steps-list { display: flex; flex-direction: column; }
.step-item { display: flex; gap: var(--space-lg); align-items: flex-start; padding: var(--space-xl) 0; border-bottom: 1px solid rgba(255,255,255,0.06); opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.step-item.visible { opacity: 1; transform: translateX(0); }
.step-item:last-child { border-bottom: none; padding-bottom: 0; }
.step-num { font-family: var(--font-display); font-size: 3.5rem; line-height: 1; color: rgba(14,124,123,0.2); flex-shrink: 0; min-width: 80px; transition: color 0.4s ease; }
.step-item:hover .step-num { color: var(--color-primary-light); }
.step-title { font-family: var(--font-display); font-size: 1.4rem; color: white; margin-bottom: 8px; line-height: 1.3; }
.step-desc { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.75; }
.steps-image-col { position: relative; }
.steps-image-frame { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-glow), var(--shadow-lg); }
.steps-image-frame img { width: 100%; height: 500px; object-fit: cover; object-position: center; }

/* ========== SECTION E – AUTHORITY ========== */
.authority-section { position: relative; padding: var(--space-3xl) 0; background: var(--color-bg); overflow: hidden; }
.authority-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center; }
.authority-desc { font-size: 1.05rem; color: var(--color-text); line-height: 1.8; margin-bottom: var(--space-lg); }
.authority-bullets { display: flex; flex-direction: column; gap: var(--space-md); margin-bottom: var(--space-xl); }
.authority-bullet { display: flex; align-items: flex-start; gap: var(--space-md); padding: var(--space-md); border-radius: var(--radius-md); border: 1px solid var(--color-border); transition: all 0.4s ease; }
.authority-bullet:hover { border-color: var(--color-primary); background: rgba(14,124,123,0.03); transform: translateX(4px); }
.authority-bullet-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(14,124,123,0.08); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.authority-bullet-icon svg { width: 22px; height: 22px; stroke: var(--color-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.authority-bullet-text strong { display: block; font-weight: 700; font-size: 0.95rem; color: var(--color-title); margin-bottom: 2px; }
.authority-bullet-text span { font-size: 0.875rem; color: var(--color-meta); }
.authority-seals { display: flex; gap: var(--space-md); flex-wrap: wrap; margin-top: var(--space-xl); align-items: stretch; }
.authority-seal { display: flex; align-items: center; gap: 10px; background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 12px 18px; transition: all 0.3s ease; }
.authority-seal:hover { border-color: var(--color-primary); box-shadow: var(--shadow-sm); }
.authority-seal .seal-num { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-primary); line-height: 1; }
.authority-seal .seal-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--color-meta); line-height: 1.4; }
.authority-image-frame { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.authority-image-frame img { width: 100%; height: 540px; object-fit: cover; object-position: center 55%; }

/* ========== SERVICES BLOCK (sblock) ========== */
.sblock-section { position: relative; padding: var(--space-3xl) 0; background: var(--color-bg-alt); overflow: hidden; }
.sblock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center; }
.sblock-desc { font-size: 1.05rem; color: var(--color-text); line-height: 1.8; margin-bottom: var(--space-xl); }
.sblock-image-frame { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.sblock-image-frame img { width: 100%; height: 520px; object-fit: cover; object-position: center; }

/* ========== CONTACT INSIDE LOCATIONS ========== */
.loc-contact-wrap {
  position: relative; z-index: 5; max-width: 1280px; margin: 0 auto; width: 100%;
  padding: var(--space-2xl) var(--space-xl);
  display: grid; grid-template-columns: 1fr 420px; gap: var(--space-2xl); align-items: start;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.loc-contact-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--color-accent); margin-bottom: var(--space-sm); display: block; }
.loc-contact-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--color-white); line-height: 1.1; margin-bottom: var(--space-md); }
.loc-contact-desc { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: var(--space-xl); max-width: 440px; }
.loc-contact-info { display: flex; flex-direction: column; gap: var(--space-md); margin-bottom: var(--space-xl); }
.loc-contact-item { display: flex; align-items: center; gap: var(--space-md); }
.loc-contact-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(14,124,123,0.15); border: 1px solid rgba(14,124,123,0.25); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.loc-contact-icon svg { width: 18px; height: 18px; stroke: var(--color-primary-light); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.loc-contact-item-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 2px; }
.loc-contact-item-value { font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.8); }

/* ========== HOME RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-cards { grid-template-columns: repeat(2, 1fr); }
  .loc-contact-wrap { grid-template-columns: 1fr; }
  .hero-image-frame { width: 320px; height: 400px; }
  .steps-grid { gap: var(--space-2xl); }
}

@media (max-width: 768px) {
  /* — Hero — */
  .hero-slide {
    padding: var(--space-md); padding-top: 90px; padding-bottom: 140px;
    min-height: 100svh;
  }
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: var(--space-lg); }
  .hero-image-wrap { display: none; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-deco-line { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.2rem); letter-spacing: -1px; }
  .hero-controls { bottom: 56px; gap: var(--space-md); }
  .hero-scroll { display: none; }
  .hero-badge { font-size: 0.65rem; padding: 5px 12px; }
  .hero-glow-orb--1 { width: 280px; height: 280px; right: -40px; }
  .hero-glow-orb--2 { width: 200px; height: 200px; left: -30px; }

  /* — Shared section spacing — */
  .about-section, .services-section, .steps-section, .authority-section,
  .sblock-section, .testimonials-section { padding: var(--space-2xl) 0; }

  /* — About — */
  .about-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .about-image-frame img { height: 380px; }
  .about-deco-ring { display: none; }
  .about-float-badge { bottom: 16px; left: 16px; padding: 10px 16px; }
  .about-float-badge .badge-num { font-size: 1.5rem; }

  /* — Services — */
  .services-grid { grid-template-columns: 1fr; }

  /* — Steps — */
  .steps-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .steps-image-col { display: none; }
  .step-num { font-size: 2.5rem; min-width: 56px; }
  .step-item { padding: var(--space-lg) 0; gap: var(--space-md); }
  .step-title { font-size: 1.2rem; }
  .steps-intro-text { max-width: 100%; }

  /* — Authority — */
  .authority-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .authority-image-frame img { height: 360px; }
  .authority-bullet { padding: var(--space-sm) var(--space-md); }

  /* — Locations — */
  .locations-section { min-height: auto; }
  .locations-cards { grid-template-columns: 1fr; }
  .locations-inner { padding: var(--space-2xl) var(--space-md) var(--space-xl); }
  .locations-stats { flex-direction: column; gap: var(--space-lg); }
  .loc-stat-divider { display: none; }
  .locations-map-bg iframe { filter: saturate(0.2) brightness(0.35) contrast(1.1); }
  .loc-contact-wrap { padding: 0 var(--space-md) var(--space-xl); grid-template-columns: 1fr; }
  .locations-orb--1 { width: 200px; height: 200px; }
  .locations-orb--2 { width: 160px; height: 160px; }

  /* — SBlock — */
  .sblock-grid { grid-template-columns: 1fr; }
  .sblock-image-frame img { height: 320px; }
}

@media (max-width: 480px) {
  /* — Hero — */
  .hero-slide { padding-top: 80px; padding-bottom: 120px; }
  .hero-buttons { flex-direction: column; align-items: center; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-title { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .hero-controls { bottom: 28px; }
  .hero-prev, .hero-next { width: 36px; height: 36px; }
  .hero-prev svg, .hero-next svg { width: 14px; height: 14px; }

  /* — About — */
  .about-image-frame img { height: 260px; }

  /* — Services — */
  .service-card-img img { height: 160px; }
  .service-card-body h3 { font-size: 1.2rem; }

  /* — Steps — */
  .step-num { font-size: 2rem; min-width: 44px; }
  .step-title { font-size: 1.1rem; }
  .step-desc { font-size: 0.82rem; }

  /* — Authority — */
  .authority-seals { flex-direction: column; gap: var(--space-sm); }
  .authority-image-frame img { height: 260px; }

  /* — Locations — */
  .loc-card { padding: var(--space-lg); }
  .loc-card-name { font-size: 1.2rem; }
  .locations-header { margin-bottom: var(--space-xl); }

  /* — SBlock — */
  .sblock-image-frame img { height: 240px; }
}
