/* === CSS Variables & Reset (Green Theme) === */
:root {
  --bg-main: #f4fbf7;
  --navy-dark: #022c22;
  --navy-card: #064e3b;
  --primary-gradient: linear-gradient(
    90deg,
    #10b981,
    #22c55e
  );
  --primary-gradient-hover: linear-gradient(90deg, #059669, #16a34a);
  --text-dark: #1e293b;
  --text-light: #475569;
  --white: #ffffff;
  --border-color: #d1fae5;
  --font-main: "Kanit", system-ui, sans-serif;
  --glow-color: rgba(16, 185, 129, 0.35);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
}
html {
  overflow-x: hidden;
}

body {
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* === Utilities === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}
.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.btn-primary:hover {
  background: var(--primary-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--navy-dark);
  border: 1px solid #a7f3d0;
}
.btn-outline:hover {
  border-color: var(--navy-dark);
  background: rgba(16, 185, 129, 0.05);
}

/* === Header === */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 24px;
  transition: all 0.3s ease;
}
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 999px;
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  max-width: 1100px;
  margin: 0 auto;
}
header.scrolled .nav-wrapper {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06);
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo svg {
  color: #10b981;
}
.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-weight: 500;
}
.nav-links a {
  color: var(--text-dark);
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #10b981;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.search-box {
  position: relative;
}
.search-box input {
  padding: 10px 16px 10px 36px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.8);
  outline: none;
  width: 200px;
}
.search-box svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}
.lang-toggle {
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
}

/* === Hero Section === */
.hero-section {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
}
/* The Big Dark Green Curve */
.hero-bg-curve {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 65%;
  height: 140%;
  background: linear-gradient(135deg, rgba(2,44,34,0.7), rgba(6,78,59,0.6)),
              url('../images/hero.webp') center/cover no-repeat;
  border-bottom-left-radius: 40%;
  z-index: 0;
}
/* Sparkles - Light Green */
.sparkle {
  position: absolute;
  color: #6ee7b7;
  z-index: 1;
}
.s1 {
  top: 15%;
  right: 45%;
}
.s2 {
  top: 25%;
  right: 10%;
  width: 24px;
  height: 24px;
}
.s3 {
  bottom: 20%;
  left: 10%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-content p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 90%;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.trust-badges {
  display: flex;
  gap: 24px;
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
}
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Video Card Fake UI */
.video-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  background: #e2e8f0;
  aspect-ratio: 16/10;
}
.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
}
.video-controls {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--primary-gradient);
  border-radius: 999px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.5);
  backdrop-filter: blur(10px);
}
.play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}
.progress-bar {
  flex-grow: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  position: relative;
}
.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 30%;
  background: var(--white);
  border-radius: 2px;
}

/* === Introduction Section === */
.intro-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(244,247,246,0.55) 0%, rgba(244,247,246,0.65) 100%),
              url("../images/section%20INTRODUCTION.webp") center/cover no-repeat;
  overflow: hidden;
  position: relative;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-left {
  position: relative;
  z-index: 2;
}
.intro-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #27c17e;
  margin-bottom: 12px;
}
.intro-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0b3d2e;
  line-height: 1.25;
  margin-bottom: 20px;
}
.intro-desc {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 36px;
}
.intro-card {
  background: var(--white);
  border: 1px solid #d1fae5;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 4px 24px rgba(16, 185, 129, 0.08);
  position: relative;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.intro-card:hover {
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
}
.intro-card::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -4px;
  width: 4px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 4px;
}
.intro-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0b3d2e;
  margin-bottom: 10px;
}
.intro-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}

