/* =====================
   ROOT & RESET
===================== */
:root {
  --primary: #006948;
  --secondary: #D72D2E;
  --dark: #1e1e1e;
  --gray: #666;
  --bg: #f9fafb;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
    background: #f9f9f9 !important; /* base color */
    background-image: 
        repeating-linear-gradient(
            45deg, 
            rgba(0, 105, 72, 0.03),  /* very subtle green lines */
            rgba(0, 105, 72, 0.271) 1px, 
            transparent 1px, 
            transparent 20px
        ),
        repeating-linear-gradient(
            -45deg, 
            rgba(0, 105, 72, 0.03), 
            rgba(0, 105, 72, 0.13) 1px, 
            transparent 1px, 
            transparent 20px
        ) !important;
    background-size: 40px 40px !important;
}
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.7;
}


a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.2rem;
}

/* =====================
   HEADER / NAVBAR
===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.site-header.scrolled {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
}

.logo-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--dark);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}
.nav-links li a.active {
    color: #D72D2E;       /* Highlight color for active link */
    font-weight: bold;     /* Make it stand out */
    border-bottom: 2px solid #D72D2E; /* Optional underline indicator */
    padding-bottom: 2px;   /* Slight padding for the border */
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language switch */
.lang-switch select {
  border: 1px solid #ddd;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  background: white;
  font-size: 0.85rem;
  cursor: pointer;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--primary);
  border-radius: 5px;
}

/* =====================
   MAIN
===================== */
.site-main {
  min-height: 60vh;
}

