/* Reset + base */

.navbar {
  background-color: #fff;
  border-bottom: 4px solid #0057b8; 
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #444;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #e63946;
}

/* Default style (desktop & large screens) */
.nav-cta .call-btn {
  background-color: #e63946;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.nav-cta .call-btn:hover {
  background-color: #c9303b;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .nav-cta .call-btn {
    padding: 0.4rem 0.8rem;   /* smaller padding */
    font-size: 0.9rem;        /* smaller font */
    display: inline-block;
    text-align: center;
    width: 100%;              /* full-width button */
    box-sizing: border-box;
  }
}


/* Mobile */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none; /* Hide on mobile unless you add a menu toggle */
  }
}

body, h1, p {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

.hero {
  position: relative;
  height: 100vh;
  background-image: url(\images/hero.png); /* Replace with your actual path */
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.55); /* soft dark overlay */
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn.primary {
  background-color: #e63946;
  color: #fff;
}

.btn.primary:hover {
  background-color: #cc2f3e;
}

.btn.secondary {
  background-color: #222;
  color: #fff;
}

.btn.secondary:hover {
  background-color: #000;
}

.btn.outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn.outline:hover {
  background-color: #fff;
  color: #000;
}

.scroll-down {
  font-size: 1rem;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media screen and (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
}
.services {
  background-color: #ffffff;
  padding: 5rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 800;
  color: #111;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  height: 4px;
  width: 60px;
  background-color: #0057b8;
  margin: 10px auto 0;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-box {
  flex: 1 1 300px;
  max-width: 360px;
  background: #f0f0f0;
  padding: 2rem;
  border-radius: 10px;
  border-top: 6px solid #0057b8;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-box img {
  width: 50px;
  margin-bottom: 1.2rem;
  filter: grayscale(100%);
}

.service-box h3 {
  font-size: 1.4rem;
  color: #111;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-box p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}
html {
  scroll-behavior: smooth;
}
.branches {
   background: rgba(0, 0, 0, 0.55);
  padding: 5rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 800;
  color: #111;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  height: 4px;
  width: 60px;
  background-color: #e63946;
  margin: 10px auto 0;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.branch-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  border-left: 6px solid #0057b8;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.branch-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
}

.branch-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.btn.small {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: #e63946;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn.small:hover {
  background-color: #cc2f3e;
}
.shop-promo {
  background: rgba(0, 0, 0, 0.55);
  padding: 5rem 2rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}
.shop-promo {
  background-color: #f9f9f9;
  padding: 6rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: #111;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.shop-promo-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.shop-text {
  flex: 1 1 480px;
  text-align: left;
}

.shop-text h3 {
  font-size: 2rem;
  color: #111;
  font-weight: 700;
  margin-bottom: 1rem;
}

.shop-text p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.shop-image {
  flex: 1 1 420px;
}

.shop-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.shop-image img:hover {
  transform: scale(1.03);
}

.btn.primary {
  padding: 0.8rem 1.8rem;
  background-color: #e63946;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn.primary:hover {
  background-color: #c9303b;
  transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
  .shop-promo-banner {
    flex-direction: column;
    padding: 2rem 1.5rem;
  }

  .shop-text, .shop-image {
    text-align: center;
  }

  .shop-text h3 {
    font-size: 1.6rem;
  }
}
.color-stories {
 background: rgba(0, 0, 0, 0.55);
  padding: 6rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: #111;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #050505;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.story-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-top: 6px solid #0057b8; /* 🔴 Red strip */
}

.story-card:hover {
  transform: translateY(-5px);
}

.story-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.story-info {
  padding: 1.5rem;
  text-align: left;
}

.story-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
}

.story-info p {
  font-size: 1rem;
  color: #d7d5d5;
  line-height: 1.5;
}

.view-gallery {
  margin-top: 2rem;
}

.btn.outline {
  padding: 0.75rem 1.5rem;
  border: 2px solid #e63946;
  color: #e63946;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn.outline:hover {
  background-color: #0057b8;
  color: #fff;
}

/* 🔄 Responsive Improvements */
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .story-info h3 {
    font-size: 1.1rem;
  }

  .story-info p {
    font-size: 0.95rem;
  }

  .btn.outline {
    font-size: 0.95rem;
  }
}
.contact {
  background-color: #f5f5f5;
  padding: 6rem 2rem;
  text-align: center;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 3rem auto 0;
  text-align: left;
}

.contact-info {
  flex: 1 1 400px;
}

.contact-info h3 {
  font-size: 1.4rem;
  color: #111;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-info p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
}

.contact-info a {
  color: #e63946;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  flex: 1 1 500px;
  background: #fff;
  border-top: 6px solid #0057b8; /* 🔴 Tenacious red stripe */
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

form .form-group {
  display: flex;
  flex-direction: column;
}

form label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111;
}

form input,
form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 2px solid #ddd;
  border-radius: 6px;
  background: #fdfdfd;
  transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #e63946;
  outline: none;
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

form .btn.primary {
  align-self: flex-start;
  padding: 0.75rem 1.5rem;
  background-color: #e63946;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

form .btn.primary:hover {
  background-color: #c9303b;
  transform: translateY(-2px);
}
.site-footer {
  background-color: #111;
  color: #eee;
  padding: 4rem 2rem 2rem;
  border-top: 6px solid #0057b8; /* 🔴 Signature red stripe */
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  flex: 1 1 350px;
}

.footer-brand h2 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #ccc;
  line-height: 1.6;
}

.footer-links, .footer-contact {
  flex: 1 1 220px;
}

.footer-links h4, .footer-contact h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
  color: #0057b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: #aaa;
  border-top: 1px solid #333;
  margin-top: 3rem;
}

@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links,
  .footer-contact {
    margin-top: 2rem;
  }

  .footer-contact ul {
    padding-top: 0.5rem;
  }
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: #aaa;
  border-top: 1px solid #333;
  margin-top: 3rem;
}

