/* ===== Variables & Reset ===== */
:root {
  --forest: #1a3c1a;
  --forest-light: #2d5a2d;
  --sage: #5a7d5a;
  --sage-light: #8aad8a;
  --olive: #6b7c3e;
  --sand: #c9b896;
  --sand-light: #e8dcc4;
  --ivory: #f9f6f0;
  --ivory-warm: #f5f0e6;
  --white: #ffffff;
  --charcoal: #1e1e1e;
  --slate: #3d3d3d;
  --gray: #6b6b6b;
  --gray-light: #9a9a9a;
  --accent: #8b6914;
  --accent-light: #b8963e;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--charcoal);
  line-height: 1.7;
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease);
}

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

/* ===== Typography ===== */
.label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
}

.label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--accent-light);
  transform: translateY(-50%);
}

.heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.subtitle {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.section-header .label {
  padding-left: 0;
}

.section-header .label::before {
  display: none;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.35s var(--ease);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}

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

.btn-primary:hover {
  background: var(--forest-light);
  border-color: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 60, 26, 0.3);
}

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

.btn-accent:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 105, 20, 0.3);
}

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

.btn-ghost:hover {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.btn-outline-white:hover {
  background: var(--white);
  color: var(--forest);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(249, 246, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s var(--ease);
}

.header.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 65px;
  width: auto;
}

.nav {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--slate);
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
}

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

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
}

.header-phone:hover {
  background: var(--forest-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 60, 26, 0.25);
}

.header-phone i {
  font-size: 0.8rem;
}

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

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=1600&h=900&fit=crop') center/cover no-repeat;
  opacity: 0.25;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 60, 26, 0.95) 0%, rgba(45, 90, 45, 0.8) 40%, rgba(26, 60, 26, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-top: 88px;
  padding-bottom: 40px;
}

.hero-text {
  flex: 1;
  max-width: 620px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(201, 184, 150, 0.3);
  border-radius: 60px;
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

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

.hero-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
}

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

.hero-logo-showcase {
  flex-shrink: 0;
  width: 340px;
  height: 340px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-logo-img {
  width: 100%;
  height: auto;
  filter: brightness(1.1);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.9rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* ===== Trust Bar ===== */
.trust-bar {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.trust-bar-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
}

.trust-item i {
  color: var(--accent-light);
  font-size: 1.1rem;
}

/* ===== About ===== */
.about {
  padding: 120px 0;
  background: var(--white);
}

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

.about-media {
  position: relative;
}

.about-img-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.about-img-wrapper:hover .about-img-main {
  transform: scale(1.03);
}

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience {
  position: absolute;
  top: 30px;
  left: -30px;
  background: var(--accent);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.exp-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.exp-text {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
  opacity: 0.9;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--slate);
  margin-bottom: 16px;
  font-weight: 500;
}

.about-body {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.8;
}

.about-counters {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.counter {
  display: flex;
  flex-direction: column;
}

.counter-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}

.counter-label {
  font-size: 0.82rem;
  color: var(--gray-light);
  font-weight: 500;
  margin-top: 4px;
}

/* ===== Services ===== */
.services {
  padding: 120px 0;
  background: var(--ivory);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  border: 1px solid rgba(0,0,0,0.04);
}

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

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

.service-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--ivory-warm), var(--sand-light));
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 24px;
  transition: all 0.4s var(--ease);
}

.service-card:hover .service-icon-wrap {
  background: var(--forest);
  color: var(--white);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.75;
}

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

/* ===== Guide Banner ===== */
.guide-banner {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  padding: 48px 0;
}

.guide-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.guide-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.guide-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--sand);
  flex-shrink: 0;
}

.guide-banner h3 {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.guide-banner h3 em {
  color: var(--sand);
  font-style: italic;
}

.guide-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-top: 4px;
}

/* ===== Care Plans ===== */
.care-plans {
  padding: 120px 0;
  background: var(--white);
}

.care-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.care-checklist {
  list-style: none;
  margin-bottom: 36px;
}

.care-checklist li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--slate);
  font-weight: 500;
}

.care-checklist li i {
  width: 24px;
  height: 24px;
  background: var(--ivory-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.care-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.care-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.care-visual:hover img {
  transform: scale(1.03);
}

/* ===== Gallery ===== */
.gallery {
  padding: 120px 0;
  background: var(--ivory);
}

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

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

.gallery-card.tall {
  grid-row: span 2;
}

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

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(26, 60, 26, 0.85) 0%, transparent 100%);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease);
}

.gallery-card:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 120px 0;
  background: var(--ivory-warm);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s var(--ease);
  border: 1px solid rgba(0,0,0,0.04);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.quote-icon {
  color: var(--sand-light);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--slate);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.85;
  margin-bottom: 24px;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.stars i {
  color: var(--accent-light);
  font-size: 0.85rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--gray-light);
}

/* ===== CTA ===== */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--forest) 0%, #1a4a2a 50%, var(--forest) 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.02);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

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

/* ===== Contact ===== */
.contact {
  padding: 120px 0;
  background: var(--ivory);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s var(--ease);
  border: 1px solid rgba(0,0,0,0.04);
}

.contact-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--ivory-warm);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-card a,
.contact-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-card a:hover {
  color: var(--forest);
}

.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.contact-social a {
  width: 40px;
  height: 40px;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.contact-social a:hover {
  background: var(--forest-light);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(26, 60, 26, 0.25);
}

.contact-form {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
}

.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 28px;
  font-weight: 600;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-xs);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--ivory);
  transition: all 0.3s var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26, 60, 26, 0.08);
}

.form-group textarea {
  resize: vertical;
}

/* ===== Footer ===== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.2);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: all 0.3s var(--ease);
}

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

.footer-col p {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.55);
}

.footer-col p i {
  color: var(--sand);
  width: 16px;
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xs);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--forest-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ===== Scroll Animations ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .heading {
    font-size: 2.4rem;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-logo-showcase {
    width: 260px;
    height: 260px;
    padding: 30px;
  }

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

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

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

  .about-layout,
  .care-layout {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(249, 246, 240, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    z-index: 999;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .hamburger {
    display: flex;
  }

  .header-phone {
    display: none;
  }

  .header-inner {
    height: 72px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    padding-top: 72px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-logo-showcase {
    width: 220px;
    height: 220px;
    padding: 30px;
  }

  .trust-bar-inner {
    justify-content: center;
    gap: 8px;
  }

  .trust-item {
    flex: 1 1 45%;
    justify-content: center;
    padding: 16px 8px;
    font-size: 0.82rem;
  }

  .about-layout,
  .care-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-experience {
    left: 10px;
    top: 10px;
  }

  .about-img-float {
    right: 10px;
    bottom: -20px;
    width: 140px;
    height: 140px;
  }

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

  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

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

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

  .contact-form {
    padding: 28px 24px;
  }

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

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

  .guide-content {
    flex-direction: column;
  }
}

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

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-logo-showcase {
    width: 180px;
    height: 180px;
    padding: 24px;
  }

  .about-counters {
    flex-direction: column;
    gap: 16px;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .gallery-card.tall {
    grid-row: span 1;
  }

  .trust-item {
    flex: 1 1 100%;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}
