/* ═══════════════════════════════════════════════════
   PawPerfect — Premium Pet Care Website
   Light Warm Theme — Mr. Harigovind Sharma
   ═══════════════════════════════════════════════════ */

:root {
  --cream: #FDF8F3;
  --warm-white: #FEFCF9;
  --sand: #F5EDE3;
  --sand-dark: #E8DAC9;
  --terracotta: #C67D4A;
  --terracotta-dark: #A8623A;
  --forest: #2D5A3D;
  --forest-dark: #1E3F2B;
  --forest-light: #3A7550;
  --bark: #5C3D2E;
  --text-primary: #2C2420;
  --text-secondary: #6B5D52;
  --text-light: #9C8B7E;
  --accent-gold: #D4A556;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(44, 36, 32, 0.06);
  --shadow-md: 0 8px 30px rgba(44, 36, 32, 0.08);
  --shadow-lg: 0 20px 60px rgba(44, 36, 32, 0.1);
  --shadow-xl: 0 30px 80px rgba(44, 36, 32, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(198, 125, 74, 0.2); color: var(--text-primary); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--sand-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--terracotta); }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

/* ── Animations ───────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pawBounce {
  0%, 100% { transform: rotate(-5deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.05); }
}

.animate-on-load { animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.7s; }

/* ── Navbar ───────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 48px;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  padding: 14px 48px;
  background: rgba(253, 248, 243, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 218, 201, 0.6);
  box-shadow: var(--shadow-sm);
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--forest);
  display: flex; align-items: center; gap: 8px;
}
.navbar-brand span { color: var(--terracotta); }
.navbar-brand .paw-icon {
  font-size: 1.2rem; display: inline-block;
  animation: pawBounce 3s ease-in-out infinite;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--text-secondary);
  letter-spacing: 0.04em; text-transform: uppercase;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--terracotta);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover, .nav-links a.active { color: var(--terracotta); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.btn-terracotta::after, .nav-links a.btn-primary::after { display: none; }
.nav-links a.btn-terracotta:hover, .nav-links a.btn-terracotta.active { color: var(--white); }

/* ── Buttons ──────────────────────────────────────── */
.btn-primary {
  background: var(--forest); color: var(--white);
  padding: 12px 28px; border-radius: var(--radius-full);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  background: var(--forest-dark); transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 90, 61, 0.25);
}
.btn-secondary {
  background: transparent; color: var(--forest);
  padding: 12px 28px; border-radius: var(--radius-full);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; border: 1.5px solid var(--forest);
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover {
  background: var(--forest); color: var(--white); transform: translateY(-2px);
}
.btn-terracotta {
  background: var(--terracotta); color: var(--white);
  padding: 12px 28px; border-radius: var(--radius-full);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-terracotta:hover {
  background: var(--terracotta-dark); transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(198, 125, 74, 0.3);
}
.btn-large { padding: 16px 40px; font-size: 0.95rem; }
.btn-white {
  background: var(--white); color: var(--forest);
  padding: 16px 40px; border-radius: var(--radius-full);
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }

/* ── Hamburger & Mobile ───────────────────────────── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--forest);
  transition: all 0.3s; border-radius: 2px;
}
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(253, 248, 243, 0.98); backdrop-filter: blur(20px); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif; font-size: 1.8rem;
  color: var(--text-primary); transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--terracotta); }
.mobile-close {
  position: absolute; top: 24px; right: 32px; font-size: 2rem;
  color: var(--text-primary); background: none; border: none; cursor: pointer;
}

/* ── Hero Section ─────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; background: var(--warm-white);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  max-width: 1400px; margin: 0 auto; padding: 120px 48px 80px; gap: 60px; width: 100%;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(45, 90, 61, 0.08); padding: 8px 18px;
  border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 600;
  color: var(--forest); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem); line-height: 1.08;
  margin-bottom: 24px; color: var(--text-primary);
}
.hero h1 em { color: var(--terracotta); font-style: italic; }
.hero-description {
  font-size: 1.15rem; color: var(--text-secondary); line-height: 1.85;
  max-width: 480px; margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats {
  display: flex; gap: 40px; padding-top: 32px;
  border-top: 1px solid var(--sand-dark);
}
.hero-stat-number {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  font-weight: 700; color: var(--forest); line-height: 1;
}
.hero-stat-label { font-size: 0.82rem; color: var(--text-light); margin-top: 4px; }
.hero-image-wrapper {
  position: relative; animation: scaleIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
.hero-image-main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-xl); box-shadow: var(--shadow-xl);
}
.hero-image-float {
  position: absolute; bottom: -20px; left: -30px;
  background: var(--white); padding: 18px 24px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
  animation: float 4s ease-in-out infinite;
}
.hero-float-icon {
  width: 48px; height: 48px; background: rgba(45, 90, 61, 0.1);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem;
}
.hero-float-text strong { display: block; font-size: 1.1rem; color: var(--forest); }
.hero-float-text span { font-size: 0.8rem; color: var(--text-light); }
.hero-decor-circle {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(198, 125, 74, 0.1); pointer-events: none;
}
.hero-decor-circle.one { width: 400px; height: 400px; top: -100px; right: -100px; }
.hero-decor-circle.two { width: 250px; height: 250px; bottom: 50px; left: 10%; }

/* ── Sections ─────────────────────────────────────── */
.section { padding: 120px 48px; }
.section-center { text-align: center; }
.container { max-width: 1200px; margin: 0 auto; }
.section-alt { background: var(--white); }
.section-sand { background: var(--sand); }

/* ── About ────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrapper { position: relative; }
.about-image {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--terracotta); color: var(--white);
  padding: 22px 28px; border-radius: var(--radius-lg);
  text-align: center; box-shadow: 0 12px 35px rgba(198, 125, 74, 0.3);
}
.about-badge-number { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; line-height: 1; }
.about-badge-text { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }
.about-text p { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.9; margin-bottom: 20px; }
.about-values { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; margin-bottom: 36px; }
.about-value-tag {
  padding: 10px 20px; border: 1px solid var(--sand-dark);
  border-radius: var(--radius-full); font-size: 0.85rem;
  font-weight: 500; color: var(--forest); background: var(--cream); transition: all 0.3s;
}
.about-value-tag:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }

/* ── Stats Bar ────────────────────────────────────── */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 80px; padding: 50px 40px;
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--sand-dark); box-shadow: var(--shadow-sm);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif; font-size: 2.5rem;
  font-weight: 700; color: var(--terracotta); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; color: var(--text-light); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }

