/* =============================================
   M ASHRAFUL — style.css
   Edit freely! All styles are here.
   ============================================= */

/* ----- FONTS ----- */
@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Black.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}

/* ----- CSS VARIABLES (change colors here) ----- */
:root {
  --primary:    #27AF97;
  --secondary:  #2FBEAB;
  --bg:         #0B1728;
  --bg-alt:     #0A172A;
  --card-bg:    #0A172A;
  --text:       #ffffff;
  --text-muted: #8B9EAF;
  --border:     rgba(255,255,255,0.07);
  --radius:     20px;
  --shadow:     0 8px 32px rgba(0,0,0,0.5);
}

/* ----- RESET ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Satoshi', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Satoshi for all headings & bold display text */
h1, h2, h3,
.h-name,
.h-location,
.h-stat-num,
.section-title,
.exp-role,
.tm-name,
.project-card h3,
.stat-num,
.footer-brand {
  font-family: 'Satoshi', sans-serif;
  letter-spacing: normal;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ----- CONTAINER ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #040f1e;
}
.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(47,190,171,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 20px; font-size: 0.875rem; }
.btn-full { width: 100%; }

/* ==========================================
   ANNOUNCEMENT BAR
   ========================================== */
.ann-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: #27AF97;
  color: #0B1728;
  text-align: center;
  padding: 11px 24px;
  font-size: 0.875rem;
  font-weight: 500;
}
.ann-bar a { color: #0B1728; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.ann-bar a:hover { opacity: 0.75; }

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 50px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav-inner {
  pointer-events: all;
  background: #0A172A;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9999px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 2px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 18px;
  border-radius: 9999px;
  color: #8B9EAF;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.nav-active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.nav-cta {
  background: #27AF97 !important;
  color: #0B1728 !important;
  font-weight: 700 !important;
  border-radius: 9999px !important;
  padding: 9px 22px !important;
  margin-left: 6px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #2FBEAB !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
}
@media (max-width: 768px) {
  .navbar { top: 44px; left: 12px; right: 12px; }
  .nav-inner { border-radius: 16px; padding: 10px 16px; width: 100%; justify-content: space-between; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    background: #0A172A; padding: 12px;
    border-radius: 16px; border: 1px solid rgba(255,255,255,0.07); gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; border-radius: 9999px; }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  padding-top: 110px;
  padding-bottom: 40px;
  min-height: 100vh;
}

/* BENTO GRID */
.h-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.9fr;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "left  mid    right"
    "left  stats  stats"
    "bot1  bot2   bot3";
  gap: 14px;
}
.h-left  { grid-area: left; }
.h-mid   { grid-area: mid; }
.h-right { grid-area: right; }
.h-stats { grid-area: stats; }
.h-bot1  { grid-area: bot1; }
.h-bot2  { grid-area: bot2; }
.h-bot3  { grid-area: bot3; }

@media (max-width: 960px) {
  .h-wrap {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "left  left"
      "mid   right"
      "stats stats"
      "bot1  bot2"
      "bot3  bot3";
  }
}
@media (max-width: 600px) {
  .h-wrap {
    grid-template-columns: 1fr;
    grid-template-areas: "left" "mid" "right" "stats" "bot1" "bot2" "bot3";
  }
}

