*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background: #ffffff;
  overflow-x: hidden;
}
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.top-bar {
  background: #0f172a;
  color: #cbd5e1;
  font-size: 0.875rem;
  padding: 0.5rem 0;
}
.top-bar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.top-bar a { color: #e2e8f0; font-weight: 500; }
.top-bar a:hover { color: #38bdf8; }

.main-header {
  background: white;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo span { color: #0284c7; }
.nav-list { display: flex; gap: 2rem; }
.nav-list a { font-weight: 500; position: relative; padding: 0.25rem 0; transition: color 0.2s; }
.nav-list a::after { content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: #0284c7; transition: width 0.3s; }
.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 0.25rem; }
.hamburger span { display: block; width: 25px; height: 3px; background: #0f172a; transition: all 0.3s; }

.hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-text h1 { font-size: 3rem; font-weight: 800; line-height: 1.15; color: #0f172a; margin-bottom: 1.5rem; }
.hero-text h1 em { font-style: normal; color: #0284c7; }
.hero-text p { font-size: 1.125rem; color: #334155; margin-bottom: 2rem; max-width: 480px; }
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: #0284c7; color: white; }
.btn-primary:hover { background: #0369a1; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(2,132,199,0.3); }
.btn-outline { background: transparent; border: 2px solid #0284c7; color: #0284c7; margin-left: 1rem; }
.btn-outline:hover { background: #0284c7; color: white; }
.hero-image {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  animation: float 6s ease-in-out infinite;
}
.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.section-title { font-size: 2.25rem; font-weight: 700; margin-bottom: 2.5rem; position: relative; }
.section-title::after { content: ''; display: block; width: 60px; height: 4px; background: #0284c7; margin-top: 0.75rem; border-radius: 2px; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; padding: 4rem 0; }
.service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.service-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.service-card h3 { font-size: 1.25rem; padding: 1.25rem 1.25rem 0.5rem; }
.service-card p { padding: 0 1.25rem 1.25rem; color: #475569; font-size: 0.95rem; }
.service-card .btn { margin: 0 1.25rem 1.25rem; }

.why-us { background: #f1f5f9; padding: 5rem 0; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; margin-top: 2rem; }
.feature { text-align: center; }
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }

.testimonials { padding: 5rem 0; }
.testimonial-slider { display: flex; gap: 2rem; overflow-x: auto; padding: 1rem 0; scroll-snap-type: x mandatory; }
.testimonial {
  min-width: 300px;
  background: #f8fafc;
  border-radius: 16px;
  padding: 2rem;
  scroll-snap-align: start;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.testimonial p { font-style: italic; margin-bottom: 1rem; }
.testimonial strong { display: block; }

.cta-banner {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { font-size: 2rem; margin-bottom: 1rem; }
.cta-banner .btn-primary { background: #0284c7; margin-top: 1.5rem; }

.main-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-grid h4 { color: white; margin-bottom: 1rem; font-size: 1rem; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-grid a:hover { color: #38bdf8; }
.footer-bottom { border-top: 1px solid #334155; padding-top: 1.5rem; text-align: center; font-size: 0.8rem; }

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  color: #f1f5f9;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 5000;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
}
.cookie-consent p { margin: 0; font-size: 0.9rem; }
.cookie-consent a { color: #38bdf8; text-decoration: underline; }
.cookie-consent button {
  background: #0284c7;
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 550px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute; top: 1rem; right: 1.25rem;
  background: none; border: none; font-size: 1.5rem; cursor: pointer;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.35rem; color: #0f172a; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem; border: 1px solid #cbd5e1;
  border-radius: 8px; font-size: 1rem; background: #f8fafc;
}
.form-group textarea { resize: vertical; }
.form-submit { background: #0284c7; color: white; border: none; padding: 0.85rem 2rem; border-radius: 8px; font-weight: 600; cursor: pointer; }

@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-image { height: auto; order: -1; }
  .hero-text h1 { font-size: 2.25rem; }
  .hamburger { display: flex; }
  .nav-list {
    position: fixed; top: 68px; left: 0; right: 0; background: white;
    flex-direction: column; padding: 2rem; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: none; gap: 1.5rem;
  }
  .nav-list.open { display: flex; }
  .btn-outline { margin-left: 0; margin-top: 0.75rem; display: inline-block; }
}
.filter-btn {
  background: white;
  border: 1px solid #cbd5e1;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  color: #334155;
}
.filter-btn.active,
.filter-btn:hover {
  background: #0284c7;
  color: white;
  border-color: #0284c7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-item:hover {
  transform: scale(1.02);
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 1.5rem 1rem 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  font-size: 0.9rem;
  font-weight: 500;
}

.lightbox-modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0; visibility: hidden;
  transition: all 0.3s;
}
.lightbox-modal.active {
  opacity: 1; visibility: visible;
}
.lightbox-modal img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
}
.lightbox-modal p {
  color: white;
  margin-top: 1rem;
  font-size: 1rem;
}
.lightbox-close {
  position: absolute;
  top: 2rem; right: 2.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-block {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info-block {
  padding: 1rem 0;
}

.map-container {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-form-block {
    padding: 1.5rem;
  }
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: white;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem;
  background: white;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #0284c7;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.25rem;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}
.faq-answer p {
  color: #475569;
  line-height: 1.6;
}