/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #0066cc; text-decoration: none; transition: color 0.2s; }
a:hover { color: #004499; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -40px; left: 0; background: #000; color: #fff;
  padding: 8px 16px; z-index: 1000; transition: top 0.3s;
}
.skip-link:focus { top: 0; }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.bg-light { background: #f8f9fa; }
.section-title {
  font-size: 2rem; margin-bottom: 16px; color: #1a1a2e; text-align: center;
}
.section-subtitle {
  text-align: center; max-width: 700px; margin: 0 auto 40px; color: #555;
}
.section-header-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.view-all-link {
  font-weight: 600; color: #0066cc; display: flex; align-items: center; gap: 4px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 100; padding: 12px 0;
}
.header-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.logo img { height: 50px; width: auto; }
.nav-list {
  display: flex; list-style: none; gap: 24px; align-items: center;
}
.nav-list a {
  font-weight: 500; color: #333; padding: 8px 4px; position: relative;
}
.nav-list a.active, .nav-list a:hover {
  color: #0066cc;
}
.nav-list a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: #0066cc; border-radius: 2px;
}
.mobile-menu-toggle {
  display: none; background: none; border: none; padding: 8px; cursor: pointer;
}
.hamburger {
  display: block; width: 24px; height: 2px; background: #333; position: relative;
}
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; width: 24px; height: 2px; background: #333;
  left: 0; transition: transform 0.3s;
}
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }
.cta-button {
  padding: 10px 20px; border-radius: 30px; font-weight: 600;
  background: #0066cc; color: #fff; transition: background 0.2s;
}
.cta-button:hover { background: #004499; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  color: #fff; text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,30,60,0.85), rgba(0,60,100,0.7));
}
.hero-content {
  position: relative; z-index: 1; max-width: 800px; margin: 0 auto; padding: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 20px; line-height: 1.2;
}
.hero-subtitle {
  font-size: 1.25rem; margin-bottom: 30px; opacity: 0.95;
}
.hero-cta-group {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px;
}
.btn {
  display: inline-block; padding: 12px 28px; border-radius: 30px;
  font-weight: 600; text-align: center; cursor: pointer; border: none;
  transition: all 0.2s; text-decoration: none;
}
.btn-primary { background: #0066cc; color: #fff; }
.btn-primary:hover { background: #004499; transform: translateY(-2px); }
.btn-secondary {
  background: rgba(255,255,255,0.2); color: #fff; border: 2px solid #fff;
}
.btn-secondary:hover { background: #fff; color: #0066cc; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.hero-trust-badges {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  font-size: 0.95rem; opacity: 0.9;
}

/* ===== CARDS ===== */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 40px;
}
.value-card {
  background: #fff; padding: 32px 24px; border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover {
  transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.card-icon {
  font-size: 2.5rem; margin-bottom: 16px;
}
.value-card h3 {
  font-size: 1.4rem; margin-bottom: 12px; color: #1a1a2e;
}
.value-card p { color: #555; margin-bottom: 20px; }
.card-link {
  font-weight: 600; color: #0066cc; display: inline-flex; align-items: center; gap: 4px;
}

/* ===== BLOG GRID ===== */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: transform 0.3s;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-link { display: block; color: inherit; }
.blog-card-image {
  position: relative; height: 200px; overflow: hidden;
}
.blog-card-image img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.category-tag {
  position: absolute; top: 12px; left: 12px;
  background: #0066cc; color: #fff; padding: 4px 12px;
  border-radius: 20px; font-size: 0.8rem; font-weight: 600;
}
.blog-card-content { padding: 20px; }
.post-date {
  display: block; font-size: 0.85rem; color: #777; margin-bottom: 8px;
}
.blog-card h3 {
  font-size: 1.3rem; margin-bottom: 10px; line-height: 1.4;
}
.blog-card p { color: #555; margin-bottom: 16px; font-size: 0.95rem; }
.post-meta {
  display: flex; gap: 8px; font-size: 0.9rem; color: #666;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.gallery-item img {
  width: 100%; height: 200px; object-fit: cover; display: block;
}
.gallery-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.7); color: #fff; padding: 10px 14px;
  font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.cta-benefits {
  list-style: none; margin: 20px 0; display: grid; gap: 8px;
}
.contact-info {
  margin-top: 24px; font-size: 1.05rem;
}
.contact-info a { color: #0066cc; font-weight: 500; }
.map-address {
  margin-top: 12px; font-size: 0.95rem; color: #555;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff; padding: 28px; border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-left: 4px solid #0066cc;
}
.testimonial-card p { font-style: italic; margin-bottom: 16px; }
.testimonial-card footer {
  font-weight: 600; color: #1a1a2e;
}
.testimonial-card cite { font-style: normal; color: #555; }

/* ===== FOOTER ===== */
.site-footer {
  background: #1a1a2e; color: #e0e0e0; padding-top: 60px;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; padding-bottom: 40px;
}
.footer-brand p { margin: 16px 0; opacity: 0.9; }
.social-links {
  display: flex; gap: 16px; margin-top: 16px;
}
.social-links a {
  color: #fff; font-weight: 500; display: flex; align-items: center; gap: 6px;
}
.footer-links h4, .footer-contact h4 {
  color: #fff; margin-bottom: 16px; font-size: 1.1rem;
}
.footer-links ul { list-style: none; display: grid; gap: 10px; }
.footer-links a { color: #ccc; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-contact address { font-style: normal; line-height: 1.8; }
.footer-contact a { color: #4da6ff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0;
  text-align: center; font-size: 0.9rem; opacity: 0.8;
}
.footer-disclaimer { margin-top: 8px; font-size: 0.85rem; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #1a1a2e; color: #fff; padding: 16px 0; z-index: 1000;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
}
.cookie-content {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie-actions { display: flex; gap: 12px; }
.btn-sm { padding: 8px 20px; font-size: 0.9rem; border-radius: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-benefits { justify-content: center; }
  .contact-info { text-align: center; }
}
@media (max-width: 768px) {
  .mobile-menu-toggle { display: block; }
  .nav-list {
    position: fixed; top: 70px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-150%); transition: transform 0.3s;
    z-index: 99;
  }
  .nav-list.active { transform: translateY(0); }
  .hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.75rem; }
  .section-header-row { flex-direction: column; text-align: center; }
  .cookie-content { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; max-width: 300px; }
  .hero-trust-badges { flex-direction: column; gap: 8px; }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
:focus-visible {
  outline: 3px solid #0066cc; outline-offset: 2px;
}