@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');
/* BRAND TOKENS */
:root {
  --primary:    #4A90D9;
  --deep:       #2C6FAC;
  --sky:        #BFD9F2;
  --black:      #0D1B2A;
  --slate:      #5A7A99;
  --bg-light:   #EBF4FC;
}

/* GLOBAL FONTS */
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--black);
  width: 100%;
  overflow-x: hidden;
  padding-top: 58px;
}

html {
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6,
.logo, .lw-hero-content h1,
.lw-section-header h2,
.cf-panel-title, .cf-form-title,
.lw-footer-brand-name {
  font-family: 'Montserrat', sans-serif;
}

/* SCROLL MARGIN FOR STICKY HEADER */
section, .cf-section {
  scroll-margin-top: 70px;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 60px;
  background: var(--bg-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: padding 0.3s, box-shadow 0.3s;
}

/*LOGO REDIRECT*/
a img {
    border: none; /* Removes old-style browser border */
    text-decoration: none; /* Ensures no underlines */
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  object-fit: cover;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  margin-left: 28px;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover { 
  color: var(--primary);
  border-bottom: 2px solid var(--primary); 
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background 0.2s;
}

.hamburger:hover {
  background: rgba(37, 99, 235, 0.1);
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--primary);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
  nav {
    display: none;
  }

  nav.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-light);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 99;
  }

  nav.nav-open a {
    margin: 8px 20px;
    padding: 12px 20px;
    text-align: center;
    border-bottom: none;
    border-radius: 8px;
    color: #555;
  }

  nav.nav-open a:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
  }

  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 98;
  }

  .nav-backdrop.active {
    display: block;
  }
}

/* HERO */
.lw-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background: url('../img/HeroImage.jpg') center/cover no-repeat;
}

.lw-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(41,128,185,0.75) 50%, rgba(41,128,185,0.25));
}

.lw-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 60px 60px;
  color: #fff;
}

.lw-hero-tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--sky);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.lw-hero-content h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.lw-hero-sub {
  font-size: 1.1rem;
  color: #f1f5f9;
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 500;
}

.lw-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.lw-btn-primary {
  padding: 14px;
  background: var(--deep);
  color: #fff;
  border: 2px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.lw-btn-primary:hover {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  transform: translateY(-2px);
}

.lw-btn-box {
  padding: 14px;
  background: #fff;
  color: var(--black);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.lw-btn-outline {
  padding: 12px;
  border: 2px solid var(--deep);;
  color: var(--deep);;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  display: block;
  width: calc(100% - 44px);
  margin: 0 22px 22px;
  border: none;
  cursor: pointer;


}

.lw-btn-outline:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52,152,219,0.35);
}

.lw-btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* STATS BAR */
.lw-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  background: #fff;
  flex-wrap: wrap;
}

.lw-stat {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
  color: var(--black);
}

.lw-stat:last-child { border-right: none; }

.lw-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--slate);
  line-height: 1;
  margin-bottom: 6px;
}

.lw-stat-label {
  font-size: 0.85rem;
  opacity: 0.75;
  text-align: center;
}

/* SECTION SHARED */
.lw-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
}

.lw-section-header {
  text-align: center;
  margin-bottom: 52px;
}

.lw-why .lw-section-header {
  margin-bottom: 16px;
}

.lw-why .lw-section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.lw-why .lw-section-sub {
  font-size: 0.85rem;
}

.lw-section-header--white h2,
.lw-section-header--white { color: #fff; }

.lw-section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}


.lw-section-tag h2  {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 14px;
}


.lw-section-tag--light { color: var(--sky); }

.lw-section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.lw-section-sub {
  font-size: 1rem;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.lw-section-sub--light { color: #cbd5e1; }

/* CAROUSEL */
.lw-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  padding-bottom: 12px;
  scrollbar-width: none;
  align-items: stretch;
}

.lw-carousel::-webkit-scrollbar { display: none; }

/* CARD */
.lw-dev-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
}

@media (max-width: 768px) {
  .lw-dev-card { flex: 0 0 80vw; }
}

.lw-card-view-btn {
  display: block;
  width: calc(100% - 44px);
  margin: 0 22px 22px;
  padding: 12px;
  background: var(--deep);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
}

.lw-card-view-btn:hover {
  background: var(--deep);
  transform: translateY(-2px);
}

.lw-dev-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(37,99,235,0.15);
}

.lw-dev-price-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
  margin-top: auto;
}

.lw-dev-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  pointer-events: none;
  draggable: false;
  user-select: none;
}

