/* PREMIUM CSS - FIND REAL ESTATE REDESIGN */

:root {
  --primary-green: #00D756;
  --primary-green-hover: #00bf4c;
  --color-black: #050505;
  --color-white: #FFFFFF;
  --color-offwhite: #F5F5F5;
  --color-dark-gray: #111111;
  --color-gray: #888888;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-dark: rgba(0, 0, 0, 0.1);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);

  --padding-section: 120px 0;
  --padding-section-mobile: 80px 0;
}

/* Global Setup */
html {
  scroll-behavior: auto !important;
  /* Lenis handles scrolling */
}

body {
  font-family: var(--font-body);
  color: var(--color-black);
  background-color: var(--color-offwhite);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.bg-black {
  background-color: var(--color-black) !important;
  color: var(--color-white) !important;
}

.bg-white {
  background-color: var(--color-white) !important;
  color: var(--color-black) !important;
}

.text-green {
  color: var(--primary-green) !important;
}

.em {
  font-style: italic;
  color: var(--color-gray);
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
.sitename {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 0;
}

/* Typography Utilities */
.title-xl {
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -0.04em;
  font-weight: 900;
  line-height: 0.95;
  color: #e07e14;
}

.title-lg {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #e07e14;
}

.title-md {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #e07e14;
}

.text-lg {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.4;
  font-weight: 400;
}

.text-md {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.5;
  font-weight: 400;
}

/* Buttons */
.btn-pill-primary {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-green);
  color: var(--color-white);
  border-radius: 100px;
  padding: 14px 32px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
  border: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.btn-pill-primary:hover {
  background-color: var(--primary-green-hover);
  color: var(--color-white);
  transform: scale(1.05);
}

.btn-pill-secondary {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: var(--color-black);
  border: 1px solid var(--color-border-dark);
  border-radius: 100px;
  padding: 14px 32px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.bg-black .btn-pill-secondary {
  color: var(--color-white);
  border-color: var(--color-border);
}

.btn-pill-secondary:hover {
  background-color: var(--primary-green);
  color: var(--color-white);
  border-color: var(--primary-green);
  transform: scale(1.05);
}

/* Header & Nav */
.btn-circle-action {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-green);
  border: none;
  color: var(--color-white);
  transition: all var(--transition-fast);
  text-decoration: none;
  font-size: 1.1rem;
}

.btn-circle-action:hover {
  background: var(--primary-green-hover);
  color: var(--color-white);
  transform: scale(1.1);
}

.scrolled .btn-circle-action {
  background: var(--primary-green);
  color: var(--color-white);
}

.scrolled .btn-circle-action:hover {
  background: var(--primary-green-hover);
  color: var(--color-white);
}

.header-custom {
  transition: background-color 0.4s ease, padding 0.4s ease, border-bottom 0.4s ease;
  padding: 20px 0;
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

.header-custom.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-bottom: 1px solid var(--color-border-dark);
}

.bg-black .header-custom.scrolled {
  background-color: rgba(5, 5, 5, 0.95);
  border-bottom: 1px solid var(--color-border);
}

.logo-text {
  color: var(--primary-green) !important;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
  font-weight: 900;
  transition: color 0.4s ease;
}

.header-transparent .logo-text,
.bg-black .logo-text {
  color: var(--primary-green) !important;
}

.header-custom.scrolled:not(.bg-black) .logo-text {
  color: var(--primary-green) !important;
}

.navmenu-custom {
  display: flex;
  gap: 40px;
}

.nav-link-custom {
  color: var(--color-black);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.header-transparent .nav-link-custom,
.bg-black .nav-link-custom {
  color: var(--color-white);
}

.header-custom.scrolled:not(.bg-black) .nav-link-custom {
  color: var(--color-black);
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-green);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link-custom:hover::after {
  transform: translateX(0);
}

.nav-link-custom:hover {
  color: var(--primary-green) !important;
}

/* Burger Button */
.burger-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-white);
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 1001;
}

.header-custom.scrolled:not(.bg-black) .burger-btn {
  background: var(--color-black);
}

.header-custom.scrolled:not(.bg-black) .burger-btn span {
  background: var(--color-white);
}

.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-black);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s;
}

.burger-btn:hover {
  transform: scale(1.1);
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

/* Burger Drawer */
.burger-menu-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
}

.burger-menu-wrapper.active {
  pointer-events: all;
}

.burger-menu-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.burger-menu-wrapper.active .burger-menu-backdrop {
  opacity: 1;
}

.burger-menu-content {
  width: 100%;
  max-width: 500px;
  height: 100%;
  background: var(--color-black);
  padding: 120px 60px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow-y: auto;
}

.burger-menu-wrapper.active .burger-menu-content {
  transform: translateX(0);
}

