/* Main Layout - Wizora Website */

/* ===== DISABLE ALL ANIMATIONS & OUTLINES ===== */
*, *::before, *::after {
  transition: none !important;
  animation: none !important;
}

*:focus, *:focus-visible, *:active {
  outline: none !important;
  box-shadow: none !important;
}

/* ===== PREVENT IMAGE DRAGGING ===== */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* ===== GLOBAL LAYOUT ===== */

body {
  background: linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65)), url('../assets/images/rectangle-122.webp') center/cover no-repeat fixed;
  min-height: 100vh;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

section {
  position: relative;
  overflow: hidden;
}

/* ===== DECORATIVE ACCENT RECTANGLES ===== */

.accent-rect {
  position: absolute;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  width: 80px;
  height: auto;
  /* Animation removed per user request */
}

/* Calculator Section Accents */
.calculator-section .accent-rect {
  opacity: 0.2;
}

.calculator-section .accent-teal {
  top: 10%;
  left: 5%;
  width: 100px;
}

.calculator-section .accent-orange {
  bottom: 15%;
  right: 8%;
  width: 90px;
}

.calculator-section .accent-blue {
  top: 50%;
  right: 3%;
  width: 70px;
}

/* Download Section Accents */
.download-section .small-rect {
  position: absolute;
  opacity: 0.25;
  width: 60px;
  height: auto;
  pointer-events: none;
}

.download-section .rect-teal {
  top: 20%;
  left: 10%;
}

.download-section .rect-blue {
  bottom: 25%;
  right: 15%;
}

.download-section .rect-orange {
  top: 60%;
  left: 3%;
}

/* Hero Section Accents */
.hero-section .accent-rect {
  opacity: 0.12;
}

.hero-section .accent-yellow {
  top: 15%;
  left: 8%;
  width: 110px;
}

.hero-section .accent-coral {
  bottom: 20%;
  right: 10%;
  width: 95px;
}

.hero-section .accent-sky {
  top: 40%;
  left: 3%;
  width: 75px;
}

/* Contact Section Accents */
.contact-section .accent-rect {
  opacity: 0.18;
}

.contact-section .accent-navy {
  top: 10%;
  right: 5%;
  width: 85px;
}

.contact-section .accent-teal-2 {
  bottom: 15%;
  left: 8%;
  width: 100px;
}

.contact-section .accent-coral-2 {
  top: 55%;
  right: 12%;
  width: 70px;
}

/* ===== HERO SECTION ===== */

.hero-section {
  min-height: 100vh;  /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--spacing-3xl) 0;
}

.hero-section .container {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 100%;
}

.hero-logo {
  width: 280px;  /* INCREASED from 220px */
  max-width: 70%;  /* INCREASED from 60% */
  margin: 0 auto 50px;  /* 50px gap below logo */
  margin-top: -40px;  /* Move logo more up */
  opacity: 1;
}

.hero-symbol {
  width: 110px;  /* INCREASED from 80px */
  margin: 50px auto 0;  /* 50px gap above symbol - same as logo */
  display: block;
  opacity: 0.9;
}

/* ===== CALCULATOR SECTION ===== */

.calculator-section {
  padding: var(--section-padding-vertical) 0;
  position: relative;
}

.calculator-card {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.6);
}

.calculator-input-group {
  margin-bottom: var(--spacing-xl);
}

/* ===== IMPACT SECTION ===== */

.impact-section {
  display: flex;
  align-items: center;
  padding: 60px 0;
  position: relative;
}

.impact-section .container {
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

.impact-section .section-heading {
  font-size: 48px;
  margin-bottom: 40px;
  text-align: center;
  color: var(--color-text-primary);
  font-weight: 700;
}

/* Statistics Grid */
.impact-stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid transparent;
}

.stat-digital {
  border-color: rgba(255, 127, 80, 0.3);
  background: rgba(255, 255, 255, 0.3);
}

.stat-aviation {
  border-color: rgba(74, 159, 219, 0.3);
  background: rgba(255, 255, 255, 0.3);
}

.stat-number {
  font-family: 'JetBrains Mono', var(--font-heading);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-digital .stat-number {
  color: var(--color-v5-coral);
}

.stat-aviation .stat-number {
  color: var(--color-v2-sky-blue);
}

.stat-label {
  font-family: 'JetBrains Mono', var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--color-text-primary);
}

.stat-description {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.4;
  max-width: 250px;
  margin: 0 auto;
}

.stat-comparison {
  font-family: 'JetBrains Mono', var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}

/* Narrative Content */
.impact-narrative {
  max-width: 900px;
  margin: 0 auto;
}

.narrative-block {
  margin-bottom: 48px;
}

.narrative-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-primary);
  margin-bottom: 20px;
}

.narrative-text.highlight-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-v6-teal);
  line-height: 1.6;
}

.narrative-text.emphasis {
  font-family: 'JetBrains Mono', var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-v3-navy);
  margin-top: 24px;
}