/* Right Side — Geometric Image */
.intro-right {
  position: relative;
  height: 480px;
}
.intro-shape-bg {
  position: absolute;
  top: -30px;
  right: -40px;
  width: 92%;
  height: 112%;
  background: linear-gradient(160deg, #0b3d2e 0%, #064e3b 40%, #10b981 100%);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
  box-shadow: -20px 20px 60px rgba(11, 61, 46, 0.35),
              0 0 80px rgba(16, 185, 129, 0.1);
}
.intro-shape-accent {
  position: absolute;
  top: -45px;
  right: -55px;
  width: 88%;
  height: 116%;
  background: linear-gradient(150deg, rgba(39,193,126,0.15) 0%, rgba(16,185,129,0.05) 60%, transparent 100%);
  clip-path: polygon(28% 0%, 100% 0%, 100% 100%, 3% 100%);
  z-index: -1;
  backdrop-filter: blur(2px);
}
/* Shimmer overlay */
.intro-shape-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: introShimmer 4s ease-in-out infinite;
}
@keyframes introShimmer {
  0%, 100% { left: -100%; }
  50% { left: 120%; }
}
.intro-image-container {
  position: absolute;
  top: 0;
  right: -20px;
  width: 85%;
  height: 100%;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  overflow: hidden;
  z-index: 1;
}
.intro-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.intro-image-container:hover img {
  transform: scale(1.05);
}
.intro-shape-line {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 82%;
  height: 97%;
  border: 2px solid rgba(39,193,126,0.25);
  clip-path: polygon(21% 0%, 100% 0%, 100% 100%, 1% 100%);
  z-index: 2;
  pointer-events: none;
  transition: border-color 0.3s;
}
.intro-right:hover .intro-shape-line {
  border-color: rgba(39,193,126,0.5);
}

/* Introduction Responsive */
@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-title {
    font-size: 2rem;
  }
  .intro-right {
    height: 350px;
  }
  .intro-shape-bg,
  .intro-shape-accent,
  .intro-image-container {
    right: 0;
  }
}
@media (max-width: 600px) {
  .intro-section {
    padding: 60px 0;
  }
  .intro-title {
    font-size: 1.6rem;
  }
  .intro-right {
    height: 260px;
  }
  .intro-image-container {
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    width: 95%;
  }
  .intro-shape-bg {
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    width: 95%;
  }
}

/* === Features Section === */
.section {
  padding: 80px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: 2.5rem;
  color: var(--navy-dark);
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* === Accessibility === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* === Animations & Keyframes === */
@keyframes bounceDown {
  0%   { opacity: 0; transform: translateY(-60px); }
  60%  { opacity: 1; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  0%   { opacity: 0; transform: translateX(-80px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  0%   { opacity: 0; transform: translateX(80px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 8px var(--glow-color), 0 4px 20px rgba(0,0,0,0.03); }
  50%      { box-shadow: 0 0 20px var(--glow-color), 0 0 40px rgba(16,185,129,0.12); }
}

/* Scroll-triggered animation base */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.from-left {
  transform: translateX(-80px);
}
.animate-on-scroll.from-right {
  transform: translateX(80px);
}
.animate-on-scroll.from-bottom {
  transform: translateY(60px);
}
.animate-visible {
  opacity: 1 !important;
  transform: translateX(0) translateY(0) !important;
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Hero load animation */
.hero-content {
  animation: bounceDown 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.video-wrapper {
  animation: bounceDown 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.page-hero {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* === Card Glow Effect === */
.feature-card,
.service-detail-card,
.review-card,
.faq-item {
  border: 1px solid transparent;
  animation: glowPulse 3s ease-in-out infinite;
}
.feature-card:hover,
.service-detail-card:hover,
.review-card:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 25px var(--glow-color), 0 8px 32px rgba(16,185,129,0.15) !important;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.feature-icon {
  width: 50px;
  height: 50px;
  background: #ecfdf5; /* Light green bg */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981; /* Green icon */
  margin-bottom: 20px;
}
.feature-card h3 {
  margin-bottom: 12px;
  color: var(--navy-dark);
}
.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* === How it Works (Steps) === */
.steps-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-top: 20px;
}
.step {
  text-align: center;
  flex: 1;
  position: relative;
}
.step::after {
  content: "";
  position: absolute;
  top: 25px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}
.step:last-child::after {
  display: none;
}
.step-num {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
}

/* === Pre-Footer CTA === */
.cta-banner {
  background: var(--navy-card);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  color: var(--white);
}
.cta-banner h2 {
  font-size: 3rem;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

/* === Footer === */
main {
  flex: 1;
}
#footer-placeholder {
  margin-top: 0;
  background: var(--navy-dark);
}
footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 60px;
  padding-bottom: 0;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 800;
}
.footer-logo svg {
  color: #10b981;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 8px rgba(16,185,129,0.3));
}
.footer-col h6 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 600;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  background: transparent;
  border-top: 1px solid rgba(16, 185, 129, 0.15);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin-top: 0;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}
.footer-bottom a:hover {
  color: #10b981;
}
.social-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex: 1;
}
.social-icons a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}
.social-icons a:hover {
  background: #10b981;
  color: white;
}

/* === Modal === */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(5px);
}
.modal-overlay.active {
  display: flex;
}
.modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  max-width: 600px;
  width: 90%;
  position: relative;
}
.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy-dark);
}

