/* ===== CSS VARIABLES ===== */
:root {
  --green-dark:   #1F4A23;
  --green-mid:    #3D8B37;
  --green-light:  #5aab52;
  --gold:         #E8920A;
  --gold-dark:    #c97a06;
  --bg-light:     #F8FAF7;
  --bg-alt:       #eef4ec;
  --text-dark:    #1a1a1a;
  --text-mid:     #444;
  --text-light:   #6b7280;
  --white:        #ffffff;
  --radius:       10px;
  --shadow:       0 4px 24px rgba(0,0,0,0.10);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.16);
  --transition:   0.25s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); box-shadow: 0 4px 16px rgba(232,146,10,0.35); }

.btn-green {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-green:hover { background: var(--green-mid); border-color: var(--green-mid); box-shadow: 0 4px 16px rgba(31,74,35,0.3); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--green-dark); }

.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION SHARED ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 10px;
}
.eyebrow-light { color: var(--green-light); }

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.title-light { color: var(--white); }

.section-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 580px;
  margin-bottom: 56px;
}

/* ===== NAVIGATION ===== */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav-header.scrolled {
  background: var(--green-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 8px;
  background: white;
  padding: 2px;
}
.nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-text span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-phone { font-size: 0.85rem; padding: 9px 18px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav dropdown */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1rem;
  }
  .nav-links a::after { display: none; }
  .hamburger { display: flex; }
  .nav-phone { display: none; }
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 35, 17, 0.62) 0%,
    rgba(15, 35, 17, 0.55) 60%,
    rgba(15, 35, 17, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
  margin-top: 74px;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

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

.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  transition: color var(--transition);
}
.scroll-down:hover { color: var(--white); }

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

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--green-mid);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.service-icon {
  width: 58px;
  height: 58px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green-dark);
  font-size: 1.4rem;
  transition: background var(--transition), color var(--transition);
}
.service-card:hover .service-icon { background: var(--green-dark); color: var(--white); }

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.service-card p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.65; }

.services-cta { text-align: center; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--bg-alt);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 74, 35, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--white);
  font-size: 1.8rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
}

.lightbox-img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background var(--transition);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.25); }

.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev  { left: 24px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }

/* ===== WHY CHOOSE US ===== */
.why-us {
  background: var(--green-dark);
  padding: 88px 0;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.why-card {
  padding: 16px;
}

.why-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.7rem;
  color: var(--gold);
  transition: background var(--transition), transform var(--transition);
}
.why-card:hover .why-icon { background: var(--gold); color: var(--white); transform: scale(1.08); }

.why-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; }

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ===== CONTACT ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-phone-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-phone-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-phone {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-dark);
  transition: color var(--transition);
}
.contact-phone:hover { color: var(--gold); }

.contact-area {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.03em;
}

.required { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(61,139,55,0.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  border-radius: 6px;
  padding: 14px 18px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}
.form-success.show { display: flex; }

@media (max-width: 900px) {
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== ACTIVE NAV LINK ===== */
.nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after {
  width: 100%;
  background: var(--gold);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #2d6630 100%);
  padding: 160px 24px 72px;
  text-align: center;
}

.page-hero-breadcrumb {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb i { font-size: 0.65rem; }

.page-hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
}

.page-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto;
}

/* ===== SERVICES FULL (services.html) ===== */
.services-full {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 16px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-row-reverse { direction: rtl; }
.service-row-reverse > * { direction: ltr; }

.service-row-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.service-row-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-row-img:hover img { transform: scale(1.04); }

.service-icon-lg {
  width: 64px;
  height: 64px;
  background: var(--bg-alt);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.service-row-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.service-row-content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.service-list li i {
  color: var(--green-mid);
  font-size: 0.85rem;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .service-row { grid-template-columns: 1fr; gap: 32px; }
  .service-row-reverse { direction: ltr; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, #2d6630 100%);
  padding: 72px 24px;
}

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

.cta-banner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1rem; }

.cta-banner-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ===== GALLERY PREVIEW (home page 4-col) ===== */
.gallery-preview {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .gallery-preview { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-preview { grid-template-columns: 1fr 1fr; }
}

/* ===== CONTACT AREAS BLOCK ===== */
.contact-areas-block {
  margin-top: 8px;
}
.contact-areas-block h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.areas-list span {
  background: var(--bg-alt);
  border: 1px solid #d1fae5;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
}

/* ===== INFINITE CAROUSEL ===== */
.carousel-section { padding-bottom: 32px; }
.carousel-section .section-sub { margin-bottom: 32px; }

.carousel-outer {
  overflow: hidden;
  position: relative;
  padding: 12px 0 28px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 100s linear infinite;
  will-change: transform;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.carousel-slide {
  flex-shrink: 0;
  width: 340px;
  height: 255px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  pointer-events: none;
  display: block;
}

.carousel-slide:hover img { transform: scale(1.06); }

.carousel-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ===== VIDEO SECTION ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 24px;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
  transition: box-shadow var(--transition);
}
.video-card:hover { box-shadow: var(--shadow-hover); }

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #111;
  object-fit: cover;
}

.video-label {
  background: var(--green-dark);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 16px;
  text-align: center;
  letter-spacing: 0.02em;
}

.video-note {
  font-size: 0.85rem;
  color: var(--text-mid);
  background: var(--bg-alt);
  border-left: 3px solid var(--green-mid);
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  line-height: 1.7;
}
.video-note code {
  background: rgba(0,0,0,0.07);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 0.82rem;
  font-family: monospace;
}

@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr; gap: 20px; }
  .carousel-slide { width: 280px; height: 210px; }
}
@media (max-width: 560px) {
  .carousel-slide { width: 220px; height: 165px; }
}

/* ===== FOOTER ===== */
.footer {
  background: #111b12;
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}

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

.footer-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 10px;
  background: white;
  padding: 4px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
  transition: color var(--transition);
}
.footer-phone:hover { color: #f5a83a; }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.footer-col a { transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
