/* =========================================================
   ARK Realty Homes - Cleaned + Responsive CSS (Full File)
   Fixes:
   - Consistent spacing across all screens (incl. Mac 14")
   - Removed duplicate/ conflicting rules
   - Unified container system
   - Fixed Stats section (.stat vs .stat-item mismatch)
   - Kept your existing design style + effects
   ========================================================= */

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* ================= ROOT ================= */
:root {
  --primary-blue: #1877F2;
  --dark-grey: rgb(66, 67, 66);
  --white: #ffffff;
  --cream: #f8f6f1;

  /* Global spacing system (auto scales) */
  --section-y: clamp(18px, 1vw, 40px);
  --section-y-sm: clamp(40px, 4.5vw, 70px);
  --container-x: clamp(16px, 3vw, 40px);
}

/* Mac 14" / mid-desktop tightening (optional but helpful) */
@media (min-width: 1200px) and (max-width: 1600px) {
  :root { --section-y: 40px; }
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
}

/* Global section spacing */
section {
  padding-block: var(--section-y);
}

/* Global container (single source of truth) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: var(--container-x);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  width: 100%;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: -10pc;
}

/* Logo */
.logo img {
  height: 55px;
  width: auto;
  display: block;
}

/* Nav links */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark-grey);
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-blue);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: 0.4s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile dropdown */
@media (max-width: 992px) {
  .hamburger { display: flex; }

  .nav-menu {
    position: absolute;
    top: 85px;
    right: var(--container-x);
    width: 220px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 18px;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ================= HERO (Full Screen + Overlay) ================= */
.hero{
  position: relative;
  width: 100%;
  /* Instead of min-height:100vh; use a responsive height */
  min-height: clamp(520px, 85vh, 900px);

  display: flex;
  align-items: center;
  overflow: hidden;

  padding-inline: var(--container-x);
  padding-block: clamp(32px, 6vh, 90px);

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* dark gradient overlay so text is readable */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.20),
    rgba(0,0,0,0.05)
  );
  z-index: 0;
}

.hero-content{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= GLASS CARD ================= */
.hero-text{
  width: clamp(280px, 38vw, 420px);
  min-height: auto;

  padding: clamp(16px, 2.4vw, 28px) clamp(14px, 2vw, 22px);
  border-radius: 18px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(6px, 1.2vw, 10px);

  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  color: #000000;
}
/* Make headings readable on glass */
.hero-text h1{ font-size: clamp(26px, 3vw, 44px); }
.hero-text h3{ font-size: clamp(14px, 1.4vw, 18px); }
.hero-text h2{ font-size: clamp(18px, 2vw, 28px); }
.hero-text p { font-size: clamp(13px, 1.2vw, 16px); }


.hero-text p{
  opacity: 0.92;
  line-height: 1.6;
}

/* wrapper */
.sticky-cta{
  position: fixed;
  right: 0;                 /* wall pe chipka do */
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* tab */
.side-tab{
  width: 34px;              /* slim */
  height: 155px;            /* vertical size */
  border-radius: 16px 0 0 16px;   /* right edge flat, left rounded */
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  box-shadow: 0 14px 35px rgba(0,0,0,0.25);
}

/* rotated vertical text like example */
.side-tab__text{
  display: inline-block;
  transform: rotate(-90deg);
  transform-origin: center;

  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* colors */
.side-tab--blue{ background: #1877F2; }
.side-tab--green{ background: #25D366; }

/* hover: little slide out */
.side-tab:hover{
  transform: translateX(-6px);
  transition: transform .25s ease;
}
/* default hidden */
.hero-card-mobile{ display:none; }

@media (max-width: 768px){

  /* ✅ HERO becomes image-only and properly visible */
  .hero{
    min-height: 35vh;          /* good phone banner height */
    padding-block: 0;
    align-items: stretch;

    background-size: cover;
    background-position: center top; /* helps avoid bad crop */
  }

  /* lighter overlay on phone so image looks better */
  .hero::before{
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.08),
      rgba(0,0,0,0)
    );
  }

  /* ✅ hide the glass card inside hero */
  .hero .hero-text{ display:none; }

  /* ✅ show glass card below hero */
  .hero-card-mobile{
    display:block;
    padding: 14px var(--container-x) 10px;
    margin-top: 12px;          /* completely down (no overlap) */
  }

  .hero-card-mobile .hero-text{
    width: min(92vw, 420px);
    margin: 0 auto;
  }
}

/* =========================================================
   WELCOME
   ========================================================= */
.welcome {
  background: #ffffff;
  text-align: center;
  padding-inline: var(--container-x);
}

.welcome-container {
  max-width: 1000px;
  margin: auto;
}

.welcome-heading {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--dark-grey);
  margin-bottom: clamp(24px, 3vw, 40px);
}

.welcome-card {
  max-width: 750px;
  margin: 0 auto clamp(28px, 4vw, 50px) auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
}

.welcome-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.welcome-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.welcome-description {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: clamp(28px, 4vw, 60px);
}

.welcome-stats {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 6vw, 80px);
  margin-bottom: clamp(22px, 4vw, 50px);
}

.stat h3 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--primary-blue);
}

