/* ============================================================
   PlandeeupGlobal - Main Stylesheet
   Colors: Blue #1A5BA8, Green #7DC242, White #FFFFFF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700&family=Sarabun:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --blue-primary:   #1A5BA8;
  --blue-dark:      #0D3B6E;
  --blue-mid:       #2472BC;
  --blue-light:     #EEF4FB;
  --green-primary:  #7DC242;
  --green-dark:     #5A9A28;
  --green-light:    #F0FAE5;
  --white:          #FFFFFF;
  --gray-50:        #F8FAFC;
  --gray-100:       #F1F5F9;
  --gray-200:       #E2E8F0;
  --gray-400:       #94A3B8;
  --gray-600:       #475569;
  --gray-800:       #1E293B;
  --font-main:      'Kanit', 'Sarabun', sans-serif;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:      0 4px 16px rgba(26,91,168,.12);
  --shadow-lg:      0 10px 40px rgba(26,91,168,.18);
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --transition:     0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--blue-primary); border-radius: 3px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 300;
  padding: 6px 0;
}
.topbar-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: inherit; transition: color var(--transition); }
.topbar a:hover { color: var(--green-primary); }
.topbar-contact { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-contact span { display: flex; align-items: center; gap: 6px; }
.topbar-contact i { color: var(--green-primary); font-size: .9rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--blue-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(13,59,110,.35);
}
.header-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-primary);
  color: white !important;
  font-weight: 700;
  font-size: .88rem;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(125,194,66,.4);
  letter-spacing: .2px;
}
.nav-phone-btn i { color: white; font-size: .95rem; }
.nav-phone-btn:hover {
  background: var(--green-dark);
  color: white !important;
  box-shadow: 0 4px 16px rgba(125,194,66,.55);
  transform: translateY(-1px);
}
.nav-phone-btn:hover i { color: white; }
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
}
.logo-text {
  color: var(--white);
  line-height: 1.2;
}
.logo-text .brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .5px;
}
.logo-text .brand-name span { color: var(--green-primary); }
.logo-text .brand-tagline {
  font-size: .72rem;
  font-weight: 300;
  opacity: .85;
  letter-spacing: .3px;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  color: rgba(255,255,255,.9);
  font-size: .92rem;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--green-primary);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { font-weight: 600; }

.nav-cta {
  color: rgba(255,255,255,.9) !important;
  padding: 8px 14px;
  font-weight: 400;
  font-size: .92rem;
  margin-left: 0;
  box-shadow: none;
  background: transparent;
}
.nav-cta:hover { background: transparent; transform: none; box-shadow: none; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 25px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   PAGE HERO / BANNER
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 60%, var(--blue-mid) 100%);
  color: var(--white);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; margin: auto; }
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.25;
}
.page-hero p {
  font-size: 1.05rem;
  font-weight: 300;
  opacity: .9;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  opacity: .75;
  margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--green-primary); }
.breadcrumb .sep { opacity: .5; }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section { padding: 80px 24px; }
.section-sm { padding: 56px 24px; }
.container { max-width: 1280px; margin: auto; }
.container-md { max-width: 960px; margin: auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--green-primary);
  border-radius: 1px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-title span { color: var(--green-primary); }
.section-desc {
  font-size: 1rem;
  color: var(--gray-600);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.8;
}
.section-header { margin-bottom: 48px; }
.section-header-center { text-align: center; }
.section-header-center .section-label { justify-content: center; }
.section-header-center .section-desc { margin: 0 auto; }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(125,194,66,.35);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(125,194,66,.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-outline-blue {
  background: transparent;
  color: var(--blue-primary);
  border-color: var(--blue-primary);
}
.btn-outline-blue:hover {
  background: var(--blue-primary);
  color: var(--white);
}
.btn-blue {
  background: var(--blue-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-sm { padding: 9px 20px; font-size: .85rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--blue-light);
}
.card-body { padding: 24px; }
.card-img { width: 100%; height: 220px; object-fit: cover; }

/* Stat card */
.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.stat-card:hover { border-color: var(--green-primary); box-shadow: var(--shadow-md); }
.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--blue-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--green-primary); }
.stat-label { font-size: .9rem; color: var(--gray-600); font-weight: 400; }

