/* ============================================
   Lifeline Pet Clinic — Modern Interactive Design
   ============================================ */

:root {
  --red: #D42027;
  --red-dark: #B71C1C;
  --red-light: #FFEBEE;
  --red-glow: rgba(212, 32, 39, 0.4);
  --navy: #0F1B3D;
  --navy-mid: #1B2E5C;
  --navy-light: #2A4175;
  --white: #FFFAF6;
  --white-pure: #FFFFFF;
  --cream: #FFF5ED;
  --cream-dark: #FCEEE3;
  --gray-50: #FEF7F1;
  --gray-100: #F8EDE4;
  --gray-200: #E8DDD5;
  --gray-300: #D4C8BE;
  --gray-400: #9A8E84;
  --gray-500: #6B5F55;
  --gray-600: #4A3F37;
  --gray-700: #362D26;
  --gray-800: #231C17;
  --gray-900: #161110;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 10px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.08), 0 20px 48px rgba(0,0,0,0.06);
  --shadow-xl: 0 25px 50px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 40px rgba(212, 32, 39, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #FF6B6B, var(--red));
  z-index: 9999;
  transition: width 0.1s linear;
  width: 0%;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--navy); line-height: 1.2; }

.text-gradient {
  background: linear-gradient(135deg, var(--red) 0%, #FF6B6B 50%, var(--red-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--red);
  margin-bottom: 16px;
  position: relative;
  padding-left: 48px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 36px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 16px;
  font-weight: 700;
}

.section-title em {
  font-style: italic;
  color: var(--red);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 64px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 32, 39, 0.35);
  color: var(--white);
}

.btn-glow {
  box-shadow: 0 0 20px rgba(212, 32, 39, 0.2);
}

.btn-glow:hover {
  box-shadow: 0 0 40px rgba(212, 32, 39, 0.4), 0 12px 35px rgba(212, 32, 39, 0.3);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  color: var(--white);
}

.btn-lg { padding: 20px 40px; font-size: 1.05rem; }

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}

.navbar.scrolled {
  background: rgba(255, 250, 246, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 48px; transition: all 0.4s var(--ease); }
.navbar.scrolled .nav-logo img { height: 38px; }

.nav-links { display: flex; gap: 4px; }

.nav-link {
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 50px;
  transition: all 0.3s var(--ease);
  position: relative;
}

.navbar.scrolled .nav-link { color: var(--gray-600); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: all 0.3s var(--ease);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after { width: 20px; }

.nav-link:hover, .nav-link.active { color: var(--red); }

.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.navbar:not(.scrolled) .nav-link::after { background: var(--white); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 15px rgba(212, 32, 39, 0.25);
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(212, 32, 39, 0.35);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}

.navbar.scrolled .hamburger span { background: var(--gray-700); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* --- Floating Call Button --- */
.floating-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(212, 32, 39, 0.4);
  transition: all 0.3s var(--ease);
}

.floating-call:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(212, 32, 39, 0.5);
  color: var(--white);
}

.floating-call-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--red);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('../images/hero-banner.jpg') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg-image { transform: scale(1.0); }

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 27, 61, 0.92) 0%, rgba(27, 46, 92, 0.75) 40%, rgba(212, 32, 39, 0.2) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(15, 27, 61, 0.6) 0%, transparent 70%);
}

/* Floating shapes in hero */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--white);
}

.shape-1 {
  width: 400px; height: 400px;
  top: -100px; right: -100px;
  animation: float-slow 20s ease-in-out infinite;
}

.shape-2 {
  width: 200px; height: 200px;
  bottom: 15%; left: 5%;
  animation: float-slow 15s ease-in-out infinite reverse;
}

.shape-3 {
  width: 120px; height: 120px;
  top: 30%; right: 15%;
  animation: float-slow 12s ease-in-out infinite 2s;
  background: var(--red);
  opacity: 0.06;
}

.shape-4 {
  width: 60px; height: 60px;
  bottom: 30%; right: 25%;
  animation: float-slow 10s ease-in-out infinite 4s;
}

