* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* =========================
   BASE FLOATING BAR
========================= */

.social-float {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
  will-change: transform;
}

/* =========================
   SOCIAL BUTTON
========================= */

.social-link {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);

  -webkit-tap-highlight-color: transparent;
}

.social-link svg {
  display: block;
}

.social-link:hover {
  transform: translateX(-4px) scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* =========================
   LABEL TOOLTIP
========================= */

.social-label {
  display: none;
  position: absolute;
  right: 52px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
}

/* Only show hover on real hover devices */
@media (hover: hover) {
  .social-link:hover .social-label {
    display: block;
  }
}

/* =========================
   MOBILE (SAFARI SAFE)
========================= */

@media (max-width: 640px) {
  .social-float {
    bottom: 24px;
    top: auto;
    right: auto;
    left: 50%;
    transform: translate3d(-50%, 0, 0);

    flex-direction: row;
    gap: 6px;

    padding: 10px 14px;
    border-radius: 999px;

    background-color: rgba(255,255,255,0.96);
    border: 1px solid rgba(255,255,255,0.8);

    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);

    box-shadow: 0 8px 32px rgba(0,0,0,0.14),
                0 2px 8px rgba(0,0,0,0.08);
  }

  .social-link {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: none;
  }

  .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.13);
  }

  .social-label {
    display: none !important;
  }
}

body {
  color: #fff;
  overflow-x: hidden;
  background: #020404;
}

/* 🌈 Animated Gradient Background */
body::before {
  content: "";
  position: fixed;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle at 30% 30%, #0b1d16, #020404, #000);
  animation: moveBg 15s ease-in-out infinite;
  z-index: -2;
}

/* ✨ Noise overlay (premium feel) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.05;
  z-index: -1;
}

@keyframes moveBg {
  0% { transform: translate(0,0); }
  50% { transform: translate(8%, 8%); }
  100% { transform: translate(0,0); }
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
}

.logo {
  font-size: 24px;
  font-weight: 600;
}

.logo span {
  color: #f5b000;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #aaa;
  transition: 0.3s;
}

nav a:hover {
  color: #fff;
}

.cta {
  background: #f5b000;
  color: #000;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.cta:hover {
  transform: scale(1.05);
}

/* HERO */
.hero {
  text-align: center;
  padding: 30px 20px;
}

/* Badge */
.badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 30px;
  color: #f5b000;
}

/* Heading */
.hero h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
}

/* ✨ Highlight + Animated Underline */
.highlight {
  color: #f5b000;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0%;
  height: 6px;
  background: #f5b000;
  border-radius: 10px;
  animation: underlineGrow 1.2s ease forwards;
  animation-delay: 1.2s;
}

@keyframes underlineGrow {
  to {
    width: 100%;
  }
}

/* Paragraph */
.hero p {
  max-width: 700px;
  margin: 30px auto;
  color: #aaa;
  font-size: 18px;
  line-height: 1.6;
}

/* 🎬 Animations (Framer-style) */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* 📱 Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }

  nav {
    display: none;
  }

  .navbar {
    padding: 20px;
  }
}

/*The CTA*/
/* CTA GROUP */
.cta {
  text-decoration: none;
}

.cta-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 10px; /* 👈 small gap only */
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.btn-primary,
.btn-secondary {
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #f5b000, #ffcc33);
  color: #000;
  border: none;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(245, 176, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 40px rgba(245, 176, 0, 0.5);
}

/* SECONDARY BUTTON (glass style) */
.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ddd;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 768px) {
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/*Services*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0d1a12;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}

.services-section {
  padding: 60px 60px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #c9a227;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.heading span {
  color: #c9a227;
}

.subheading {
  font-size: 17px;
  color: #a0b0a5;
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 50px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: linear-gradient(145deg, #162318, #0f1c14);
  border: 1px solid #2a3d2e;
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.12);
  border-color: #c9a227;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}

.icon-box {
  width: 60px;
  height: 60px;
  background-color: #1e2e1e;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box svg {
  width: 28px;
  height: 28px;
  color: #c9a227;
  stroke: #c9a227;
  fill: none;
}

.badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #c9a227;
  text-transform: uppercase;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.card-desc {
  font-size: 15px;
  color: #8fa898;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .services-section {
    padding: 40px 24px 60px;
  }
}

/*Services - Second Row */
.cards-grid + .cards-grid {
  margin-top: 24px;
}

.card--muted .icon-box svg {
  stroke: #7a9e82;
  color: #7a9e82;
  fill: none;
}

.card--muted:hover {
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.05);
  border-color: #3d5c42;
}