/* Mission Box */
.impact-mission {
  margin-top: 32px;
  padding: 28px 24px;
  background: linear-gradient(135deg,
    rgba(0, 77, 77, 0.05),
    rgba(74, 159, 219, 0.05)
  );
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 77, 77, 0.2);
}

.mission-heading {
  font-family: 'JetBrains Mono', var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-v6-teal);
  text-align: center;
  margin-bottom: 16px;
}

.mission-intro {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: var(--color-text-primary);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mission-pillar {
  background: rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  text-align: center;
  border: 1px solid rgba(0, 77, 77, 0.15);
}

.pillar-icon {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--color-v6-teal);
  font-weight: 600;
}

.pillar-title {
  font-family: 'JetBrains Mono', var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-v6-teal);
  margin-bottom: 8px;
}

.pillar-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Accent Rectangles */
.impact-section .accent-rect {
  opacity: 0.18;
}

.impact-accent-yellow {
  top: 8%;
  left: 5%;
  width: 100px;
}

.impact-accent-coral {
  top: 45%;
  right: 3%;
  width: 90px;
}

.impact-accent-teal {
  bottom: 12%;
  left: 8%;
  width: 85px;
}

.impact-accent-navy {
  top: 70%;
  right: 10%;
  width: 75px;
}

/* ===== DOWNLOAD SECTION ===== */

.download-section {
  padding: 100px 0;  /* INCREASED to fill viewport */
  min-height: 100vh;  /* Fill full viewport height */
  display: flex;
  align-items: center;
}

.download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;  /* INCREASED gap */
  align-items: center;
}

.download-description {
  max-width: 700px;
}

.download-description .section-heading {
  text-align: left;
  color: var(--color-text-primary);  /* Changed to dark text */
  margin-bottom: 36px;  /* INCREASED margin for better separation */
  font-size: 64px;  /* INCREASED to match other section headings */
  line-height: 1.2;
  font-weight: 700;
}

.download-description .body-text {
  color: var(--color-text-primary);  /* Changed to dark text */
  margin-bottom: 28px;  /* INCREASED margin */
  font-size: 22px;  /* INCREASED font size */
  line-height: 1.6;
}

.download-description .underlined-label {
  color: var(--color-text-primary);  /* Changed to dark text */
  font-size: 20px;  /* INCREASED font size */
  margin-bottom: 16px;  /* INCREASED margin */
}

.download-form-container {
  position: relative;
}

.download-form-container .glass-card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text-primary);
  padding: 20px 24px !important;
}

.download-form-container .form-group {
  margin-bottom: 12px;
}

.download-form-container input,
.download-form-container select,
.download-form-container textarea {
  padding: 8px 12px;
  font-size: 14px;
}

.download-form-container label {
  font-size: 12px;
  margin-bottom: 4px;
}

.download-form-container .form-title {
  font-size: 20px;
  margin-bottom: 16px;
}

.download-form-container .btn-primary {
  font-size: 12px;
  padding: 8px 24px;
  width: auto;
}

.download-form-container .form-footer {
  font-size: 11px;
  margin-top: 12px;
}

/* ===== CONTACT SECTION ===== */

.contact-section {
  padding: 80px 0;  /* INCREASED padding */
}

.contact-header {
  text-align: center;
  margin-bottom: 48px;  /* INCREASED margin */
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);  /* Now 24px instead of 48px */
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-visual {
  position: sticky;
  top: var(--spacing-3xl);
  padding-left: 80px;
}

.contact-logo {
  width: 150px;
  margin-bottom: var(--spacing-xl);
}

.contact-tagline {
  font-size: var(--size-body);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
}

.contact-tagline del {
  opacity: 0.5;
}

.contact-tagline strong {
  color: var(--color-v6-teal);
  font-weight: 600;
}

.contact-form {
  background: rgba(255, 255, 255, 0.8);
  padding: var(--spacing-sm) var(--spacing-md) !important;  /* Reduced: 6px 12px */
  max-width: 500px;
  margin: 0 auto;
}

.contact-form .form-title {
  font-size: 16px;  /* Reduced from var(--size-body) 24px */
  margin-bottom: var(--spacing-xs);  /* Reduced to 4px */
}

.contact-form .form-group {
  margin-bottom: var(--spacing-xs);  /* Reduced to 4px */
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: var(--spacing-xs) var(--spacing-sm);  /* Reduced: 4px 6px */
  font-size: 14px;  /* Reduced from var(--size-small) 18px */
}

.contact-form .form-row {
  gap: var(--spacing-xs);  /* Reduced to 4px */
}

.contact-form label {
  font-size: 12px;  /* Reduced from var(--size-small) 18px */
  margin-bottom: 2px;  /* Reduced from var(--spacing-xs) 4px */
}

.contact-form .btn-primary {
  font-size: 12px;
  padding: 10px 28px;
  width: auto;
}

/* ===== FOOTER ===== */

.site-footer {
  background: transparent;
  padding: 0;
}

