/* ═══════════════════════════════════════════════
   LP Property Pros — Main Stylesheet
   LPPropertyPros.com | Lake Placid, Florida
   ═══════════════════════════════════════════════ */

/* ───────────────────────────────── TOKENS */
:root {
  --green-deep:   #1a3a1e;
  --green-mid:    #2d6a35;
  --green-light:  #4caf60;
  --gold:         #e8a838;
  --gold-light:   #f5c96a;
  --cream:        #faf7f0;
  --cream-dark:   #f0ead8;
  --bark:         #5c3d1e;
  --white:        #ffffff;
  --text-dark:    #1c1c1c;
  --text-mid:     #4a4a4a;
  --text-light:   #7a7a7a;
  --shadow-sm:    0 2px 8px rgba(26,58,30,.12);
  --shadow-md:    0 6px 28px rgba(26,58,30,.16);
  --shadow-lg:    0 16px 56px rgba(26,58,30,.22);
  --radius:       14px;
  --radius-sm:    8px;
}

/* ───────────────────────────────── RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  line-height: 1.2;
}

/* ───────────────────────────────── NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(26, 58, 30, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.nav-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.3px;
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.82);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .3px;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--green-deep) !important;
  font-weight: 700 !important;
  padding: 8px 20px;
  border-radius: 30px;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--green-deep);
  z-index: 999;
  flex-direction: column;
  padding: 32px 8%;
  gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,.85);
  font-size: 1.2rem;
  font-weight: 500;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ───────────────────────────────── HERO */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,25,15,.75) 0%, rgba(10,25,15,.35) 50%, rgba(10,25,15,.60) 100%),
    url('../images/main.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, transparent 30%, rgba(10,25,15,.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 8% 80px;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 168, 56, .18);
  border: 1px solid rgba(232, 168, 56, .45);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 28px;
  animation: fadeUp .7s ease both;
}
.hero-badge::before { content: '📍'; font-size: .9rem; }
h1.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp .7s .1s ease both;
}
h1.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  max-width: 540px;
  margin-bottom: 44px;
  font-weight: 300;
  animation: fadeUp .7s .2s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp .7s .3s ease both;
}
.hero-stats {
  position: absolute;
  bottom: 50px;
  right: 8%;
  z-index: 2;
  display: flex;
  gap: 32px;
  animation: fadeUp .7s .45s ease both;
}
.stat-item {
  text-align: center;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 18px 24px;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* ───────────────────────────────── BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 50px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(232,168,56,.4);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,168,56,.5);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 50px;
  transition: border-color .2s, background .2s, transform .15s;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}

/* ───────────────────────────────── TRUST BAR */
.trust-bar {
  background: var(--green-deep);
  padding: 20px 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  font-weight: 500;
}
.trust-item .ico { font-size: 1.2rem; }
.trust-item strong { color: var(--gold-light); }

/* ───────────────────────────────── SECTION SHARED */
section { padding: 96px 8%; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--green-light);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--green-mid); }
.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  font-weight: 300;
  margin-bottom: 56px;
}

/* ───────────────────────────────── ABOUT */
#about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 96px 8%;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,30,.15) 0%, transparent 60%);
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: var(--gold);
  color: var(--green-deep);
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: .95rem;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.about-text p {
  color: var(--text-mid);
  margin-bottom: 18px;
  font-size: 1rem;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-mid);
}
.about-value .v-ico {
  width: 32px; height: 32px;
  background: rgba(76,175,96,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.about-value strong {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  font-size: .88rem;
}

/* ───────────────────────────────── SERVICES */
#services { background: var(--cream); padding: 80px 5%; }
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.service-card-img {
  position: relative;
  height: 150px;
  overflow: hidden;
}
.service-card-img img { transition: transform .5s; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-img-overlay { display: none; }
.service-card-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 30px;
}
.service-card-body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-icon {
  width: 36px; height: 36px;
  background: rgba(45,106,53,.1);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 8px;
  line-height: 1.25;
}
.service-card p {
  font-size: .82rem;
  color: var(--text-mid);
  flex: 1;
  line-height: 1.6;
}
.service-card p + p { margin-top: 8px; }
.service-items {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px;
}
.service-item {
  background: var(--cream-dark);
  color: var(--green-mid);
  font-size: .68rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: .1px;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  color: var(--green-mid);
  font-weight: 600;
  font-size: .8rem;
  transition: gap .2s, color .2s;
}
.service-cta:hover { gap: 9px; color: var(--green-light); }

/* ───────────────────────────────── WHY US */
#why {
  background: var(--green-deep);
  padding: 96px 8%;
}
#why .section-label { color: var(--gold-light); }
#why .section-label::before { background: var(--gold); }
#why .section-title { color: var(--white); }
#why .section-intro { color: rgba(255,255,255,.7); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: background .25s, transform .25s;
}
.why-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.why-icon { font-size: 2rem; margin-bottom: 18px; }
.why-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.why-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
}