/* HERO SLIDER */
    .hero-slider {
      position:relative;
      overflow:hidden;
      height:80vh; /* navbar height */
      border-bottom-left-radius:50% 15%;
      border-bottom-right-radius:50% 15%;
    }
    .hero-slide {
      width:100%;
      height:100%;
      position:absolute;
      top:0; left:0;
      background-size:cover;
      background-position:center;
      opacity:0;
      transition:opacity 1s ease;
    }
    .hero-slide.active { opacity:1; }
    .hero-content {
      position:absolute;
      top:50%; left:50%;
      transform:translate(-50%,-50%);
      color:white;
      text-align:center;
      text-shadow:0 3px 10px rgb(0, 0, 0);
    }
    .hero-content{
        padding: 3%;
       background: rgba(255, 255, 255, 0.089);
      backdrop-filter: blur(5px);
      border-radius: 12px;
    }
    .hero-content h1 { font-size:3rem; margin-bottom:1rem; }
    .hero-content p { font-size:1.2rem; margin-bottom:1.5rem; }
    .hero-content a {
      display:inline-block;
      padding:0.75rem 1.5rem;
      background:#D72D2E;
      color:white;
      font-weight:bold;
      border-radius:5px;
      transition: background 0.3s;
    }
    .hero-content a:hover { background:#b02525; }

    /* Hero arrows */
    .hero-arrow {
      position:absolute;
      top:50%;
      transform:translateY(-50%);
      font-size:2rem;
      color:white;
      background:rgba(0,0,0,0.3);
      border-radius:50%;
      width:40px;
      height:40px;
      display:flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      user-select:none;
    }
    .hero-arrow.left { left:20px; }
    .hero-arrow.right { right:20px; }
/* ================= SERVICES / PRODUCTS ================= */
.services {
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* center cards even if 1 */
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  width: 280px; /* modern fixed width */
  max-width: 90vw; /* fits smaller screens */
  
    height: fit-content;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.product-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  background: #006948;
  color: white;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

.badge-outline {
  border: 1px solid #006948;
  color: #006948;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

.product-desc {
  font-size: 14px;
  color: #666;
  margin-top: 6px;
}

.btn-view {
  display: inline-block;
  margin-top: 10px;
  background: #006948;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s;
}

.btn-view:hover {
  background: #004d35;
}
.product-page {
  padding: 60px 10%;
}

.product-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* GALLERY */
.product-gallery .main-image {
  width: 100%;
  aspect-ratio: 1/1;
  /* background: #f5f5f5; */
  border-radius: 12px;
  overflow: hidden;
}

.product-gallery .main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.thumbs img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}

/* INFO */
.product-info h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.product-description {
  color: #555;
  line-height: 1.7;
}


.badge {
  background: #006948;
  color: white;
  padding: 5px 10px;
  border-radius: 6px;
  margin-right: 8px;
}

.badge-outline {
  border: 1px solid #006948;
  padding: 5px 10px;
  border-radius: 6px;
  color: #006948;
}

/* CONTACT US STYLE */
.contact-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    display: grid;
    gap: 2rem;
}
.contact-info, .contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.contact-info h2, .contact-form h2 {
    color: #006948;
    margin-bottom: 1rem;
}
.contact-info a {
    color: #D72D2E;
    text-decoration: none;
    font-weight: bold;
}
.contact-form form label {
    display: block;
    margin-top: 1rem;
    font-weight: 500;
}
.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.3rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.contact-form form button {
    margin-top: 1rem;
    padding: 0.7rem 1.2rem;
    background: #006948;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
.contact-form form button:hover {
    background: #004d38;
}
.map-container {
    margin-top: 1rem;
    border-radius: 15px;
    overflow: hidden;
}
@media(max-width:768px){
    .contact-section { grid-template-columns: 1fr; }
}

/* RELATED */
.related-products {
  padding: 40px 10%;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.related-card {
  text-decoration: none;
  color: inherit;
}

.related-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  /* background: #f5f5f5; */
  border-radius: 10px;
}

.related-card h4 {
  margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .product-wrapper {
    grid-template-columns: 1fr;
  }
}
.thumbs img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.2s;
}
.error-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    text-align: center;
    background: linear-gradient(120deg, #006948, #ffffff);
    color: #333;
}

.error-page .error-container h1 {
    font-size: 8rem;
    color: #D72D2E;
}

.error-page .error-container h2 {
    font-size: 2rem;
    margin: 1rem 0;
    color: #006948;
}

.error-page .error-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.error-page .btn-view {
    padding: 0.8rem 2rem;
    background: #006948;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.error-page .btn-view:hover {
    background: #004d38;
}

.thumbs img:hover {
  opacity: 1;
}

.thumbs img.active {
  border: 2px solid #006948;
  opacity: 1;
}
/* RESET & BODY */
* { margin:0; padding:0; box-sizing:border-box; font-family:'Segoe UI',sans-serif; }
body { background:#f9f9f9; color:#333; line-height:1.6; }
a { text-decoration:none; color:inherit; }

/* PAGE TITLE */
.page-title { padding:120px 2rem 2rem; text-align:center; }
.page-title h1 { color:#006948; font-size:2.5rem; margin-bottom:0.5rem; }
.page-title p { color:#555; font-size:1rem; }

/* MAIN LAYOUT */
.main-content { 
  display:grid; 
  grid-template-columns: 250px 1fr; 
  gap:2rem; 
  max-width:1300px; 
  margin:auto; 
  padding:2rem; 
}

/* FILTERS SIDEBAR */
.filters { 
  background:white; 
  padding:1.5rem; 
  border-radius:15px; 
  box-shadow:0 5px 15px rgba(0,0,0,0.05); 
}
.filters h3 { color:#006948; margin-bottom:1rem; }
.filters label { display:block; margin:0.5rem 0; font-weight:500; }
.filters input, .filters select { 
  width:100%; 
  padding:0.5rem; 
  border-radius:5px; 
  border:1px solid #ccc; 
  margin-bottom:1rem;
}
.filters button { 
  width:100%; 
  padding:0.7rem; 
  border:none; 
  border-radius:5px; 
  background:#006948; 
  color:white; 
  font-weight:bold; 
  cursor:pointer; 
  transition: background 0.3s; 
}
.filters button:hover { background:#004d38; }

/* PRODUCTS GRID */
.products-container { 
  display:grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); 
  gap:2rem; 
}
.product-card { 
  background:white; 
  border-radius:15px; 
  overflow:hidden; 
  box-shadow:0 5px 15px rgba(0,0,0,0.1); 
  transition: transform 0.3s, box-shadow 0.3s; 
  position:relative; 
}
.product-card:hover { 
  transform:translateY(-5px); 
  box-shadow:0 10px 25px rgba(0,0,0,0.15); 
}
.product-card img { 
  width:100%; 
  height:220px; 
  object-fit:cover; 
}
.product-card-content { 
  padding:1rem; 
}
.product-card-content h3 { 
  color:#006948; 
  margin-bottom:0.5rem; 
  font-size:1.2rem; 
}
.product-card-content p { 
  font-size:0.95rem; 
  margin-bottom:0.5rem; 
  color:#D72D2E; 
  font-weight:bold; 
}
.product-card-content a { 
  display:inline-block; 
  padding:0.5rem 1rem; 
  background:#006948; 
  color:white; 
  border-radius:5px; 
  font-weight:bold; 
  transition: background 0.3s; 
}
.product-card-content a:hover { background:#004d38; }

/* PAGINATION */
.pagination { 
  text-align:center; 
  margin:40px 0; 
}
.pagination a { 
  display:inline-block; 
  margin:0 5px; 
  padding:0.5rem 0.8rem; 
  border-radius:5px; 
  background:#006948; 
  color:white; 
  font-weight:bold; 
  transition: background 0.3s; 
}
.pagination a:hover { background:#004d38; }
.pagination span { margin:0 10px; font-weight:bold; }

/* RESPONSIVE */
@media(max-width:1024px){ 
  .main-content { grid-template-columns: 1fr; } 
}
@media(max-width:768px){
  .filters { margin-bottom:2rem; }
}


/* Image container with uniform height */
.service-card img {
  width: 100%;
  height: 200px;           /* fixed container height */
  object-fit: contain;      /* fit entire image inside */
  object-position: center;  /* center image inside container */
  /* background: #f5f5f5;      optional: subtle background for transparency */
  flex-shrink: 0;
  padding: 10px;            /* optional: add padding so image doesn't touch edges */
}


/* Card content */
.service-card-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.service-card-content h3 {
  font-size: 1.2rem;
  color: #006948;
  margin-bottom: 0.5rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.service-card-content p {
  font-size: 1rem;
  color: #333;
  font-weight: bold;
}

/* Responsive tweaks */
@media(max-width:768px){
  .service-card {
    width: 45%; /* 2 cards per row */
  }
}

@media(max-width:480px){
  .service-card {
    width: 90%; /* single card per row */
  }
}
/* ================= WHY US ================= */
.why-us {
  padding: 80px 20px;
  background: #f7faf9;
  text-align: center;
}

.why-us h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #006948;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.why-card {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
  border-top: 4px solid #006948;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.why-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.why-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* ================= CATEGORIES ================= */
.categories {
  padding: 80px 20px;
  text-align: center;
  background-color: white;
}

.categories h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #006948;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 22px;
  max-width: 1000px;
  margin: auto;
}

.category-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
  transition: all 0.25s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.category-card img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.category-card h3 {
  font-size: 16px;
  font-weight: 600;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #006948; /* text color */
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    background: linear-gradient(135deg, #ffffff 0%, #e6f0eb 100%);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #006948 0%, #e6f0eb 100%);
    color: #fff; /* text turns white on hover */
}

.category-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
}

.store-map {
    padding: 4rem 2rem;
    text-align: center;
}

.store-map h2 {
    font-size: 2rem;
    color: #006948;
    margin-bottom: 0.5rem;
}

.store-map p {
    color: #555;
    margin-bottom: 2rem;
}

.map-container {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .why-us,
  .categories {
    padding: 60px 16px;
  }

  .why-us h2,
  .categories h2 {
    font-size: 26px;
  }
}

/* ================= ABOUT STORE SECTION ================= */

.about-store {
  padding: 80px 20px;
  background: #f8faf9;
}

.about-store-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Image */
.about-store-image {
  text-align: center;
}

.about-store-image img {
  width: 100%;
  max-width: 420px;
  height: 320px;
  object-fit: contain;
  border-radius: 20px;
  background: white;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Content */
.about-store-content h2 {
  font-size: 32px;
  color: #006948;
  margin-bottom: 20px;
}

.about-store-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 16px;
}

/* Accent line */
.about-store-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #D72D2E;
  margin-top: 10px;
  border-radius: 4px;
}
.about-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px); /* start slightly right */
    transition: opacity 1s ease, transform 1s ease;
    background-size: cover;
    background-position: center;
}

.about-slide.active {
    opacity: 1;
    transform: translateX(0); /* move to place */
    z-index: 1;
}

.about-slide-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: 10%;
}

.about-slide-content {
    max-width: 600px;
    color: #fff;
}

.about-slide-content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.about-slide-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.about-slide-content .btn-view {
    padding: 0.8rem 2rem;
    background: #006948;
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}
.about-slide-content .btn-view:hover { background: #004d38; }

/* Arrows */
.about-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    background: rgba(0,0,0,0.3);
    padding: 0.3rem 0.7rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}
.about-arrow.left { left: 20px; }
.about-arrow.right { right: 20px; }
.about-arrow:hover { background: rgba(0,0,0,0.6); }

/* Responsive */
@media(max-width:1024px){
    .about-slide-content h2{ font-size:2rem; }
    .about-slide-content p{ font-size:1rem; }
    .about-slide-overlay{ padding-left:5%; }
}
@media(max-width:768px){
    .about-slider{ height:400px; }
    .about-slide-content h2{ font-size:1.5rem; }
    .about-slide-content p{ font-size:0.9rem; }
}

.about-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.about-section .about-image img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.about-section .about-content h2 {
    color: #006948;
    margin-bottom: 1rem;
}
.about-section .about-content p {
    margin-bottom: 1rem;
    color: #555;
}

.values-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
}
.values-section h2 {
    color: #006948;
    margin-bottom: 2rem;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.value-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    margin: 0 auto 1rem auto;
}
.value-card h3 {
    color: #006948;
    margin-bottom: 0.5rem;
}
.value-card p {
    color: #555;
    font-size: 0.95rem;
}

@media(max-width:768px){
    .about-section { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .about-store-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-store-content h2::after {
    margin-left: auto;
    margin-right: auto;
  }
}


/* =====================
   FOOTER
===================== */
.site-footer {
  background: linear-gradient(135deg, #005c3f, #006948);
  color: white;
  margin-top: 4rem;
  border-top-left-radius: 60px 12%;
  border-top-right-radius: 60px 12%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.5rem;
  padding: 4rem 1.2rem 2rem;
}

.footer-brand h2 {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: #e6e6e6;
}

.footer-nav h3,
.footer-contact h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: var(--secondary);
  font-weight: 500;
}

.footer-nav a:hover {
  color: white;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

.footer-contact a {
  color: var(--secondary);
  font-weight: 500;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer-socials a {
  background: var(--secondary);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
}

.footer-socials a:hover {
  opacity: 0.85;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.85rem;
  color: #ddd;
}

/* =====================
   WHATSAPP FLOAT
===================== */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow);
  z-index: 999;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* =====================
   RTL SUPPORT
===================== */
body.rtl {
  direction: rtl;
}

body.rtl .nav-links {
  left: 0;
  right: auto;
}

body.rtl .footer-socials {
  justify-content: flex-end;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    flex-direction: column;
    width: 220px;
    padding: 1rem;
    display: none;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}