.shape-5 {
  width: 300px; height: 300px;
  bottom: -80px; left: -80px;
  animation: float-slow 18s ease-in-out infinite 1s;
  background: var(--red);
  opacity: 0.04;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(5deg); }
  66% { transform: translate(-20px, 20px) rotate(-3deg); }
}

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

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

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.hero-title-line em {
  font-style: italic;
  background: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* --- About Section --- */
.about { padding: 120px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper { position: relative; }

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

.about-image-frame img {
  width: 100%;
  max-width: 420px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.about-image-frame:hover img { transform: scale(1.03); }

.about-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--red);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--white-pure);
  border-radius: 60px;
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  z-index: 2;
}

.about-image-badge svg { color: #22C55E; }

.about-content .section-label { text-align: left; }
.about-content .section-title { text-align: left; }

.about-text {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: var(--gray-600);
  line-height: 1.8;
}

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

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.3s var(--ease);
}

.highlight-item:hover {
  background: var(--red-light);
  transform: translateX(4px);
}

.highlight-item svg { color: var(--red); flex-shrink: 0; }

/* --- Why Choose Us --- */
.why-us {
  padding: 100px 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 32, 39, 0.04) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: default;
}

.why-card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--white-pure) 0%, var(--cream) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease);
}

.why-card:hover .why-card-glow {
  border-color: rgba(212, 32, 39, 0.2);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.why-card-content {
  position: relative;
  z-index: 1;
  padding: 40px 32px;
  text-align: center;
}

.why-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--red-light) 0%, #FFF5F5 100%);
  border-radius: 50%;
  color: var(--red);
  transition: all 0.4s var(--ease-spring);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 700;
}

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

/* --- Services Section --- */
.services {
  padding: 120px 0;
  position: relative;
}

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

.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: default;
}

.service-card-inner {
  padding: 36px 24px 32px;
  background: var(--white-pure);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease);
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

.service-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.4s var(--ease);
}

.service-card:hover .service-number {
  color: var(--red-light);
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
  transition: all 0.4s var(--ease-spring);
}

.service-icon-wrap svg { width: 32px; height: 32px; }

.service-card:hover .service-icon-wrap {
  transform: scale(1.15);
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--navy);
}

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

.service-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #FF6B6B);
  transition: width 0.5s var(--ease);
}

.service-card:hover .service-hover-line { width: 100%; }

/* --- Gallery Section --- */
.gallery {
  padding: 120px 0;
  background: var(--gray-900);
  color: var(--white);
}

.gallery .section-label { color: #FF6B6B; }
.gallery .section-label::before { background: #FF6B6B; }
.gallery .section-title { color: var(--white); }
.gallery .section-desc { color: var(--gray-400); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 27, 61, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  color: var(--white);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox-img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform 0.3s var(--ease);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.lightbox-close:hover { background: rgba(255, 255, 255, 0.2); }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
}

/* --- Reviews Section --- */
.reviews {
  padding: 120px 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 32, 39, 0.03) 0%, transparent 70%);
  bottom: -300px;
  left: -200px;
  border-radius: 50%;
}

.reviews-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 12px 28px;
  background: var(--white-pure);
  border-radius: 60px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.3px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: default;
}

.review-card-inner {
  padding: 36px 32px;
  background: var(--white-pure);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease);
  height: 100%;
  position: relative;
}

.review-card:hover .review-card-inner {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.review-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--red);
}

.review-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.review-stars {
  display: flex;
  gap: 1px;
}

/* --- Contact Section --- */
.contact { padding: 120px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
}

.contact-card:hover {
  background: var(--gray-50);
  border-color: var(--gray-200);
  transform: translateX(6px);
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-light);
  border-radius: var(--radius-sm);
  color: var(--red);
  transition: all 0.4s var(--ease);
}

.contact-card:hover .contact-icon {
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
}

.contact-card h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}

.contact-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.contact-card a { color: var(--red); font-weight: 600; }
.contact-card a:hover { color: var(--red-dark); }

.phone-link {
  font-size: 1.1rem !important;
  letter-spacing: 0.5px;
}

.phone-icon { animation: phone-ring 3s ease-in-out infinite; }

@keyframes phone-ring {
  0%, 100% { transform: rotate(0); }
  5% { transform: rotate(15deg); }
  10% { transform: rotate(-10deg); }
  15% { transform: rotate(10deg); }
  20% { transform: rotate(-5deg); }
  25%, 100% { transform: rotate(0); }
}

.hours-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 4px 16px;
  font-size: 0.92rem;
}