@keyframes badgeBlink {
  0%, 49%, 100% {
    opacity: 1;
  }
  50%, 99% {
    opacity: 0.4;
  }
}

.lw-dev-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #25D366;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 12px;
  border-radius: 4px;
  transition: opacity 0.2s;
  animation: badgeBlink 1.5s infinite;
}

.lw-dev-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lw-dev-location {
  font-size: 0.82rem;
  color: var(--slate);
  margin-bottom: 6px;
}

.lw-dev-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.lw-dev-desc {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.lw-dev-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.lw-dev-tags span {
  background: var(--bg-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.lw-dev-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
  margin-top: auto;
}

.lw-dev-price-row > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lw-card-btn {
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}

.lw-dev-price-label {
  font-size: 0.75rem;
  color: var(--slate);
  margin: 0 0 2px 0;
}

.lw-dev-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}

/* WHY INVEST */
.lw-why {
  background: linear-gradient(135deg, var(--deep), var(--primary));
  padding: 36px 40px;
  text-align: center;
}

.lw-why-trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 900px;
  margin: 0 auto 32px;
}

.lw-trust-item {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #e0f2fe;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 30px;
  letter-spacing: 0.5px;
}

.lw-why-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.lw-why-step {
  flex: 1;
  min-width: 120px;
  max-width: 180px;
  text-align: center;
  padding: 16px 12px;
  color: #fff;
}

.lw-why-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.lw-why-step h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.lw-why-step p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.lw-why-step-arrow {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.4);
  align-self: center;
  padding: 0 2px;
  margin-top: -16px;
}

.lw-why-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.lw-btn-why {
  padding: 11px 26px;
  background: #fff;
  color: var(--deep);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.lw-btn-why:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
}

.lw-btn-why--ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
}

.lw-btn-why--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* PROCESS */
.lw-process {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 40px;
}

.lw-process .lw-section-header {
  margin-bottom: 16px;
}

.lw-process .lw-section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.lw-process .lw-section-tag {
  font-size: 0.72rem;
}

.lw-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 0;
}

.lw-step {
  flex: 1;
  min-width: 120px;
  max-width: 180px;
  padding: 16px 12px;
  text-align: center;
}

.lw-step-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: #dbeafe;
  line-height: 1;
  margin-bottom: 10px;
}

.lw-step h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.lw-step p {
  font-size: 0.78rem;
  color: var(--slate);
  line-height: 1.5;
}

.lw-step-arrow {
  font-size: 1.4rem;
  color: var(--sky);
  align-self: center;
  padding: 0 2px;
  margin-top: -16px;
}

/* TESTIMONIALS */
.lw-testimonials {
  background: var(--deep);
  padding: 80px 40px;
  text-align: center;
}

.lw-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.lw-testi-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 30px 24px;
  text-align: left;
  color: var(--black);
  display: flex;
  flex-direction: column;
}

.lw-testi-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
  color: var(--slate);
  flex: 1;
}

.lw-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lw-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lw-testi-author strong {
  display: block;
  color: #555;
  font-size: 0.9rem;
}

.lw-testi-author span {
  font-size: 0.78rem;
  color: var(--slate);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  header {
    padding: 12px 16px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  header.header-scrolled {
    padding: 12px 16px;
    align-items: center;
    justify-content: space-between;
  }
  
  nav {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .lw-hero-content { padding: 40px 24px; }
  .lw-hero-content h1 { font-size: 2.2rem; }
  .lw-dev-card--featured { grid-column: span 1; }
  .lw-step-arrow { display: none; }
  .lw-why-step-arrow { display: none; }
  .lw-section { padding: 0 20px; }
  .lw-why, .lw-testimonials, .lw-cta { padding: 60px 20px; }

  .lw-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .lw-stat {
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
  }

  .lw-stat:nth-child(2n) { border-right: none; }
  .lw-stat:nth-child(3),
  .lw-stat:nth-child(4) { border-bottom: none; }
}

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: transparent;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.2s;
  cursor: pointer;
  user-select: none;
}
.wa-float img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
}

.wa-float:hover .wa-float-label {
  opacity: 1;
  transform: translateY(0);
}

.wa-float-label {
  position: absolute;
  bottom: 64px;
  right: 0;
  background: #fff;
  color: #333;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}

.wa-float-label::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 18px;
  width: 10px;
  height: 10px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

/* PROPERTY MODAL */
.prop-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s;
}

.prop-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.prop-modal {
  background: #fff;
  border-radius: 14px;
  max-width: 640px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s;
  display: flex;
  flex-direction: column;
}

.prop-modal-overlay.active .prop-modal {
  transform: translateY(0);
}

