/* ============================================
   Secondlifeasia™ — Global Stylesheet
   Font: Century Gothic
   Colors: #1a1a2e (dark) / #fcd703 (yellow) / #16213e / #0f3460
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Century Gothic', 'CenturyGothic', sans-serif;
  background-color: #1a1a2e;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: #fcd703; text-decoration: none; transition: color 0.3s; }
a:hover { color: #ffe44d; }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section { padding: 80px 0; }
.section-title {
  font-size: 2.2rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 700;
}
.section-subtitle {
  text-align: center;
  color: #b0b0b0;
  font-size: 1.05rem;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 6px;
  font-family: 'Century Gothic', 'CenturyGothic', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: #fcd703;
  color: #1a1a2e;
}
.btn-primary:hover {
  background: #ffe44d;
  color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252, 215, 3, 0.3);
}
.btn-outline {
  background: transparent;
  color: #fcd703;
  border: 2px solid #fcd703;
}
.btn-outline:hover {
  background: #fcd703;
  color: #1a1a2e;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s, background 0.3s;
  padding: 0;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  background: rgba(26, 26, 46, 0.99);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.nav-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span { color: #fcd703; }
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 6px;
}
.nav-links a {
  color: #b0b0b0;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: #fcd703; background: rgba(252, 215, 3, 0.08); }
.nav-cta {
  background: #fcd703 !important;
  color: #1a1a2e !important;
  border-radius: 4px;
  font-weight: 700 !important;
  margin-left: 8px;
}
.nav-cta:hover { background: #ffe44d !important; }

/* Mobile Nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #16213e;
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 4px;
    transition: right 0.35s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; padding: 12px 14px; width: 100%; }
  .nav-cta { margin-left: 0; margin-top: 10px; text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(252, 215, 3, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero h1 {
  font-size: 3.2rem;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 .highlight { color: #fcd703; }
.hero p {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
}

/* ---------- Three Pillars ---------- */
.pillars { background: #16213e; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pillar-card {
  background: #0f3460;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(252, 215, 3, 0.1);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(252, 215, 3, 0.3);
}
.pillar-icon {
  width: 64px;
  height: 64px;
  background: rgba(252, 215, 3, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}
.pillar-card h3 { color: #ffffff; font-size: 1.2rem; margin-bottom: 12px; }
.pillar-card p { color: #b0b0b0; font-size: 0.92rem; line-height: 1.6; }

@media (max-width: 768px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: #1a1a2e;
  padding: 50px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.8rem;
  color: #fcd703;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item p { color: #b0b0b0; font-size: 0.9rem; }

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item h3 { font-size: 2rem; }
}

/* ---------- Client Logos ---------- */
.clients { background: #16213e; text-align: center; }
.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
.client-logo {
  background: #0f3460;
  padding: 20px 32px;
  border-radius: 8px;
  font-weight: 700;
  color: #ffffff;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.3s;
}
.client-logo:hover { border-color: #fcd703; }

/* ---------- Product Cards ---------- */
.products-preview { background: #1a1a2e; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.product-card {
  background: #16213e;
  border-radius: 12px;
  padding: 36px 30px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s, border-color 0.3s;
}
.product-card:hover { transform: translateY(-4px); border-color: rgba(252, 215, 3, 0.3); }
.product-card h3 { color: #ffffff; font-size: 1.15rem; margin-bottom: 10px; }
.product-card h3 .tm { color: #fcd703; font-size: 0.75rem; vertical-align: super; }
.product-card p { color: #b0b0b0; font-size: 0.9rem; line-height: 1.6; }
.product-card .tag {
  display: inline-block;
  background: rgba(252, 215, 3, 0.12);
  color: #fcd703;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  margin-bottom: 14px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
  text-align: center;
  padding: 80px 0;
}
.cta-banner h2 { color: #ffffff; font-size: 2rem; margin-bottom: 16px; }
.cta-banner p { color: #b0b0b0; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ---------- Page Hero (sub pages) ---------- */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  text-align: center;
}
.page-hero h1 { font-size: 2.6rem; color: #ffffff; font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: #b0b0b0; font-size: 1.1rem; }

/* ---------- About Page ---------- */
.about-story { background: #16213e; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.story-text h2 { color: #ffffff; font-size: 1.8rem; margin-bottom: 20px; }
.story-text p { color: #b0b0b0; margin-bottom: 16px; line-height: 1.7; }
.story-visual {
  background: #0f3460;
  border-radius: 12px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 1px solid rgba(252, 215, 3, 0.15);
}

.mission-vision { background: #1a1a2e; }
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.mv-card {
  background: #16213e;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
}
.mv-card .icon { font-size: 2rem; margin-bottom: 16px; }
.mv-card h3 { color: #ffffff; margin-bottom: 12px; }
.mv-card p { color: #b0b0b0; font-size: 0.9rem; }

.timeline { background: #16213e; }
.timeline-list {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline-list::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(252, 215, 3, 0.3);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  background: #0f3460;
  padding: 24px 28px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 28px;
  width: 12px;
  height: 12px;
  background: #fcd703;
  border-radius: 50%;
  border: 2px solid #16213e;
}
.timeline-year { color: #fcd703; font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; }
.timeline-item h3 { color: #ffffff; font-size: 1.05rem; margin-bottom: 8px; }
.timeline-item p { color: #b0b0b0; font-size: 0.88rem; }

.mara-tvet { background: #1a1a2e; }
.mara-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.mara-visual {
  background: #16213e;
  border-radius: 12px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 1px solid rgba(252, 215, 3, 0.15);
}
.mara-text h2 { color: #ffffff; font-size: 1.6rem; margin-bottom: 16px; }
.mara-text p { color: #b0b0b0; margin-bottom: 14px; line-height: 1.7; }
.mara-text ul { list-style: none; }
.mara-text ul li { color: #b0b0b0; padding: 6px 0; padding-left: 24px; position: relative; }
.mara-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #fcd703;
  font-weight: 700;
}

@media (max-width: 768px) {
  .story-grid, .mara-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
}

/* ---------- Products Page ---------- */
.product-detail { background: #16213e; }
.product-detail:nth-child(even) { background: #1a1a2e; }
.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.product-detail:nth-child(even) .product-detail-inner { direction: rtl; }
.product-detail:nth-child(even) .product-detail-inner > * { direction: ltr; }
.product-detail-visual {
  background: #0f3460;
  border-radius: 12px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 1px solid rgba(252, 215, 3, 0.12);
}
.product-detail-text h2 { color: #ffffff; font-size: 1.6rem; margin-bottom: 6px; }
.product-detail-text h2 .tm { color: #fcd703; font-size: 0.7rem; vertical-align: super; }
.product-detail-text .subtitle { color: #fcd703; font-size: 0.88rem; margin-bottom: 16px; font-weight: 600; }
.product-detail-text p { color: #b0b0b0; margin-bottom: 16px; line-height: 1.7; }
.product-detail-text ul { list-style: none; margin-bottom: 20px; }
.product-detail-text ul li { color: #b0b0b0; padding: 5px 0; padding-left: 22px; position: relative; font-size: 0.9rem; }
.product-detail-text ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #fcd703;
  font-weight: 700;
}

@media (max-width: 768px) {
  .product-detail-inner { grid-template-columns: 1fr; }
  .product-detail:nth-child(even) .product-detail-inner { direction: ltr; }
}

/* ---------- Enterprise Page ---------- */
.industry-tabs { background: #16213e; padding-bottom: 0; }
.tab-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 12px 28px;
  background: #0f3460;
  color: #b0b0b0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Century Gothic', 'CenturyGothic', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
}
.tab-btn.active, .tab-btn:hover { background: #fcd703; color: #1a1a2e; border-color: #fcd703; }
.tab-content { display: none; background: #1a1a2e; padding: 60px 0; }
.tab-content.active { display: block; }
.tab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.tab-visual {
  background: #16213e;
  border-radius: 12px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 1px solid rgba(252, 215, 3, 0.12);
}
.tab-text h3 { color: #ffffff; font-size: 1.4rem; margin-bottom: 16px; }
.tab-text p { color: #b0b0b0; margin-bottom: 14px; line-height: 1.7; }
.tab-text ul { list-style: none; }
.tab-text ul li { color: #b0b0b0; padding: 6px 0; padding-left: 24px; position: relative; font-size: 0.9rem; }
.tab-text ul li::before { content: '■'; position: absolute; left: 0; color: #fcd703; font-size: 0.6rem; top: 9px; }

.cleanroom { background: #1a1a2e; }
.cleanroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.cleanroom-diagram {
  background: #16213e;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid rgba(252, 215, 3, 0.12);
}
.cr-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cr-step:last-child { border-bottom: none; }
.cr-step-num {
  width: 36px;
  height: 36px;
  background: #fcd703;
  color: #1a1a2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.cr-step-text { color: #e0e0e0; font-size: 0.9rem; }

.capex { background: #16213e; }
.capex-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}
.capex-table th, .capex-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.capex-table th {
  background: #0f3460;
  color: #fcd703;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.capex-table td { color: #e0e0e0; font-size: 0.9rem; }
.capex-table tr:hover td { background: rgba(252, 215, 3, 0.03); }

.roadmap { background: #1a1a2e; }
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.roadmap-card {
  background: #16213e;
  border-radius: 10px;
  padding: 28px 22px;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.roadmap-card .quarter {
  color: #fcd703;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.roadmap-card h4 { color: #ffffff; font-size: 1rem; margin-bottom: 10px; }
.roadmap-card ul { list-style: none; }
.roadmap-card ul li { color: #b0b0b0; font-size: 0.82rem; padding: 3px 0; padding-left: 16px; position: relative; }
.roadmap-card ul li::before { content: '·'; position: absolute; left: 0; color: #fcd703; }

@media (max-width: 768px) {
  .tab-grid, .cleanroom-grid { grid-template-columns: 1fr; }
  .roadmap-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- ESG Page ---------- */
.esg-hero { background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%); }
.esg-stats { background: #16213e; }
.esg-stat-big {
  text-align: center;
  padding: 60px 0;
}
.esg-stat-big h3 {
  font-size: 4.5rem;
  color: #fcd703;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
}
.esg-stat-big p { color: #b0b0b0; font-size: 1.1rem; max-width: 500px; margin: 0 auto; }

.sdg-alignment { background: #1a1a2e; }
.sdg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.sdg-card {
  background: #16213e;
  border-radius: 10px;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.sdg-card .sdg-num {
  width: 48px;
  height: 48px;
  background: #fcd703;
  color: #1a1a2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 14px;
}
.sdg-card h4 { color: #ffffff; font-size: 1rem; margin-bottom: 8px; }
.sdg-card p { color: #b0b0b0; font-size: 0.85rem; }

.circular-economy { background: #16213e; }
.ce-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.ce-step {
  background: #0f3460;
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  min-width: 140px;
  border: 1px solid rgba(252, 215, 3, 0.1);
}
.ce-step .ce-icon { font-size: 1.8rem; margin-bottom: 10px; }
.ce-step h4 { color: #ffffff; font-size: 0.95rem; margin-bottom: 6px; }
.ce-step p { color: #b0b0b0; font-size: 0.8rem; }
.ce-arrow { color: #fcd703; font-size: 1.5rem; font-weight: 700; }

.esg-report { background: #1a1a2e; text-align: center; }

@media (max-width: 768px) {
  .sdg-grid { grid-template-columns: 1fr; }
}

/* ---------- Partners Page ---------- */
.partner-models { background: #16213e; }
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.model-card {
  background: #0f3460;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s;
}
.model-card:hover { transform: translateY(-4px); }
.model-icon { font-size: 2.2rem; margin-bottom: 16px; }
.model-card h3 { color: #ffffff; font-size: 1.15rem; margin-bottom: 12px; }
.model-card p { color: #b0b0b0; font-size: 0.88rem; line-height: 1.6; }

.partner-list { background: #1a1a2e; }
.partner-category { margin-bottom: 50px; }
.partner-category h3 { color: #ffffff; font-size: 1.2rem; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid rgba(252, 215, 3, 0.3); }
.partner-items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.partner-item {
  background: #16213e;
  padding: 14px 24px;
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.partner-form-section { background: #16213e; }

@media (max-width: 768px) {
  .models-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact Page ---------- */
.contact-info-section { background: #16213e; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.contact-card {
  background: #0f3460;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
}
.contact-card .contact-icon { font-size: 2rem; margin-bottom: 14px; }
.contact-card h3 { color: #ffffff; font-size: 1.1rem; margin-bottom: 10px; }
.contact-card p { color: #b0b0b0; font-size: 0.9rem; line-height: 1.6; }
.contact-card a { color: #fcd703; }

.contact-main { background: #1a1a2e; }
.contact-main-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
.contact-form-wrapper {
  background: #16213e;
  border-radius: 12px;
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.06);
}
.contact-form-wrapper h2 { color: #ffffff; font-size: 1.5rem; margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  color: #b0b0b0;
  font-size: 0.88rem;
  margin-bottom: 6px;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #0f3460;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: #e0e0e0;
  font-family: 'Century Gothic', 'CenturyGothic', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #fcd703;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: #16213e; }

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 400px;
}
.map-wrapper iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }

.business-inquiry { background: #16213e; }
.inquiry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.inquiry-card {
  background: #0f3460;
  border-radius: 10px;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.06);
}
.inquiry-card h4 { color: #ffffff; font-size: 1.05rem; margin-bottom: 10px; }
.inquiry-card p { color: #b0b0b0; font-size: 0.88rem; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-main-inner { grid-template-columns: 1fr; }
  .inquiry-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  background: #0a0a1a;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand h3 { color: #ffffff; font-size: 1.2rem; margin-bottom: 14px; }
.footer-brand h3 span { color: #fcd703; }
.footer-brand p { color: #b0b0b0; font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #b0b0b0; font-size: 0.88rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: #fcd703; }
.footer-col p { color: #b0b0b0; font-size: 0.88rem; line-height: 1.7; }
.footer-col .reg-no {
  color: #fcd703;
  font-size: 0.82rem;
  margin-top: 14px;
  font-weight: 600;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: #666; font-size: 0.82rem; }
.footer-bottom a { color: #888; font-size: 0.82rem; }
.footer-bottom a:hover { color: #fcd703; }
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: #16213e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0b0b0;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.footer-social a:hover { background: #fcd703; color: #1a1a2e; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Form Success Message ---------- */
.form-success {
  display: none;
  background: rgba(252, 215, 3, 0.1);
  border: 1px solid rgba(252, 215, 3, 0.3);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}
.form-success.show { display: block; }
.form-success p { color: #fcd703; font-weight: 600; }

/* ---------- robots/sitemap helper (not visible) ---------- */
