/* Base Reset & Variables */
:root {
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --container-width: 1200px;
  --header-height: 80px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Layout Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-intro {
  max-width: 700px;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.grid {
  display: grid;
  gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

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

.logo img {
  height: 45px;
  display: block;
}

.main-nav .nav-list {
  display: flex;
  gap: 25px;
  align-items: center;
}

.main-nav .nav-list a {
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: currentColor;
  transition: var(--transition);
}

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .main-nav .nav-list {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: inherit;
    flex-direction: column;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  .main-nav .nav-list.active { transform: translateX(0); }
}

/* Top Ticker */
.top-ticker {
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
}

.top-ticker__inner {
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Hero */
.hero {
  padding: 100px 0;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-text { flex: 1; }
.hero-image { flex: 1; }

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.hero-highlights {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-container { flex-direction: column; text-align: center; }
  .hero-text h1 { font-size: 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-highlights { justify-content: center; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-sm { padding: 8px 18px; font-size: 0.9rem; }

/* Lists */
.list-check li, .list-bullets li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.list-check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Forms */
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  font-family: inherit;
}

@media (max-width: 600px) {
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float img { width: 35px; height: 35px; }

/* Cookie Bar */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 2000;
  display: none;
}

.cookie-bar.active { display: block; }
.cookie-bar__content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .cookie-bar__content { flex-direction: column; text-align: center; }
}

/* Footer */
.site-footer {
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 { margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.social-links { display: flex; gap: 15px; margin-top: 15px; }
.social-links img { width: 24px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
}

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

/* Map */
.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
}