/* ======================== */
/*         VARIABLES        */
/* ======================== */
:root {
  /* Colors */
  --primary-color: #2563eb;
  --primary-hover: #1d4ed8;
  --secondary-color: #64748b;
  --secondary-hover: #475569;
  --accent-color: #06b6d4;
  --success-color: #10b981;
  --success-hover: #059669;
  --whatsapp-color: #25d366;
  --whatsapp-hover: #128c7e;

  --text-dark: #1f2937;
  --text-light: #f8fafc;
  --text-muted: #64748b;
  --text-primary: #1e293b;
  --text-secondary: #64748b;

  --bg-light: #f8fafc;
  --bg-dark: #1f2937;
  --bg-white: #ffffff;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-full: 9999px;
}

/* ======================== */
/*      BASE STYLING       */
/* ======================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ======================== */
/*         BUTTONS         */
/* ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 0.5rem;
  min-height: 44px;
  text-align: center;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
}

.btn-success {
  background-color: var(--success-color);
  color: var(--text-light);
}

.btn-success:hover {
  background-color: var(--success-hover);
}

.whatsapp-product-btn {
  background-color: var(--whatsapp-color);
  color: var(--text-light);
  border: 2px solid var(--whatsapp-color);
}

.whatsapp-product-btn:hover {
  background-color: var(--whatsapp-hover);
  border-color: var(--whatsapp-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ======================== */
/*       UTILITIES         */
/* ======================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================== */
/*    HERO SECTION         */
/* ======================== */
.hero {
  min-height: 100vh;
  background: url("../images/SHOP/vitashop-5.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 1rem 2rem 1rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem;
  width: 100%;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  word-wrap: break-word;
}

.hero .subheadline {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-location {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-support {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  padding: 0 0.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.cta-buttons .btn {
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-align: center;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cta-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: translateY(-2px);
}

/* Fade-in Animation for Hero Section */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}

.hero .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.8s cubic-bezier(0.4,0,0.2,1) both;
}

/* ======================== */
/*    RESPONSIVE DESIGN    */
/* ======================== */

/* Small Mobile Devices (320px - 480px) */
@media (max-width: 480px) {
  .hero {
    padding: 60px 0.75rem 1.5rem 0.75rem;
    min-height: 100vh;
  }

  .hero-content {
    padding: 0.75rem;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    line-height: 1.1;
  }

  .hero .subheadline {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.4;
  }

  .hero-location {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .hero-support {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    max-width: 95%;
    padding: 0 0.25rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
    min-width: auto;
  }
}

/* Medium Mobile Devices (481px - 640px) */
@media (min-width: 481px) and (max-width: 640px) {
  .hero {
    padding: 70px 1rem 2rem 1rem;
  }

  .hero-content {
    padding: 1rem;
    max-width: 95%;
  }

  .hero h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }

  .hero .subheadline {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-location {
    font-size: 1rem;
  }

  .hero-support {
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
    max-width: 90%;
  }

  .cta-buttons {
    gap: 1rem;
  }

  .cta-buttons .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    min-width: 140px;
  }
}

/* Large Mobile/Small Tablet (641px - 768px) */
@media (min-width: 641px) and (max-width: 768px) {
  .hero {
    padding: 75px 1.5rem 2rem 1.5rem;
  }

  .hero-content {
    padding: 1.5rem;
    max-width: 90%;
  }

  .hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
  }

  .hero .subheadline {
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
  }

  .hero-location {
    font-size: 1.1rem;
  }

  .hero-support {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 85%;
  }

  .cta-buttons .btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    min-width: 150px;
  }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    padding: 80px 2rem 2rem 2rem;
  }

  .hero-content {
    padding: 2rem;
    max-width: 85%;
  }

  .hero h1 {
    font-size: 3.25rem;
    margin-bottom: 1.5rem;
  }

  .hero .subheadline {
    font-size: 1.15rem;
    margin-bottom: 2rem;
  }

  .hero-location {
    font-size: 1.15rem;
  }

  .hero-support {
    font-size: 1.02rem;
    margin-bottom: 2.5rem;
    max-width: 80%;
  }

  .cta-buttons .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    min-width: 160px;
  }
}

/* Desktop (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
  .hero {
    padding: 80px 2rem 2rem 2rem;
  }

  .hero-content {
    max-width: 800px;
    padding: 2rem;
  }

  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }

  .hero .subheadline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .hero-location {
    font-size: 1.18rem;
  }

  .hero-support {
    font-size: 1.04rem;
    margin-bottom: 2.5rem;
    max-width: 75%;
  }

  .cta-buttons .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    min-width: 170px;
  }
}

/* Large Desktop (1201px+) */
@media (min-width: 1201px) {
  .hero {
    padding: 80px 2rem 2rem 2rem;
  }

  .hero-content {
    max-width: 900px;
    padding: 3rem;
  }

  .hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
  }

  .hero .subheadline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }

  .hero-location {
    font-size: 1.2rem;
  }

  .hero-support {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 70%;
  }

  .cta-buttons .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    min-width: 180px;
  }
}

