/* 
  WEST GATE EXPORT - Main Stylesheet 
  Theme: Batı Avrupa İhracat Portalı (Dark Gold Modern Theme)
  Author: ToykunSolutions
*/

/* 1. Global Reset & Variables */
:root {
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Colors */
  --bg-primary: #080c14;
  --bg-secondary: #0f1524;
  --bg-card: rgba(15, 23, 42, 0.65);
  --bg-card-hover: rgba(21, 32, 58, 0.8);
  
  --color-gold: #d4af37;
  --color-gold-light: #f7d054;
  --color-gold-dark: #aa7c11;
  --color-blue: #3b82f6;
  --color-blue-dark: #1d4ed8;
  
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(212, 175, 55, 0.2);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.15);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.gold-gradient-text {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
}

.glass-panel:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

/* 2. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #000000;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* 3. Header Section */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 12, 20, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  transition: padding var(--transition-normal), background var(--transition-normal);
  padding: 1.25rem 0;
}

.site-header.scrolled {
  padding: 0.8rem 0;
  background: rgba(8, 12, 20, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 48px;
}

.logo-img {
  height: 100%;
  width: auto;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-item:hover, .nav-item.active {
  color: #ffffff;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition-fast);
}

.nav-item:hover::after, .nav-item.active::after {
  width: 100%;
}

.nav-item.highlight {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(170, 124, 17, 0.1) 100%);
  border: 1px solid var(--color-gold);
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  color: var(--color-gold);
}

.nav-item.highlight::after {
  display: none;
}

.nav-item.highlight:hover {
  background: var(--color-gold);
  color: #000000;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* 4. Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 60% 30%, rgba(8, 12, 20, 0.65) 0%, rgba(8, 12, 20, 0.95) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 650px;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--color-gold-light);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Visual Box */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.visual-card {
  width: 100%;
  max-width: 380px;
  padding: 2rem;
  border-color: rgba(255, 255, 255, 0.1);
}

.visual-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.pulse-indicator {
  width: 10px;
  height: 10px;
  background-color: var(--color-gold);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--color-gold);
  animation: pulse 2s infinite;
}

.route-line-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  position: relative;
}

.city-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.city-dot {
  width: 16px;
  height: 16px;
  background-color: var(--color-blue);
  border: 3px solid var(--bg-secondary);
  border-radius: 50%;
}

.city-dot.gold {
  background-color: var(--color-gold);
}

.city-name {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.5rem;
  color: var(--text-secondary);
}

.route-path {
  position: absolute;
  top: 27px;
  left: 15px;
  right: 15px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  z-index: 1;
}

.route-progress {
  display: block;
  height: 100%;
  width: 75%;
  background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-gold) 100%);
  border-radius: 2px;
  animation: progressPulse 3s infinite ease-in-out;
}

.route-progress.reversed {
  margin-left: auto;
  background: linear-gradient(270deg, var(--color-gold) 0%, var(--color-blue) 100%);
}

.flags-row {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
  justify-content: center;
  height: 13px;
}

.flag-svg {
  border-radius: 1px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  display: block;
}

.visual-card-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.visual-badge {
  background: rgba(255, 255, 255, 0.03);
  padding: 0.6rem;
  border-radius: 6px;
  text-align: center;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  color: var(--color-gold);
  border: 1px dashed rgba(212, 175, 55, 0.2);
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes progressPulse {
  0% { width: 10%; opacity: 0.5; }
  50% { width: 100%; opacity: 1; }
  100% { width: 100%; opacity: 0.2; }
}

/* 5. Stats Section */
.stats-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* 6. Services Section */
.services-section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.service-card {
  padding: 3rem 2.5rem;
}

.service-icon {
  width: 54px;
  height: 54px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 1.8rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* 7. Checklist Section */
.checklist-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.checklist-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.checklist-category {
  display: flex;
  flex-direction: column;
}

.category-title {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--color-gold);
  padding-left: 0.75rem;
  color: #ffffff;
}

.checklist-items {
  display: grid;
  gap: 1rem;
}

/* Custom checkbox card */
.check-item-card {
  display: flex;
  align-items: flex-start;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-fast);
  gap: 1rem;
}

.check-item-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.check-item-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.check-custom-box {
  width: 22px;
  height: 22px;
  border: 2px solid var(--text-muted);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all var(--transition-fast);
}

.check-item-card input:checked ~ .check-custom-box {
  border-color: var(--color-gold);
  background-color: rgba(212, 175, 55, 0.1);
}

.check-custom-box::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid var(--color-gold-light);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.check-item-card input:checked ~ .check-custom-box::after {
  display: block;
}

.check-item-card input:checked {
  background: rgba(212, 175, 55, 0.05);
}

.check-item-card:has(input:checked) {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.03);
}

.check-item-text strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.check-item-text small {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.checklist-submit-area {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border-color);
  padding-top: 2.5rem;
}

/* Results Dashboard styling */
.checklist-result-dashboard {
  animation: fadeIn 0.6s ease-out;
}

.result-score-block {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  background: rgba(255, 255, 255, 0.01);
  padding: 2rem;
  border-radius: 12px;
  border: 1px dashed var(--border-color);
}

.result-score-circle {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.score-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-bg-circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 8;
}

.score-progress-circle {
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 8;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  stroke-linecap: round;
}

.score-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.score-feedback h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.score-feedback p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Missing Document Guide section */
.guide-section-heading {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
}

.guide-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.guide-card {
  padding: 1.75rem;
  border-left: 4px solid #ef4444; /* red accent for missing/warning */
  background: rgba(239, 68, 68, 0.02);
}