/* ── Services ─────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); gap: 24px;
}
.service-card {
  padding: 36px 28px; background: var(--white);
  border: 1px solid var(--sand-dark); border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--terracotta); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 600; }
.service-card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 18px; }
.service-price { font-size: 0.88rem; font-weight: 600; color: var(--terracotta); }

/* ── Testimonials ─────────────────────────────────── */
.testimonial-card {
  max-width: 750px; margin: 0 auto; padding: 50px 48px;
  background: var(--white); border: 1px solid var(--sand-dark);
  border-radius: var(--radius-xl); text-align: center;
  position: relative; box-shadow: var(--shadow-sm);
}
.testimonial-card .big-quote {
  font-family: 'Playfair Display', serif; font-size: 8rem;
  color: var(--sand-dark); line-height: 1; position: absolute;
  top: 10px; left: 30px; pointer-events: none; user-select: none;
}
.testimonial-stars { color: var(--accent-gold); font-size: 1.1rem; margin-bottom: 24px; letter-spacing: 3px; }
.testimonial-text {
  font-family: 'Playfair Display', serif; font-size: 1.25rem;
  font-style: italic; color: var(--text-primary); line-height: 1.8;
  margin-bottom: 28px; position: relative; z-index: 1;
}
.testimonial-name { font-weight: 600; color: var(--terracotta); font-size: 1rem; margin-bottom: 4px; }
.testimonial-pet { font-size: 0.85rem; color: var(--text-light); }
.testimonial-dots { display: flex; gap: 10px; justify-content: center; margin-top: 32px; }
.testimonial-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--sand-dark); border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.testimonial-dot.active { width: 32px; border-radius: 10px; background: var(--terracotta); }

/* ── Review Section ───────────────────────────────── */
.review-section { padding: 120px 48px; background: var(--sand); }