/* === Page Hero (Sub-pages) === */
.page-hero {
  background: var(--navy-dark);
  padding: 120px 0 80px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,44,34,0.75) 0%, rgba(2,44,34,0.85) 100%);
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Per-page hero backgrounds */
.page-hero--services { background-image: url("../images/hero%20services.webp"); }
.page-hero--reviews  { background-image: url("../images/hero%20reviews.webp"); }
.page-hero--contact  { background-image: url("../images/hero%20contact.webp"); }
.page-hero--portfolio { background-image: url("../images/hero.webp"); }

/* === Service Detail Cards === */
.services-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.service-detail-card {
  display: flex;
  gap: 32px;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  align-items: flex-start;
}
.service-detail-card:hover {
  transform: translateY(-3px);
}
.service-detail-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: #ecfdf5;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
}
.service-detail-content h3 {
  font-size: 1.35rem;
  color: var(--navy-dark);
  margin-bottom: 12px;
}
.service-detail-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}
.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  list-style: none;
}
.service-features li {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  padding-left: 20px;
  position: relative;
}
.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

/* === Stats Bar === */
.stats-section {
  padding: 40px 0;
}
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
}

/* === Review Cards === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
}
.review-stars {
  color: #f59e0b;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-text {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.review-author strong {
  display: block;
  color: var(--navy-dark);
  font-size: 0.95rem;
}
.review-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* === Contact Page === */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(16,185,129,0.12);
  border-color: rgba(16,185,129,0.3);
}
.contact-card:hover::before {
  opacity: 1;
}
.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #ecfdf5;
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: transform 0.3s;
}
.contact-card:hover .contact-card-icon {
  transform: scale(1.1);
}
.contact-card-icon--blue {
  background: #eff6ff;
  color: #3b82f6;
}
.contact-card-icon--line {
  background: #ecfce5;
  color: #06c755;
}
.contact-card-icon--amber {
  background: #fffbeb;
  color: #f59e0b;
}
.contact-card-icon--purple {
  background: #f5f3ff;
  color: #8b5cf6;
}
.contact-card h3 {
  font-size: 1.15rem;
  color: var(--navy-dark);
  font-weight: 600;
}
.contact-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-card-action {
  font-size: 0.85rem;
  font-weight: 600;
  color: #10b981;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}
.contact-card:hover .contact-card-action {
  opacity: 1;
  transform: translateY(0);
}
.contact-card--line:hover {
  border-color: rgba(6, 199, 85, 0.4);
  box-shadow: 0 12px 40px rgba(6,199,85,0.12);
}

/* Contact CTA Banner */
.contact-cta-banner {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.contact-cta-content {
  position: relative;
  z-index: 1;
}
.contact-cta-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.contact-cta-buttons {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.btn-line {
  background: #06c755;
  color: #fff;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}
.btn-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6,199,85,0.3);
}

/* Keep old form styles for any other pages using them */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: var(--white);
  font-size: 1rem;
  font-family: var(--font-main);
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #10b981;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}


/* === Map Placeholder === */
.map-placeholder {
  background: #f8fafc;
  border: 2px dashed var(--border-color);
  border-radius: 16px;
  padding: 80px 40px;
  text-align: center;
  color: var(--text-light);
}
.map-placeholder p {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 500;
}
.map-placeholder span {
  font-size: 0.85rem;
}

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question h3 {
  font-size: 1.05rem;
  color: var(--navy-dark);
  font-weight: 600;
}
.faq-question svg {
  transition: transform 0.3s;
  color: var(--text-light);
}
.faq-item[open] .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-bg-curve {
    display: none;
  }
  .hero-section {
    background: var(--navy-dark);
  }
  .hero-content h1,
  .hero-content p {
    color: var(--white);
  }
  .hero-content h1 .text-gradient {
    background: linear-gradient(90deg, #34d399, #6ee7b7);
    -webkit-background-clip: text;
    background-clip: text;
  }
  .hero-section .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
  }
  .hero-section .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links,
  .search-box {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    text-align: center;
  }
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 36px;
  }
  .contact-cta-buttons {
    justify-content: center;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-detail-card {
    flex-direction: column;
  }
  .service-features {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .steps-container {
    flex-direction: column;
    gap: 40px;
  }
  .step::after {
    display: none;
  }
  .cta-banner h2 {
    font-size: 2rem;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
  .page-hero h1 {
    font-size: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  .contact-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .contact-cta-buttons .btn,
  .contact-cta-buttons .btn-line {
    width: 100%;
    justify-content: center;
  }
}

/* === Floating LINE Button === */
.floating-line {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}
.floating-line a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #06c755;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: linePulse 2s ease-in-out infinite;
}
.floating-line a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(6, 199, 85, 0.5);
  animation: none;
}
.floating-line svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
.floating-line .line-tooltip {
  background: #fff;
  color: #0e1f1a;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.floating-line:hover .line-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@keyframes linePulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(6, 199, 85, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(6, 199, 85, 0.6), 0 0 0 12px rgba(6, 199, 85, 0.1); }
}

/* === Client Logos / Brands === */
.brands-section {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.brands-section .section-header h2 {
  font-size: 1.5rem;
  color: var(--text-light);
  font-weight: 500;
}
.brands-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 12px;
  background: #f8faf9;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  min-width: 140px;
}
.brand-item:hover {
  border-color: #10b981;
  box-shadow: 0 4px 16px rgba(16,185,129,0.1);
  transform: translateY(-2px);
}
.brand-item span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: 1px;
}

/* === Counter Animation === */
.counter-value {
  display: inline-block;
  transition: all 0.3s;
}

/* === About Page === */
.about-hero-visual {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 60px;
}
.about-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,61,46,0.7), rgba(6,78,59,0.4));
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero-overlay h2 {
  color: #fff;
  font-size: 3rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.about-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(16,185,129,0.1);
}
.about-card h3 {
  font-size: 1.3rem;
  color: var(--navy-dark);
  margin-bottom: 12px;
}
.about-card p {
  color: var(--text-light);
  line-height: 1.8;
}
.timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-gradient);
  border-radius: 3px;
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: #10b981;
  border-radius: 50%;
  border: 3px solid #ecfdf5;
}
.timeline-item h4 {
  font-size: 1.1rem;
  color: var(--navy-dark);
  margin-bottom: 4px;
}
.timeline-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* === Portfolio Page === */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-color);
  transition: transform 0.3s, box-shadow 0.3s;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(16,185,129,0.12);
}
.portfolio-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #064e3b, #0b3d2e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 3rem;
  overflow: hidden;
}
.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-info {
  padding: 20px 24px;
}
.portfolio-info h3 {
  font-size: 1.1rem;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.portfolio-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}
