:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --gray-dark: #111827;
  --gray: #6b7280;
  --gray-light: #f8fafc;
  --gray-border: #e5e7eb;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.10);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --glass-bg: rgba(255, 255, 255, 0.78);
  --accent-wash: rgba(249, 115, 22, 0.08);
  --accent-wash-strong: rgba(249, 115, 22, 0.16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', "Segoe UI", Arial, sans-serif;
}

/* Thai Language Font - Formal Minimal */
html[lang="th"] * {
  font-family: "IBM Plex Sans Thai", "Poppins", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.1px;
}

html[lang="th"] body {
  font-weight: 400;
}

html[lang="th"] .navbar nav a,
html[lang="th"] .nav-menu a,
html[lang="th"] .lang-dropdown-btn,
html[lang="th"] .btn,
html[lang="th"] .trust-quote {
  font-weight: 400;
}

body {
  background: #fbfbfd;
  color: var(--gray-dark);
  line-height: 1.6;
  font-weight: 300;
}

.container {
  width: 92%;
  max-width: 1180px;
  margin: auto;
}

/* Navbar */
.navbar {
  background: var(--glass-bg);
  border-bottom: 1px solid var(--gray-border);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 64px;
  backdrop-filter: blur(6px);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--gray-dark);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.navbar nav,
.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.navbar nav a,
.nav-menu a {
  color: var(--gray-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.3px;
  padding: 6px 8px;
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: var(--radius-sm);
}

.navbar nav a:hover,
.navbar nav a.active,
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--orange-dark);
  background: rgba(249, 115, 22, 0.08);
}

/* Language Selector */
.language-selector {
  display: flex;
  gap: 6px;
  position: relative;
}

.lang-dropdown-btn {
  color: var(--gray-dark);
  font-size: 12px;
  font-weight: 300;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.lang-dropdown-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.dropdown-icon {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.lang-dropdown-btn.active .dropdown-icon {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  margin-top: 4px;
  min-width: 140px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  z-index: 100;
  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.2s ease;
  visibility: hidden;
}

.lang-dropdown-menu.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.lang-option {
  padding: 8px 10px;
  text-decoration: none;
  color: var(--gray-dark);
  font-size: 12px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  text-align: left;
  width: 100%;
  cursor: pointer;
  display: block;
}

.lang-option:hover {
  background: var(--gray-light);
  color: var(--orange-dark);
}

.lang-option.active {
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange);
  font-weight: 500;
}

/* Hero */
.hero {
  background:
    radial-gradient(600px 260px at 8% 0%, var(--accent-wash) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fcfcfe 100%);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--gray-border);
}

.hero .container {
  text-align: left;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 46px;
  font-weight: 500;
  color: var(--gray-dark);
  margin-bottom: 14px;
  letter-spacing: -0.6px;
}

.hero-subtext {
  color: var(--gray-dark);
  max-width: 640px;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 10px 18px rgba(249, 115, 22, 0.18);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: var(--white);
  color: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn-outline:hover {
  background: rgba(234, 88, 12, 0.08);
  transform: translateY(-1px);
}

.btn-large {
  padding: 12px 26px;
  font-size: 15px;
  margin-top: 18px;
}

.product-info {
  text-align: center;
  padding: 30px 0;
}

.product-info h2 {
  color: var(--gray-dark);
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 400;
}

.product-info p {
  color: var(--gray-dark);
  margin-bottom: 20px;
  font-size: 16px;
}

/* Sections */
.section {
  padding: 60px 0;
  background: var(--white);
}

.section-alt {
  background: var(--gray-light);
}

.intro-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
  padding: 70px 0;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  color: var(--orange-dark);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: -0.8px;
}