.burger-nav-item {
  display: block;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  transition: color 0.3s ease, transform 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.burger-menu-wrapper.active .burger-nav-item {
  transform: translateY(0);
  opacity: 1;
}

.burger-nav-item:hover {
  color: var(--primary-green);
  transform: translateX(10px) !important;
}

/* 3D Hero Parallax */
.hero-3d {
  position: relative;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
  background-color: var(--color-black);
  display: flex;
  align-items: center;
}

.hero-layer {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-layer-bg {
  z-index: 1;
  background-image: url('../assets/img/hm/hm_showroom.jpg');
  filter: brightness(0.6) contrast(1.1);
}

.hero-layer-smoke {
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  color: var(--color-white);
  text-align: center;
  pointer-events: none;
  /* Let clicks pass to layers if needed */
}

.hero-title h1 {
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #e07e14;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.7);
}

.hero-title h2 {
  font-size: clamp(1.2rem, 2.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-green);
  text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
}

.hero-text {
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.8;
}

.hero-actions {
  pointer-events: all;
}

/* Video Section (Why FIND) */
.section-why {
  padding: var(--padding-section);
  background: var(--color-black);
  color: var(--color-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.why-preview video {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* Arrows / Staggered Images */
.section-staggered {
  padding: var(--padding-section);
  background: var(--color-offwhite);
  overflow: hidden;
}

.staggered-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

@media (min-width: 992px) {
  .staggered-container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 80vh;
  }
}

.staggered-img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  will-change: transform;
}

@media (min-width: 992px) {
  .staggered-img {
    position: absolute;
    width: 30vw;
    height: 45vw;
    max-height: 700px;
  }

  .staggered-img:nth-child(1) {
    left: 10%;
    z-index: 1;
    margin-top: -10vh;
  }

  .staggered-img:nth-child(2) {
    left: 35%;
    z-index: 2;
    margin-top: 5vh;
  }

  .staggered-img:nth-child(3) {
    left: 60%;
    z-index: 3;
    margin-top: -5vh;
  }
}

.staggered-text-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

/* Asymmetric Split Layout */
.section-asymmetric {
  padding: var(--padding-section);
  background: var(--color-white);
}

.asym-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 992px) {
  .asym-row {
    grid-template-columns: 1fr 1fr;
  }
}

.asym-sticky {
  position: sticky;
  top: 150px;
}

.list-item-large {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border-dark);
}

.bg-black .list-item-large {
  border-bottom: 1px solid var(--color-border);
}

/* Client Logo Typography Cards */
.client-logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-start;
}

.client-logo-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
  flex-grow: 1;
}

.client-logo-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-green);
  transform: translateY(-3px);
}

.client-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-white);
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

.list-index {
  display: block;
  font-size: 1rem;
  color: var(--color-gray);
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 500;
}

/* Services Cards (Hover Expand) */
.section-services {
  padding: 0;
  /* Full bleed */
  background: var(--color-black);
}

.service-cards-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 992px) {
  .service-cards-container {
    flex-direction: row;
    height: 80vh;
  }
}

.service-card {
  position: relative;
  flex: 1;
  height: 60vh;
  overflow: hidden;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  background: var(--color-black);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 992px) {
  .service-card {
    height: 100%;
  }

  .service-card:hover {
    flex: 1.5;
  }
}

.service-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.6s ease, transform 1s ease;
}

.service-card:hover .service-card-bg {
  opacity: 0.8;
  transform: scale(1.05);
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  color: var(--color-white);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.service-card-title {
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: #e07e14;
}

.service-card-text {
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  max-width: 400px;
}

.service-card:hover .service-card-text {
  opacity: 1;
  transform: translateY(0);
}

/* Testimonials Carousel */
.section-testimonials {
  padding: var(--padding-section);
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}

.testimonial-quote {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: 'Caveat', cursive;
  font-weight: 500;
  line-height: 1.2;
  color: var(--primary-green);
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.static-quote-mark {
  font-family: 'Outfit', sans-serif;
  font-size: 8rem;
  color: #e07e14;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  line-height: 1;
  z-index: 0;
}

.testimonial-author {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e07e14;
}

.swiper-pagination-bullet {
  background: var(--color-white);
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  background: var(--primary-green);
  opacity: 1;
}

/* Properties Grid */
.section-properties {
  padding: var(--padding-section);
  background: var(--color-white);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.property-card {
  background: var(--color-offwhite);
  border-radius: 20px;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: 1px solid var(--color-border-dark);
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.property-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.property-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.property-card:hover .property-img-wrapper img {
  transform: scale(1.05);
}

.property-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-green);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.property-content {
  padding: 30px;
}

.property-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--color-black);
}

.property-desc {
  color: var(--color-gray);
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.property-price {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary-green);
  margin-bottom: 20px;
}

.property-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-black);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.property-link:hover {
  color: var(--primary-green);
}

