/* ═══════════════════════════════════════════════
   BAHADIR ARSA OFİSİ – Custom Styles
   ═══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --primary: #0d8a3e;
  --primary-dark: #076b2e;
  --primary-light: #18c95a;
  --accent: #e02020;
  --accent-dark: #b81818;
  --dark: #061409;
  --dark-2: #09180c;
  --dark-3: #0f2415;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --text-muted: #8fa89a;
  --text-body: #c8dcd0;
  --white: #ffffff;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Global Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.section-padding {
  padding: 90px 0;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ═══════════════ NAVBAR ═══════════════ */
#mainNav {
  background: transparent;
  padding: 18px 0;
  transition: var(--transition);
  z-index: 1000;
}

#mainNav.scrolled {
  background: rgba(13, 31, 20, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--glass-border);
}

/* ── Navbar Logo ── */
.navbar-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
  background: #ffffff;
  padding: 4px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#mainNav.scrolled .navbar-logo {
  height: 42px;
}

/* ── Footer Logo ── */
.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  padding: 6px 16px;
  border-radius: 8px;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.navbar-nav .nav-link:hover {
  color: var(--accent) !important;
  background: var(--glass);
}

.btn-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff !important;
  border: none;
  padding: 9px 22px !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(26, 107, 58, 0.4);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 107, 58, 0.5);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.navbar-toggler {
  border: 1px solid var(--glass-border);
  padding: 8px 12px;
  background: rgba(13, 31, 20, 0.6);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(26, 107, 58, 0.4);
}

.navbar-toggler .toggler-icon i {
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none !important;
  }
}

/* ═══════════════ HERO ═══════════════ */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a1a0e 0%, #0d2416 40%, #0a1f10 100%);
  overflow: hidden;
}

/* ── Vimeo Video Background ── */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
  opacity: 0.55;
  transition: opacity 1s ease-in;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26, 107, 58, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(39, 163, 86, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(245, 166, 35, 0.08) 0%, transparent 40%);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-light);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.4;
  }

  90% {
    opacity: 0.4;
  }

  100% {
    transform: translateY(-10vh) rotate(720deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(224, 32, 32, 0.15);
  border: 1px solid rgba(224, 32, 32, 0.3);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.text-accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  margin: 1rem auto 0;
  line-height: 1.8;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(26, 107, 58, 0.4);
  display: inline-flex;
  align-items: center;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(26, 107, 58, 0.6);
  color: #fff;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  color: #fff;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  backdrop-filter: blur(10px);
  max-width: 560px;
  margin: 0 auto;
}


.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  /* red accent */
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--glass-border);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  z-index: 1;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ═══════════════ SECTION HEADERS ═══════════════ */
.section-tag {
  display: inline-block;
  background: rgba(26, 107, 58, 0.2);
  border: 1px solid rgba(26, 107, 58, 0.4);
  color: var(--primary-light);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════ FILTER BAR ═══════════════ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.filter-btn {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-body);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 107, 58, 0.4);
}

/* ═══════════════ LISTING CARDS ═══════════════ */
.listing-card {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.listing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 107, 58, 0.4);
}

.listing-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.listing-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
}

.listing-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 107, 58, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.listing-card:hover .listing-img-overlay {
  opacity: 1;
}

.listing-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.badge-arsa {
  background: var(--primary);
  color: #fff;
}

.badge-hobi {
  background: #2d7d46;
  color: #fff;
}

.badge-tarla {
  background: #795c28;
  color: #fff;
}

.badge-dukkan {
  background: #1a4d6b;
  color: #fff;
}

.listing-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.listing-location {
  font-size: 0.8rem;
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.listing-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}

.listing-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.listing-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.listing-features span {
  background: rgba(26, 107, 58, 0.15);
  border: 1px solid rgba(26, 107, 58, 0.3);
  color: var(--primary-light);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.listing-footer {
  margin-top: auto;
}

.btn-listing {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary-light);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.btn-listing:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 107, 58, 0.4);
}

/* CTA Card */
.cta-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark-3));
  border: 1px solid rgba(26, 107, 58, 0.3);
  min-height: 400px;
}

