/* ═══════════════════════════════════════════
   RAWATLY — Global Stylesheet
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Instrument+Serif:ital@0;1&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --bg: #ffffff;
  --dark: #0d0f1a;
  --dark2: #161825;
  --lime: #c8f53e;
  --lime-dark: #aedd2a;
  --navy: #0d0f1a;
  --text: #0d0f1a;
  --muted: #6b7280;
  --light: #f5f6f2;
  --border: #e5e7eb;
  --border-dark: rgba(255,255,255,0.1);
  --card: #f9fafb;
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
}

.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.03em;
}
.logo span { color: var(--lime); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-cta {
  background: var(--lime) !important;
  color: var(--dark) !important;
  padding: 10px 24px !important;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--lime-dark) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── PAGE WRAPPER ── */
.page-content { padding-top: 72px; min-height: 100vh; }

/* ── BUTTONS ── */
.btn-lime {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--dark);
  border: none;
  padding: 15px 32px;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-lime:hover { background: var(--lime-dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 15px 32px;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--lime); color: var(--lime); }

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 15px 32px;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-dark:hover { background: var(--dark2); transform: translateY(-2px); }

/* ── SHARED SECTIONS ── */
.section { padding: 90px 60px; }
.section-sm { padding: 60px 60px; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,245,62,0.12);
  border: 1px solid rgba(200,245,62,0.3);
  color: #7ab800;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.tag-dark {
  background: rgba(200,245,62,0.15);
  border-color: rgba(200,245,62,0.4);
  color: var(--lime);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.section-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  max-width: 520px;
  line-height: 1.7;
}

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--lime);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 50px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.marquee-item::after { content: '★'; font-size: 0.6rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── DARK CTA BAND ── */
.cta-band {
  background: var(--dark);
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  max-width: 520px;
  line-height: 1.15;
}
.cta-band h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--lime);
}

