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

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

body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: #000;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ===== ACCESSIBILITY ===== */
.visually-hidden {
  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: 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 #333;
  outline-offset: 2px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333; /* Same as privacy policy page */
    color: white;
    padding: 20px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-text {
    flex: 1;
    margin-right: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-text a {
    color: #8c6d46; /* Accent color from privacy policy */
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: 500;
}

.cookie-accept {
    background-color: #8c6d46; /* Same accent color as privacy policy */
    color: white;
}

.cookie-accept:hover {
    background-color: #7a5f3a;
    transform: translateY(-1px);
}

.cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Mobile responsive for cookie banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-text {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}        
/* ===== HEADER & NAVIGATION ===== */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  padding: 15px 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.business-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #000;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
  display: inline-block;
}

nav a:hover,
nav a.active {
  background: #f5f5f5;
  color: #000;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

/* ===== SECTIONS ===== */
section {
  padding: 80px 40px;
}

.bg-light {
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

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

/* ===== HERO SECTION ===== */
.hero {
  background: #fff;
  padding: 120px 40px;
  text-align: center;
}

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

.hero h1 {
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  margin-bottom: 2rem;
  color: #333;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== 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;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

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

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

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

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

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
  padding: 80px 40px;
  background: #f8f9fa;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.portfolio-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

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

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-content ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.service-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.service-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.services-extra {
  background: #f5f5f5;
  padding: 2rem;
  border-radius: 12px;
  border-left: 5px solid #000;
  margin-top: 3rem;
  text-align: center;
}

/* ===== TEXT + IMAGE BLOCKS ===== */
.text-image-block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

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

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

.text-image-block img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}

.text-image-block img:hover {
  transform: scale(1.02);
}

.text-image-block.reverse {
  flex-direction: row-reverse;
}

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

.feature-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;
}

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

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

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

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

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

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-card footer {
  font-weight: 600;
  color: #333;
}

/* ===== CONTACT ===== */
.contact-info {
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

.contact-method p {
  margin: 0;
}

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

.contact-method a:hover {
  color: #333;
  text-decoration: underline;
}

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

/* ===== 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: #000;
  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: #ddd;
  text-decoration: underline;
}

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

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

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-inner {
    padding: 0 20px;
  }

  section {
    padding: 50px 20px;
  }

  .container {
    padding: 0 20px;
  }

  .hamburger-menu {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    overflow-y: auto;
  }

  nav.menu-open {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }

  nav a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    width: 100%;
  }

  nav a:last-child {
    border-bottom: none;
  }

  .text-image-block,
  .text-image-block.reverse {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
  }

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

  .service-cta {
    flex-direction: column;
  }

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

  .hero {
    padding: 80px 20px;
  }

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

  .floating-btns a {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

/* ===== TABLET RESPONSIVE ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .text-image-block {
    gap: 40px;
  }
}