.review-form-card {
  max-width: 700px; margin: 0 auto 60px;
  padding: 40px; background: var(--white);
  border: 1px solid var(--sand-dark); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.star-rating-input { display: flex; gap: 6px; margin-bottom: 20px; justify-content: center; }
.star-rating-input .star-btn {
  font-size: 2rem; background: none; border: none;
  cursor: pointer; color: var(--sand-dark); transition: all 0.2s;
  padding: 0 2px; line-height: 1;
}
.star-rating-input .star-btn.active,
.star-rating-input .star-btn:hover { color: var(--accent-gold); transform: scale(1.15); }

.reviews-list { max-width: 800px; margin: 0 auto; }

.review-item {
  padding: 28px; background: var(--white);
  border: 1px solid var(--sand-dark); border-radius: var(--radius-lg);
  margin-bottom: 20px; transition: all 0.3s;
}
.review-item:hover { box-shadow: var(--shadow-md); }

.review-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px; flex-wrap: wrap; gap: 8px;
}
.review-author {
  font-weight: 600; color: var(--text-primary); font-size: 1rem;
}
.review-date { font-size: 0.82rem; color: var(--text-light); }
.review-stars { color: var(--accent-gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { color: var(--text-secondary); line-height: 1.7; font-size: 0.95rem; }

.review-summary {
  display: flex; align-items: center; gap: 20px;
  justify-content: center; margin-bottom: 40px; flex-wrap: wrap;
}
.review-avg {
  font-family: 'Playfair Display', serif; font-size: 3.5rem;
  font-weight: 700; color: var(--terracotta); line-height: 1;
}
.review-avg-stars { color: var(--accent-gold); font-size: 1.2rem; letter-spacing: 3px; }
.review-avg-count { font-size: 0.85rem; color: var(--text-light); margin-top: 4px; }

/* ── Contact ──────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info-card {
  padding: 40px; background: var(--white);
  border: 1px solid var(--sand-dark); border-radius: var(--radius-xl); margin-bottom: 24px;
}
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--sand);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-item-label {
  font-size: 0.78rem; font-weight: 600; color: var(--terracotta);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px;
}
.contact-item-value { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.5; }
.contact-map {
  width: 100%; height: 200px; border-radius: var(--radius-xl);
  overflow: hidden; border: 1px solid var(--sand-dark);
  position: relative; background: var(--sand);
  display: flex; align-items: center; justify-content: center;
}
.contact-map-inner { text-align: center; }
.contact-map-inner .pin { font-size: 2rem; margin-bottom: 8px; }
.contact-map-inner p { font-size: 0.85rem; font-weight: 600; color: var(--terracotta); }

/* ── Forms ─────────────────────────────────────────── */
.form-card {
  padding: 44px; background: var(--white);
  border: 1px solid var(--sand-dark); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--terracotta); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 18px; background: var(--cream);
  border: 1.5px solid var(--sand-dark); border-radius: var(--radius-md);
  color: var(--text-primary); font-size: 0.95rem; outline: none; transition: all 0.3s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--terracotta); background: var(--warm-white);
  box-shadow: 0 0 0 3px rgba(198, 125, 74, 0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239C8B7E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%; padding: 16px; background: var(--forest); color: var(--white);
  border: none; border-radius: var(--radius-md);
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; cursor: pointer; transition: all 0.3s;
}
.form-submit:hover { background: var(--forest-dark); box-shadow: 0 8px 30px rgba(45, 90, 61, 0.25); }
.form-success { text-align: center; padding: 60px 20px; }
.form-success .icon { font-size: 4rem; margin-bottom: 20px; }
.form-success h3 { font-size: 1.8rem; color: var(--forest); margin-bottom: 12px; }
.form-success p { color: var(--text-secondary); line-height: 1.7; max-width: 400px; margin: 0 auto; }

/* ── CTA Banner ───────────────────────────────────── */
.cta-banner {
  padding: 80px 48px; background: var(--forest);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '🐾'; position: absolute; font-size: 15rem; opacity: 0.04;
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 500px; margin: 0 auto 36px; line-height: 1.7; }

/* ── Page Header ──────────────────────────────────── */
.page-header {
  padding: 160px 48px 80px; background: var(--sand);
  text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(198, 125, 74, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 60%, rgba(45, 90, 61, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.page-header h1 { font-size: clamp(2.4rem, 5vw, 3.5rem); margin-bottom: 16px; position: relative; }
.page-header p { font-size: 1.1rem; color: var(--text-secondary); max-width: 550px; margin: 0 auto; line-height: 1.7; position: relative; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 20px; font-size: 0.85rem; color: var(--text-light); position: relative;
}
.breadcrumb a { color: var(--terracotta); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── About Page: Team, Why ────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); gap: 28px; margin-top: 60px; }
.team-card {
  text-align: center; padding: 36px 24px;
  background: var(--white); border: 1px solid var(--sand-dark);
  border-radius: var(--radius-lg); transition: all 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--sand); display: flex; align-items: center;
  justify-content: center; font-size: 2.5rem; overflow: hidden;
  margin: 0 auto 20px; border: 3px solid var(--sand-dark); overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.82rem; color: var(--terracotta); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.team-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); gap: 32px; }
.why-card { text-align: center; padding: 40px 28px; }
.why-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(198, 125, 74, 0.1); display: flex;
  align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 20px;
}
.why-card h4 { font-size: 1.15rem; margin-bottom: 10px; }
.why-card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; }