.property-link i {
  margin-left: 10px;
  transition: transform var(--transition-fast);
}

.property-link:hover i {
  transform: translateX(5px);
}

/* Team Grid */
.section-team {
  padding: var(--padding-section);
  background: var(--color-black);
  color: var(--color-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.team-card {
  text-align: center;
}

.team-img-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 25px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: border-color var(--transition-fast);
}

.team-card:hover .team-img-wrapper {
  border-color: var(--primary-green);
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.05);
}

.team-name {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--primary-green);
}

.team-role {
  color: #e07e14;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.team-social {
  margin-top: 15px;
}

.team-social a {
  color: var(--color-gray);
  margin: 0 10px;
  transition: color var(--transition-fast);
}

.team-social a:hover {
  color: var(--primary-green);
}

/* Projects Logo Cards */
.project-logo-card {
  background: #ffffff;
  border: 1px solid var(--color-border-dark);
  border-radius: 12px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.project-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.project-logo-card img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.85);
  transition: filter var(--transition-fast), transform var(--transition-fast);
}

.project-logo-card:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Certificates Grid */
.section-certificates {
  padding: var(--padding-section);
  background: var(--color-offwhite);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.cert-card {
  background: var(--color-white);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition-fast);
}

.cert-card:hover {
  transform: translateY(-10px);
}

.cert-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 5px;
}

/* Contact Bento Grid */
.section-contact {
  padding: var(--padding-section);
  background: var(--color-white);
}

.contact-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 992px) {
  .contact-bento-grid {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
  }
  
  .gallery-card {
    grid-row: span 2;
  }
}

.bento-card {
  background: var(--color-offwhite);
  border: 1px solid var(--color-border-dark);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Office Gallery */
.gallery-card {
  height: 100%;
  min-height: 500px;
}

.office-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 2px;
}

.office-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.office-gallery-grid img:hover {
  transform: scale(1.05);
  z-index: 10;
  position: relative;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: var(--color-white);
  pointer-events: none;
}

.gallery-overlay h3 {
  color: #e07e14;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
}

.gallery-overlay p {
  color: var(--primary-green);
  opacity: 1;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}

/* Contact Actions */
.actions-card {
  padding: 30px;
  gap: 15px;
}

.contact-action-btn {
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 15px;
  text-decoration: none;
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  transition: all var(--transition-fast);
}

.contact-action-btn i {
  font-size: 2rem;
  margin-right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-offwhite);
  transition: all var(--transition-fast);
}

.contact-action-btn.whatsapp i { color: #25D366; }
.contact-action-btn.phone i { color: #e07e14; }
.contact-action-btn.email i { color: #00D756; }

.contact-action-btn:hover {
  background: var(--color-offwhite);
  transform: translateX(5px);
}

.contact-action-btn:hover i {
  background: var(--color-white);
  transform: scale(1.1);
}

.contact-action-text {
  display: flex;
  flex-direction: column;
}

.contact-action-text span {
  font-size: 0.9rem;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-action-text strong {
  font-size: 1.2rem;
  color: var(--color-black);
  font-weight: 600;
}

/* Map Card */
.map-card {
  height: 300px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity var(--transition-fast);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.map-card:hover .map-overlay {
  opacity: 1;
}

/* Scroll Top Button */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 30px;
  bottom: 30px;
  z-index: 996;
  background: var(--primary-green);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all var(--transition-fast);
  color: var(--color-white) !important;
  font-size: 28px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

.scroll-top:hover {
  background: var(--color-black);
  color: var(--primary-green) !important;
  transform: translateY(-5px);
  border: 2px solid var(--primary-green);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* Footer */
.footer-custom-dark {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 100px 0 40px;
}

.footer-custom-dark a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-custom-dark a:hover {
  color: var(--primary-green);
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.newsletter-form {
  position: relative;
  max-width: 400px;
}

.newsletter-input {
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: white;
  padding-left: 0;
  padding-bottom: 10px;
}

.newsletter-input:focus {
  background: transparent;
  color: white;
  box-shadow: none;
  border-bottom-color: var(--primary-green);
}

.newsletter-btn {
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  position: absolute;
  right: 0;
  transition: color 0.3s ease;
}

.newsletter-btn:hover {
  color: var(--primary-green);
}

.contact-label {
  color: var(--color-gray);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.contact-value {
  font-size: 1.1rem;
  font-weight: 500;
}

.footer-nav-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.logo-text-footer {
  font-size: 4rem;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--primary-green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-sublinks a {
  margin-right: 20px;
  color: var(--color-gray);
  font-size: 0.9rem;
}

.copyright {
  color: var(--primary-green) !important;
}