.portfolio-tag {
  display: inline-block;
  background: #ecfdf5;
  color: #10b981;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-hero-overlay h2 {
    font-size: 2rem;
  }
}
@media (max-width: 500px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .brands-grid {
    gap: 16px;
  }
  .brand-item {
    min-width: 100px;
    padding: 12px 16px;
  }
}

/* === Portfolio Grid (Homepage) === */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}
.portfolio-card:hover {
  transform: translateY(-5px);
  border-color: #10b981;
  box-shadow: 0 8px 30px rgba(16,185,129,0.12);
}
.portfolio-image {
  height: 180px;
  background: linear-gradient(135deg, #064e3b, #065f46);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.portfolio-info {
  padding: 20px;
}
.portfolio-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.portfolio-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.portfolio-tag {
  display: inline-block;
  padding: 4px 14px;
  background: #ecfdf5;
  color: #065f46;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}
@media (max-width: 992px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* === Stats Counter Section === */
.stats-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-card) 100%);
  padding: 60px 0;
}
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {
  padding: 20px;
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #10b981;
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}
@media (max-width: 768px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-number {
    font-size: 2.2rem;
  }
}

/* === Why Choose Us Section === */
.why-section {
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: #10b981;
  box-shadow: 0 8px 30px rgba(16,185,129,0.12);
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
@media (max-width: 992px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* === FAQ Section (Homepage) === */
.faq-section {
  background: var(--bg-main);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}
.faq-item:hover {
  border-color: #10b981;
}
.faq-item[open] {
  border-color: #10b981;
  box-shadow: 0 4px 20px rgba(16,185,129,0.1);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  gap: 16px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy-dark);
  margin: 0;
}
.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-light);
}
.faq-item[open] .faq-question svg {
  transform: rotate(180deg);
  color: #10b981;
}
.faq-answer {
  padding: 0 24px 20px;
}
.faq-answer p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* === Service Area Section === */
.service-area-section {
  background: var(--white);
}
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.service-area-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  min-height: 380px;
}
.service-area-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-area-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.area-tag {
  display: inline-block;
  padding: 8px 18px;
  background: #ecfdf5;
  color: #065f46;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid #d1fae5;
  transition: all 0.3s;
}
.area-tag:hover {
  background: #10b981;
  color: white;
  border-color: #10b981;
}
.area-cta {
  background: var(--bg-main);
  border-radius: 14px;
  padding: 20px 24px;
  border: 1px solid var(--border-color);
}
.area-cta p {
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--navy-dark);
}
@media (max-width: 768px) {
  .service-area-grid {
    grid-template-columns: 1fr;
  }
  .service-area-map {
    min-height: 280px;
  }
}