.prop-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.prop-modal-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  background: #000;
  border-radius: 14px 14px 0 0;
  display: block;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.prop-modal-slideshow {
  position: relative;
}

.prop-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}

.prop-slide-btn:hover { background: rgba(0,0,0,0.7); }
.prop-slide-btn--prev { left: 12px; }
.prop-slide-btn--next { right: 12px; }

.prop-slide-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.prop-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.prop-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.prop-modal-body {
  padding: 24px;
}

.prop-modal-location {
  font-size: 0.82rem;
  color: var(--slate);
  margin-bottom: 6px;
}

.prop-modal-body h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}

.prop-modal-desc {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 16px;
}

.prop-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.prop-modal-tags span {
  background: var(--bg-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.prop-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
  flex-wrap: wrap;
}

.prop-modal-footer .lw-btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 11px 24px;
  white-space: nowrap;
}

.prop-modal-footer .lw-btn-primary:hover {
  background: var(--deep);
}

/* FOOTER */
.lw-footer {
  background: var(--black);
  color: var(--slate);
  border-top: 3px solid var(--primary);
}

.lw-footer-top {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.2fr 1.2fr;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 40px 24px;
}

.lw-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.lw-footer-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
}

.lw-footer-brand-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.lw-footer-about {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 14px;
  color: var(--slate);
}

.lw-footer-socials {
  display: flex;
  gap: 8px;
}

.lw-footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--black);
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.lw-footer-socials a:hover {
  background: var(--primary);
  color: #fff;
}

.lw-footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--black);
  text-align: left;
}

.lw-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  margin: 0;
}

.lw-footer-col ul li {
  font-size: 0.83rem;
  line-height: 1.6;
  color: var(--slate);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}

.lw-footer-col ul li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}

.lw-footer-col ul li a {
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}

.lw-footer-col ul li a:hover { color: var(--sky); }

.lw-footer-bottom {
  border-top: 1px solid var(--black);
  padding: 18px 40px;
  text-align: center;
  font-size: 0.78rem;
  color: #334155;
}

@media (max-width: 900px) {
  .lw-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 48px 24px 36px;
  }
}

@media (max-width: 560px) {
  .lw-footer-top { grid-template-columns: 1fr; }
  .lw-footer-bottom { flex-direction: column; text-align: center; padding: 20px 24px; }
}

.section-divider {
  height: 60px;
  background: #fff;
}

/* CONTACT SECTION — SPLIT PANEL */
.cf-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

/* LEFT — image + info */
.cf-panel {
  position: relative;
  background: url('../img/connect.jpg') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
}

.cf-panel-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(160deg, rgba(15,23,42,0.55) 
  0%, rgba(30,58,138,0.88) 100%);*/
}

.cf-panel-content {
  position: relative;
  z-index: 1;
  padding: 60px 52px;
  color: #fff;
}

.cf-panel-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 16px;
}

.cf-panel-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 16px;
  color: #fff;
}

.cf-panel-sub {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 40px;
}

.cf-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cf-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: #e2e8f0;
  line-height: 1.5;
}

.cf-detail svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #60a5fa;
}

.cf-detail a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.2s;
}

.cf-detail a:hover { color: var(--sky); }

/* RIGHT — form */
.cf-form-panel {
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
}

.cf-form {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(15,23,42,0.10);
  padding: 32px 28px;
}

.cf-form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 6px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cf-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.cf-req { color: #ef4444; }

.cf-group input,
.cf-group select,
.cf-group textarea {
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--black);
  background: #f8fafc;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.cf-group textarea { resize: vertical; min-height: 110px; }

.cf-error {
  font-size: 0.75rem;
  color: #ef4444;
  min-height: 14px;
}

.cf-group input.cf-invalid,
.cf-group textarea.cf-invalid { border-color: #ef4444; }

.cf-submit {
  padding: 14px;
  background: var(--deep);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}

.cf-submit:hover {
  background: var(--deep);
  transform: translateY(-2px);
}

.cf-success {
  display: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 0;
}

@media (max-width: 960px) {
  .cf-section { grid-template-columns: 1fr; }
  .cf-panel { min-height: 340px; align-items: flex-end; }
  .cf-panel-content { padding: 40px 32px; }
  .cf-form-panel { padding: 32px 20px; }
}

@media (max-width: 560px) {
  .cf-row { grid-template-columns: 1fr; }
  .cf-form-panel { padding: 24px 16px; }
  .cf-panel-content { padding: 32px 20px; }
  .cf-panel-title { font-size: 1.5rem; }
}