.footer-svg {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .hero-logo {
    width: 180px;
  }

  .hero-content {
    max-width: 100%;
  }

  /* Impact Section - Tablet */
  .impact-section {
    padding: 50px 0;
  }

  .impact-section .section-heading {
    font-size: 40px;
    margin-bottom: 32px;
  }

  .impact-stats-grid {
    gap: 18px;
    margin-bottom: 28px;
  }

  .stat-card {
    padding: 18px 14px;
  }

  .stat-number {
    font-size: 44px;
  }

  .stat-label {
    font-size: 14px;
  }

  .stat-comparison {
    font-size: 20px;
  }

  .narrative-text {
    font-size: 16px;
  }

  .narrative-text.highlight-text {
    font-size: 18px;
  }

  .narrative-text.emphasis {
    font-size: 16px;
  }

  .impact-mission {
    padding: 24px 20px;
  }

  .mission-heading {
    font-size: 21px;
  }

  .mission-intro {
    font-size: 15px;
  }

  .mission-pillars {
    gap: 14px;
  }

  .download-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);  /* Reduced from xl (24px) to sm (6px) */
  }

  .download-description .section-heading {
    text-align: center;
    font-size: 48px;  /* Increased for better visibility on tablet */
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-visual {
    position: static;
    text-align: center;
    margin-bottom: var(--spacing-xl);
  }

  .contact-logo {
    margin-left: auto;
    margin-right: auto;
  }

}

/* Mobile (0 - 767px) */
@media (max-width: 767px) {
  .hero-section {
    min-height: 100vh;
    padding: var(--spacing-xl) 0;
  }

  .hero-logo {
    width: 140px;
    margin-bottom: var(--spacing-sm);
  }

  .section-heading {
    font-size: var(--size-h2);
  }

  /* Impact Section - Mobile */
  .impact-section {
    padding: 40px 0;
    min-height: auto;
  }

  .impact-section .section-heading {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: left;
  }

  .impact-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
  }

  .stat-comparison {
    font-size: 18px;
    padding: 6px 0;
  }

  .stat-card {
    padding: 16px 12px;
  }

  .stat-number {
    font-size: 40px;
  }

  .stat-label {
    font-size: 13px;
  }

  .stat-description {
    font-size: 12px;
    max-width: 100%;
  }

  .narrative-block {
    margin-bottom: 24px;
  }

  .narrative-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .narrative-text.highlight-text {
    font-size: 17px;
  }

  .narrative-text.emphasis {
    font-size: 16px;
    margin-top: 20px;
  }

  .impact-mission {
    margin-top: 24px;
    padding: 20px 14px;
  }

  .mission-heading {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .mission-intro {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .mission-pillars {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mission-pillar {
    padding: 14px 12px;
  }

  .pillar-icon {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .pillar-title {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .pillar-text {
    font-size: 12px;
  }

  .impact-section .accent-rect {
    display: none;
  }

  .calculator-card {
    padding: var(--spacing-lg);
  }

  .download-description {
    max-width: 100%;
  }

  .download-description .section-heading {
    font-size: 24px;  /* Further reduced for mobile */
    margin-bottom: var(--spacing-xs);  /* 4px */
  }

  .download-description .body-text {
    font-size: 14px;  /* Further reduced for mobile */
    margin-bottom: var(--spacing-xs);  /* 4px */
  }

  .download-description .underlined-label {
    font-size: 14px;  /* Further reduced for mobile */
  }

  .download-description .section-heading {
    font-size: var(--size-h3);
  }

  .contact-header {
    margin-bottom: var(--spacing-xl);
  }

  .contact-tagline {
    font-size: var(--size-small);
  }

  /* Hide accent rectangles on mobile for cleaner look */
  .accent-rect {
    display: none;
  }
}

/* Extra small mobile (< 480px) */
@media (max-width: 480px) {
  :root {
    --size-h1: 36px;
    --size-h2: 28px;
    --section-padding-horizontal: 16px;
  }

  .hero-logo {
    width: 120px;
  }

  /* Impact Section - Extra Small Mobile */
  .impact-section .section-heading {
    font-size: 24px;
  }

  .stat-number {
    font-size: 36px;
  }

  .narrative-text {
    font-size: 14px;
  }

  .narrative-text.highlight-text {
    font-size: 15px;
  }

  .mission-heading {
    font-size: 17px;
  }

  .mission-intro {
    font-size: 13px;
  }

  .calculator-input {
    font-size: var(--size-h4);
  }

  .output-value {
    font-size: var(--size-h3);
  }
}

/* ===== PRINT STYLES ===== */

@media print {
  .cta-button,
  .btn-primary,
  footer {
    display: none;
  }

  section {
    page-break-inside: avoid;
  }
}

/* ===== ACCESSIBILITY ===== */

/* Focus states for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--color-v2-sky-blue);
  outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .floating-card {
    animation: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .glass-effect,
  .glass-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--color-text-primary);
  }

  input,
  select,
  textarea {
    border-width: 2px;
  }
}