/* ───────────────────────────────── PROCESS */
#process {
  background: var(--white);
  padding: 96px 8%;
}
.process-center { text-align: center; margin-bottom: 56px; }
.process-center .section-label { justify-content: center; }
.process-center .section-intro { margin: 16px auto 0; text-align: center; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(to right, var(--green-light), var(--gold));
  border-radius: 2px;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--green-deep);
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}
.step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.step p {
  font-size: .87rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ───────────────────────────────── TESTIMONIALS */
#testimonials {
  background: var(--cream);
  padding: 96px 8%;
}
.testimonials-center { text-align: center; margin-bottom: 56px; }
.testimonials-center .section-label { justify-content: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--green-light);
  transition: transform .2s, box-shadow .2s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card blockquote {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-dark);
}
.author-location { font-size: .78rem; color: var(--text-light); }

/* ───────────────────────────────── SERVICE AREA */
#area {
  background: var(--green-deep);
  padding: 96px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
#area .section-label { color: var(--gold-light); }
#area .section-label::before { background: var(--gold); }
#area .section-title { color: var(--white); }
#area p { color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 14px; font-weight: 300; }
.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-top: 24px;
}
.area-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
}
.area-list li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.area-map-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.area-map-pin {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--green-deep);
  font-size: .85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

/* ───────────────────────────────── CONTACT */
#contact { background: var(--cream); }
.contact-simple-header {
  text-align: center;
  margin-bottom: 52px;
}
.contact-simple-header .section-label { justify-content: center; }
.contact-simple-header .section-intro {
  margin: 0 auto;
  text-align: center;
}
.contact-simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-simple-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 2px solid transparent;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.contact-simple-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.contact-simple-ico {
  font-size: 2.4rem;
  margin-bottom: 8px;
  width: 68px; height: 68px;
  background: rgba(45,106,53,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-simple-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green-mid);
}
.contact-simple-value {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1.3;
}
.contact-simple-sub {
  font-size: .82rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ───────────────────────────────── FOOTER */
footer {
  background: #0f2412;
  padding: 60px 8% 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  margin: 16px 0 24px;
  max-width: 280px;
  line-height: 1.7;
}
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
}
.social-btn:hover { background: var(--gold); color: var(--green-deep); }
.footer-col h5 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.55);
  font-size: .87rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  color: rgba(255,255,255,.35);
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ───────────────────────────────── ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ───────────────────────────────── RESPONSIVE */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  section { padding: 72px 6%; }
  #about { grid-template-columns: 1fr; gap: 40px; padding: 72px 6%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-simple-grid { grid-template-columns: 1fr; }
  #area { grid-template-columns: 1fr; gap: 48px; padding: 72px 6%; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { display: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ───────────────────────────────── OUR WORK GALLERY */
#gallery {
  background: var(--green-deep);
  padding: 80px 0 60px;
  overflow: hidden;
}
.gallery-header {
  padding: 0 8%;
  margin-bottom: 40px;
}
.gallery-header .section-label { color: var(--gold-light); }
.gallery-header .section-label::before { background: var(--gold); }
.gallery-header .section-title { color: var(--white); }
.gallery-header .section-intro { color: rgba(255,255,255,.65); margin-bottom: 0; }

.gallery-track-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.gallery-track-wrap::before,
.gallery-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.gallery-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--green-deep), transparent);
}
.gallery-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--green-deep), transparent);
}

.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollLeft 40s linear infinite;
}
.gallery-track:hover { animation-play-state: paused; }

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gallery-item {
  width: 280px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(255,255,255,.08);
  transition: transform .3s, border-color .3s;
}
.gallery-item:hover {
  transform: scale(1.04);
  border-color: var(--gold);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.gallery-item:hover img { transform: scale(1.08); }

@media (max-width: 820px) {
  .gallery-item { width: 220px; height: 160px; }
  #gallery { padding: 60px 0 48px; }
}

/* ───────────────────────────────── LOGO IMAGE */
.nav-logo-img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  flex-shrink: 0;
}
.footer-logo-img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  margin-bottom: 12px;
}

/* ───────────────────────────────── CONTACT ADDRESS */
.contact-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  color: var(--text-light);
  font-size: .92rem;
  font-weight: 500;
}