.cta-icon {
  width: 70px;
  height: 70px;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
}

.cta-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.cta-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.btn-cta-card {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border: none;
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.btn-cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.btn-cta-card-outline {
  background: transparent;
  color: var(--text-body);
  border: 1px solid var(--glass-border);
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.btn-cta-card-outline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: var(--glass);
}

/* ═══════════════ ABOUT ═══════════════ */
.about-section {
  background: var(--dark-2);
}

.about-img-wrapper {
  position: relative;
  height: 480px;
}

.about-img-main {
  width: 85%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-badge {
  position: absolute;
  bottom: 30px;
  right: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 130px;
}

.badge-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.badge-number sup {
  font-size: 1.2rem;
}

.badge-label {
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.9;
}

.about-img-card {
  position: absolute;
  top: 30px;
  right: 0;
  background: rgba(13, 31, 20, 0.95);
  border: 1px solid var(--glass-border);
  color: var(--text-body);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(20px);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.about-img-card i {
  color: var(--primary-light);
  font-size: 1.1rem;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.about-text strong {
  color: var(--accent);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.highlight-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(26, 107, 58, 0.2);
  border: 1px solid rgba(26, 107, 58, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-light);
}

.highlight-item strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.highlight-item span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 107, 58, 0.5);
  color: #fff;
}

/* ═══════════════ SERVICES ═══════════════ */
.services-section {
  background: var(--dark);
}

.service-card {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 107, 58, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(26, 107, 58, 0.3);
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ═══════════════ CTA BANNER ═══════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0d3320 50%, var(--dark-3) 100%);
  border-top: 1px solid rgba(26, 107, 58, 0.2);
  border-bottom: 1px solid rgba(26, 107, 58, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(26, 107, 58, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(39, 163, 86, 0.2) 0%, transparent 60%);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
}

.cta-banner-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-top: 10px;
}

/* ═══════════════ CONTACT ═══════════════ */
.contact-info-card {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px;
}

.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(26, 107, 58, 0.2);
  border: 1px solid rgba(26, 107, 58, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-light);
}

.contact-info-item strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-info-item a,
.contact-info-item span {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.contact-info-item a:hover {
  color: var(--primary-light);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* Contact Form */
.contact-form .form-label {
  color: var(--text-body);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.contact-form .form-control,
.contact-form .form-select {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.92rem;
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: var(--dark-3);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 107, 58, 0.2);
  color: var(--white);
}

.contact-form .form-control::placeholder {
  color: var(--text-muted);
}

.contact-form .form-select option {
  background: var(--dark-3);
  color: var(--white);
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26, 107, 58, 0.5);
  color: #fff;
}

/* ═══════════════ FOOTER ═══════════════ */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--glass-border);
  padding-top: 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-links span {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-contact i {
  color: var(--primary-light);
  margin-top: 3px;
  min-width: 14px;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 20px 0;
  margin-top: 30px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: center;
  margin: 0;
}

/* ═══════════════ FLOAT BUTTONS ═══════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.12);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(10, 20, 13, 0.95);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  border: 1px solid var(--glass-border);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-body);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  transition: var(--transition);
  display: none;
  align-items: center;
  justify-content: center;
}

.back-to-top.show {
  display: flex;
}

.back-to-top:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

/* ═══════════════ LISTING HIDDEN ═══════════════ */
.listing-item.hidden {
  display: none;
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 991.98px) {
  .about-img-wrapper {
    height: 320px;
  }

  #navbarNav {
    background: rgba(10, 26, 14, 0.98);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: 12px;
    border: 1px solid var(--glass-border);
  }

  .hero-stats {
    padding: 20px;
  }

  .stat-item {
    padding: 0 16px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .about-img-badge {
    right: 10px;
    bottom: 20px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    width: 80%;
    height: 1px;
  }

  .hero-content {
    padding: 100px 0 60px;
  }
}

@media (max-width: 575.98px) {
  .filter-bar {
    gap: 6px;
  }

  .filter-btn {
    padding: 7px 14px;
    font-size: 0.82rem;
  }

  .listing-img {
    height: 190px;
  }

  .cta-card {
    min-height: 300px;
  }
}