/* Feature card */
.feature-card {
  padding: 32px 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--green-primary);
  border-radius: 0 0 4px 0;
  transition: height var(--transition);
}
.feature-card:hover::before { height: 100%; }
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.feature-icon {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue-primary);
  font-size: 1.5rem;
  transition: all var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--green-primary);
  color: var(--white);
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--blue-dark);
}
.feature-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================================
   HERO SECTION (Homepage)
   ============================================================ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 55%, #2580CC 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  opacity: .18;
  mix-blend-mode: luminosity;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,59,110,.92) 0%, rgba(26,91,168,.7) 60%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px;
  margin: auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(125,194,66,.25);
  border: 1px solid rgba(125,194,66,.5);
  color: var(--green-primary);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.hero-badge i { font-size: .85rem; }
.hero-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}
.hero-title .accent { color: var(--green-primary); }
.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: .85;
  margin-bottom: 32px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .num {
  display: block;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--green-primary);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: .78rem;
  opacity: .75;
  font-weight: 300;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap {
  position: relative;
}
.hero-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.hero-img-badge {
  position: absolute;
  bottom: -16px; left: -16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}
.hero-img-badge .badge-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-img-badge .badge-text { font-size: .8rem; line-height: 1.35; }
.hero-img-badge .badge-text strong {
  display: block;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: .95rem;
}

/* ============================================================
   MARQUEE / PARTNERS
   ============================================================ */