/* Landscape orientation for mobile */
@media (max-height: 500px) and (orientation: landscape) and (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding: 40px 1rem 1rem 1rem;
  }

  .hero-content {
    padding: 0.5rem;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .hero .subheadline {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .hero-support {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .cta-buttons {
    gap: 0.75rem;
    flex-direction: row;
  }

  .cta-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    min-width: 110px;
  }
}

/* Ultra-wide screens */
@media (min-width: 1600px) {
  .hero-content {
    max-width: 1000px;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .hero .subheadline {
    font-size: 1.4rem;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .cta-buttons .btn {
    min-height: 44px;
    padding: 1rem 1.5rem;
  }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cta-buttons .btn {
    transition: none;
  }
}

/* Focus styles for accessibility */
.cta-buttons .btn:focus {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}
/* ======================== */
/*      SPLIT SECTION      */
/* ======================== */

.split-section {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.split-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  flex-wrap: wrap;
}

.split-text {
  flex: 1 1 350px;
  max-width: 550px;
  text-align: left;
}

.split-text h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.split-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.split-text .btn {
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
}

.split-image {
  flex: 1 1 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-image img {
  max-width: 100%;
  width: 70%;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  object-fit: cover;
}

@media (max-width: 992px) {
  .split-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .split-text {
    text-align: center;
  }

  .split-text .btn {
    margin-top: 1rem;
  }

  .split-image img {
    max-width: 90%;
    border-radius: 1.5rem;
  }
}

@media (max-width: 576px) {
  .split-section {
    padding: 40px 15px;
  }

  .split-text p {
    font-size: 1rem;
  }

  .split-text .btn {
    width: 100%;
  }
}


/* ======================== */
/*     ABOUT SPLIT SECTION  */
/* ======================== */
.about-images {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 320px;
  min-height: 320px;
}

.about-img-main {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  position: relative;
  z-index: 1;
}

.about-img-overlap {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  position: absolute;
  left: 180px;
  top: 120px;
  z-index: 2;
  background: #fff;
  border: 4px solid #fff;
}

@media (max-width: 992px) {
  .about-images {
    justify-content: center;
  }

  .about-img-main {
    width: 250px;
    height: 250px;
    border-radius: 1.5rem;
  }

  .about-img-overlap {
    width: 150px;
    height: 150px;
    left: 140px;
    top: 90px;
    border-radius: 1.2rem;
    border-width: 3px;
  }
}

@media (max-width: 576px) {
  .about-images {
    min-width: 200px;
    min-height: 200px;
  }

  .about-img-main {
    width: 200px;
    height: 200px;
    border-radius: 1rem;
  }

  .about-img-overlap {
    width: 120px;
    height: 120px;
    left: 100px;
    top: 70px;
    border-radius: 1rem;
  }
}
/* ======================== */
/*  SERVICES SHOWCASE SECTION */
/* ======================== */
.services-showcase-section {
  background: #2d323e;
  padding: 60px 0 80px 0;
  width: 100%;
}

.services-showcase-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-showcase-header h2 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-showcase-header p {
  color: #e0e7ef;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
}

.services-showcase-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.service-card {
  background: #fff;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  /* overflow: hidden; */
  flex: 1 1 320px;
  max-width: 370px;
  min-width: 270px;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.13);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}

.service-card-body {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

.service-card-body p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .services-showcase-grid {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .service-card {
    max-width: 100%;
    min-width: 220px;
  }
}

@media (max-width: 800px) {
  .services-showcase-grid {
    flex-direction: column;
    align-items: center;
  }
  .service-card {
    width: 100%;
    max-width: 400px;
  }
}
/* ======================== */
/*   PRODUCT GRID SECTION   */
/* ======================== */
.product-grid-section {
  width: 100%;
  padding: 60px 0 80px 0;
  background: #fafbfc;
}

.product-grids {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card-grid {
  position: relative;
  min-height: 320px;
  /* border-radius: rem; */
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.product-card-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,20,20,0.72) 70%, rgba(20,20,20,0.25) 100%);
  z-index: 1;
  transition: background 0.3s;
}

.product-card-grid:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
}

.product-card-grid:hover::before {
  background: linear-gradient(0deg, rgba(20,20,20,0.82) 80%, rgba(20,20,20,0.35) 100%);
}

.product-card-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.product-card-overlay h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #fff;
}

.product-card-overlay p {
  font-size: 1.05rem;
  color: #f3f4f6;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .product-grids {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 1.5rem;
  }
  .product-card-grid {
    min-height: 220px;
    border-radius: 1.2rem;
  }
}
/* ======================== */
/*    BRANCHES SECTION   */
/* ======================== */
 .branches-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 16px;
            background: #97999b;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }

        .branch-container {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 80px;
            min-height: 500px;
        }

        .branch-container:last-child {
            margin-bottom: 0;
        }

        .branch-container.reverse {
            flex-direction: row-reverse;
        }

        .branch-info {
            flex: 1;
            padding: 40px;
        }

        .branch-map {
            flex: 1;
            height: 450px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .branch-map:hover {
            transform: scale(1.02);
        }

        .branch-map iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: contrast(1.1) saturate(1.1);
        }

        .branch-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 20px;
            position: relative;
        }

        .branch-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            border-radius: 2px;
        }

        .branch-description {
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .branch-details {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .detail-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .detail-label {
            font-size: 1rem;
            font-weight: 600;
            color: #475569;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .detail-content {
            font-size: 1.2rem;
            color: #1e293b;
            padding: 16px 20px;
            background: white;
            border-radius: 12px;
            border-left: 4px solid #3b82f6;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .detail-content:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
        }

        .detail-content.phone {
            border-left-color: #10b981;
            cursor: pointer;
        }

        .detail-content.phone:hover {
            background: #ecfdf5;
        }

        .detail-content.hours {
            border-left-color: #f59e0b;
        }

        .detail-content.hours:hover {
            background: #fffbeb;
        }

        .phone-link {
            color: #10b981;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .phone-link:hover {
            color: #059669;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 20px;
            padding: 16px 20px;
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border-radius: 12px;
            border-left: 4px solid #f59e0b;
        }

        .stars {
            color: #f59e0b;
            font-size: 1.2rem;
        }

        .rating-text {
            color: #92400e;
            font-weight: 600;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .branches-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-subtitle {
                font-size: 1rem;
                padding: 0 20px;
            }

            .branch-container,
            .branch-container.reverse {
                flex-direction: column;
                gap: 40px;
                margin-bottom: 60px;
            }

            .branch-info {
                padding: 20px;
            }

            .branch-title {
                font-size: 2rem;
            }

            .branch-map {
                height: 300px;
                width: 100%;
            }

            .detail-content {
                font-size: 1rem;
                padding: 12px 16px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .branch-title {
                font-size: 1.6rem;
            }

            .branch-description {
                font-size: 1rem;
            }

            .branch-map {
                height: 250px;
            }
        }

        /* Animation */
        .branch-container {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .branch-container:nth-child(even) {
            animation-delay: 0.2s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
/* ======================== */
/*  WHATSAPP PRODUCT BUTTON  */
/* ======================== */
/* Floating Buttons */
.floating-buttons {
  position: fixed;
  right: var(--spacing-md);
  bottom: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  z-index: 999;
}

.whatsapp-btn,
.call-btn {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.whatsapp-btn {
  background: #25d366;
}

.call-btn {
  background: var(--primary-color);
}

.whatsapp-btn:hover,
.call-btn:hover {
  transform: scale(1.1);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .services-showcase-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .split-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .split-text, .split-image {
    max-width: 100%;
    text-align: center;
  }
  .product-grids {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .branch-card {
    margin: 0 10px;
  }
  .branch-map iframe {
    height: 160px;
  }
  .branch-phone a {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* Floating buttons adjustment on small devices */
@media (max-width: 480px) {
  .floating-buttons {
    right: 0.5rem;
    bottom: 0.5rem;
  }
  .floating-buttons a {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .btn {
    width: 100%;
    max-width: 280px;
  }
  .services-showcase-grid,
  .product-grids {
    flex-direction: column;
    gap: 1.2rem;
  }
  .branch-address {
    font-size: 0.9rem;
    padding: 10px;
    padding-left: 40px;
  }
  .branch-address::before {
    left: 15px;
    font-size: 1rem;
  }
}

/* Additional hero scaling for smallest devices */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.4rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
}

/* Ultra-wide screen support */
@media (min-width: 1600px) {
  .hero-content {
    max-width: 1000px;
  }
  .hero h1 {
    font-size: 4.5rem;
  }
  .hero .subheadline {
    font-size: 1.4rem;
  }
}

/* Ensure text elements don't overflow */
.hero h1,
.hero .subheadline,
.cta-buttons .btn,
.split-text h1,
.branch-card h3 {
  word-break: break-word;
  white-space: normal;
}