.intro-content p {
  color: var(--gray-dark);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.intro-content p:last-child {
  margin-bottom: 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 36px;
}

.section h2 {
  color: var(--gray-dark);
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 500;
}

.section p {
  color: var(--gray-dark);
}

.grid {
  display: grid;
  gap: 15px;
}

.services-list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-item {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-item:hover img {
  transform: scale(1.05);
}

.service-item h3 {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 28px;
  font-weight: 400;
  margin: 0;
  padding: 25px 50px;
  border-radius: 8px;
  text-align: center;
  z-index: 10;
  white-space: nowrap;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.grid.cards {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 24px !important;
  max-width: 100%;
  margin: 0 auto;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(240px 120px at 20% 0%, rgba(249, 115, 22, 0.08), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover::after {
  opacity: 1;
}

.card h3 {
  color: var(--orange-dark);
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.3px;
}

.card p {
  color: var(--gray-dark);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  word-spacing: 0.05em;
}

.card-bg {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.45)),
    url("../images/NB_on_Table_500x500_Pixel_1.jpg");
  background-size: cover;
  background-position: center;
  border-color: transparent;
}

.card-bg h3 {
  color: var(--white);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.card-bg p {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.card-bg-security {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.45)),
    url("../images/Service_01_500x500_Pixel.jpg");
  background-size: cover;
  background-position: center;
  border-color: transparent;
}

.card-bg-security h3 {
  color: var(--white);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.card-bg-security p {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.card-bg-consulting {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.45)),
    url("../images/Email_500x500_Pixel.jpg");
  background-size: cover;
  background-position: center;
  border-color: transparent;
}

.card-bg-consulting h3 {
  color: var(--white);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.card-bg-consulting p {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.card-bg,
.card-bg-security,
.card-bg-consulting {
  backdrop-filter: blur(2px);
}

.card-bg::before,
.card-bg-security::before,
.card-bg-consulting::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 45%);
  pointer-events: none;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.split > div:first-child h2 {
  color: var(--gray-dark);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.split > div:first-child > p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.panel {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
}

.panel h3 {
  color: var(--gray-dark);
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-border);
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-number {
  display: block;
  font-size: 40px;
  font-weight: 600;
  color: var(--orange-dark);
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--gray-dark);
  font-weight: 400;
  letter-spacing: 0.3px;
}

.list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 0 0;
}

.list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 14px;
  color: var(--gray-dark);
  font-size: 15px;
  line-height: 1.6;
}

.list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.cta-section {
  background: var(--white);
}

.cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 400;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 400px;
}

.cta .btn-primary {
  background: var(--white);
  color: var(--orange-dark);
  border-color: var(--white);
  font-weight: 500;
}

.cta .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

/* Page Hero */
.page-hero {
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  padding: 50px 0 36px;
}

.page-hero h1 {
  font-size: 34px;
  margin-bottom: 8px;
}

/* About Page - Simplified Layout */
.about-section {
  padding: 70px 0;
}

.about-section-title {
  color: var(--orange);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.about-simple-grid {
  display: grid !important;
  grid-template-columns: 420px 1fr !important;
  gap: 80px !important;
  align-items: center !important;
}

.about-image {
  width: 100%;
  min-width: 0;
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: translateY(-4px);
}

.about-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
  object-fit: cover;
  transition: box-shadow 0.3s ease;
}

.about-image:hover img {
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.about-text {
  min-width: 0;
}

.about-text p {
  color: var(--gray-dark);
  line-height: 2;
  margin-bottom: 24px;
  font-size: 16px;
  text-align: left;
  word-spacing: 0.02em;
}

/* Why Choose Us Section */
.why-choose-section {
  background: var(--white);
  padding: 70px 0;
}

.section-title {
  color: var(--orange);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

.why-choose-grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 80px !important;
  align-items: center !important;
}

.why-choose-text {
  flex: 1 1 0;
  min-width: 0;
}

.why-choose-text p {
  color: var(--gray-dark);
  line-height: 2;
  margin-bottom: 24px;
  font-size: 16px;
  word-spacing: 0.02em;
}

.why-choose-icon {
  flex: 0 0 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.why-choose-icon:hover {
  transform: translateY(-4px);
}

.why-choose-icon img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 0;
  filter: none;
  transition: filter 0.3s ease;
}

.why-choose-icon:hover img {
  filter: none;
}

/* Trust Partners Section */
.trust-partners-section {
  padding: 70px 0;
  background: white;
}

.trust-partners-section .container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-partners-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.trust-quote {
  color: var(--gray-dark);
  font-size: 18px;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  line-height: 2;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.3px;
  position: relative;
}

.trust-quote::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.trust-partners-section h2,
.trust-partners-section .section-title {
  text-align: center !important;
}

.trust-partners-section p,
.trust-partners-section .trust-quote {
  text-align: center !important;
}

/* Responsive */
@media (max-width: 768px) {
  /* Page Hero - Mobile */
  .page-hero {
    padding: 30px 0 20px;
  }

  
  .page-hero h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .page-hero p {
    font-size: 14px;
  }
  
  /* About Section - Mobile */
  .about-section {
    padding: 40px 0;
  }
  
  .about-section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .about-simple-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  .about-image img {
    max-width: 100%;
    border-radius: 12px;
  }
  
  .about-text p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
  }
  
  /* Why Choose Us - Mobile */
  .why-choose-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .why-choose-grid {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 30px !important;
  }
  
  .why-choose-text {
    flex: 1 1 auto;
  }
  
  .why-choose-text p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
  }
  
  .why-choose-icon {
    flex: 0 0 auto !important;
    width: 100%;
    margin-bottom: 20px;
  }
  
  .why-choose-icon img {
    max-width: 100%;
    height: auto;
  }
  
  /* Trust Partners - Mobile */
  .trust-partners-section {
    padding: 40px 0;
  }
  
  .trust-quote {
    font-size: 16px;
    line-height: 1.8;
    max-width: 100%;
  }
  
  .trust-quote::before {
    top: -15px;
    width: 30px;
    height: 3px;
  }
}


/* Contact */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-info-section {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gray-border);
}

.company-info {
  display: grid;
  gap: 16px;
}

.company-info h2 {
  color: var(--gray-dark);
  font-size: 24px;
  margin: 0;
  font-weight: 400;
}

.company-info h3.english {
  color: var(--orange-dark);
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 16px;
}

.info-block {
  border-left: 4px solid var(--orange);
  padding-left: 16px;
}