.marquee-section {
  background: var(--blue-dark);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  white-space: nowrap;
  padding: 0 40px;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.marquee-item i { color: var(--green-primary); font-size: .7rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-track:hover { animation-play-state: paused; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--gray-50); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.why-img img { width: 100%; height: 440px; object-fit: cover; }
.why-badge-overlay {
  position: absolute;
  top: 24px; right: -20px;
  background: var(--blue-primary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 120px;
}
.why-badge-overlay strong { display: block; font-size: 2rem; font-weight: 700; line-height: 1; }
.why-badge-overlay small { font-size: .75rem; opacity: .85; display: block; margin-top: 4px; }
.why-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.why-item:hover { background: var(--blue-light); }
.why-item-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-item-text h4 { font-size: .95rem; font-weight: 600; color: var(--blue-dark); margin-bottom: 4px; }
.why-item-text p { font-size: .85rem; color: var(--gray-600); line-height: 1.6; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--green-primary);
}
.product-card-img {
  width: 100%; height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img { transform: scale(1.05); }
.product-card-img-wrap { overflow: hidden; position: relative; }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--green-primary);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .5px;
}
.product-card-body { padding: 20px; }
.product-cat {
  font-size: .75rem;
  font-weight: 600;
  color: var(--blue-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.product-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}
.product-card-body p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.portfolio-item img {
  width: 100%; height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,59,110,.92) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.portfolio-overlay p { font-size: .82rem; opacity: .8; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
  color: var(--white);
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-band-inner { position: relative; z-index: 1; max-width: 700px; margin: auto; }
.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-band p {
  font-size: 1rem;
  opacity: .85;
  margin-bottom: 28px;
  font-weight: 300;
}
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   TESTIMONIALS / REVIEWS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { color: #f5a623; font-size: .9rem; margin-bottom: 14px; }
.testimonial-text {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-name { font-weight: 600; font-size: .9rem; }
.testimonial-role { font-size: .78rem; color: var(--gray-400); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; align-items: start; }
.contact-info-card {
  background: var(--blue-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.contact-info-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.contact-info-card > p { font-size: .9rem; opacity: .75; margin-bottom: 32px; line-height: 1.7; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(125,194,66,.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-text label {
  display: block;
  font-size: .72rem;
  opacity: .6;
  margin-bottom: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contact-info-text a, .contact-info-text span {
  font-size: .93rem;
  font-weight: 400;
}
.contact-info-text a:hover { color: var(--green-primary); }
.contact-social { display: flex; gap: 12px; margin-top: 28px; }
.contact-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition);
}
.contact-social a:hover { background: var(--green-primary); transform: translateY(-2px); }

/* Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.contact-form-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 6px; }
.contact-form-card > p { font-size: .87rem; color: var(--gray-600); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 8px;
}
.form-group label span { color: var(--green-primary); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: .92rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(26,91,168,.1);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

/* Map */
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 300px;
  margin-top: 32px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.85);
}
.footer-main { padding: 64px 24px 40px; }
.footer-grid {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand .site-logo img { height: 54px; }
.footer-brand p {
  font-size: .87rem;
  line-height: 1.8;
  margin-top: 16px;
  opacity: .75;
  font-weight: 300;
}
.footer-heading {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: var(--green-primary);
  border-radius: 1px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .87rem;
  opacity: .75;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--green-primary);
  font-weight: 700;
}
.footer-links a:hover { opacity: 1; color: var(--green-primary); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .85rem;
  opacity: .75;
}
.footer-contact-item i { color: var(--green-primary); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 24px;
}
.footer-bottom-inner {
  max-width: 1280px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  opacity: .6;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--green-primary); color: var(--white); opacity: 1; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--blue-primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--blue-dark); transform: translateY(-3px); }

/* ---- Floating Contact Buttons ---- */
.float-contact {
  position: fixed;
  right: 28px;
  bottom: 84px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 998;
}
.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: all var(--transition);
  position: relative;
}
.float-btn:hover { transform: scale(1.15); box-shadow: 0 6px 24px rgba(0,0,0,.3); }
.float-btn::before {
  content: attr(data-label);
  position: absolute;
  right: 56px;
  background: rgba(30,41,59,.88);
  color: white;
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  font-family: var(--font-main);
}
.float-btn:hover::before { opacity: 1; }
.float-btn-phone { background: var(--green-primary); }
.float-btn-line   { background: #06C755; }
.float-btn-fb     { background: #1877F2; }

/* ============================================================
   MISC
   ============================================================ */
.text-green { color: var(--green-primary); }
.text-blue { color: var(--blue-primary); }
.text-muted { color: var(--gray-600); }
.bg-blue-light { background: var(--blue-light); }
.bg-gray { background: var(--gray-50); }
.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), var(--green-primary));
  border-radius: 2px;
  margin: 16px 0;
}
.tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
}
.tag-blue { background: var(--blue-light); color: var(--blue-primary); }
.tag-green { background: var(--green-light); color: var(--green-dark); }

/* Filter tabs */  
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-tab {
  padding: 9px 22px;
  border-radius: 30px;
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  transition: all var(--transition);
  font-family: var(--font-main);
}
.filter-tab:hover, .filter-tab.active {
  background: var(--blue-primary);
  color: var(--white);
  border-color: var(--blue-primary);
}

/* Accordion */
.accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 8px;
}
.accordion-header {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: .95rem;
  color: var(--blue-dark);
  transition: background var(--transition);
  user-select: none;
}
.accordion-header:hover { background: var(--blue-light); }
.accordion-header.open { background: var(--blue-light); color: var(--blue-primary); }
.accordion-icon { font-size: .8rem; transition: transform var(--transition); }
.accordion-header.open .accordion-icon { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--white);
}
.accordion-body.open { max-height: 400px; }
.accordion-body-inner {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 90px; right: 28px;
  background: var(--blue-dark);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(120%);
  transition: transform var(--transition);
  z-index: 1000;
  max-width: 320px;
}
.toast.show { transform: translateX(0); }
.toast i { color: var(--green-primary); font-size: 1.2rem; }

/* Loading animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-inner { padding: 60px 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .header-inner { height: 62px; }
  .main-nav {
    position: fixed;
    top: 62px; left: 0;
    width: 100%;
    background: var(--blue-dark);
    flex-direction: column;
    gap: 0;
    padding: 16px;
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .nav-link { width: 100%; padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-cta { width: 100%; justify-content: center; margin-left: 0; margin-top: 8px; }
  .nav-toggle { display: flex; }
  .nav-phone-btn { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .section { padding: 56px 16px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 48px 16px; }
  .cta-band-actions { flex-direction: column; align-items: center; }
}
