/* ===== RESET & GLOBAL ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

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

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 4px;
  font-weight: bold;
}

.skip-link:focus {
  top: 6px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #ff6b35;
  outline-offset: 2px;
}

/* ===== HEADER & HAMBURGER MENU ===== */
header {
  background: #fff;
  border-bottom: 2px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.logo a span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #ff6b35;
  display: block;
}

.logo a:hover {
  color: #ff6b35;
}

/* Hamburger Button - MOBILE ONLY */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 32px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation - Desktop by default */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

.main-nav a {
  display: block;
  padding: 0.6rem 1rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a.active {
  background: #ff6b35;
  color: #fff;
}

/* ===== MOBILE MENU (768px and below) ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 80px 20px 20px;
    gap: 0;
  }

  .main-nav a {
    padding: 1rem 1.5rem;
    border-radius: 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.1rem;
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* ===== TABLET (769px to 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .main-nav ul {
    gap: 0.3rem;
  }
  
  .main-nav a {
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
  }
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== UPDATED HERO SECTION (Clean & Minimal) ===== */
.hero {
  background: #fff;
  color: #333;
  padding: 50px 2rem 30px;
  text-align: center;
  border-bottom: 2px solid #f0f0f0;
}

.hero-delivery {
  background: #fff;
  color: #333;
  border-bottom: 2px solid #f0f0f0;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.2;
  color: #333;
}

/* Hide subtitle and CTA in minimal hero - moved to intro section */
.hero .hero-subtitle,
.hero .hero-cta {
  display: none;
}

/* ===== NEW INTRO SECTION (Replaces old hero content) ===== */
.intro-section {
  background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
  padding: 60px 2rem;
  text-align: center;
}

.intro-section .intro-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #666;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 500;
}

.intro-section .intro-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 1rem;
  border: 2px solid transparent;
}

.btn-primary {
  background: #ff6b35;
  color: #fff;
  border-color: #ff6b35;
}

.btn-primary:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,53,0.3);
}

.btn-secondary {
  background: transparent;
  color: #333;
  border-color: #333;
}

.btn-secondary:hover {
  background: #333;
  color: #fff;
}

.btn-link {
  background: transparent;
  color: #ff6b35;
  border: none;
  padding: 0.5rem 1rem;
  text-decoration: underline;
}

/* ===== GEO BADGE ===== */
.geo-section {
  background: #f8f9fa;
  padding: 1.5rem 2rem;
  text-align: center;
}

.geo-badge {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
}

/* ===== SECTIONS ===== */
.content-section {
  padding: 80px 2rem;
}

.bg-light {
  background: #f8f9fa;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  color: #333;
}

.section-intro {
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #666;
}

/* ===== TEXT + IMAGE BLOCKS ===== */
.text-image-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.text-image-block.reverse {
  grid-template-columns: 1fr 1fr;
}

.text-image-block.reverse .text {
  order: 2;
}

.text-image-block.reverse .image {
  order: 1;
}

.text-image-block h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: #333;
}

.text-image-block p {
  margin-bottom: 1rem;
  color: #555;
  line-height: 1.8;
}

.text-image-block ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.text-image-block li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

.highlight {
  background: #fff3e0;
  padding: 1.5rem;
  border-left: 4px solid #ff6b35;
  border-radius: 4px;
  font-weight: 500;
}

.text-image-block img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== CLIENT CARDS ===== */
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.client-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.client-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.client-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

/* ===== SERVICES ===== */
.services-list {
  max-width: 900px;
  margin: 0 auto;
}

.service-item {
  background: #fff;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #ff6b35;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #333;
}

.highlight-service {
  background: #fff8f3;
  border-left-color: #e55a2b;
}

