:root {
  --primary: #0066FF;
  --secondary: #FF6B35;
  --dark: #1A1A1A;
  --light: #FAFAFA;
  --gray: #666666;
  --white: #FFFFFF;
  --accent: #004E89;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
  overflow-x: hidden;
}

body.nav-active {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.375rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

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

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

button, .btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: #E55A2B;
  transform: translateY(-2px);
}

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

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  background: white;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm) 0;
}

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

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-md);
}

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

nav a:hover {
  color: var(--primary);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.burger span {
  width: 1.5rem;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  transform: rotate(15deg);
  animation: heroShift 8s ease-in-out infinite alternate;
}

@keyframes heroShift {
  0% { transform: rotate(15deg) translateX(0); }
  100% { transform: rotate(15deg) translateX(-8%); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  width: 100%;
  padding: var(--space-xl) var(--space-md);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-content h1 {
  font-size: 6rem;
  line-height: 0.9;
  margin-bottom: var(--space-md);
  color: var(--white);
  letter-spacing: -0.04em;
  opacity: 0;
  animation: heroTextReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes heroTextReveal {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-md);
  max-width: 85%;
  line-height: 1.8;
  opacity: 0;
  animation: heroTextReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-content .btn {
  opacity: 0;
  animation: heroTextReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.hero-image {
  position: relative;
  height: 70vh;
  opacity: 0;
  animation: heroImageReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes heroImageReveal {
  0% { opacity: 0; transform: translateX(60px) scale(0.9); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 40%;
  height: 40%;
  background: var(--secondary);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  100% { transform: translate(20px, 20px) scale(1.2); opacity: 0.5; }
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

section {
  padding: var(--space-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.card {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.card h3 {
  margin-bottom: var(--space-xs);
}

.card p {
  color: var(--gray);
  font-size: 0.875rem;
}

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

.stat-item h3 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.stat-item p {
  font-size: 0.875rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: start;
}

.step-number {
  width: 4rem;
  height: 4rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: var(--space-xs);
}

.step-content p {
  color: var(--gray);
}

.contact-section {
  background: var(--dark);
  color: var(--white);
  padding: var(--space-xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.contact-info h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.contact-item {
  margin-bottom: var(--space-md);
}

.contact-item h4 {
  color: var(--primary);
  margin-bottom: var(--space-xs);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item p, .contact-item a {
  color: var(--light);
  font-size: 1rem;
}

.contact-item a:hover {
  color: var(--primary);
}

form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

input, textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  transition: var(--transition);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: start;
  gap: var(--space-xs);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  text-transform: none;
  font-weight: 400;
  font-size: 0.8125rem;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  background: var(--dark);
  color: var(--light);
  padding: var(--space-md) 0;
  text-align: center;
  font-size: 0.8125rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--light);
  font-size: 0.8125rem;
}

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

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  max-width: 600px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--gray);
  line-height: 1;
  padding: 0;
  width: 2rem;
  height: 2rem;
}

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

.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-content h1 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
}

.error-content h1 {
  font-size: 8rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.policy-content {
  max-width: 50rem;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.policy-content h1 {
  margin-bottom: var(--space-md);
}

.policy-content h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.policy-content p {
  margin-bottom: var(--space-sm);
  color: var(--gray);
}

.policy-content ul {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
}

.policy-content li {
  margin-bottom: var(--space-xs);
  color: var(--gray);
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-xl) var(--space-md);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: none;
  }
  
  nav ul.active {
    right: 0;
    display: flex;
  }
  
  .burger {
    display: flex;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-image {
    height: 50vh;
  }
  
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .step {
    grid-template-columns: 1fr;
  }

      div.hero-content-text{
        margin-top: 2rem;
      }

}

@media (max-width: 480px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  h1 { font-size: 1.75rem; }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .hero-image {
    height: 40vh;
  }
  
  .stats {
    grid-template-columns: 1fr;
  }
  
  .stat-item h3 {
    font-size: 2rem;
  }
  
  .error-content h1 {
    font-size: 5rem;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  html {
    font-size: 87.5%;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
}