/*Boost*/
/* Hero Section */
.hero-section {
  padding: 80px 60px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #162318;
  border: 3px solid #2a3d2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #c9a227;
  letter-spacing: 2px;
  margin-bottom: 60px;
  box-shadow: 0 0 0 6px #1a2e1e;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-heading {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
}

.hero-desc {
  font-size: 17px;
  color: #8fa898;
  line-height: 1.8;
  max-width: 520px;
}

.hero-desc strong {
  color: #c9a227;
  font-weight: 700;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background-color: #162318;
  border: 1px solid #2a3d2e;
  border-radius: 50px;
  padding: 14px 20px 14px 28px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  width: fit-content;
}

.cta-btn:hover {
  background-color: #1e2e1e;
  border-color: #c9a227;
  transform: translateY(-2px);
}

.cta-btn em {
  font-style: italic;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.avatar-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #c9a227;
  overflow: hidden;
  flex-shrink: 0;
}

.avatar-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-photo {
  width: 100%;
  max-width: 480px;
  height: 520px;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  filter: grayscale(20%);
  border: 1px solid #2a3d2e;
}

@media (max-width: 900px) {
  .hero-section {
    padding: 60px 24px 60px;
  }
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-right {
    order: -1;
  }
  .hero-photo {
    height: 360px;
  }
}

/*Process*/
.process-section {

  padding: 80px 24px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.process-inner {
  max-width: 100%;
  margin: 0;
}

.process-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9a227; 
  margin-bottom: 12px;
}
.process-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.process-subtitle {
  color: #6B7280;
  font-size: 15px;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 48px;
}

/* CARDS */
.step-card {
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  background: #FAFAFA;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 10px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.step-card.completed {
  background: var(--light);
  border-color: var(--color-44);
}
.step-card.active {
  background: #fff;
  border-color: var(--color);
  box-shadow: 0 16px 50px var(--color-10);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  background: #E5E7EB;
  color: #9CA3AF;
  transition: background 0.25s, color 0.25s;
}
.step-card.active .step-icon,
.step-card.completed .step-icon {
  background: var(--color);
  color: #fff;
}
.step-icon .check { display: none; }
.step-card.completed:not(.active) .step-icon .check { display: block; }
.step-card.completed:not(.active) .step-icon .num   { display: none; }

.step-meta { flex: 1; min-width: 0; }

.step-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-title {
  font-weight: 700;
  font-size: 15px;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}
.step-card.active .step-title { color: var(--color); }

.active-badge {
  display: none;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
  background: var(--color-12);
  color: var(--color);
  flex-shrink: 0;
}
.step-card.active .active-badge { display: inline-block; }

.step-subtitle {
  font-size: 13px;
  color: #6B7280;
  margin-top: 2px;
}

.step-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.step-duration { font-size: 12px; color: #9CA3AF; }
@media (max-width: 480px) { .step-duration { display: none; } }

.step-chevron { transition: transform 0.3s; }
.step-card.active .step-chevron { transform: rotate(180deg); }

/* EXPAND BODY */
.step-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.42s cubic-bezier(0.16,1,0.3,1), opacity 0.3s;
}
.step-card.active .step-body {
  max-height: 600px;
  opacity: 1;
}
.step-body-inner { padding: 0 20px 22px; }

.step-divider {
  width: 100%;
  height: 1px;
  margin-bottom: 18px;
  background: var(--color-18);
}
.step-desc {
  font-size: 13.5px;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 18px;
}
.step-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #374151;
}
.bullet-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  background: var(--color-12);
}
.bullet-dot::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color);
}


/*Showcase*/
.showcase-section {
  min-height: 100vh;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}