.stat p {
  font-size: 15px;
  color: var(--dark-grey);
}

.welcome-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
/* ===== Primary Button Style ===== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 26px;
  border-radius: 8px;

  background: var(--primary-blue);
  color: #fff !important;
  text-decoration: none;

  font-weight: 600;
  font-size: 15px;
  letter-spacing: .3px;

  box-shadow: 0 8px 20px rgba(24,119,242,.25);
  transition: all .25s ease;
  border: none;
  cursor: pointer;
}

/* hover */
.btn:hover{
  background: #0f5ed7;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(24,119,242,.35);
}

/* click */
.btn:active{
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(24,119,242,.25);
}

@media (max-width: 768px) {
  .welcome-stats { flex-direction: column; gap: 28px; }
  .welcome-card img { height: 300px; }
}

@media (max-width: 576px) {
  .welcome-card img { height: 220px; }
}

/* =========================================================
   COMMITMENT SECTION
   ========================================================= */
.commitment-section {
  background: #f5f5f5;
  text-align: center;
  padding-inline: var(--container-x);
}

.commitment-title {
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.commitment-subtitle {
  font-size: 16px;
  color: var(--dark-grey);
  max-width: 600px;
  margin: 0 auto clamp(28px, 4vw, 60px) auto;
}

.commitment-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.commitment-card {
  position: relative;
  width: min(480px, 100%);
  height: 320px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  cursor: pointer;
}

.commitment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 119, 242, 0.92);
  color: #fff;
  padding: 40px 25px;
  transform: translateY(100%);
  transition: transform 0.6s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.card-overlay h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.card-overlay p {
  font-size: 14px;
  line-height: 1.6;
}

.commitment-card:hover img { transform: scale(1.1); }
.commitment-card:hover .card-overlay { transform: translateY(0); }

@media (max-width: 768px) {
  .commitment-cards { flex-direction: column; align-items: center; }
  .commitment-card { max-width: 500px; }
}

@media (max-width: 480px) {
  .commitment-card { height: 260px; }
  .card-overlay { padding: 25px; }
}

/* =========================================================
   PROPERTY CATEGORIES
   ========================================================= */
.property-categories {
  background: #ffffff;
  text-align: center;
  padding-inline: var(--container-x);
}

.property-container {
  max-width: 1300px;
  margin: 0 auto;
}