.hours-day { font-weight: 600; color: var(--navy); }
.hours-time { color: var(--gray-600); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 500px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.contact-map iframe { width: 100%; height: 100%; min-height: 500px; }

/* --- CTA Banner --- */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  background: var(--white);
}

.cta-shape-1 {
  width: 500px; height: 500px;
  top: -200px; right: -100px;
  animation: float-slow 20s ease-in-out infinite;
}

.cta-shape-2 {
  width: 300px; height: 300px;
  bottom: -100px; left: -50px;
  animation: float-slow 15s ease-in-out infinite reverse;
}

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

.cta-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content h2 em { font-style: italic; color: #FF6B6B; }

.cta-content p {
  font-size: 1.1rem;
  opacity: 0.75;
  margin-bottom: 36px;
}

/* --- Footer --- */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 72px 0 0;
}

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

.footer-logo {
  height: 48px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul li,
.footer-services ul li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.88rem;
  transition: all 0.3s var(--ease);
  position: relative;
}

.footer-links a:hover { color: var(--white); padding-left: 8px; }

.footer-services ul li { font-size: 0.88rem; }

.footer-contact-col p { font-size: 0.88rem; margin-bottom: 8px; }
.footer-contact-col a { color: #FF6B6B; }
.footer-contact-col a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--gray-400);
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* --- Reveal Animations --- */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* Stagger children in grids */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.25s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(7) { transition-delay: 0.35s; }
.services-grid .service-card:nth-child(8) { transition-delay: 0.4s; }

.gallery-grid .gallery-item:nth-child(1) { transition-delay: 0.05s; }
.gallery-grid .gallery-item:nth-child(2) { transition-delay: 0.1s; }
.gallery-grid .gallery-item:nth-child(3) { transition-delay: 0.15s; }
.gallery-grid .gallery-item:nth-child(4) { transition-delay: 0.2s; }
.gallery-grid .gallery-item:nth-child(5) { transition-delay: 0.25s; }
.gallery-grid .gallery-item:nth-child(6) { transition-delay: 0.3s; }
.gallery-grid .gallery-item:nth-child(7) { transition-delay: 0.35s; }
.gallery-grid .gallery-item:nth-child(8) { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white-pure);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 4px;
    transition: right 0.4s var(--ease);
    box-shadow: var(--shadow-xl);
  }

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

  .nav-link {
    color: var(--gray-700) !important;
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-link:hover,
  .nav-link.active { background: var(--red-light) !important; color: var(--red) !important; }
  .nav-link::after { display: none; }

  .hamburger { display: flex; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px; border-radius: 50%; width: 40px; height: 40px; justify-content: center; }

  .floating-call { display: flex; }
  .hero-scroll-indicator { display: none; }

  .hero-title-line { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-badge { font-size: 0.7rem; }

  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrapper { text-align: center; }
  .about-image-frame img { max-width: 280px; margin: 0 auto; }
  .about-image-accent { display: none; }
  .about-image-badge { position: relative; bottom: auto; left: auto; margin: -12px auto 0; width: fit-content; }
  .about-content .section-label, .about-content .section-title { text-align: center; }
  .about-content .section-label { padding-left: 0; }
  .about-content .section-label::before { display: none; }
  .about-highlights { grid-template-columns: 1fr; }

  .why-us { padding: 60px 0; }
  .why-us-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card-content { padding: 28px 24px; }

  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 20px;
    padding: 24px;
  }
  .service-number { display: none; }
  .service-icon-wrap { grid-row: span 2; align-self: center; }

  .gallery { padding: 80px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 8px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }

  .reviews { padding: 80px 0; }
  .reviews-grid { grid-template-columns: 1fr; }

  .contact { padding: 80px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-map { min-height: 300px; }
  .contact-map iframe { min-height: 300px; }

  .cta-banner { padding: 60px 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { text-align: center; }
  .footer-logo { margin: 0 auto 16px; }

  .section-header { margin-bottom: 48px; }

  .section-label { padding-left: 0; }
  .section-label::before { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; grid-auto-rows: 150px; }
  .lightbox-prev { left: 8px; width: 44px; height: 44px; }
  .lightbox-next { right: 8px; width: 44px; height: 44px; }
  .btn { padding: 14px 24px; font-size: 0.9rem; }
  .btn-lg { padding: 16px 28px; }
}