.badge {
  display: inline-block;
  background: #ff6b35;
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

.service-link {
  display: inline-block;
  margin-top: 1rem;
  color: #ff6b35;
  font-weight: 600;
  text-decoration: none;
}

.service-link:hover {
  text-decoration: underline;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

/* ===== CALLOUT BOX ===== */
.callout-box {
  background: #fff3e0;
  padding: 2rem;
  border-radius: 12px;
  border-left: 5px solid #ff6b35;
  margin-top: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.callout-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.callout-box p {
  margin-bottom: 1rem;
}

/* ===== STAT BOX ===== */
.stat-box {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem 0;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 1.1rem;
  color: #555;
  font-weight: 500;
}

/* ===== COMPARISON TABLE ===== */
.comparison-section {
  padding: 80px 2rem;
  background: #f8f9fa;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
}

.comparison-table {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-collapse: collapse;
}

.comparison-table thead {
  background: #333;
  color: #fff;
}

.comparison-table th {
  padding: 1.5rem 1rem;
  text-align: left;
  font-weight: 600;
}

.comparison-table th.highlight-col {
  background: #ff6b35;
}

.comparison-table td {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.comparison-table td.highlight-col {
  background: #fff8f3;
}

.comparison-table tbody tr:hover {
  background: #f8f9fa;
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.benefit-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.benefits-summary {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 3rem;
  color: #555;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #ff6b35;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

/* ===== REASONS GRID ===== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.reason-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.reason-number {
  width: 50px;
  height: 50px;
  background: #ff6b35;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.reason-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #333;
}

/* ===== PORTFOLIO ===== */
.portfolio-section {
  padding: 80px 2rem;
  background: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.portfolio-item:hover {
  transform: scale(1.03);
}

.portfolio-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.portfolio-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-caption {
  transform: translateY(0);
}

.portfolio-caption h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #fff;
}

.portfolio-caption p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 80px 2rem;
  background: #f8f9fa;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: #333;
  color: #fff;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #444;
}

.faq-question::after {
  content: '+';
  font-size: 1.8rem;
  transition: transform 0.3s;
}

.faq-question[aria-expanded="true"]::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 1.5rem;
}

.faq-answer.open {
  max-height: 600px;
  padding: 1.5rem;
}

.faq-answer p {
  margin-bottom: 1rem;
  color: #555;
  line-height: 1.8;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  text-align: center;
}

.contact-section .section-title,
.contact-section .section-intro {
  color: #fff;
}

.contact-tagline {
  font-size: 1.3rem;
  margin: 2rem 0;
  font-weight: 500;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-method {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.contact-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.contact-method p {
  margin: 0;
}

.contact-method a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.contact-method a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

/* ===== FLOATING BUTTONS ===== */
.floating-btns {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 900;
}

.floating-btns a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.floating-btns a:hover {
  transform: scale(1.1);
}

.whatsapp-btn {
  background: #25D366;
}

.call-btn {
  background: #000;
}

/* ===== FOOTER ===== */
footer {
  background: #222;
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content p {
  margin: 0.5rem 0;
}

.footer-content a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-content a:hover {
  color: #ff6b35;
}

.footer-nav {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #444;
}

.footer-nav a {
  margin: 0 0.5rem;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 3px solid #ff6b35;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
}

.cookie-text h3 {
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
  color: #333;
}

.cookie-text p {
  margin: 0 0 0.5rem 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-link {
  color: #ff6b35;
  text-decoration: underline;
  font-size: 0.9rem;
  font-weight: 500;
}

.cookie-link:hover {
  color: #e55a2b;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background: #ff6b35;
  color: #fff;
}

.cookie-accept:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

.btn-refuse {
  background: transparent;
  color: #666;
  border: 2px solid #ddd;
}

.btn-refuse:hover {
  background: #f5f5f5;
  border-color: #999;
  color: #333;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }

  .hero {
    padding: 40px 1rem 25px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .intro-section {
    padding: 40px 1rem;
  }

  .intro-section .intro-subtitle {
    font-size: 1.1rem;
  }

  .content-section {
    padding: 50px 1rem;
  }

  .text-image-block {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .text-image-block.reverse .text,
  .text-image-block.reverse .image {
    order: unset;
  }

  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.8rem 0.5rem;
  }

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

  .floating-btns {
    bottom: 15px;
    right: 15px;
  }