@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=Work+Sans:wght@300;400;500;600&display=swap');

:root {
  --primary: #FFC300;
  --bg-light: #F3F4F6;
  --accent: #33FF7A;
  --bg-card: #E5E7EB;
  --text-dark: #1F2937;
  --text-light: #6B7280;
  --white: #ffffff;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  
  --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: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
}

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

h1 { font-size: 2.25rem; font-weight: 800; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--space-sm);
}

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

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

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

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

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

.btn-secondary {
  background: var(--accent);
  color: var(--text-dark);
}

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

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

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

.section-title h2 {
  font-size: 2rem;
  margin-bottom: var(--space-xs);
}

.section-title p {
  color: var(--text-light);
  font-size: 1rem;
}

header {
  background: var(--white);
  padding: var(--space-md) 0;
  border-bottom: 3px solid var(--primary);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.logo:hover {
  color: var(--primary);
}

.logo img {
  display: inline-block;
}

nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

nav a {
  font-weight: 500;
  font-size: 0.9375rem;
  position: relative;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

nav a:hover::after {
  width: 100%;
}

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

.burger span {
  display: block;
  width: 1.75rem;
  height: 0.1875rem;
  background: var(--text-dark);
  transition: var(--transition);
  border-radius: var(--radius-sm);
}

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

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

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

.hero {
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-card) 100%);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 50%;
  height: 200%;
  background: var(--primary);
  opacity: 0.05;
  transform: rotate(15deg);
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.75rem;
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  align-items: center;
}

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

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

.card h3 {
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.card p {
  color: var(--text-light);
  font-size: 0.9375rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.service-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.feature-list {
  list-style: none;
  display: grid;
  gap: var(--space-md);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--white);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.feature-list li:hover {
  background: var(--bg-card);
}

.feature-list i {
  color: var(--accent);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--bg-card);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

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

.checkbox-group label {
  font-size: 0.875rem;
  line-height: 1.5;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-lg);
}

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

footer {
  background: var(--text-dark);
  color: var(--white);
  padding: var(--space-lg) 0 var(--space-md);
  font-size: 0.875rem;
}

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

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

.footer-links a {
  color: var(--bg-light);
  transition: var(--transition);
}

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

.privacy-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: bottom 0.5s var(--transition);
}

.privacy-popup.show {
  bottom: 0;
}

.privacy-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.privacy-popup p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

.popup-actions {
  display: flex;
  gap: var(--space-sm);
}

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

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

.error-content h2 {
  margin-bottom: var(--space-sm);
}

.error-content p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
  padding: var(--space-xl);
}

.thank-you-content i {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .hero h1 { font-size: 2rem; }
  
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-2xl) var(--space-lg);
    box-shadow: var(--shadow-lg);
    transition: right 0.2s var(--transition);
    align-items: flex-start;
    gap: var(--space-md);
  }
  
  nav ul.active {
    right: 0;
  }
  
  .burger {
    display: flex;
    z-index: 101;
  }
  
  .two-column {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .privacy-popup-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 93.75%;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  h1 { font-size: 1.625rem; }
  .hero h1 { font-size: 1.75rem; }
  
  .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .error-content h1 {
    font-size: 4rem;
  }
}

.image-content-section,
.image-content-section-reverse {
  padding: var(--space-2xl) 0;
}

.image-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.image-content-grid.reverse {
  direction: rtl;
}

.image-content-grid.reverse > * {
  direction: ltr;
}

.image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.image-wrapper:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-wrapper h2 {
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

.content-wrapper p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  font-size: 1rem;
  line-height: 1.7;
}

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

.benefit-item {
  background: var(--bg-card);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.benefit-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.benefit-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.benefit-item h4 {
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
  color: var(--text-dark);
}

.benefit-item p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

.featured-image-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-light);
}

.featured-content {
  max-width: 1000px;
  margin: 0 auto;
}

.featured-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-xl);
}

.featured-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(31, 41, 55, 0.95) 0%, rgba(31, 41, 55, 0.7) 50%, transparent 100%);
  padding: var(--space-xl);
  color: var(--white);
}

.overlay-text h3 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  font-size: 1.75rem;
}

.overlay-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  font-size: 1rem;
  line-height: 1.7;
}

.overlay-text .btn-primary {
  background: var(--primary);
  color: var(--text-dark);
}

.overlay-text .btn-primary:hover {
  background: #E6B000;
}

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

  .image-content-grid.reverse {
    direction: ltr;
  }

  .image-wrapper {
    order: -1;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .featured-image-wrapper img {
    height: 400px;
  }

  .overlay-content {
    padding: var(--space-lg);
  }

  .overlay-text h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .featured-image-wrapper img {
    height: 300px;
  }

  .overlay-content {
    padding: var(--space-md);
  }

  .overlay-text h3 {
    font-size: 1.25rem;
  }

  .overlay-text p {
    font-size: 0.9375rem;
  }
}

@media (max-width: 355px) {
.contact-form{
padding: 1rem;}
.logo{
font-size: 1.1rem;}
  html {
    font-size: 87.5%;
  }
  
  .space-xl {
    --space-xl: 2rem;
  }
}