/* ═══════════════════ RESET & BASE ═══════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #1A1A1A;
  background: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

.hidden { display: none !important; }
.text-center { text-align: center; }

/* ═══════════════════ LAYOUT ═══════════════════ */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}
.container-sm {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 16px;
}
.mb-12 { margin-bottom: 48px; }

@media (min-width: 768px) {
  .container { padding: 0 32px; max-width: 96%; }
  .container-sm { padding: 0 32px; }
}

/* ═══════════════════ TYPOGRAPHY ACCENTS ═══════════════════ */
.accent-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: #F5A623;
}
.gold-text { color: #F5A623; }

/* ═══════════════════ SECTION LABELS & TITLES ═══════════════════ */
.section-label {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label.light { color: rgba(255,255,255,0.5); }
.section-label.centered { justify-content: center; }

.label-line {
  display: inline-block;
  width: 16px;
  height: 2px;
  background: #F5A623;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}
.section-title.white { color: #fff; }

@media (min-width: 768px) {
  .section-title { font-size: 48px; }
}

.section-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn-primary-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #2D4A2D;
  color: #fff;
  padding-left: 24px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
  overflow: hidden;
  text-decoration: none;
}
.btn-primary-arrow:hover { background: #3a5e3a; }
.btn-primary-arrow span:first-child { padding: 12px 16px 12px 0; }
.btn-primary-arrow.sm { margin-top: 16px; align-self: flex-start; }
@media (min-width: 768px) {
  .btn-primary-arrow.sm { margin-top: 0; }
}

.btn-arrow-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F5A623;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 4px;
}

.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 9999px;
  border: 2px solid #1A1A1A;
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-outline:hover { background: #f9f9f9; }

.btn-white-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #fff;
  color: #1A1A1A;
  padding-left: 24px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
  overflow: hidden;
}
.btn-white-arrow:hover { background: #f0f0f0; }
.btn-white-arrow span:first-child { padding: 12px 16px 12px 0; }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 2px solid #F5A623;
  background: #2D4A2D;
  color: #fff;
  border-radius: 9999px;
  overflow: hidden;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
  margin-top: 16px;
  align-self: flex-start;
}
.btn-outline-gold:hover { background: #3a5e3a; }
.btn-outline-gold > span:first-child { padding: 10px 16px 10px 0; }
@media (min-width: 768px) {
  .btn-outline-gold { margin-top: 0; }
}

.btn-gold-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F5A623;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 2px;
}
.btn-gold-inner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2D4A2D;
  color: #fff;
  padding: 6px 6px 6px 24px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-submit:hover { background: #3a5e3a; }
.btn-submit-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F5A623;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════ ANIMATIONS ═══════════════════ */
@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-33.333%, 0, 0); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll[data-animation="fade-left"] {
  transform: translateX(-40px);
}
.animate-on-scroll[data-animation="fade-right"] {
  transform: translateX(40px);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* ═══════════════════ NAVBAR ═══════════════════ */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: 95%;
  max-width: 1152px;
  transition: top 0.3s;
}
@media (max-width: 480px) {
  .navbar { width: 96%; }
}
.navbar.scrolled { top: 8px; }

.navbar-inner {
  background: #2D4A2D;
  border-radius: 9999px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.navbar.scrolled .navbar-inner {
  background: rgb(5 36 0 / 70%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
@media (min-width: 768px) {
  .navbar-inner { padding: 12px 32px; }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-img {
  width: 40px;
  height: 40px;
  display: block;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 24px;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-link:hover { color: #fff; }
.nav-link.active {
  color: #F5A623;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-contact-btn {
  display: none;
  background: #fff;
  color: #1A1A1A;
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
}
.nav-contact-btn:hover { background: #f0f0f0; }
@media (min-width: 768px) {
  .nav-contact-btn { display: block; }
}

.mobile-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.mobile-toggle-label {
  display: block;
}
@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}

.mobile-menu {
  background: #2D4A2D;
  border-radius: 16px;
  margin: 8px 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}
.mobile-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s;
}
.mobile-link:hover { color: #fff; background: #3a5e3a; }
.mobile-link.active { color: #F5A623; background: #3a5e3a; }
.mobile-contact-btn {
  display: block;
  width: 100%;
  background: #fff;
  color: #1A1A1A;
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  padding-top: 112px;
  padding-bottom: 0;
  background: #fff;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}

.hello-tag {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #2D4A2D;
  padding: 17px 22px 17px 0;
  border-radius: 10px;
  margin-bottom: 24px;
  font-family: 'Fira Code', 'SF Mono', 'Cascadia Code', 'Courier New', monospace;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(45,74,45,0.2);
  border: 1px solid rgba(255,255,255,0.08);
}
.hello-line-num {
  color: rgba(255,255,255,0.3);
  padding: 0 14px;
  margin-right: 14px;
  border-right: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  font-weight: 600;
  user-select: none;
}
.hello-keyword {
  color: #a8d5a2;
  margin-right: 7px;
  font-weight: 700;
}
.hello-var {
  color: #fff;
  margin-right: 7px;
  font-weight: 700;
}
.hello-op {
  color: rgba(255,255,255,0.5);
  font-weight: 700;
}
.hello-string {
  color: #F5A623;
  margin: 0 3px;
  font-weight: 700;
  max-height: 16px;
}
.hello-cursor {
  display: inline-block;
  width: 2px;
  height: 17px;
  background: #F5A623;
  margin-left: 2px;
  border-radius: 1px;
  animation: blink-cursor 1.1s step-end infinite;
}
@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .hero { padding-top: 190px; padding-bottom: 120px; }
  .hero-title { font-size: 48px; }
  .hero .container { max-width: 85%; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 54px; }
}

.hero-desc {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 440px;
}
@media (min-width: 768px) {
  .hero-desc { font-size: 18px; }
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 32px;
}

.hero-photo-circle {
  position: relative;
  width: 288px;
  height: 288px;
  border-radius: 50%;
  background: #F5A623;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-photo-circle { width: 580px; height: 580px; }
}
.hero-photo-circle img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scale(1.1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Hire badge */
.hire-badge {
  position: absolute;
  top: 30px;
  right: 16px;
  width: 80px;
  height: 80px;
}
@media (min-width: 768px) {
  .hire-badge { right: 138px; width: 96px; height: 96px; }
}
.hire-badge-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.hire-badge-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #2D4A2D;
}
.hire-badge-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin-slow 8s linear infinite;
}
.hire-badge-center {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: #F5A623;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Hero chips with cursor arrow (2nd image design) */
.hero-chip {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero-chip-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-left: -7px;
  margin-bottom: -8px;
  /* transform: rotate(-45deg); */
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.12));
  z-index: 1;
}
.hero-chip-arrow-green {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-bottom: -6px;
  margin-left: 116px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.12));
  transform: rotate(87deg);
  z-index: 1;
}
.hero-chip-label {
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .hero-chip-arrow { width: 24px; height: 24px;   margin-left: -7px; margin-bottom: -8px; }
  .hero-chip-arrow-green { width: 24px; height: 24px; margin-left: 132px; transform: rotate(87deg); margin-bottom: -7px; }
  .hero-chip-label { font-size: 14px; padding: 10px 20px; }
}
.hero-chip.pill-green .hero-chip-label {
  background: #2D4A2D;
  color: #fff;
}
.hero-chip.pill-green .hero-chip-arrow-green {
  color: #2D4A2D;
}
.hero-chip.pill-gold .hero-chip-label {
  background: #F5A623;
  color: #1A1A1A;
}
.hero-chip.pill-gold .hero-chip-arrow {
  color: #F5A623;
}
.hero-chip.pill-green {
  bottom: 16px;
  left: 16px;
}
@media (min-width: 768px) {
  .hero-chip.pill-green { left: 99px; }
}
.hero-chip.pill-gold {
  bottom: 18px;
  right: 0px;
}
@media (min-width: 768px) {
  .hero-chip.pill-gold { right: 24px; bottom: 48px;}
}

/* ═══════════════════ MARQUEE BANNER ═══════════════════ */
.marquee-banner {
  background: #F5A623;
  padding: 16px 0;
  overflow: hidden;
  width: 100%;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: max-content;
  flex-shrink: 0;
  animation: marquee 80s linear infinite;
  will-change: transform;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
  margin: 0 28px;
  padding: 0 4px;
  color: #2D4A2D;
  font-weight: 700;
  font-size: 18px;
}
@media (min-width: 768px) {
  .marquee-item { margin: 0 35px; gap: 56px; font-size: 24px; }
}
.marquee-star { flex-shrink: 0; margin-left: 4px; }

/* ═══════════════════ SERVICES ═══════════════════ */
.services-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
}
.services-corner {
  display: none;
}
@media (min-width: 768px) {
  .services-corner {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 128px;
    height: 128px;
    background: #2D4A2D;
    border-bottom-right-radius: 80px;
  }
}

.services-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  background: #F5F5F5;
  border-radius: 16px;
  padding: 32px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon.bg-green { background: #2D4A2D; }
.service-icon.bg-gold { background: #F5A623; }

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 12px;
}
.service-desc {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-link {
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.service-card:hover .service-link { gap: 12px; }

/* ═══════════════════ ABOUT ═══════════════════ */
.about-section {
  padding: 80px 0;
  background: #2D4A2D;
}
.about-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; margin: 100px 0;}
}

.about-left { display: flex; justify-content: center; }
.about-photo-wrapper { position: relative; width: 288px; height: 288px; }
@media (min-width: 768px) {
  .about-photo-wrapper { width: 520px; height: 520px; }
}
.about-photo-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #F5A623;
  overflow: hidden;
  position: relative;
}
.about-photo-circle img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.skill-tags-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 112px 31px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.skill-tag {
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  white-space: nowrap;
}
.tag-gold { background: #F5A623; color: #1A1A1A; }
.tag-green { background: #2D4A2D; color: #fff; }

.about-desc {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.stats-row {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
.stat-value {
  color: #F5A623;
  font-size: 30px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .stat-value { font-size: 36px; }
}
.stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-top: 4px;
}

.about-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.signature {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: #F5A623;
  font-size: 24px;
}

/* ═══════════════════ TOOLS ═══════════════════ */
.tools-section {
  padding: 150px 0;
  background: #fff;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .tools-grid { grid-template-columns: repeat(5, 1fr); }
}

.tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tool-pill {
  width: 80px;
  height: 112px;
  background: #F5F5F5;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: box-shadow 0.3s;
}
@media (min-width: 768px) {
  .tool-pill { width: 128px; height: 128px; }
}
.tool-pill:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

.tool-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
@media (min-width: 768px) {
  .tool-icon { width: 56px; height: 56px; padding: 10px; }
}
.tool-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
/* Firebase logo keeps original colors on yellow background */
.tool-icon[style*="background-color:#FFCA28"] .tool-logo {
  filter: none;
}
/* Swift, Next.js, MongoDB, Node.js, Android logos from Simple Icons - already white, no filter needed */
.tool-logo-swift,
.tool-logo-nextjs,
.tool-logo-mongodb,
.tool-logo-nodejs,
.tool-logo-android {
  filter: none;
}

.tool-pct {
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
}
.tool-name {
  font-size: 14px;
  color: #555;
}

/* ═══════════════════ PROJECTS ═══════════════════ */
.projects-section {
  padding: 80px 0;
  background: #F5F5F5;
}
.projects-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .projects-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

.project-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s;
}
.project-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); }

.project-img-wrap {
  overflow: hidden;
  padding: 24px;
}
.project-img-wrap img {
  width: 100%;
  height: 224px;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.5s;
}
@media (min-width: 768px) {
  .project-img-wrap img { height: 306px; }
}
.project-card:hover .project-img-wrap img { transform: scale(1.05); }

.project-body { padding: 0px 24px 24px 24px; }
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.project-tag {
  background: rgba(245,166,35,0.2);
  color: #1A1A1A;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
}
.project-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.project-title {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
  max-width: 80%;
}
.project-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2D4A2D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.project-arrow-btn:hover { background: #3a5e3a; }

/* ═══════════════════ JOURNEY ═══════════════════ */
.journey-section {
  padding: 80px 0;
  background: #fff;
}
.journey-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .journey-grid { grid-template-columns: 1fr 1fr; }
}

.timeline-card {
  background: #F5F5F5;
  border-radius: 16px;
  padding: 32px;
}
.timeline-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.timeline-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F5A623;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-title {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.timeline-item {
  border-left: 2px solid #F5A623;
  padding-left: 20px;
}
.timeline-years {
  font-size: 14px;
  color: #999;
  margin-bottom: 4px;
}
.timeline-org {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
}
.timeline-role {
  font-size: 14px;
  color: #555;
}

/* ═══════════════════ PRICING ═══════════════════ */
.pricing-section {
  padding: 80px 0;
  background: #2D4A2D;
}
.pricing-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
  background: #3a5e3a;
  border-radius: 16px;
  padding: 32px;
  color: #fff;
}
.pricing-card.highlighted {
  background: #F5A623;
  color: #1A1A1A;
}

.pricing-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.pricing-name {
  font-size: 18px;
  font-weight: 600;
}

.pricing-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-icon-circle.gold { background: #F5A623; }
.pricing-icon-circle.green { background: #2D4A2D; }

.pricing-price { margin-bottom: 32px; }
.pricing-amount {
  font-size: 36px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .pricing-amount { font-size: 48px; }
}
.pricing-amount.gold-text { color: #F5A623; }
.pricing-amount.dark-text { color: #1A1A1A; }

.pricing-period {
  font-size: 14px;
  margin-left: 4px;
  color: rgba(255,255,255,0.6);
}
.pricing-period.dark-period { color: rgba(26,26,26,0.6); }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.pricing-feature.inactive { color: rgba(255,255,255,0.4); }

.check-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-circle.gold { background: #F5A623; }
.check-circle.green { background: #2D4A2D; }
.check-circle.dim { background: rgba(255,255,255,0.2); }
.check-circle.dim-h { background: rgba(255,255,255,0.2); }

.dim-text { color: rgba(255,255,255,0.4); }
.dim-text-h { color: rgba(26,26,26,0.4); }

.highlighted .pricing-feature { color: #1A1A1A; }
.highlighted .pricing-feature.inactive { color: rgba(26,26,26,0.4); }

/* ═══════════════════ CONTACT ═══════════════════ */
.contact-section {
  padding: 180px 0;
  background: #fff;
}
.contact-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-desc {
  color: #555;
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F5A623;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item span {
  color: #1A1A1A;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #F5F5F5;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  border: none;
  outline: none;
  transition: box-shadow 0.3s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(245,166,35,0.4);
}
.form-group textarea { resize: none; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.country-search-wrap {
  position: relative;
}
.country-search-input {
  width: 100%;
  background: #F5F5F5;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  border: none;
  outline: none;
  transition: box-shadow 0.3s;
}
.country-search-input:focus {
  box-shadow: 0 0 0 3px rgba(245,166,35,0.4);
}
.country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  max-height: 220px;
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.08);
  z-index: 100;
  display: none;
}
.country-dropdown.open {
  display: block;
}
.country-option {
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.country-option:hover:not(.country-option-empty) {
  background: #F5F5F5;
}
.country-option-empty {
  cursor: default;
  color: #888;
}
.country-code {
  color: #888;
  font-size: 12px;
  margin-left: 4px;
}

.form-submit {
  display: flex;
  justify-content: center;
}

/* ═══════════════════ TESTIMONIALS ═══════════════════ */
@keyframes testimonialCardIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes testimonialStarIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes testimonialContentIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonials-section {
  padding: 142px 0;
  background: #F5F5F5;
}

.testimonial-carousel {
  position: relative;
  /* overflow: hidden; */
  margin-top: 48px;
}
.testimonial-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 767px) {
  .testimonial-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .testimonial-carousel::-webkit-scrollbar {
    display: none;
  }
  .testimonial-track {
    gap: 0;
    overflow: visible;
  }
  .testimonial-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-width: 100%;
    flex-shrink: 0;
  }
}
@media (min-width: 768px) {
  .testimonial-track {
    gap: 24px;
    margin-top: 20px;
    margin-bottom: 42px;
    will-change: transform;
  }
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  flex-shrink: 0;
  width: 100%;
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  text-align: left;
}
@media (min-width: 768px) {
  .testimonial-card {
    padding: 32px;
    width: 580px;
    min-width: 580px;
    flex-shrink: 0;
  }
  .testimonial-card:not(.center) {
    opacity: 0.6;
    transform: scale(0.96);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  .testimonial-card.center {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    z-index: 1;
  }
  .testimonial-card:not(.center):hover {
    opacity: 0.85;
    cursor: pointer;
  }
}
/* Desktop: animate center card when it changes */
@media (min-width: 768px) {
  .testimonial-card.center.animating-in {
    animation: testimonialCardIn 0.5s ease-out forwards;
  }
  .testimonial-card.center.animating-in .stars svg {
    animation: testimonialStarIn 0.35s ease-out forwards;
  }
  .testimonial-card.center.animating-in .stars svg:nth-child(1) { animation-delay: 0.05s; }
  .testimonial-card.center.animating-in .stars svg:nth-child(2) { animation-delay: 0.1s; }
  .testimonial-card.center.animating-in .stars svg:nth-child(3) { animation-delay: 0.15s; }
  .testimonial-card.center.animating-in .stars svg:nth-child(4) { animation-delay: 0.2s; }
  .testimonial-card.center.animating-in .stars svg:nth-child(5) { animation-delay: 0.25s; }
  .testimonial-card.center.animating-in .stars .rating-num {
    animation: testimonialContentIn 0.35s ease-out 0.2s forwards;
    opacity: 0;
  }
  .testimonial-card.center.animating-in .testimonial-text {
    animation: testimonialContentIn 0.4s ease-out 0.15s forwards;
    opacity: 0;
  }
  .testimonial-card.center.animating-in .testimonial-author {
    animation: testimonialContentIn 0.4s ease-out 0.3s forwards;
    opacity: 0;
  }
}
/* Mobile: animate card when it becomes active */
@media (max-width: 767px) {
  .testimonial-card.center.animating-in {
    animation: testimonialCardIn 0.45s ease-out forwards;
  }
  .testimonial-card.center.animating-in .stars svg {
    animation: testimonialStarIn 0.35s ease-out forwards;
  }
  .testimonial-card.center.animating-in .stars svg:nth-child(1) { animation-delay: 0.1s; }
  .testimonial-card.center.animating-in .stars svg:nth-child(2) { animation-delay: 0.15s; }
  .testimonial-card.center.animating-in .stars svg:nth-child(3) { animation-delay: 0.2s; }
  .testimonial-card.center.animating-in .stars svg:nth-child(4) { animation-delay: 0.25s; }
  .testimonial-card.center.animating-in .stars svg:nth-child(5) { animation-delay: 0.3s; }
  .testimonial-card.center.animating-in .stars .rating-num {
    animation: testimonialContentIn 0.35s ease-out 0.25s forwards;
    opacity: 0;
  }
  .testimonial-card.center.animating-in .testimonial-text {
    animation: testimonialContentIn 0.4s ease-out 0.2s forwards;
    opacity: 0;
  }
  .testimonial-card.center.animating-in .testimonial-author {
    animation: testimonialContentIn 0.4s ease-out 0.35s forwards;
    opacity: 0;
  }
}

.stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}
.rating-num {
  margin-left: 8px;
  font-weight: 700;
  color: #1A1A1A;
}

.testimonial-text {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .testimonial-text { font-size: 16px; }
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-avatar.avatar-1 {
  background: linear-gradient(135deg, #2D4A2D 0%, #3d6b3d 100%);
}
.testimonial-avatar.avatar-2 {
  background: linear-gradient(135deg, #F5A623 0%, #e0961f 100%);
}
.testimonial-avatar.avatar-3 {
  background: linear-gradient(135deg, #7F52FF 0%, #9d75ff 100%);
}
.testimonial-avatar.avatar-4 {
  background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
}
.testimonial-avatar.avatar-5 {
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}
.author-name {
  font-weight: 700;
  font-size: 14px;
  color: #1A1A1A;
}
.author-title {
  font-size: 12px;
  color: #999;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.testimonial-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.2s ease;
}
.testimonial-btn.prev { background: #2D4A2D; }
.testimonial-btn.prev:hover { background: #3a5e3a; }
.testimonial-btn.next { background: #F5A623; }
.testimonial-btn.next:hover { background: #e0961f; }
@media (max-width: 767px) {
  .testimonial-btn:active {
    transform: scale(0.9);
  }
}

/* ═══════════════════ BLOG ═══════════════════ */
.blog-section {
  padding: 80px 0;
  background: #fff;
}
.blog-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .blog-grid { gap: 36px; }
}

.blog-card { cursor: pointer; }
.blog-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 16px;
}
.blog-img-wrap img {
  width: 100%;
  height: 438px;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-img-wrap img { transform: scale(1.05); }

.blog-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.blog-card:hover .blog-overlay { background: rgba(0,0,0,0.2); }
.blog-overlay-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F5A623;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.blog-card:hover .blog-overlay-icon { opacity: 1; }

.blog-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.blog-tag {
  background: rgba(245,166,35,0.2);
  color: #1A1A1A;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
}
.blog-title {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 8px;
  line-height: 1.3;
}
.blog-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}
.blog-readmore {
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Blog Modal */
.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.blog-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.blog-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.blog-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  overflow: hidden;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.blog-modal.is-open .blog-modal-dialog {
  transform: scale(1) translateY(0);
}
.blog-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1A1A1A;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: background 0.2s, transform 0.2s;
}
.blog-modal-close:hover {
  background: #fff;
  transform: scale(1.05);
}
.blog-modal-content {
  overflow-y: auto;
  max-height: 90vh;
}
.blog-modal-hero {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.blog-modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-modal-body {
  padding: 32px 40px 48px;
}
.blog-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.blog-modal-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-modal-tags .tag {
  background: rgba(245,166,35,0.2);
  color: #1A1A1A;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
}
.blog-modal-date {
  font-size: 14px;
  color: #888;
  font-weight: 500;
}
.blog-modal-title {
  font-size: 28px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.25;
  margin-bottom: 24px;
}
.blog-modal-article {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
}
.blog-modal-article p {
  margin-bottom: 16px;
}
.blog-modal-article p:last-child {
  margin-bottom: 0;
}
.blog-modal-article strong {
  color: #1A1A1A;
  font-weight: 600;
}
.blog-modal-article h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 24px 0 12px;
}
.blog-modal-article code {
  background: #F5F5F5;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Fira Code', 'SF Mono', monospace;
}
@media (max-width: 767px) {
  .blog-modal {
    padding: 16px;
  }
  .blog-modal-body {
    padding: 24px 20px 40px;
  }
  .blog-modal-title {
    font-size: 22px;
  }
  .blog-modal-hero {
    height: 200px;
  }
}

/* Project Modal (same design as blog modal) */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.project-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.project-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  overflow: hidden;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.project-modal.is-open .project-modal-dialog {
  transform: scale(1) translateY(0);
}
.project-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1A1A1A;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: background 0.2s, transform 0.2s;
}
.project-modal-close:hover {
  background: #fff;
  transform: scale(1.05);
}
.project-modal-content {
  overflow-y: auto;
  max-height: 90vh;
}
.project-modal-hero {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.project-modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-modal-body {
  padding: 32px 40px 48px;
}
.project-modal-meta {
  margin-bottom: 16px;
}
.project-modal-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.project-modal-tags .tag {
  background: rgba(245,166,35,0.2);
  color: #1A1A1A;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
}
.project-modal-title {
  font-size: 28px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.25;
  margin-bottom: 16px;
}
.project-modal-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}
.project-modal-article {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
}
.project-modal-article p {
  margin-bottom: 16px;
}
.project-modal-article p:last-child { margin-bottom: 0; }
.project-modal-article strong { color: #1A1A1A; font-weight: 600; }
.project-modal-article h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 24px 0 12px;
}
.project-modal-article ul {
  margin: 12px 0 16px;
  padding-left: 24px;
}
.project-modal-article li { margin-bottom: 8px; }
@media (max-width: 767px) {
  .project-modal { padding: 16px; }
  .project-modal-body { padding: 24px 20px 40px; }
  .project-modal-title { font-size: 22px; }
  .project-modal-hero { height: 200px; }
}

/* ═══════════════════ FAQ ═══════════════════ */
.faq-section {
  padding: 80px 0;
  background: #2D4A2D;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
  background: #3a5e3a;
  transition: background 0.3s;
}
.faq-item.active { background: #F5A623; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .faq-question { font-size: 16px; }
}
.faq-item.active .faq-question { color: #1A1A1A; }
.faq-question span { padding-right: 16px; }

.faq-icon-plus { display: block; flex-shrink: 0; }
.faq-icon-minus { display: none; flex-shrink: 0; }
.faq-item.active .faq-icon-plus { display: none; }
.faq-item.active .faq-icon-minus { display: block; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 200px;
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: rgba(26,26,26,0.8);
  line-height: 1.6;
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer-body {
  background: #fff;
  padding: 48px 0;
}
.footer-top {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e5e5e5;
}
@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer-heading {
  font-size: 24px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .footer-heading { font-size: 30px; }
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .footer-columns { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand { grid-column: 1 / -1; }
@media (min-width: 768px) {
  .footer-brand { grid-column: auto; }
}

.footer-brand-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 16px 0 24px;
}

.social-icons {
  display: flex;
  gap: 8px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F5A623;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2D4A2D;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}
.social-icon:hover { background: #e0961f; }

.footer-col-title {
  color: #F5A623;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 14px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col li {
  font-size: 14px;
  color: #555;
}
.footer-col a {
  color: #555;
  transition: color 0.3s;
}
.footer-col a:hover { color: #1A1A1A; }

.newsletter-input {
  display: flex;
  align-items: center;
  background: #F5F5F5;
  border-radius: 9999px;
  overflow: hidden;
}
.newsletter-input input {
  flex: 1;
  background: transparent;
  padding: 12px 16px;
  font-size: 14px;
  border: none;
  outline: none;
}
.newsletter-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2D4A2D;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
  flex-shrink: 0;
  transition: background 0.3s;
}
.newsletter-btn:hover { background: #3a5e3a; }

.footer-bottom {
  background: #2D4A2D;
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer-bottom p { color: rgba(255,255,255,0.7); }
.footer-bottom .gold-text { color: #F5A623; font-weight: 600; }