.info-block h4 {
  color: var(--gray-dark);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 8px 0;
  font-weight: 500;
}

.info-block p {
  color: var(--gray-dark);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.contact-item {
  margin-bottom: 12px;
}

.contact-item .label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange-dark);
  font-weight: 500;
}

.contact-item a {
  color: var(--gray-dark);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
}

.contact-item a:hover {
  color: var(--orange-dark);
}

.contact-item p {
  margin: 0;
  color: var(--gray-dark);
  font-weight: 400;
  font-size: 14px;
}

.contact-form-section h3 {
  color: var(--gray-dark);
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 400;
}

.form-description {
  color: var(--gray-dark);
  font-size: 13px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.form {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 11px;
}

.form-row {
  display: grid;
  gap: 4px;
}

.form-row label {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-dark);
}

.form input,
.form textarea {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-size: 14px;
  font-family: inherit;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 10px;
  background: rgba(249, 115, 22, 0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(249, 115, 22, 0.2);
  margin: 8px 0;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--orange);
}

.form-checkbox label {
  font-size: 13px;
  color: var(--gray-dark);
  cursor: pointer;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

.privacy-link {
  color: var(--orange-dark);
  text-decoration: none;
  font-weight: 600;
}

.privacy-link:hover {
  text-decoration: underline;
}

.form-recaptcha {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  align-items: flex-start;
}

.form-recaptcha .g-recaptcha {
  transform: scale(1);
  transform-origin: 0 0;
}

.form-recaptcha small {
  font-size: 11px;
  color: var(--gray-dark);
  margin-top: 4px;
}

.form-captcha {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: rgba(249, 115, 22, 0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(249, 115, 22, 0.2);
  margin: 8px 0;
}

.form-captcha label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-dark);
  margin: 0;
}

.captcha-input-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.captcha-input {
  border: 1px solid var(--gray-border) !important;
  border-radius: 6px;
  padding: 8px 10px !important;
  font-size: 14px !important;
  flex: 1;
  max-width: 200px;
}

.btn-refresh-captcha {
  background: var(--gray-light);
  border: 1px solid var(--gray-border);
  color: var(--gray-dark);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
  white-space: nowrap;
}

.btn-refresh-captcha:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* Alert Messages */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 14px;
  border-left: 4px solid;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-success {
  background-color: #f0fdf4;
  border-color: #22c55e;
  color: #166534;
}

.alert-error {
  background-color: #fef2f2;
  border-color: #ef4444;
  color: #991b1b;
}

/* Footer */
.footer {
  background: var(--gray-light);
  color: var(--gray-dark);
  padding: 40px 0;
  margin-top: 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 20px;
}

.footer h3,
.footer h4 {
  color: var(--gray-dark);
  margin-bottom: 10px;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer li {
  margin-bottom: 6px;
}

.footer a {
  color: var(--gray);
  text-decoration: none;
}

.footer a:hover {
  color: var(--orange);
}

.footer-note {
  text-align: center;
  color: var(--gray);
  font-size: 12px;
}

/* Map Container */
.map-container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 24px;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

.map-container-small {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 20px;
}

.map-container-small iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: none;
}

/* Soft geometry background accents */
.section,
.intro-section,
.cta-section,
.about-section,
.why-choose-section,
.trust-partners-section {
  position: relative;
  overflow: hidden;
}

.section::before,
.intro-section::before,
.about-section::before,
.why-choose-section::before,
.trust-partners-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(249, 115, 22, 0.10) 0, transparent 36%),
    radial-gradient(circle at 92% 18%, rgba(249, 115, 22, 0.06) 0, transparent 32%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.02) 1px, transparent 1px);
  background-size: auto, auto, 36px 36px;
  opacity: 0.45;
  pointer-events: none;
}

.section > .container,
.intro-section > .container,
.cta-section > .container,
.about-section > .container,
.why-choose-section > .container,
.trust-partners-section > .container {
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    order: 4;
    margin-left: 0;
  }

  .navbar .container {
    position: relative;
  }
  
  .logo {
    order: 1;
  }
  
  .language-selector {
    order: 3;
  }
  
  .nav-menu {
    order: 4;
  }

  .nav-menu {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
    margin: 0;
  }

  .nav-menu.active {
    max-height: 500px;
    padding: 12px 0;
  }

  .nav-menu a {
    width: 100%;
    padding: 10px 16px;
    border-radius: 0;
    margin: 0;
  }

  .language-selector {
    display: flex;
    margin-left: auto;
    padding-right: 12px;
    border-right: 2px solid var(--gray-border);
  }

  .lang-dropdown-menu {
    position: absolute;
    bottom: auto;
    top: 100%;
    left: auto;
    right: 0;
    margin-bottom: 4px;
  }

  .logo img {
    height: 32px;
    max-width: 140px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-item {
    height: 220px;
  }

  .service-item h3 {
    font-size: 20px;
    padding: 16px 24px;
    white-space: normal;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-info-section {
    order: 2;
  }

  .contact-form-section {
    order: 1;
  }

  .map-container iframe {
    height: 300px;
  }
}