/* ── FOOTER ── */
footer {
  background: var(--dark2);
  padding: 70px 60px 0;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-logo { color: #fff; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 14px; text-decoration: none; display: block; }
.footer-logo span { color: var(--lime); }
.footer-desc {
  color: rgba(255,255,255,0.4);
  font-size: 0.87rem;
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 24px;
}
footer h4 {
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.flinks { list-style: none; }
.flinks li { margin-bottom: 10px; }
.flinks a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.flinks a:hover { color: #fff; }
.footer-bottom {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 40px -60px 0;
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--lime); text-decoration: none; font-weight: 600; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ═══════════════════ HOME ═══════════════════ */

/* HERO */
.hero {
  background: var(--dark);
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4; pointer-events: none;
}
.hero-circle1 {
  position: absolute; width: 500px; height: 500px;
  border-radius: 50%; border: 1px solid rgba(200,245,62,0.08);
  right: 5%; top: 50%; transform: translateY(-50%);
}
.hero-circle2 {
  position: absolute; width: 360px; height: 360px;
  border-radius: 50%; border: 1px solid rgba(200,245,62,0.12);
  right: calc(5% + 70px); top: 50%; transform: translateY(-50%);
}
.hero-circle3 {
  position: absolute; width: 220px; height: 220px;
  border-radius: 50%; background: rgba(200,245,62,0.05);
  right: calc(5% + 140px); top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; justify-content: center;
}
.hero-inner-icon { font-size: 3rem; animation: spin 20s linear infinite; }
.hero-content {
  position: relative; max-width: 720px; z-index: 2;
  animation: fadeUp 0.7s ease both;
}
.hero-title {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.035em; color: #fff; margin-bottom: 24px;
}
.hero-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-weight: 400; color: var(--lime);
}
.hero-sub {
  color: rgba(255,255,255,0.55); font-size: 1.1rem;
  font-weight: 400; max-width: 500px; margin-bottom: 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 48px; margin-top: 72px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap;
}
.hstat-num {
  font-size: 2.2rem; font-weight: 800; color: var(--lime);
  letter-spacing: -0.04em; line-height: 1;
}
.hstat-lbl { color: rgba(255,255,255,0.45); font-size: 0.8rem; margin-top: 5px; }

/* WHY RAWATLY */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-top: 60px;
}
.why-item {
  padding: 40px; border: 1px solid var(--border);
  position: relative; transition: background 0.2s;
}
.why-item:hover { background: var(--card); }
.why-num {
  font-size: 3.5rem; font-weight: 800;
  color: rgba(200,245,62,0.15); line-height: 1; margin-bottom: 16px;
  font-family: 'Instrument Serif', serif;
}
.why-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.why-item p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* SERVICE CARDS (HOME) */
.services-home-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; margin-top: 56px;
}
.scard {
  padding: 40px 32px; border-right: 1px solid var(--border);
  cursor: pointer; transition: background 0.25s; position: relative; overflow: hidden;
}
.scard:last-child { border-right: none; }
.scard::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--lime); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s;
}
.scard:hover { background: #f9fafb; }
.scard:hover::after { transform: scaleX(1); }
.scard-icon {
  width: 52px; height: 52px; background: var(--light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 22px; transition: background 0.25s;
}
.scard:hover .scard-icon { background: rgba(200,245,62,0.15); }
.scard h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.scard p { color: var(--muted); font-size: 0.85rem; line-height: 1.65; }
.scard-arrow {
  display: inline-flex; align-items: center; gap: 5px;
  color: #7ab800; font-size: 0.8rem; font-weight: 700;
  margin-top: 18px; transition: gap 0.2s; text-decoration: none;
}
.scard:hover .scard-arrow { gap: 9px; }

/* TESTIMONIALS */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.tcard {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.tcard:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); transform: translateY(-3px); }
.tcard-stars { color: var(--lime-dark); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.tcard-text { color: #374151; font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.tcard-name { font-weight: 700; font-size: 0.88rem; }
.tcard-role { color: var(--muted); font-size: 0.78rem; }

/* ═══════════════════ ABOUT ═══════════════════ */

.about-hero {
  background: var(--dark); padding: 100px 60px 80px;
  position: relative; overflow: hidden;
}
.about-hero-inner {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 2;
}
.about-hero h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800; color: #fff; letter-spacing: -0.03em;
  line-height: 1.08; margin-bottom: 20px;
}
.about-hero h1 em {
  font-family: 'Instrument Serif', serif; font-style: italic; color: var(--lime);
}
.about-hero p { color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.75; margin-bottom: 32px; }
.about-visual-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.abox {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 28px 24px;
}
.abox.lime {
  background: var(--lime); border-color: transparent;
  grid-column: span 2; display: flex; align-items: center; gap: 20px;
}
.abox.lime .abox-val { font-size: 2rem; font-weight: 800; color: var(--dark); }
.abox.lime .abox-lbl { color: rgba(13,15,26,0.65); font-size: 0.85rem; }
.abox-val {
  font-family: 'Instrument Serif', serif; font-size: 2.4rem; font-weight: 400;
  color: var(--lime); line-height: 1; margin-bottom: 6px;
}
.abox-lbl { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

.about-story {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; padding: 90px 60px;
}
.about-story h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 24px;
}
.about-story h2 em { font-family: 'Instrument Serif', serif; font-style: italic; }
.about-story p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }
.milestone-list { list-style: none; margin-top: 32px; }
.milestone-list li {
  display: flex; gap: 16px; padding: 18px 0;
  border-bottom: 1px solid var(--border); font-size: 0.9rem;
}
.milestone-yr { font-weight: 800; color: var(--lime-dark); min-width: 44px; font-size: 0.85rem; }
.milestone-txt { color: var(--muted); line-height: 1.6; }

.values-section { background: var(--dark); padding: 90px 60px; }
.values-section .section-title { color: #fff; }
.values-section .section-sub { color: rgba(255,255,255,0.5); }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px;
}
.vcard {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 36px 30px;
  transition: border-color 0.25s, background 0.25s;
}
.vcard:hover { border-color: rgba(200,245,62,0.3); background: rgba(200,245,62,0.04); }
.vcard-icon {
  width: 48px; height: 48px; background: rgba(200,245,62,0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 20px;
}
.vcard h3 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.vcard p { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.7; }

.team-section { padding: 90px 60px; }
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px;
}
.tmcard {
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.tmcard:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.tmcard-avatar {
  height: 180px; background: var(--light); display: flex;
  align-items: center; justify-content: center; font-size: 3.5rem;
  position: relative; overflow: hidden;
}
.tmcard-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tmcard-avatar::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px; background: linear-gradient(transparent, rgba(200,245,62,0.08));
}
.tmcard-info { padding: 20px 22px; background: #fff; }
.tmcard-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 3px; }
.tmcard-role { color: #7ab800; font-size: 0.78rem; font-weight: 600; }

/* ═══════════════════ SERVICES ═══════════════════ */

.services-hero-sec {
  background: var(--dark); padding: 100px 60px 80px;
  position: relative; text-align: center; overflow: hidden;
}
.services-hero-sec::before {
  content: ''; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%); width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(200,245,62,0.07), transparent 70%);
  pointer-events: none;
}
.services-hero-sec h1 {
  font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 800; color: #fff;
  letter-spacing: -0.03em; line-height: 1.1; margin: 0 auto 16px;
}
.services-hero-sec h1 em {
  font-family: 'Instrument Serif', serif; font-style: italic; color: var(--lime);
}
.services-hero-sec p { color: rgba(255,255,255,0.5); max-width: 480px; margin: 0 auto; font-size: 1rem; }