/* CARD BASE */
.h-card {
  background: #0A172A;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

/* LEFT CARD */
.h-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  padding: 3px;
  background: #27AF97;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.h-avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0A172A;
  display: block;
}
.h-name {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 900;
  letter-spacing: normal;
  line-height: 1;
  margin-bottom: 16px;
  color: #fff;
}
.h-bio {
  font-size: 0.975rem;
  color: #8B9EAF;
  line-height: 1.65;
}
.teal { color: #27AF97; }
.h-gap { flex: 1; min-height: 36px; }
.h-btns {
  display: flex; gap: 10px; flex-wrap: nowrap;
  margin-bottom: 18px;
}
.btn-teal {
  display: inline-flex; align-items: center;
  background: #27AF97; color: #0B1728;
  padding: 12px 20px; border-radius: 9999px;
  font-weight: 700; font-size: 0.88rem;
  white-space: nowrap; transition: background 0.2s, transform 0.2s;
}
.btn-teal:hover { background: #2FBEAB; transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center;
  background: transparent; color: #fff;
  padding: 12px 20px; border-radius: 9999px;
  font-weight: 600; font-size: 0.88rem;
  border: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap; transition: all 0.2s;
}
.btn-ghost:hover { border-color: #27AF97; color: #27AF97; transform: translateY(-2px); }
.h-playbook {
  font-size: 0.8rem;
  color: #4a637a;
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 3px;
  line-height: 1.5;
}
.h-playbook:hover { color: #27AF97; }

/* MIDDLE CARD */
.h-mid {
  justify-content: space-between;
  min-height: 240px;
}
.h-mid-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.badge-remote {
  border: 1.5px solid #31F74B;
  color: #31F74B;
  background: transparent;
  padding: 4px 14px;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.h-mid-bot { display: flex; flex-direction: column; gap: 5px; }
.h-location {
  font-size: clamp(1.4rem, 2.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: normal;
  line-height: 1.11;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  white-space: nowrap;
}
.flag { width: 28px; height: auto; border-radius: 3px; }
.h-location-sub { font-size: 0.88rem; color: #8B9EAF; }

/* RIGHT CARD - SOCIALS */
.h-right {
  gap: 10px;
  justify-content: space-between;
}
.soc-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  transition: all 0.2s;
  color: #c5d3e0;
  font-size: 0.9rem;
  font-weight: 500;
}
.soc-row:hover {
  background: rgba(64,211,162,0.08);
  border-color: rgba(64,211,162,0.3);
  color: #fff;
  transform: translateX(2px);
}
.soc-ico {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.soc-li  { background: #0a66c2; color: #fff; }
.soc-tw  { background: #000; color: #fff; border: 1px solid #2a2a2a; }
.soc-tg  { background: #0088cc; color: #fff; }
.soc-ig  { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: #fff; }
.soc-name { flex: 1; }
.soc-arr  { color: #4a637a; font-size: 0.95rem; }

/* STATS BAR */
.h-stats {
  background: #27AF97;
  border-radius: 20px;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  color: #0B1728;
}
.h-stat-col { display: flex; flex-direction: column; gap: 4px; }
.h-stat-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  opacity: 0.7;
}
.h-stat-num {
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: normal;
  line-height: 1;
  color: #0B1728;
}
.h-stat-desc { font-size: 0.9rem; font-weight: 600; opacity: 0.85; }
.h-stat-div { width: 1px; height: 60px; background: rgba(11,17,26,0.2); }

/* BOTTOM ROW CARDS */
.h-bot-card {
  background: #0A172A;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.h-bot-card:hover { border-color: rgba(39,175,151,0.3); }
.h-bot-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8B9EAF;
  margin-bottom: 6px;
}
.h-bot-main {
  font-size: clamp(0.9rem, 1.5vw, 1.35rem);
  font-weight: 900;
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  letter-spacing: normal;
  line-height: 1.2;
  word-break: break-word;
}
.h-bot-sub { font-size: 0.85rem; color: #8B9EAF; font-weight: 500; }
.h-bot-watermark {
  position: absolute;
  bottom: -18px;
  right: -14px;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  line-height: 0;
}
/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 60px 0; }
.section-alt { background: var(--bg-alt); }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: normal;
  line-height: 1.11;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 28px;
}
.section-header {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section-header .section-sub { margin-bottom: 0; }

/* =============================================
   SERVICES
   ============================================= */
.services-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.services-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #27AF97;
  margin-bottom: 12px;
}
.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.services-list li {
  font-size: 0.95rem;
  color: #c8d8e8;
  display: flex;
  align-items: center;
  gap: 10px;
}
.services-check {
  color: #27AF97;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.services-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.services-img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 800px) {
  .services-wrap { grid-template-columns: 1fr; gap: 32px; }
  .services-img-wrap { order: -1; }
}

/* =============================================
   WORK EXPERIENCE  (horizontal carousel)
   ============================================= */

/* Rail */
.exp-rail-wrap {
  position: relative;
  margin: 32px 0 24px;
}
.exp-rail-line {
  display: none;
}
.exp-rail-stops {
  display: flex;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.exp-stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.exp-stop:not(.active) { opacity: 0.5; }
.exp-stop:not(.active):hover { opacity: 0.75; }
.exp-date-pill {
  background: transparent;
  border: 1.5px solid rgba(47,190,171,0.4);
  color: #8B9EAF;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 18px;
  border-radius: 9999px;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.exp-stop.active .exp-date-pill {
  background: #27AF97;
  border-color: #27AF97;
  color: #0B1728;
}
.exp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(47,190,171,0.4);
  background: #0a1628;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.exp-stop.active .exp-dot {
  background: #27AF97;
  border-color: #27AF97;
  transform: scale(1.4);
}

/* Carousel */
.exp-carousel-wrap {
  overflow: hidden;
  margin-top: 0;
}
.exp-carousel {
  display: flex;
  gap: 0;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.exp-card {
  background: #0d1f35;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 32px 36px;
  width: 100%;
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.exp-card:hover { border-color: rgba(47,190,171,0.3); }
.exp-card-date {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #27AF97;
  background: rgba(39,175,151,0.1);
  border: 1px solid rgba(39,175,151,0.25);
  padding: 3px 12px;
  border-radius: 9999px;
  margin-bottom: 20px;
  width: fit-content;
}
.exp-card:hover { border-color: rgba(47,190,171,0.3); }
.exp-role {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: normal;
  line-height: 1.33;
}
.exp-company {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8B9EAF;
  margin-bottom: 18px;
}
.exp-desc {
  font-size: 0.95rem;
  color: #6a8099;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
}
.exp-read-more {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2fbeab;
  transition: color 0.2s, letter-spacing 0.2s;
}
.exp-read-more:hover { color: #26a898; letter-spacing: 0.12em; }

@media (max-width: 700px) {
  .exp-date-pill { font-size: 0.72rem; padding: 4px 12px; }
}
.tag {
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(47,190,171,0.1);
  color: var(--primary);
  border: 1px solid rgba(47,190,171,0.2);
}

/* =============================================
   PROJECTS
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .cards-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .cards-grid { grid-template-columns: 1fr; } }
.project-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(47,190,171,0.3); }
.project-icon { font-size: 2rem; margin-bottom: 16px; }
.project-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.project-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 18px; }
.tech-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tech-tag {
  padding: 3px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =============================================
   ENTERPRISE
   ============================================= */
.enterprise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
@media (max-width: 600px) { .enterprise-grid { grid-template-columns: 1fr; } }
.enterprise-problems,
.enterprise-solutions {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.enterprise-problems h4,
.enterprise-solutions h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; color: var(--text-muted); }
.enterprise-problems li,
.enterprise-solutions li { padding: 8px 0; font-size: 0.95rem; border-bottom: 1px solid var(--border); }
.enterprise-problems li:last-child,
.enterprise-solutions li:last-child { border-bottom: none; }

/* =============================================
   TESTIMONIALS  (auto-scroll carousel)
   ============================================= */
/* =============================================
   TESTIMONIALS
   ============================================= */
.tm-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #8494a7;
  margin-bottom: 18px;
}

/* outer clip */
.tm-wrap {
  overflow: hidden;
  margin-top: 36px;
}

/* sliding track — width = pages × 100% */
.tm-track {
  display: flex;
  width: 300%;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

/* each page fills exactly one-third the track = 100% of the wrap */
.tm-page {
  width: calc(100% / 3);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  flex-shrink: 0;
}

.tm-card {
  background: #0d1f35;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 32px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.tm-card:hover { border-color: rgba(47,190,171,0.3); }

.tm-stars {
  color: #2fbeab;
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.tm-quote {
  font-size: 0.95rem;
  color: #c5d3e0;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}
.tm-author  { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tm-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2fbeab, #0a8476);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: #042f2a;
  flex-shrink: 0;
}
.tm-name { font-weight: 700; font-size: 0.9rem; color: #fff; }
.tm-role { font-size: 0.78rem; color: #8B9EAF; margin-top: 2px; }

/* dots */
.tm-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.tm-dot {
  width: 8px; height: 8px;
  border-radius: 9999px;
  border: none;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}
.tm-dot.active { background: #2fbeab; width: 28px; }

/* responsive */
@media (max-width: 860px) {
  .tm-page { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 540px) {
  .tm-page { grid-template-columns: 1fr; }
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section {
  background: #0B1728;
  position: relative;
}
.contact-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.contact-header .section-sub {
  margin: 10px auto 0;
  text-align: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 700px;
  margin: 0 auto;
}
.contact-card {
  background: rgba(10,23,42,0.0);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
}
@media (max-width: 640px) { .contact-card { padding: 20px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: #0A172A; color: #fff; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #27AF97;
  background: rgba(39,175,151,0.06);
  box-shadow: 0 0 0 3px rgba(39,175,151,0.12);
}
.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  color: rgba(255,255,255,0.6);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2327AF97' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.form-hint { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 2px; }
.form-note { font-size: 0.8rem; color: rgba(255,255,255,0.35); text-align: center; }

/* CTA BANNER */
.cta-banner {
  background: #27AF97;
  padding: 72px 0;
}
.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #0B1728;
  margin-bottom: 14px;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(11,23,40,0.75);
  margin-bottom: 28px;
  line-height: 1.6;
}
.cta-btn {
  background: #0B1728 !important;
  color: #fff !important;
  border: none !important;
  padding: 14px 32px !important;
  border-radius: 9999px !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  transition: background 0.2s, transform 0.2s !important;
}
.cta-btn:hover { background: #0A172A !important; transform: translateY(-2px) !important; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-logo { font-weight: 900; font-size: 1.4rem; margin-bottom: 10px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-links h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 16px; font-weight: 700; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(47,190,171,0.3); border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(47,190,171,0.5); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.6s ease forwards; }
