/* =============================================
   HOME PAGE — SPECIFIC STYLES
   ============================================= */

/* Hero inner layout */
.hero-inner {
  max-width: 720px;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1.5rem;
}

.hero-label-line {
  width: 32px;
  height: 1.5px;
  background: var(--teal-light);
  display: inline-block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero-title em {
  font-style: italic;
  color: var(--teal-light);
}

.hero-quals {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats .stat-badge {
  flex: 1;
  min-width: 130px;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(26,156,138,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%       { transform: scaleY(0.6); opacity: 0.2; }
}

/* ===== Expertise Strip ===== */
.expertise-strip {
  background: var(--teal);
  padding: 1.1rem 0;
  overflow: hidden;
}

.strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0.4rem 2rem;
}

.strip-icon {
  color: rgba(255,255,255,0.65);
  font-size: 0.6rem;
}

.strip-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.3);
}

/* ===== About Teaser ===== */
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}

.credentials-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--teal);
}

.cred-icon {
  font-size: 1.3rem;
  line-height: 1;
  margin-top: 0.1rem;
}

.credentials-list strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.credentials-list span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Profile card */
.profile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.profile-avatar {
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  padding: 3rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
}

.avatar-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(26,156,138,0.2);
  border: 3px solid rgba(26,156,138,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--teal-light);
}

.profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(26,156,138,0.15);
  border: 1px solid rgba(26,156,138,0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--teal-light);
  letter-spacing: 0.05em;
}

.profile-info {
  padding: 1.75rem 2rem 2rem;
}

.profile-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.profile-quals {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.profile-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.profile-availability {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.avail-dot {
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
}

/* ===== Services ===== */
.section-header {
  max-width: 560px;
  margin-bottom: 3.5rem;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:nth-child(1)::after { background: linear-gradient(90deg, #2563EB, #60A5FA); }
.service-card:nth-child(3)::after { background: linear-gradient(90deg, #7C3AED, #A78BFA); }

.service-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 1.25rem;
  opacity: 0.7;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--teal-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.service-icon-wrap.icon-blue {
  background: rgba(37, 99, 235, 0.1);
  color: #2563EB;
}

.service-icon-wrap.icon-purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7C3AED;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-procedures {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-procedures li {
  font-size: 0.8rem;
  color: var(--text-light);
  padding-left: 1rem;
  position: relative;
}

.service-procedures li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.65rem;
}

/* ===== Why Section ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.why-feature:hover {
  border-color: var(--teal);
  background: var(--teal-pale);
  transform: translateX(6px);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: var(--radius-sm);
}

.why-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.why-feature p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== Gallery Carousel ===== */
.gallery-section .section-header {
  margin-bottom: 2.75rem;
}

.carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy);
}

.carousel-track-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #05101f;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(28px) brightness(0.5) saturate(1.1);
  transform: scale(1.15);
}

.carousel-slide img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.carousel-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2.5rem 2.5rem 2rem;
  background: linear-gradient(to top, rgba(11,31,58,0.88) 0%, rgba(11,31,58,0.35) 55%, transparent 100%);
  color: var(--white);
}

.carousel-slide-caption h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.carousel-slide-caption p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(11,31,58,0.55);
  backdrop-filter: blur(4px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all var(--transition);
}

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

.carousel-btn-prev { left: 1.25rem; }
.carousel-btn-next { right: 1.25rem; }

.carousel-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.carousel-dot.active {
  background: var(--teal-light);
  border-color: var(--teal-light);
  width: 22px;
  border-radius: 4px;
}

.carousel-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
}

@media (max-width: 640px) {
  .carousel-slide-caption { padding: 1.5rem 1.25rem 1.25rem; }
  .carousel-slide-caption h3 { font-size: 1.2rem; }
  .carousel-btn { width: 36px; height: 36px; }
}

/* ===== Hours Banner ===== */
.hours-banner {
  background: var(--navy);
  padding: 3.5rem 0;
}

.hours-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hours-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 0.5rem;
}

.hours-time {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.hours-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .about-teaser-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .hours-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .strip-inner {
    gap: 0;
  }

  .strip-divider { display: none; }

  .strip-item {
    width: 50%;
    justify-content: center;
    padding: 0.6rem 1rem;
  }

  .hero-scroll-indicator { display: none; }

  .hero-stats .stat-badge { min-width: 100px; }
}