/* === Vertical Service Cards === */
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,51,102,0.15);
}
.svc-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}
.svc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-card:hover .svc-card-image img {
  transform: scale(1.08);
}
.svc-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-gradient);
  color: white;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.svc-card-body {
  padding: 24px;
}
.svc-card-icon {
  width: 48px;
  height: 48px;
  background: #ecfdf5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  margin-bottom: 16px;
}
.svc-card-body h3 {
  font-size: 1.15rem;
  color: var(--navy-dark);
  margin-bottom: 8px;
  font-weight: 600;
}
.svc-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.svc-card-link {
  color: #10b981;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.svc-card:hover .svc-card-link {
  color: #059669;
}

/* === Service Modal === */
.svc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 20, 40, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.svc-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.svc-modal {
  background: var(--white);
  border-radius: 24px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.svc-modal-overlay.active .svc-modal {
  transform: translateY(0) scale(1);
}
.svc-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.svc-modal-close:hover {
  background: #fff;
  transform: scale(1.1);
}
.svc-modal-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}
.svc-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-modal-body {
  padding: 32px;
}
.svc-modal-body h2 {
  font-size: 1.5rem;
  color: var(--navy-dark);
  margin-bottom: 16px;
}
.svc-modal-body > p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 1rem;
}
.svc-modal-body h4 {
  font-size: 1rem;
  color: var(--navy-dark);
  margin-bottom: 12px;
  font-weight: 600;
}
.svc-modal-body .service-features {
  grid-template-columns: 1fr 1fr;
}

/* === Service Cards Responsive === */
@media (max-width: 1024px) {
  .svc-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .svc-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .svc-card-image {
    height: 160px;
  }
  .svc-modal {
    max-height: 95vh;
    border-radius: 16px;
  }
  .svc-modal-image {
    height: 200px;
    border-radius: 16px 16px 0 0;
  }
  .svc-modal-body {
    padding: 24px;
  }
  .svc-modal-body .service-features {
    grid-template-columns: 1fr;
  }
}

