/* ============================================================
   CORPORATE FORMAL - NAVY/GRAY/RED THEME
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:           #0F3A5E;
  --navy-dark:      #082240;
  --navy-light:     #1B4D73;
  --gray:           #6B7280;
  --gray-light:     #E5E7EB;
  --gray-lighter:   #F9FAFB;
  --gray-dark:      #374151;
  --red:            #D32F2F;
  --red-light:      #F44336;
  --red-dark:       #B71C1C;
  --white:          #FFFFFF;
  --text-primary:   #111827;
  --text-secondary: #6B7280;
  --border:         #E5E7EB;
  --shadow-sm:      0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md:      0 4px 6px 0 rgba(0,0,0,0.1);
  --shadow-lg:      0 10px 15px 0 rgba(0,0,0,0.1);
  --shadow-xl:      0 20px 25px 0 rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--navy);
}

h1 em {
  font-style: italic;
  color: var(--red);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--navy);
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}

h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

p { line-height: 1.75; color: var(--text-secondary); }

.section-head { text-align: center; margin-bottom: 64px; }
.section-head.centered span { display: block; }
.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary.btn-lg {
  padding: 14px 40px;
  font-size: 15px;
}

.btn-primary.btn-full {
  width: 100%;
  text-align: center;
}

.btn-secondary {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-secondary.btn-lg {
  padding: 14px 40px;
  font-size: 15px;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy-dark);
  color: var(--white);
  z-index: 9999;
  padding: 20px 32px;
  border-top: 2px solid var(--gray-light);
  box-shadow: var(--shadow-xl);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px;
  max-width: 520px;
  width: 90%;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.modal-box h3 {
  font-size: 26px;
  margin-bottom: 24px;
  color: var(--navy);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--red);
}

.contact-form-box { padding: 48px; }

.cookie-option {
  margin-bottom: 20px;
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  cursor: pointer;
  color: var(--white);
}

.cookie-option label input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--red);
}

.cookie-option p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
  padding-left: 28px;
}

.contact-modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-primary);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

#form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  color: var(--red);
}

#form-success p {
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-primary);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 70px;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 70px;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 58, 94, 0.92) 0%,
    rgba(15, 58, 94, 0.75) 50%,
    rgba(15, 58, 94, 0.40) 100%
  );
  z-index: 1;
}

.hero-panel {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

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

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-content > p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.stat-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--gray-lighter);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-item:hover .stat-num,
.stat-item:hover .stat-label {
  color: var(--white);
}

.stat-num {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.stat-item.animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  padding: 100px 0;
  background: var(--gray-lighter);
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 64px;
}

.service-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(211, 47, 47, 0.15);
}

.card-num {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 16px;
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 14px;
  line-height: 1.8;
}

.service-card.animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  padding: 100px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}

.faq-card {
  padding: 28px;
  background: var(--gray-lighter);
  border-left: 4px solid var(--red);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.faq-card h3 {
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.faq-card p {
  font-size: 14px;
  line-height: 1.7;
}

.faq-card.animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  padding: 100px 0;
  background: var(--navy);
  color: var(--white);
}

.contact .section-head h2,
.contact .section-head .eyebrow {
  color: var(--white);
}

.contact .section-head h2 {
  color: var(--white);
}

.contact .eyebrow {
  color: var(--red);
}

.contact .section-sub {
  color: rgba(255,255,255,0.85);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.contact-item {
  text-align: center;
  padding: 32px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-item h4 {
  color: var(--red);
  margin-bottom: 12px;
}

.contact-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

.contact-item a {
  color: var(--red);
  font-weight: 700;
  transition: color 0.2s;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--red-light);
  text-decoration: underline;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding-top: 80px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-section h4 {
  color: var(--red);
  font-size: 13px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  font-size: 14px;
}

.footer-section a:hover {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px;
  font-size: 12px;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.6);
}

.cookie-link {
  background: none;
  border: none;
  color: var(--red);
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
  transition: color 0.2s;
  font-weight: 600;
}

.cookie-link:hover {
  color: var(--red-light);
}

.animate {
  opacity: 0;
  transform: translateY(20px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .nav-container {
    padding: 0 20px;
  }
  body {
    font-size: 15px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li a {
    display: block;
    padding: 14px 20px;
    font-size: 13px;
  }
  .burger {
    display: flex;
  }
  .hero {
    min-height: 500px;
  }
  .about {
    padding: 80px 0;
  }
  .services {
    padding: 80px 0;
  }
  .faq {
    padding: 80px 0;
  }
  .contact {
    padding: 80px 0;
  }
  .modal-box {
    padding: 40px 28px;
  }
  .contact-form-box {
    padding: 40px 28px;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .nav-container {
    padding: 0 16px;
  }
  .hero-panel {
    padding: 0 16px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions a {
    width: 100%;
  }
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    width: 100%;
    text-align: center;
  }
  .nav-logo {
    font-size: 16px;
  }
  .section-head {
    margin-bottom: 40px;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .stats-grid,
  .services-grid,
  .faq-grid,
  .contact-grid {
    gap: 20px;
  }
}