/* ── Services Page Detail ─────────────────────────── */
.service-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; padding: 60px 0; border-bottom: 1px solid var(--sand-dark);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-image {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  border-radius: var(--radius-xl); box-shadow: var(--shadow-md);
}
.service-detail-content h3 { font-size: 1.8rem; margin-bottom: 16px; }
.service-detail-content p { color: var(--text-secondary); line-height: 1.85; margin-bottom: 16px; font-size: 1.02rem; }
.service-detail-content .price-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(198, 125, 74, 0.08); padding: 10px 20px;
  border-radius: var(--radius-full); font-weight: 600; color: var(--terracotta); margin-bottom: 20px;
}
.service-detail-features { display: flex; flex-wrap: wrap; gap: 10px; }
.service-detail-features span {
  padding: 6px 16px; background: var(--cream); border: 1px solid var(--sand-dark);
  border-radius: var(--radius-full); font-size: 0.82rem; color: var(--forest); font-weight: 500;
}

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: 12%; right: 12%;
  height: 2px; background: var(--sand-dark);
}
.process-step { text-align: center; position: relative; }
.process-number {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  font-weight: 700; color: var(--terracotta); margin: 0 auto 20px;
  position: relative; z-index: 1;
}
.process-step h4 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Footer ───────────────────────────────────────── */
.footer { padding: 60px 48px 30px; background: var(--text-primary); color: rgba(255,255,255,0.6); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto 50px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-brand span { color: var(--terracotta); }
.footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-heading { font-family: 'Outfit', sans-serif; font-size: 0.78rem; font-weight: 600; color: var(--terracotta); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; }
.footer-link { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-bottom: 12px; transition: color 0.3s; }
.footer-link:hover { color: var(--terracotta); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; max-width: 1200px; margin: 0 auto;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--terracotta); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; text-decoration: none; transition: all 0.3s; border: none; }
.footer-social a:hover { transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.footer-social a svg { width: 18px !important; height: 18px !important; max-width: 18px !important; max-height: 18px !important; fill: #fff; flex-shrink: 0; display: block; }
.footer-social .social-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer-social .social-ig:hover { background: linear-gradient(45deg, #e6683c, #dc2743, #cc2366, #bc1888, #f09433); }
.footer-social .social-fb { background: #1877F2; }
.footer-social .social-fb:hover { background: #0d65d9; }

/* ── Floating CTA ─────────────────────────────────── */
.floating-cta { position: fixed; bottom: 30px; right: 30px; z-index: 998; }
.floating-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--forest); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: 0 8px 30px rgba(45, 90, 61, 0.3);
  transition: all 0.3s; border: none;
}
.floating-btn:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(45, 90, 61, 0.4); }

/* ── Owner Highlight Card ─────────────────────────── */
.owner-highlight {
  display: flex; align-items: center; gap: 24px;
  padding: 28px 32px; background: rgba(45, 90, 61, 0.06);
  border-radius: var(--radius-xl); border: 1px solid rgba(45, 90, 61, 0.12);
  margin-top: 32px;
}
.owner-highlight img {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--forest);
}
.owner-highlight-text strong {
  display: block; font-size: 1.1rem; color: var(--forest); margin-bottom: 2px;
}
.owner-highlight-text span {
  font-size: 0.85rem; color: var(--text-secondary);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-description { margin: 0 auto 40px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrapper { max-width: 500px; margin: 0 auto; }
  .hero-image-float { left: auto; right: -10px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrapper { max-width: 500px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 80px 24px; }
  .review-section { padding: 80px 24px; }
  .navbar { padding: 16px 24px; }
  .navbar.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-grid { padding: 120px 24px 60px; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }
  .review-form-card { padding: 28px; }
  .contact-info-card { padding: 28px; }
  .page-header { padding: 130px 24px 60px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 60px 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .owner-highlight { flex-direction: column; text-align: center; }
}