.property-title {
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.property-subtitle {
  font-size: 16px;
  color: var(--dark-grey);
  max-width: 600px;
  margin: 0 auto clamp(30px, 4vw, 70px) auto;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.property-card {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  cursor: pointer;
}

.property-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.property-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 119, 242, 0.92);
  color: #fff;
  padding: 30px 20px;
  transform: translateY(100%);
  transition: transform 0.6s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.property-overlay h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.property-overlay p {
  font-size: 14px;
  line-height: 1.6;
}

.property-card:hover img { transform: scale(1.1); }
.property-card:hover .property-overlay { transform: translateY(0); }

@media (max-width: 1024px) {
  .property-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .property-grid { grid-template-columns: 1fr; }
  .property-card { height: 260px; }
}

/* =========================================================
   WHY CHOOSE
   ========================================================= */
.why-choose {
  background: #f8f6f1;
  text-align: center;
  padding-inline: var(--container-x);
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-title {
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.why-subtitle {
  font-size: 16px;
  color: var(--dark-grey);
  max-width: 650px;
  margin: 0 auto clamp(30px, 4vw, 70px) auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.why-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 4px;
  width: 100%;
  background: var(--primary-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark-grey);
}

.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .why-card { padding: 30px 20px; }
}

/* ================= LOCATION SECTION (cards like screenshot) ================= */
.location-section{
  background: #fbf7ef;                 /* soft cream */
  padding-block: var(--section-y);
}

.location-wrap{
  display: grid;
  grid-template-columns: 1fr 1.4fr;    /* left heading + right cards */
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}

/* Left heading */
.location-kicker{
  display: inline-block;
  font-weight: 700;
  letter-spacing: 3px;
  color: #c6463c;                       /* warm red */
  font-size: 14px;
  margin-bottom: 12px;
}

.location-head h2{
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 14px;
}

.location-head p{
  color: #475569;
  max-width: 520px;
  line-height: 1.65;
  font-size: 15px;
}

/* Cards grid */
.location-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 26px;
}

/* Each card row */
.loc-card{
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Icon container */
.loc-icon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #f3e6c9;                 /* pale sand */
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
}

.loc-icon img{
  width: 28px;                          /* your icon size */
  height: 28px;
  object-fit: contain;
  display: block;
}

/* Text */
.loc-text{
  font-size: 16px;
  color: #0f172a;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px){
  .location-wrap{
    grid-template-columns: 1fr;
  }
  .location-grid{
    grid-template-columns: 1fr;         /* stack cards */
  }
}
/* =========================================================
   FEATURED PROJECTS
   ========================================================= */
.featured-projects {
  background: #ffffff;
  text-align: center;
  padding-inline: var(--container-x);
}

.featured-container {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-title {
  font-size: clamp(26px, 3.7vw, 38px);
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.featured-subtitle {
  font-size: 16px;
  color: var(--dark-grey);
  max-width: 650px;
  margin: 0 auto clamp(30px, 4vw, 80px) auto;
}

.project-card {
  position: relative;
  height: 420px;
  margin-bottom: clamp(28px, 4vw, 60px);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(24px, 4vw, 60px);
  color: #ffffff;
  text-align: left;
}

.project-overlay h3 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 15px;
}

.project-overlay p {
  font-size: 16px;
  margin-bottom: 25px;
  max-width: 400px;
}

.project-btn {
  padding: 12px 28px;
  background: #ffffff;
  color: var(--primary-blue);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s ease;
}

.project-btn:hover {
  background: var(--primary-blue);
  color: #ffffff;
}

.project-card:hover img { transform: scale(1.08); }

@media (max-width: 768px) {
  .project-card { height: 300px; }
  .project-overlay p { font-size: 14px; }
}

/* =========================================================
   STRATEGIC PARTNER
   ========================================================= */
.strategic-partner {
  background: linear-gradient(135deg, #F9F6EF, #F3F0E8);
  padding-inline: var(--container-x);
}

.partner-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: #ffffff;
  padding: clamp(24px, 4vw, 48px);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

.partner-logo img {
  width: 180px;
  height: auto;
}

.partner-label {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4267B2;
  font-weight: 600;
  margin-bottom: 1rem;
}

.partner-content h2 {
  font-size: clamp(20px, 2.8vw, 2.2rem);
  color: var(--dark-grey);
  margin-bottom: 1rem;
  font-weight: 600;
}

.partner-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  max-width: 500px;
}

@media (max-width: 992px) {
  .partner-card {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .partner-content p { max-width: 100%; }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-section {
  background: #F9F6EF;
  padding-inline: var(--container-x);
}

.contact-title {
  text-align: center;
  font-size: clamp(22px, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: rgb(66,67,66);
}

.contact-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(26px, 4vw, 4rem) auto;
  color: #555;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: #ffffff;
  padding: clamp(20px, 3vw, 3rem);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  transition: 0.4s ease;
}

.contact-card:hover { transform: translateY(-6px); }

.contact-info h3,
.contact-form h3 {
  font-size: clamp(20px, 2.5vw, 2rem);
  margin-bottom: 1.6rem;
  color: var(--primary-blue);
  font-weight: 600;
}

.contact-info p {
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
  color: var(--dark-grey);
  line-height: 1.8;
}

/* Buttons (shine) */
.btn-whatsapp,
.btn-call,
.btn-submit {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
  transition: 0.3s ease;
  z-index: 1;
}

.btn-whatsapp span,
.btn-call span,
.btn-submit span {
  position: relative;
  z-index: 2;
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  border: 2px solid #25D366;
}

.btn-call {
  background: var(--primary-blue);
  color: #ffffff;
  border: 2px solid var(--primary-blue);
}

.btn-submit {
  background: var(--primary-blue);
  color: #ffffff;
  border: 2px solid var(--primary-blue);
  cursor: pointer;
}

/* Shine layer */
.btn-whatsapp::before,
.btn-call::before,
.btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-25deg);
  transition: 0.5s ease;
  z-index: 0;
}

.btn-whatsapp:hover::before,
.btn-call:hover::before,
.btn-submit:hover::before { left: 120%; }

/* Form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: #4267B2; }

/* Map */
.map-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

/* Responsive contact */
@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; }
  .map-card iframe { height: 320px; }
}
@media (max-width: 768px) {
  .contact-buttons { display: flex; flex-direction: column; gap: 1rem; }
  .btn-whatsapp, .btn-call { width: 100%; text-align: center; }
  .map-card iframe { height: 260px; }
}
@media (max-width: 480px) {
  .map-card iframe { height: 220px; }
}