.service-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-bottom: 1px solid var(--border);
}
.service-block:nth-child(even) .sb-info { order: 2; }
.service-block:nth-child(even) .sb-visual { order: 1; border-right: 1px solid var(--border); border-left: none; }
.sb-info { padding: 70px 60px; }
.sb-visual {
  background: var(--light); border-left: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px; position: relative; overflow: hidden; min-height: 400px;
}
.sb-visual-img {
  width: 120%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sb-visual-emoji { font-size: 15rem; z-index: 1; position: relative; }
.sb-visual-label {
  font-family: 'Instrument Serif', serif; font-size: 5rem; font-weight: 400;
  color: rgba(200,245,62,0.15); position: absolute;
  letter-spacing: -0.04em; user-select: none; white-space: nowrap;
}
.sb-tag {
  display: inline-flex; background: rgba(200,245,62,0.12);
  border: 1px solid rgba(200,245,62,0.3); color: #7ab800;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 18px;
}
.sb-info h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 18px;
}
.sb-info h2 em { font-family: 'Instrument Serif', serif; font-style: italic; }
.sb-info p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 24px; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.fpill {
  background: var(--light); border: 1px solid var(--border); padding: 7px 16px;
  border-radius: 100px; font-size: 0.8rem; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 6px;
}
.fpill::before { content: '✓'; color: #7ab800; font-weight: 800; }

.process-section { background: var(--dark); padding: 90px 60px; }
.process-section .section-title { color: #fff; }
.process-section .section-sub { color: rgba(255,255,255,0.5); }
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 60px;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden;
}
.pstep {
  padding: 36px 28px; border-right: 1px solid rgba(255,255,255,0.06); transition: background 0.2s;
}
.pstep:last-child { border-right: none; }
.pstep:hover { background: rgba(200,245,62,0.04); }
.pstep-num {
  font-family: 'Instrument Serif', serif; font-size: 2.5rem;
  color: rgba(200,245,62,0.25); line-height: 1; margin-bottom: 14px;
}
.pstep h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.pstep p { color: rgba(255,255,255,0.4); font-size: 0.82rem; line-height: 1.6; }

/* ═══════════════════ CONTACT ═══════════════════ */

.contact-hero { background: var(--dark); padding: 90px 60px 70px; }
.contact-hero-inner {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start;
}
.contact-hero h1 {
  font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 800; color: #fff;
  letter-spacing: -0.035em; line-height: 1.08; margin-bottom: 20px;
}
.contact-hero h1 em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--lime); }
.contact-hero p { color: rgba(255,255,255,0.5); font-size: 1rem; line-height: 1.75; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 0; }
.cdet-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cdet-item:last-child { border-bottom: none; }
.cdet-icon {
  width: 42px; height: 42px; background: rgba(200,245,62,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.cdet-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.cdet-val { color: #fff; font-weight: 600; font-size: 0.92rem; }
.cdet-val a { color: #fff; text-decoration: none; }

.contact-form-card {
  background: #fff; border-radius: 20px; padding: 48px;
  box-shadow: 0 2px 40px rgba(0,0,0,0.05);
}
.contact-form-card h2 { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.contact-form-card .sub { color: var(--muted); font-size: 0.88rem; margin-bottom: 32px; }
.fgroup { margin-bottom: 18px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

label {
  display: block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--text); margin-bottom: 7px;
}
input, textarea, select {
  width: 100%; background: var(--light); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 13px 16px; color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--lime-dark); box-shadow: 0 0 0 3px rgba(200,245,62,0.15); background: #fff;
}
textarea { resize: vertical; min-height: 110px; }
select option { background: #fff; }

.form-submit {
  width: 100%; background: var(--dark); color: #fff; border: none; padding: 16px;
  border-radius: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem;
  font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.15s;
  margin-top: 6px; letter-spacing: 0.01em;
}
.form-submit:hover { background: var(--dark2); transform: translateY(-1px); }

.success-msg {
  display: none; background: rgba(200,245,62,0.1); border: 1px solid rgba(200,245,62,0.4);
  color: #5a8a00; border-radius: 8px; padding: 14px 18px; font-size: 0.9rem;
  font-weight: 600; margin-top: 14px; text-align: center;
}

.contact-info-section { padding: 80px 60px; background: var(--light); }
.info-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
.infocard {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 30px 26px; text-align: center; transition: box-shadow 0.2s, transform 0.2s;
}
.infocard:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.06); transform: translateY(-3px); }
.infocard-icon { font-size: 2rem; margin-bottom: 14px; }
.infocard h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 6px; }
.infocard p { color: var(--muted); font-size: 0.82rem; line-height: 1.6; }

/* ═══════════════════ RESPONSIVE ═══════════════════ */

@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; align-items: flex-start; gap: 0; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark); padding: 16px 20px 24px; border-top: 1px solid var(--border-dark); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 1rem; }
  .nav-links a.nav-cta { margin-top: 12px; border-bottom: none; text-align: center; border-radius: 6px; padding: 12px 24px !important; }
  .nav-toggle { display: flex; }

  .hero { padding: 60px 24px; }
  .hero-circle1, .hero-circle2, .hero-circle3 { display: none; }
  .section, .section-sm { padding: 60px 24px; }
  .services-home-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-story { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .sb-info { order: 0; }
  .service-block:nth-child(even) .sb-visual { order: 0; border-right: none; border-left: none; border-top: 1px solid var(--border); }
  .sb-info { padding: 40px 24px; }
  .sb-visual { min-height: 240px; border-left: none; border-top: 1px solid var(--border); }
  .sb-visual-emoji { font-size: 8rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .contact-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-hero { padding: 60px 24px 50px; }
  .contact-form-card { padding: 28px 20px; }
  .info-cards { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 60px 24px; flex-direction: column; align-items: flex-start; }
  footer { grid-template-columns: 1fr 1fr; gap: 40px; padding: 50px 24px 0; }
  .footer-bottom { margin: 30px -24px 0; padding: 18px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .about-hero, .services-hero-sec { padding: 80px 24px 60px; }
  .values-section, .team-section, .process-section { padding: 60px 24px; }
}

@media (max-width: 600px) {
  .services-home-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}