.showcase-header {
  flex: 1;
  text-align: left;
}
.showcase-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a227;
  margin-bottom: 16px;
}
.showcase-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}
.showcase-description {
  font-size: 15px;
  line-height: 1.7;
  color: #999999; 
  max-width: 440px;
}
.showcase-card {
  flex: 1;
  background: linear-gradient(145deg, #162318, #0f1c14);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
}
.showcase-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.showcase-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.showcase-card:hover .card-image {
  transform: scale(1.05);
}
.card-info {
  padding: 24px 28px 28px;
}
.card-client {
  font-size: 13px;
  font-weight: 500;
  color: #666666;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 6px;
}
.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .showcase-section {
    padding: 60px 20px;
  }
  .showcase-container {
    flex-direction: column;
    gap: 40px;
  }
  .showcase-header {
    text-align: center;
    order: -1;
  }
  .showcase-description {
    max-width: 100%;
  }
  .showcase-card {
    width: 100%;
  }
  .card-info {
    padding: 20px 24px 24px;
  }
  .card-title {
    font-size: 18px;
  }
}

/*Why*/
/* Why Section */
.why-section {
  padding: 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-heading {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.why-heading span {
  color: #c9a227;
}

.why-desc {
  font-size: 16px;
  color: #8fa898;
  line-height: 1.8;
  max-width: 460px;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(145deg, #162318, #0f1c14);
  border: 1px solid #2a3d2e;
  border-radius: 12px;
  padding: 18px 24px;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.why-item:hover {
  border-color: #c9a227;
  transform: translateX(4px);
}

.why-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  color: #c9a227;
}

.why-icon svg {
  width: 30px;
  height: 30px;
  stroke: #c9a227;
  fill: none;
  stroke-width: 2;
}

.why-item p {
  font-size: 16px;
  font-weight: 600;
  color: #e8f0ea;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .why-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }
}

/*Footer*/
/* Footer */
.footer {
  background: linear-gradient(160deg, #0d1a12 0%, #162318 50%, #0f1c14 100%);
  padding: 60px 60px 0;
  overflow: hidden;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-tagline {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  max-width: 440px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 4px;
}

.footer-nav a {
  color: #8fa898;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #c9a227;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #162318;
  border: 1px solid #2a3d2e;
  border-radius: 50px;
  padding: 12px 16px 12px 24px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta:hover {
  transform: translateY(-2px);
  border-color: #c9a227;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.12);
}

.footer-cta em {
  font-style: italic;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.footer-cta .avatar-ring {
  border-color: #c9a227;
}

.meta-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  fill: #c9a227;
}

.meta-badge span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #8fa898;
}

/* Big brand text */
.footer-brand {
  line-height: 0.85;
  margin: 0 -60px;
  overflow: hidden;
}

.brand-text {
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 900;
  font-style: italic;
  color: #c9a227;
  letter-spacing: -4px;
  white-space: nowrap;
  display: block;
  padding: 0 60px;
  
}

.brand-text sup {
  font-size: 0.2em;
  font-style: normal;
  vertical-align: super;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 2px 5px;
  margin-left: 4px;
}

/*Contact*/
/* Contact Section */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.contact-heading {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 10px 0 18px;
}

.contact-desc {
  font-size: 16px;
  color: #8fa898;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

.founders {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.founder {
  display: flex;
  align-items: center;
  gap: 12px;
}

.founder img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #c9a227;
  object-fit: cover;
}

.founder strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #e8f0ea;
}

.founder span {
  font-size: 13px;
  color: #6b8a73;
}

.founder-divider {
  width: 1px;
  height: 40px;
  background: #2a3d2e;
}

.contact-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: #8fa898;
  line-height: 1.5;
}

.contact-checklist li svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #162318;
  border: 1px solid #2a3d2e;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 15px;
  color: #e8f0ea;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #4a6b55;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c9a227;
}

.contact-form textarea {
  resize: vertical;
}

.submit-btn {
  background: #c9a227;
  color: #0d1a12;
  border: none;
  border-radius: 10px;
  padding: 16px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-top: 4px;
}

.submit-btn:hover {
  background: #e0b52e;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
  }
}

/* Footer bottom */
.footer-cta {
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #2a3d2e;
  padding: 20px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: #8fa898;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: #8fa898;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #c9a227;
}

.footer-links span {
  color: #2a3d2e;
}

@media (max-width: 900px) {
  .footer {
    padding: 48px 24px 0;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    margin: 0 -24px;
  }
  .brand-text {
    padding: 0 24px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}