/* === Footer Accordion & Action Buttons (desktop: hidden extras) === */
.footer-chevron {
  display: none; /* hidden on desktop */
}
.footer-action-buttons {
  display: none; /* hidden on desktop, shown on mobile */
}
.footer-address {
  display: flex;
  align-items: flex-start;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 12px;
}
.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
}
.footer-icon--phone {
  background-color: rgba(16, 185, 129, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
}
.footer-icon--line {
  background-color: rgba(6, 199, 85, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%2306c755'%3E%3Cpath d='M24 10.314C24 4.943 18.615.572 12 .572S0 4.943 0 10.314c0 4.811 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.301.079.766.038 1.08l-.164 1.02c-.045.301-.24 1.186 1.049.645 1.291-.539 6.916-4.078 9.436-6.975C23.176 14.393 24 12.458 24 10.314'/%3E%3C/svg%3E");
}
.footer-icon--email {
  background-color: rgba(59, 130, 246, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E");
}
.footer-icon--loc {
  background-color: rgba(245, 158, 11, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f59e0b' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}
.footer-contact-list li {
  display: flex;
  align-items: center;
}

/* ==========================================================
   COMPREHENSIVE MOBILE RESPONSIVE — MOBILE ONLY
   All rules below are inside @media queries.
   PC layout (>992px) is completely unaffected.
   ========================================================== */

/* --- Hamburger Button (hidden on desktop) --- */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--navy-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}
/* Animated X when active */
.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* --- Mobile Header & Nav (≤992px) --- */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
  .header-cta {
    display: none;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 16px 0;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 150;
  }
  .nav-links.nav-open {
    display: flex;
  }
  .nav-links a {
    padding: 14px 28px;
    font-size: 1.05rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: background 0.2s, color 0.2s;
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .nav-links a:hover,
  .nav-links a:active {
    background: rgba(16, 185, 129, 0.06);
    color: #10b981;
  }
  .nav-wrapper {
    padding: 18px 18px 18px 22px;
    max-width: 100%;
    box-sizing: border-box;
  }
  header {
    width: 100%;
    max-width: 100vw;
  }
  main {
    overflow-x: hidden;
  }
  .logo-img {
    height: 46px;
  }
  .logo span {
    font-size: 1.2rem;
  }
}

/* --- Tablet & Small Laptop (≤768px) --- */
@media (max-width: 768px) {
  /* Header */
  header {
    padding: 8px 12px;
  }
  .nav-wrapper {
    border-radius: 16px;
    padding: 8px 12px 8px 16px;
  }

  /* Hero Section */
  .hero-section {
    padding: 100px 0 60px;
  }
  .hero-content h1 {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }
  .hero-content p {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 28px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
  .trust-badges {
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 0.8rem;
  }

  /* Sections */
  .section {
    padding: 60px 0;
  }
  .section-header h2 {
    font-size: 1.6rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Page Hero (Sub-pages) */
  .page-hero {
    padding: 100px 0 50px;
  }
  .page-hero h1 {
    font-size: 1.8rem;
  }
  .page-hero p {
    font-size: 1rem;
  }

  /* Stats */
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 0.85rem;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 36px 24px;
    border-radius: 16px;
    margin-bottom: 24px;
  }
  .cta-banner h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  .cta-banner p {
    font-size: 0.9rem;
  }

  /* Introduction Section */
  .intro-section {
    padding: 60px 0;
  }

  /* Footer — Plan 2: Centered + Accordion */
  footer {
    padding-top: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-brand {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 0;
  }
  .footer-brand .footer-logo {
    justify-content: center;
  }
  .footer-brand p {
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .footer-brand div {
    margin: 0 auto;
  }

  /* Accordion sections */
  .footer-accordion {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0;
    cursor: pointer;
    position: relative;
  }
  .footer-accordion h6 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    margin-bottom: 0;
    font-size: 0.95rem;
  }
  .footer-chevron {
    display: block;
    position: absolute;
    right: 0;
    top: 18px;
    color: rgba(255,255,255,0.4);
    transition: transform 0.3s;
  }
  .footer-accordion.open .footer-chevron {
    transform: rotate(180deg);
    color: #10b981;
  }
  .footer-accordion ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-bottom: 0;
  }
  .footer-accordion.open ul {
    max-height: 200px;
    padding-bottom: 16px;
  }

  /* Contact column — action buttons */
  .footer-contact-col {
    padding-top: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 20px;
  }
  .footer-contact-col h6 {
    margin-bottom: 14px;
  }
  .footer-contact-list {
    display: none;
  }
  .footer-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
  }
  .footer-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  }
  .footer-action-btn--line {
    background: #06c755;
    border-color: #06c755;
  }
  .footer-action-btn--line:hover {
    box-shadow: 0 4px 16px rgba(6,199,85,0.3);
  }
  .footer-address {
    margin-top: 14px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
    justify-content: center;
  }

  .footer-bottom {
    gap: 8px;
    padding: 16px 0;
    font-size: 0.75rem;
  }
  .footer-bottom span {
    display: block;
    line-height: 1.8;
  }

  /* Contact CTA Banner */
  .contact-cta-banner {
    padding: 28px 20px;
  }
  .contact-cta-content h3 {
    font-size: 1.2rem;
  }

  /* Privacy Policy */
  .policy-hero {
    padding: 80px 0 40px;
  }
  .policy-hero h1 {
    font-size: 2rem;
  }
  .policy-content {
    padding: 40px 16px 60px;
  }
  .policy-content h2 {
    font-size: 1.4rem;
    margin-top: 36px;
  }
  .policy-toc {
    padding: 20px 20px;
  }

  /* Modal */
  .modal-content {
    padding: 28px 20px;
    border-radius: 16px;
  }

  /* FAQ */
  .faq-question {
    padding: 16px 18px;
  }
  .faq-question h3 {
    font-size: 0.95rem;
  }
  .faq-answer {
    padding: 0 18px 16px;
  }

  /* About page */
  .about-hero-visual {
    height: 250px;
    border-radius: 14px;
    margin-bottom: 36px;
  }
  .about-hero-overlay h2 {
    font-size: 1.6rem;
  }
  .about-card {
    padding: 28px 24px;
  }

  /* Brands */
  .brands-grid {
    gap: 16px;
  }
  .brand-item {
    padding: 12px 20px;
    min-width: 120px;
  }
  .brand-item span {
    font-size: 0.95rem;
  }

  /* Floating LINE */
  .floating-line {
    bottom: 20px;
    right: 20px;
  }
  .floating-line a {
    width: 52px;
    height: 52px;
  }
  .floating-line svg {
    width: 28px;
    height: 28px;
  }
  .line-tooltip {
    display: none;
  }

  /* Why cards text */
  .why-card {
    padding: 24px 20px;
  }
  .why-card h3 {
    font-size: 1rem;
  }
}

/* --- Small Phones (≤480px) --- */
@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 16px;
  }

  /* Hero */
  .hero-section {
    padding: 90px 0 48px;
  }
  .hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .hero-content p {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }
  .hero-buttons .btn {
    font-size: 0.95rem;
    padding: 12px 20px;
  }
  .trust-badges {
    font-size: 0.75rem;
    gap: 8px 14px;
  }

  /* Sections */
  .section {
    padding: 44px 0;
  }
  .section-header {
    margin-bottom: 28px;
  }
  .section-header h2 {
    font-size: 1.35rem;
  }
  .section-subtitle {
    font-size: 0.88rem;
  }

  /* Page Hero */
  .page-hero {
    padding: 90px 0 40px;
  }
  .page-hero h1 {
    font-size: 1.5rem;
  }
  .page-hero p {
    font-size: 0.9rem;
  }

  /* Stats */
  .stats-section {
    padding: 36px 0;
  }
  .stats-bar {
    gap: 16px;
  }
  .stat-item {
    padding: 12px 8px;
  }
  .stat-number {
    font-size: 1.7rem;
  }
  .stat-label {
    font-size: 0.8rem;
  }

  /* Introduction geometry hides */
  .intro-right {
    height: 220px;
  }
  .intro-title {
    font-size: 1.4rem;
  }
  .intro-desc {
    font-size: 0.92rem;
  }
  .intro-card {
    padding: 20px;
  }
  .intro-card h3 {
    font-size: 1.05rem;
  }
  .intro-card p {
    font-size: 0.88rem;
  }

  /* Features / Pain Points */
  .feature-card {
    padding: 24px 20px;
  }
  .feature-card h3 {
    font-size: 1rem;
  }
  .feature-card p {
    font-size: 0.88rem;
  }

  /* Steps */
  .step h3 {
    font-size: 1rem;
  }
  .step-num {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 28px 20px;
    border-radius: 14px;
  }
  .cta-banner h2 {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
  .cta-banner p {
    font-size: 0.85rem;
  }

  /* Footer */
  footer {
    padding-top: 32px;
  }
  .footer-grid {
    gap: 24px;
  }
  .footer-logo {
    font-size: 1.1rem;
  }
  .footer-logo-img {
    height: 38px;
  }
  .footer-col h6 {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }
  .footer-col ul li {
    margin-bottom: 8px;
    font-size: 0.85rem;
  }
  .footer-bottom {
    font-size: 0.72rem;
  }

  /* Contact */
  .contact-card {
    padding: 24px 16px;
  }
  .contact-card h3 {
    font-size: 1rem;
  }
  .contact-card p {
    font-size: 0.88rem;
  }
  .contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  /* Contact CTA */
  .contact-cta-banner {
    padding: 24px 16px;
    border-radius: 16px;
  }
  .contact-cta-content h3 {
    font-size: 1.05rem;
  }
  .contact-cta-content p {
    font-size: 0.85rem;
  }
  .btn-line {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  /* Review */
  .review-card {
    padding: 24px 20px;
  }
  .review-text {
    font-size: 0.9rem !important;
  }

  /* FAQ */
  .faq-question {
    padding: 14px 16px;
  }
  .faq-question h3 {
    font-size: 0.9rem;
  }
  .faq-answer {
    padding: 0 16px 14px;
  }
  .faq-answer p {
    font-size: 0.88rem;
  }

  /* Portfolio */
  .portfolio-info {
    padding: 16px;
  }
  .portfolio-info h3 {
    font-size: 0.95rem;
  }

  /* Service cards */
  .svc-card-body {
    padding: 18px;
  }
  .svc-card-body h3 {
    font-size: 1.05rem;
  }
  .svc-card-body p {
    font-size: 0.85rem;
  }

  /* Service modal */
  .svc-modal-overlay {
    padding: 12px;
  }
  .svc-modal {
    border-radius: 14px;
  }
  .svc-modal-image {
    height: 160px;
    border-radius: 14px 14px 0 0;
  }
  .svc-modal-body {
    padding: 20px;
  }
  .svc-modal-body h2 {
    font-size: 1.25rem;
  }
  .svc-modal-body > p {
    font-size: 0.9rem;
  }

  /* Why cards */
  .why-card {
    padding: 20px 16px;
  }
  .why-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  .why-card h3 {
    font-size: 0.95rem;
  }
  .why-card p {
    font-size: 0.85rem;
  }

  /* Service Area */
  .service-area-map {
    min-height: 220px;
  }
  .service-area-info h3 {
    font-size: 1.2rem;
  }
  .area-tag {
    padding: 6px 14px;
    font-size: 0.82rem;
  }
  .area-cta {
    padding: 16px 18px;
  }

  /* About */
  .about-hero-visual {
    height: 200px;
  }
  .about-card {
    padding: 24px 20px;
  }
  .about-card h3 {
    font-size: 1.1rem;
  }

  /* Timeline */
  .timeline {
    padding-left: 32px;
  }
  .timeline-item::before {
    left: -26px;
    width: 12px;
    height: 12px;
  }

  /* Privacy Policy */
  .policy-hero {
    padding: 70px 0 32px;
  }
  .policy-hero h1 {
    font-size: 1.6rem;
  }
  .policy-content {
    padding: 32px 12px 48px;
  }
  .policy-content h2 {
    font-size: 1.2rem;
    margin-top: 28px;
  }
  .policy-content h3 {
    font-size: 1.05rem;
  }
  .policy-content p,
  .policy-content ul li {
    font-size: 0.9rem;
  }

  /* Brands */
  .brands-grid {
    gap: 10px;
  }
  .brand-item {
    min-width: 90px;
    padding: 10px 14px;
  }
  .brand-item span {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }

  /* Floating LINE Button */
  .floating-line {
    bottom: 16px;
    right: 16px;
  }
  .floating-line a {
    width: 48px;
    height: 48px;
  }
  .floating-line svg {
    width: 26px;
    height: 26px;
  }
}

/* --- Very Small Phones (≤360px) --- */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }
  .hero-content h1 {
    font-size: 1.4rem;
  }
  .section-header h2 {
    font-size: 1.2rem;
  }
  .page-hero h1 {
    font-size: 1.3rem;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .cta-banner h2 {
    font-size: 1.1rem;
  }
  .nav-wrapper {
    padding: 6px 10px 6px 12px;
  }
  .logo-img {
    height: 28px;
  }
  .logo span {
    font-size: 0.95rem;
  }
}