/* =========================================================
   SOCIAL SECTION (Icons Version Only)
   ========================================================= */
.social-section {
  background: #ffffff;
  text-align: center;
  padding-inline: var(--container-x);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-icon {
  position: relative;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary-blue);
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s ease;
}

.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.4);
  transform: skewX(-25deg);
  transition: 0.5s;
  pointer-events: none;
}

.social-icon:hover::before { left: 120%; }

.social-icon:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Hover colors */
.whatsapp:hover { background:#25D366; border-color:#25D366; color:#fff; }
.facebook:hover { background:#1877F2; border-color:#1877F2; color:#fff; }
.instagram:hover { background:#E4405F; border-color:#E4405F; color:#fff; }
.linkedin:hover { background:#0A66C2; border-color:#0A66C2; color:#fff; }
.youtube:hover { background:#FF0000; border-color:#FF0000; color:#fff; }

/* Social responsive */
@media (min-width: 1200px) {
  .social-icon { width: 85px; height: 85px; font-size: 24px; }
}
@media (max-width: 768px) {
  .social-icon { width: 65px; height: 65px; font-size: 20px; }
}
@media (max-width: 480px) {
  .social-icon { width: 55px; height: 55px; font-size: 18px; }
}

/* =========================================================
   STATS SECTION (FIXED: .stat in HTML)
   ========================================================= */
.stats-section {
  background: #f9f6f1;
  padding-inline: var(--container-x);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stats-container .stat {
  background: #fff;
  border-radius: 16px;
  padding: 28px 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.stats-container .stat h3 {
  font-size: clamp(26px, 2.5vw, 40px);
  color: var(--primary-blue);
  margin-bottom: 8px;
  font-weight: 700;
}

.stats-container .stat p {
  font-size: 15px;
  color: var(--dark-grey);
}

@media (max-width: 992px) {
  .stats-container { grid-template-columns: 1fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer-section {
  background: #111;
  color: #fff;
  padding: 60px 20px 30px;
  text-align: center;
}

.footer-container {
  max-width: 900px;
  margin: auto;
  padding-inline: var(--container-x);
}

.footer-description {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}