.footer-bottom .designer-credit {
  margin-top: 0.5rem;
  font-style: italic;
  color: #888;
}

.footer-bottom .designer-credit a:hover {
  text-decoration: underline;
  color: #fff;
}/* SVG icons */
.icon-svg {
  width: 28px;
  height: 28px;
}

/* Shared style for circular floating buttons */
.floating-faq-btn
 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  cursor: pointer;
  transition: background-color 0.3s ease;
  right: 1.5rem;
}

/* FAQ Button (Red) */
.floating-faq-btn {
  bottom: 6rem;
  background-color: #cc0000;
}

.floating-faq-btn:hover {
  background-color: #a80000;
}

.icon-svg {
  width: 28px;
  height: 28px;
}

/* Container */
.floating-whatsapp {
  position: fixed;
  bottom: 3rem;
  left: 1.5rem; /* moved to left */
  text-align: left;
 
}

.floating-left-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  cursor: pointer;
  transition: background-color 0.3s ease;
  left: 1.5rem; /* switched from right to left */
}

/* Example: WhatsApp Button (Green) */
.floating-left-btn {
  bottom: 6rem; 
  background-color: #25D366;
}

.floating-left-btn:hover {
  background-color: #1ebe57;
}

.icon-svg {
  width: 40px;
  height: 40px;
}
.color-stories {
  background: #fafafa;
  padding: 80px 0;
  text-align: center;
}

.color-stories .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
  letter-spacing: -0.5px;
}

.color-stories .section-subtitle {
  color: #121212;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.story-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0));
  opacity: 0.6;
}

.story-info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  text-align: left;
  max-width: 80%;
  z-index: 2;
}

.story-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.story-info p {
  font-size: 1rem;
  opacity: 0.9;
}

.explore-btn {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.story-card:hover img {
  transform: scale(1.1);
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.story-card:hover .explore-btn {
  color: #ffd700;
}

/* Optional: custom overlay hues */
.story-card.green .story-overlay { background: rgba(0, 128, 0, 0.4); }
.story-card.blue .story-overlay { background: rgba(0, 0, 128, 0.4); }
.story-card.red .story-overlay { background: rgba(128, 0, 0, 0.4); }
#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: none;
  transition: all 0.3s ease;
}
#backToTop:hover { background: var(--blue); }
/* ===== View Gallery Button ===== */
.view-gallery-btn {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-gallery {
  display: inline-block;
  background: var(--red, #c0392b);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-gallery:hover {
  background: var(--blue, #1a5276);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}


/* --- FIX MOBILE HORIZONTAL SCROLL --- */
html, body {
  overflow-x: hidden;
  width: 100%;
}

* {
  box-sizing: border-box;
  max-width: 100%;
}

/* Contain layout overflow on mobile */
.nav-container,
.hero,
.services,
.shop-promo-banner,
.color-stories,
.contact,
.footer-container,
.story-grid,
.branches-grid {
  overflow-x: hidden;
}

/* Fix for grids and flex layouts causing scroll */
.shop-promo-banner,
.contact-content,
.services-grid,
.story-grid {
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Make images and videos responsive */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Prevent transform or shadows from creating scroll */
.story-card,
.branch-card,
.shop-image img {
  overflow-x: clip;
}

/* Footer safety */
.site-footer {
  overflow-x: hidden;
}


/* ===== NAVBAR BASE ===== */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--red, #c0392b);
}

/* ===== CTA BUTTON ===== */
.call-btn {
  background: var(--red, #c0392b);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.call-btn:hover {
  background: var(--blue, #1a5276);
}

/* ===== MOBILE MENU TOGGLE ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-120%);
    transition: transform 0.4s ease;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .menu-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }
}

/* ===== Animate hamburger to "X" ===== */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
/* ===== Leave a Review Button ===== */
.btn-review {
  display: inline-block;
  padding: 0.9rem 2rem;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #c0392b; /* Tenacious deep red tone */
  border: none;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(192, 57, 43, 0.25);
}

/* Hover effect */
.btn-review:hover {
  background: #a93226;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(169, 50, 38, 0.3);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .btn-review {
    width: 100%;
    text-align: center;
  }
}