.guide-card.complete {
  border-left-color: #10b981; /* green accent for complete */
  background: rgba(16, 185, 129, 0.02);
}

.guide-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.guide-card-header h5 {
  font-size: 1.1rem;
  color: #ffffff;
}

.guide-status-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.guide-status-badge.missing {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.guide-status-badge.complete {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.guide-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.guide-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.05);
  padding-top: 0.75rem;
}

.guide-source strong, .guide-time strong {
  color: #ffffff;
}

.result-footer-actions {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 8. About Section */
.about-section {
  padding: 100px 0;
  position: relative;
}

.about-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.about-features {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-feat-item {
  display: flex;
  gap: 1.25rem;
}

.feat-icon {
  width: 28px;
  height: 28px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--color-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
  flex-shrink: 0;
}

.about-feat-item h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.about-feat-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-glow-box {
  width: 100%;
  max-width: 420px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.about-glow-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0) 70%);
  pointer-events: none;
}

.domain-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.subdomain-notice h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-family: var(--font-heading);
}

.subdomain-notice p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* 9. Wizard steps navigation and views styling */
.wizard-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
  gap: 1rem;
}

.wizard-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.4;
  transition: opacity var(--transition-normal);
}

.wizard-step.active {
  opacity: 1;
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--bg-secondary);
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
}

.wizard-step.active .step-num {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: #000000;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.step-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}

.wizard-step.active .step-text {
  color: var(--color-gold-light);
}

.wizard-view {
  display: none;
}

.wizard-view.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

.step-heading {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--color-gold);
  padding-left: 1rem;
}

.step-instruction {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

/* Custom File Upload */
.file-upload-wrapper {
  position: relative;
  width: 100%;
  height: 48px;
  cursor: pointer;
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px dashed var(--border-color);
  border-radius: 8px;
  background: rgba(8, 12, 20, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  padding: 0 1rem;
}

.file-upload-wrapper:hover .file-upload-placeholder {
  border-color: var(--color-gold);
  background: rgba(8, 12, 20, 0.8);
}

.upload-icon {
  font-size: 1.2rem;
}

/* Success summary card */
.success-registration-summary {
  background: rgba(16, 185, 129, 0.02);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 3.5rem;
  animation: fadeIn 0.6s ease-out;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.05);
}

.summary-heading {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 0.75rem;
}

.summary-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.summary-field {
  display: flex;
  flex-direction: column;
}

.summary-field span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.summary-field strong {
  font-size: 1rem;
  color: #ffffff;
}

.success-alert-banner {
  display: flex;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  padding: 1.25rem;
  gap: 1rem;
  align-items: flex-start;
}

.success-banner-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #10b981;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.success-alert-banner p {
  color: #34d399;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Form Styling */
.contact-form-container {
  padding: 3rem;
  border-color: rgba(255, 255, 255, 0.06);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(8, 12, 20, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(8, 12, 20, 0.8);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.form-group select option {
  background-color: var(--bg-secondary);
  color: #ffffff;
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  padding: 0.75rem;
  border-radius: 6px;
  display: none;
  text-align: center;
}

.form-feedback.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #34d399;
  display: block;
}

.form-feedback.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171;
  display: block;
}

/* 10. Footer Section */
.site-footer {
  background: #04060a;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer-logo {
  height: 48px;
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 350px;
}

.footer-links h5, .footer-partner h5 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  position: relative;
}

.footer-links ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.partner-branding {
  background: rgba(255, 255, 255, 0.02);
  padding: 1.25rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.partner-name {
  display: block;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.partner-tag {
  display: block;
  font-size: 0.75rem;
  color: var(--color-gold-light);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partner-branding p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 2rem 0;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-meta-links {
  display: flex;
  gap: 1.5rem;
}

.footer-meta-links a {
  color: var(--text-muted);
}

.footer-meta-links a:hover {
  color: var(--color-gold);
}

/* 11. Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    justify-content: center;
  }
  .visual-card {
    max-width: 450px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .checklist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .guide-list-grid {
    grid-template-columns: 1fr;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-content {
    text-align: center;
  }
  .about-features {
    justify-items: center;
  }
  .about-feat-item {
    text-align: left;
    max-width: 500px;
  }
  .about-visual {
    order: -1;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #080c14;
    border-left: 1px solid var(--border-color);
    padding: 100px 2rem 2rem 2rem;
    transition: right var(--transition-normal);
    z-index: 1000;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .nav-item {
    font-size: 1.1rem;
    width: 100%;
    display: block;
  }
  .nav-item.highlight {
    text-align: center;
    margin-top: 1rem;
  }
  .mobile-nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .mobile-nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .checklist-wrapper {
    padding: 2rem 1.5rem;
  }
  .lock-card {
    padding: 2rem 1.5rem;
  }
  .contact-form-container {
    padding: 2rem 1.5rem;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-bottom-container {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* 12. Large Corner Flags & Responsive adjustments */
.hero-flag {
  position: absolute;
  top: 170px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 3;
  animation: floatFlag 6s infinite ease-in-out;
}

.hero-flag.left-flag {
  left: 3%;
}

.hero-flag.right-flag {
  right: 3%;
  animation-delay: 3s;
}

.large-flag-svg {
  width: 140px;
  height: 93px;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-normal);
}

.large-flag-svg:hover {
  transform: scale(1.08) translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), var(--shadow-gold);
}

@keyframes floatFlag {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

@media (max-width: 1280px) {
  .large-flag-svg {
    width: 100px;
    height: 67px;
  }
}

@media (max-width: 1100px) {
  .hero-flag {
    display: none; /* Hide flags on tablets/mobiles to prevent overlapping text content */
  }
}

