body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.header {
  background: #e60023;
  padding: 15px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: #fff3f3;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  color: #e60023;
  font-size: 48px;
}

.btn {
  background: #e60023;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
}

.categories {
  padding: 60px 20px;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.cat-box {
  border: 1px solid #ddd;
  padding: 20px;
  font-weight: bold;
}

.about, .why-us, .contact {
  padding: 60px 20px;
  width: 90%;
  margin: auto;
}

.footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px;
}

/* ===== THE OLIVER FOOTER ===== */

.theme-footer {
  background: linear-gradient(135deg, #e60023, #b8001b);
  color: #fff;
  margin-top: 80px;
}

.footer-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  border-left: 4px solid #fff;
  padding-left: 10px;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 15px;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  background: rgba(0,0,0,0.2);
  text-align: center;
  padding: 15px;
  font-size: 13px;
}

/* MOBILE FRIENDLY */
@media (max-width: 768px) {
  .footer-wrap {
    text-align: center;
  }
  .footer-col h4 {
    border-left: none;
    padding-left: 0;
  }
}

/* CATEGORY GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

/* CATEGORY BOX */
.cat-box {
  display: block;
  padding: 25px 20px;
  border: 2px solid #e60023;
  text-align: center;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* HOVER EFFECT */
.cat-box:hover {
  background: #e60023;
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(230, 0, 35, 0.3);
}

/* ===== HEADER HEIGHT FIX ===== */

.header {
  background: #e60023;
  padding: 18px 0;   /* ← yahin se height badhi */
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 100px;
}


/* MENU */
.menu {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.menu li {
  position: relative;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 8px;
}

/* DROPDOWN */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  display: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  z-index: 999;
}

.dropdown-menu li a {
  color: #333;
  display: block;
  padding: 10px 15px;
}

.dropdown-menu li a:hover {
  background: #e60023;
  color: #fff;
}

/* SHOW DROPDOWN */
.dropdown:hover > .dropdown-menu {
  display: block;
}

/* SUB MENU */
.dropdown-sub ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  min-width: 200px;
}

.dropdown-sub:hover ul {
  display: block;
}

/* HEADER BUTTONS */
.header-actions {
  display: flex;
  gap: 10px;
}

.call-btn {
  background: #fff;
  color: #e60023;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
}

/* ===== HERO SLIDER ===== */

.hero-slider {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #fff;
  padding: 120px 10%;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-content h2 {
  font-size: 26px;
  color: #ffccd5;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.hero-btn {
  background: #e60023;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 5px;
}

.hero-btn:hover {
  background: #b8001b;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-slider {
    height: 65vh;
  }

  .hero-content {
    padding: 80px 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content h2 {
    font-size: 20px;
  }
}

/* ===== BURGER ICON ===== */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 992px) {

  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 260px;
    height: 100vh;
    background: #e60023;
    transition: 0.3s ease;
    padding-top: 20px;
    z-index: 999;
  }

  .nav.active {
    left: 0;
  }

  .menu {
    flex-direction: column;
    gap: 0;
  }

  .menu li {
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .menu a {
    padding: 15px;
    display: block;
    color: #fff;
  }

  .header-actions {
    display: none; /* mobile me hide */
  }

  /* HERO TEXT SMALL */
  .hero-content h1 { font-size: 32px; }
  .hero-content h2 { font-size: 20px; }
  .hero-content p  { font-size: 15px; }

}
.nav {
  background: linear-gradient(180deg, #e60023, #b8001b);
}

/* ===== ABOUT THE OLIVER (DETAILED) ===== */

.about-detailed {
  background: #fff;
  padding: 90px 20px;
}

.about-wrap {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  color: #c4161c;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

/* READ MORE BUTTON */
.read-more-btn {
  display: inline-block;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #c4161c;
  padding: 12px 26px;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  background: #a50f14;
  transform: translateY(-2px);
}

/* IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .about-wrap {
    flex-direction: column;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text {
    text-align: center;
  }
}


/* ===== WHY CHOOSE US ===== */

.why-choose-us {
  background: linear-gradient(135deg, #f9f9f9, #fff1f1); /* alag BG */
  padding: 90px 20px;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 36px;
  color: #c4161c;
  margin-bottom: 10px;
}

.why-sub {
  font-size: 17px;
  color: #555;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-box {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.why-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(196,22,28,0.18);
}

.why-icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background: #c4161c;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  margin-bottom: 15px;
}

.why-box h4 {
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
}

.why-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 28px;
  }

  .why-box {
    text-align: center;
  }
}


/* WHY CHOOSE US - READ MORE BUTTON */

.why-btn-wrap {
  margin-top: 50px;
  text-align: center;
}

.why-read-more {
  display: inline-block;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: #c4161c;
  text-decoration: none;
  border-radius: 6px;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}

.why-read-more:hover {
  background: #a50f14;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(196,22,28,0.35);
}

/* ===== WHY CHOOSE US (8 OPTIONS) ===== */

.why-choose-us {
  background: linear-gradient(135deg, #f9f9f9, #fff1f1);
  padding: 90px 20px;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 36px;
  color: #c4161c;
  margin-bottom: 10px;
}

.why-sub {
  font-size: 17px;
  color: #555;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-box {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.why-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(196,22,28,0.18);
}

.why-icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background: #c4161c;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  margin-bottom: 15px;
}

.why-box h4 {
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
}

.why-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* READ MORE BUTTON */
.why-btn-wrap {
  margin-top: 50px;
}

.why-read-more {
  display: inline-block;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: #c4161c;
  text-decoration: none;
  border-radius: 6px;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}

.why-read-more:hover {
  background: #a50f14;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(196,22,28,0.35);
}

/* MOBILE */
@media (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 28px;
  }

  .why-box {
    text-align: center;
  }
}

.product-gallery {
  padding: 90px 20px;
  text-align: center;
}

.product-gallery h2 {
  font-size: 36px;
  color: #c4161c;
}

.gallery-sub {
  color: #555;
  margin-bottom: 40px;
}

/* FILTER BUTTONS */
.filter-buttons button {
  background: #eee;
  border: none;
  padding: 10px 18px;
  margin: 5px;
  cursor: pointer;
  font-weight: 600;
}

.filter-buttons .active {
  background: #c4161c;
  color: #fff;
}

/* 4x4 GRID */
.product-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.product-grid.active {
  display: grid;
}

.product-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.3s;
}

.product-grid img:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ===== CUSTOMER TESTIMONIALS ===== */

.testimonials {
  background: linear-gradient(135deg, #fff1f1, #ffffff);
  padding: 90px 20px;
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.testimonials h2 {
  font-size: 36px;
  color: #c4161c;
  margin-bottom: 10px;
}

.testimonials-sub {
  font-size: 17px;
  color: #555;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-box {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.testimonial-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(196,22,28,0.18);
}

.stars {
  font-size: 20px;
  color: #f5a623;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

.testimonial-box h4 {
  font-size: 15px;
  color: #222;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonials h2 {
    font-size: 28px;
  }
}
./* ===== TESTIMONIAL SLIDER ===== */

.testimonial-slider-section {
  background: linear-gradient(135deg, #fff1f1, #ffffff);
  padding: 90px 20px;
}

.testimonial-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.testimonial-container h2 {
  font-size: 36px;
  color: #c4161c;
}

.testimonial-sub {
  color: #555;
  margin-bottom: 50px;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 25px;
  animation: scrollTestimonials 30s linear infinite;
}

.testimonial-card {
  min-width: 320px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: left;
}

.testimonial-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

.stars {
  color: #f5a623;
  margin-bottom: 12px;
}

/* AUTO SLIDE RIGHT TO LEFT */
@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 260px;
  }

  .testimonial-container h2 {
    font-size: 28px;
  }
}

/* ===== CALL TO ACTION ===== */

.cta-section {
  background: linear-gradient(135deg, #c4161c, #8f0f14);
  padding: 90px 20px;
  text-align: center;
  color: #fff;
}

.cta-container {
  max-width: 1000px;
  margin: auto;
}

.cta-section h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;   /* PURE WHITE */
}

}

.cta-section p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #ffe5e5;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.cta-btn {
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s ease;
  display: inline-block;
}

/* INDIVIDUAL BUTTON STYLES */
.cta-btn.call {
  background: #ffffff;
  color: #c4161c;
}

.cta-btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.cta-btn.location {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

/* HOVER EFFECTS */
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 30px;
  }

  .cta-section p {
    font-size: 16px;
  }
}


/* ===== CONTACT + MAP (MINI) ===== */

.contact-mini {
  background: #f9f9f9;
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.contact-details {
  flex: 1;
}

.contact-details h2 {
  font-size: 34px;
  color: #c4161c;
  margin-bottom: 20px;
}

.contact-line {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

.contact-line a {
  color: #c4161c;
  font-weight: 600;
  text-decoration: none;
}

.contact-actions {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-btn {
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

/* BUTTON STYLES */
.contact-btn.call {
  background: #c4161c;
  color: #fff;
}

.contact-btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* MAP */
.contact-map {
  flex: 1;
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-details h2 {
    font-size: 28px;
    text-align: center;
  }

  .contact-details {
    text-align: center;
  }

  .contact-actions {
    justify-content: center;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 2000;
}





/* ABOUT PAGE HEADER */

.about-page-header {
  background: #f9f9f9;
  padding: 80px 20px 50px;
}

.about-header-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.about-header-container h1 {
  font-size: 40px;
  color: #c4161c;
  margin-bottom: 15px;
}

.about-header-container p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-header-container h1 {
    font-size: 28px;
  }
}


/* ABOUT INTRO – LOCAL SEO */

.about-intro {
  background: #ffffff;
  padding: 20px 20px 50px;
}

.about-intro-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.about-intro-container p {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
}


/* ===== ABOUT STORY – NEW DESIGN ===== */

.about-story-new {
  background: #ffffff;
  padding: 90px 20px;
}

.about-story-wrap {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.about-story-text {
  flex: 1;
}

.section-tag {
  display: inline-block;
  background: rgba(196,22,28,0.1);
  color: #c4161c;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 12px;
}

.about-story-text h2 {
  font-size: 38px;
  color: #c4161c;
  margin-bottom: 20px;
}

.about-story-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

/* RIGHT IMAGE */
.about-story-image {
  flex: 1;
}

.about-story-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 900px) {
  .about-story-wrap {
    flex-direction: column;
    text-align: center;
  }

  .about-story-text h2 {
    font-size: 28px;
  }
}

/* ===== WHAT WE OFFER – RED VERSION ===== */

.what-we-offer-red {
  background: linear-gradient(135deg, #c4161c, #8f0f14);
  padding: 100px 20px;
}

.what-offer-wrap {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* HEADING */
.what-we-offer-red h2 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 800;
}

.offer-sub {
  font-size: 18px;
  color: #ffe5e5;
  margin-bottom: 55px;
}

/* CARDS GRID */
.offer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* CARD */
.offer-card {
  background: #ffffff;
  color: #333;
  padding: 28px 24px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  position: relative;
  transition: 0.3s ease;
}

/* ICON */
.offer-card::before {
  content: "✔";
  color: #c4161c;
  font-weight: 800;
  margin-right: 8px;
}

/* HOVER */
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* MOBILE */
@media (max-width: 768px) {
  .what-we-offer-red h2 {
    font-size: 28px;
  }

  .offer-sub {
    font-size: 16px;
  }
}


/* ===== BRANDS WE DEAL IN ===== */

.brands-we-deal {
  background: #ffffff;
  padding: 90px 20px;
}

.brands-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.brands-we-deal h2 {
  font-size: 38px;
  color: #c4161c;
  margin-bottom: 20px;
}

.brands-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  max-width: 900px;
  margin: 0 auto 50px;
}

/* BRAND CARDS */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.brand-card {
  background: #f9f9f9;
  padding: 35px 20px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
  border: 1px solid #eee;
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  border-color: #c4161c;
}

/* MOBILE */
@media (max-width: 768px) {
  .brands-we-deal h2 {
    font-size: 28px;
  }

  .brands-intro {
    font-size: 16px;
  }
}
.brand-card {
  text-decoration: none;
  cursor: pointer;
}
/* ===== WHY CHOOSE THE OLIVER ===== */

.why-choose-oliver {
  background: #f9f9f9;
  padding: 90px 20px;
}

.why-choose-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.why-choose-oliver h2 {
  font-size: 38px;
  color: #c4161c;
  margin-bottom: 10px;
}

.why-sub {
  font-size: 17px;
  color: #555;
  margin-bottom: 40px;
}

/* BULLET LIST */
.why-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: auto;
}

.why-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  text-align: left;
}

/* CHECK ICON */
.why-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #c4161c;
  font-weight: 700;
  font-size: 18px;
}

/* MOBILE */
@media (max-width: 768px) {
  .why-choose-oliver h2 {
    font-size: 28px;
  }

  .why-list li {
    font-size: 16px;
  }
}




.why-choose-oliver {
  background: #fff1f1;
  padding: 90px 20px;
}

.why-choose-oliver h2 {
  color: #b11217;
}

.why-sub {
  color: #555;
}

.why-list li::before {
  color: #b11217;
}



/* ===== MISSION & VISION ===== */

.mission-vision {
  background: #ffffff;
  padding: 90px 20px;
}

.mission-vision-container {
  max-width: 1100px;
  margin: auto;
}

.mission-vision h2 {
  text-align: center;
  font-size: 38px;
  color: #c4161c;
  margin-bottom: 50px;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mv-card {
  background: #f9f9f9;
  padding: 35px 30px;
  border-radius: 12px;
}

.mv-card h3 {
  font-size: 24px;
  color: #c4161c;
  margin-bottom: 15px;
}

.mv-card p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
}

/* MOBILE */
@media (max-width: 900px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision h2 {
    font-size: 28px;
  }
}


/* ===== SHOWROOM LOCATION ===== */

.showroom-location {
  background: #f9f9f9;
  padding: 90px 20px;
}

.showroom-container {
  max-width: 1200px;
  margin: auto;
}

.showroom-location h2 {
  text-align: center;
  font-size: 38px;
  color: #c4161c;
  margin-bottom: 20px;
}

.showroom-intro {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

/* GRID */
.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* DETAILS */
.showroom-details p {
  font-size: 16.5px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
}

.showroom-details a {
  color: #c4161c;
  font-weight: 600;
  text-decoration: none;
}

/* BUTTONS */
.showroom-actions {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.showroom-btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.showroom-btn.call {
  background: #c4161c;
  color: #ffffff;
}

.showroom-btn.whatsapp {
  background: #25D366;
  color: #ffffff;
}

.showroom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* MAP */
.showroom-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 900px) {
  .showroom-grid {
    grid-template-columns: 1fr;
  }

  .showroom-location h2 {
    font-size: 28px;
  }

  .showroom-intro {
    font-size: 16px;
  }
}

/* ===== MAIN CALL TO ACTION ===== */

.cta-main {
  background: linear-gradient(135deg, #c4161c, #8f0f14);
  padding: 100px 20px;
  text-align: center;
  color: #ffffff;
}

.cta-main-container {
  max-width: 1000px;
  margin: auto;
}

.cta-main h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
}

.cta-main p {
  font-size: 18px;
  line-height: 1.8;
  color: #ffe5e5;
  margin-bottom: 45px;
}

/* BUTTONS */
.cta-main-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.cta-main-btn {
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s ease;
  display: inline-block;
}

/* INDIVIDUAL BUTTON STYLES */
.cta-main-btn.call {
  background: #ffffff;
  color: #c4161c;
}

.cta-main-btn.whatsapp {
  background: #25D366;
  color: #ffffff;
}

.cta-main-btn.location {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

/* HOVER */
.cta-main-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-main h2 {
    font-size: 30px;
  }

  .cta-main p {
    font-size: 16px;
  }
}


/* ===== OUR EXPERTISE ===== */

.our-expertise {
  background: #ffffff; /* PURE WHITE BG */
  padding: 90px 20px;
}

.expertise-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.our-expertise h2 {
  font-size: 38px;
  color: #c4161c;
  margin-bottom: 10px;
}

.expertise-sub {
  font-size: 17px;
  color: #666;
  margin-bottom: 50px;
}

/* GRID */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

/* CARD */
.expertise-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 12px;
  border-top: 4px solid #c4161c; /* RED SHADE */
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: left;
  transition: 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(196,22,28,0.18);
}

.expertise-card h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 12px;
}

.expertise-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

/* MOBILE */
@media (max-width: 768px) {
  .our-expertise h2 {
    font-size: 28px;
  }

  .expertise-card {
    text-align: center;
  }
}




/* ===== PAGE BANNER FIX (WALLPAPERS PAGE) ===== */



/* ===== PAGE MAIN HEADING (H1) – FIXED ===== */

.page-main-heading {
  width: 100%;
  background: #ffffff;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-main-heading-container {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

/* H1 */
.page-main-heading h1 {
  font-size: 36px;
  font-weight: 800;
  color: #c4161c;
  margin: 0 0 8px 0;   /* IMPORTANT: reset margins */
  line-height: 1.25;
}

/* Subtitle */
.page-main-heading p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .page-main-heading {
    padding: 30px 15px;
  }

  .page-main-heading h1 {
    font-size: 26px;
  }

  .page-main-heading p {
    font-size: 14px;
  }
}


/* ===== WALLPAPERS HERO SECTION ===== */

.wallpapers-hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  background: url("../images/wallpapers/banner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  box-sizing: border-box;
}

/* Dark overlay for text readability */
.wallpapers-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* CONTENT */
.wallpapers-hero-content {
  position: relative;
  max-width: 900px;
  text-align: center;
  color: #ffffff;
}

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.wallpapers-hero-content h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.hero-text {
  font-size: 17px;
  line-height: 1.7;
  color: #f1f1f1;
  margin-bottom: 35px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 14px 30px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn.call {
  background: #c4161c;
  color: #ffffff;
}

.hero-btn.visit {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* MOBILE */
@media (max-width: 768px) {
  .wallpapers-hero {
    min-height: 360px;
    padding: 60px 15px;
  }

  .wallpapers-hero-content h2 {
    font-size: 24px;
  }

  .hero-text {
    font-size: 15px;
  }
}


/* ===== ABOUT WALLPAPERS – SEO BOOSTER ===== */

.about-wallpapers {
  background: #ffffff;
  padding: 70px 20px;
}

.about-wallpapers-container {
  max-width: 1100px;
  margin: auto;
}

.about-wallpapers h2 {
  font-size: 34px;
  color: #c4161c; /* brand red */
  margin-bottom: 20px;
  text-align: center;
}

.about-wallpapers p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
  text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-wallpapers h2 {
    font-size: 26px;
  }

  .about-wallpapers p {
    font-size: 15px;
  }
}


/* ===== TYPES OF WALLPAPERS ===== */

.wallpaper-types {
  background: #ffffff;
  padding: 80px 20px;
}

.wallpaper-types-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.wallpaper-types h2 {
  font-size: 36px;
  color: #c4161c;
  margin-bottom: 10px;
}

.wallpaper-types-sub {
  font-size: 17px;
  color: #555;
  margin-bottom: 45px;
}

/* LIST STYLE */
.wallpaper-types-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.wallpaper-types-list li {
  position: relative;
  padding-left: 34px;
  font-size: 17px;
  color: #444;
  text-align: left;
  line-height: 1.6;
}

/* CHECK ICON */
.wallpaper-types-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #c4161c;
  font-weight: 700;
}

/* MOBILE */
@media (max-width: 768px) {
  .wallpaper-types h2 {
    font-size: 28px;
  }

  .wallpaper-types-sub {
    font-size: 15px;
  }

  .wallpaper-types-list {
    grid-template-columns: 1fr;
  }
}
/* ===== WALLPAPER TYPES – NEW DESIGN ===== */

.wallpaper-types-new {
  background: #ffffff;
  padding: 90px 20px;
}

.wallpaper-types-wrap {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.wallpaper-types-new h2 {
  font-size: 38px;
  color: #c4161c;
  margin-bottom: 10px;
}

.types-sub {
  font-size: 17px;
  color: #555;
  margin-bottom: 55px;
}

/* GRID */
.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

/* CARD */
.type-card {
  background: #ffffff;
  padding: 28px 22px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 600;
  color: #333;
  border: 1px solid #f0f0f0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
  transition: 0.3s ease;
}

/* RED ACCENT BAR */
.type-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #c4161c;
  border-radius: 14px 14px 0 0;
}

/* HOVER EFFECT */
.type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(196,22,28,0.18);
}

/* MOBILE */
@media (max-width: 768px) {
  .wallpaper-types-new h2 {
    font-size: 28px;
  }

  .types-sub {
    font-size: 15px;
  }
}


/* ===== WALLPAPER USAGE SECTION ===== */

.wallpaper-usage {
  background: #ffffff;
  padding: 90px 20px;
}

.wallpaper-usage-wrap {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.wallpaper-usage h2 {
  font-size: 38px;
  color: #c4161c;
  margin-bottom: 10px;
}

.usage-sub {
  font-size: 17px;
  color: #555;
  margin-bottom: 55px;
}

/* GRID */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

/* CARD */
.usage-card {
  background: #ffffff;
  padding: 30px 22px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 600;
  color: #333;
  border: 1px solid #f0f0f0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
  transition: 0.3s ease;
}

/* RED ACCENT */
.usage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #c4161c;
  border-radius: 14px 14px 0 0;
}

/* HOVER */
.usage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(196,22,28,0.18);
}

/* MOBILE */
@media (max-width: 768px) {
  .wallpaper-usage h2 {
    font-size: 28px;
  }

  .usage-sub {
    font-size: 15px;
  }
}


/* ===== WHY CHOOSE OUR WALLPAPERS ===== */

.why-wallpapers {
  background: #ffffff;
  padding: 90px 20px;
}

.why-wallpapers-wrap {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.why-wallpapers h2 {
  font-size: 38px;
  color: #c4161c;
  margin-bottom: 10px;
}

.why-sub {
  font-size: 17px;
  color: #555;
  margin-bottom: 55px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

/* CARD */
.why-card {
  background: #ffffff;
  padding: 30px 22px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 600;
  color: #333;
  border: 1px solid #f0f0f0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
  transition: 0.3s ease;
}

/* RED ACCENT */
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #c4161c;
  border-radius: 14px 14px 0 0;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(196,22,28,0.18);
}

/* MOBILE */
@media (max-width: 768px) {
  .why-wallpapers h2 {
    font-size: 28px;
  }

  .why-sub {
    font-size: 15px;
  }
}


/* ===== INSTALLATION & CONSULTATION SUPPORT ===== */

.wallpaper-support {
  background: #ffffff;
  padding: 90px 20px;
}

.wallpaper-support-wrap {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.wallpaper-support h2 {
  font-size: 38px;
  color: #c4161c;
  margin-bottom: 10px;
}

.support-sub {
  font-size: 17px;
  color: #555;
  margin-bottom: 55px;
}

/* GRID */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

/* CARD */
.support-card {
  background: #ffffff;
  padding: 30px 22px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 600;
  color: #333;
  border: 1px solid #f0f0f0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
  transition: 0.3s ease;
}

/* RED ACCENT */
.support-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #c4161c;
  border-radius: 14px 14px 0 0;
}

/* HOVER */
.support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(196,22,28,0.18);
}

/* MOBILE */
@media (max-width: 768px) {
  .wallpaper-support h2 {
    font-size: 28px;
  }

  .support-sub {
    font-size: 15px;
  }
}


/* ===== SHOWROOM VISIT SECTION ===== */

.wallpaper-showroom {
  background: #ffffff;
  padding: 90px 20px;
}

.wallpaper-showroom-wrap {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.wallpaper-showroom h2 {
  font-size: 38px;
  color: #c4161c;
  margin-bottom: 10px;
}

.showroom-sub {
  font-size: 17px;
  color: #555;
  margin-bottom: 50px;
}

/* GRID */
.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* DETAILS CARD */
.showroom-details {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 14px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: left;
}

.showroom-details p {
  font-size: 16.5px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}

.showroom-details a {
  color: #c4161c;
  font-weight: 600;
  text-decoration: none;
}

/* BUTTONS */
.showroom-actions {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.showroom-btn {
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.showroom-btn.call {
  background: #c4161c;
  color: #ffffff;
}

.showroom-btn.map {
  background: transparent;
  border: 2px solid #c4161c;
  color: #c4161c;
}

.showroom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* MAP */
.showroom-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 900px) {
  .showroom-grid {
    grid-template-columns: 1fr;
  }

  .wallpaper-showroom h2 {
    font-size: 28px;
  }

  .showroom-details {
    text-align: center;
  }
}


/* ===== PRODUCTS – PREMIUM LIGHT DESIGN ===== */

.products-premium-light {
  background: #ffffff;
  padding: 90px 20px;
}

.products-premium-wrap {
  max-width: 1200px;
  margin: auto;
}

.premium-header {
  text-align: center;
  margin-bottom: 50px;
}

.premium-header h2 {
  font-size: 36px;
  color: #c4161c;
  margin-bottom: 8px;
  font-weight: 700;
}

.premium-header p {
  font-size: 16px;
  color: #8b1a1a;
}

/* GRID – SMALLER CARDS */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

/* CARD */
.premium-card {
  background: #fff;
  border: 1px solid rgba(196,22,28,0.18);
  border-radius: 14px;
  padding: 26px 22px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* RED TOP LINE */
.premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #c4161c, #e53935);
  border-radius: 14px 14px 0 0;
}

/* TEXT */
.premium-card h3 {
  font-size: 20px;
  color: #c4161c;
  margin-bottom: 6px;
}

.premium-card span {
  font-size: 14px;
  color: #8b1a1a;
  font-weight: 600;
}

/* HOVER – CLASSY NOT HEAVY */
.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(196,22,28,0.18);
  border-color: #c4161c;
}

/* MOBILE */
@media (max-width: 768px) {
  .premium-header h2 {
    font-size: 28px;
  }

  .premium-grid {
    grid-template-columns: 1fr;
  }
}

.contact-hero{
  background:#fff;
  padding:80px 20px;
  text-align:center;
}

.contact-hero h1{
  color:#b11217;
  font-size:36px;
  margin-bottom:15px;
}

.hero-intro{
  max-width:800px;
  margin:0 auto 30px;
  color:#555;
  font-size:17px;
  line-height:1.7;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:15px;
}

.hero-btn{
  padding:12px 22px;
  border-radius:4px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

.hero-btn.call{
  border:2px solid #b11217;
  color:#fff;
}

.hero-btn.whatsapp{
  background:#25D366;
  color:#fff;
}

.hero-btn.map{
  border:2px solid #b11217;
  color:#fff;
}

.hero-btn:hover{
  transform:translateY(-2px);

}

.contact-details-section{
  background:#ffffff;
  padding:80px 20px;
}

.contact-details-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.contact-details-container h2{
  color:#b11217;
  font-size:32px;
  margin-bottom:10px;
}

.contact-sub{
  color:#555;
  margin-bottom:40px;
  font-size:16px;
}

.contact-details-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.contact-card{
  background:#fff;
  border:1px solid #eee;
  padding:25px 20px;
  border-radius:6px;
  transition:0.3s;
}

.contact-card:hover{
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.contact-card h3{
  color:#b11217;
  margin-bottom:10px;
  font-size:18px;
}

.contact-card p{
  color:#333;
  font-size:15px;
  line-height:1.6;
}

.contact-card a{
  color:#b11217;
  font-weight:600;
  text-decoration:none;
}

/* Responsive */
@media(max-width:992px){
  .contact-details-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:576px){
  .contact-details-grid{
    grid-template-columns:1fr;
  }
}

.map-section{
  background:#ffffff;
  padding:80px 20px;
}

.map-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.map-container h2{
  color:#b11217;
  font-size:32px;
  margin-bottom:10px;
}

.map-sub{
  color:#555;
  max-width:750px;
  margin:0 auto 30px;
  font-size:16px;
  line-height:1.6;
}

.map-embed{
  width:100%;
  height:420px;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

.map-embed iframe{
  width:100%;
  height:100%;
  border:0;
}

.map-cta{
  margin-top:25px;
}

.map-btn{
  display:inline-block;
  padding:14px 28px;
  background:#b11217;
  color:#ffffff;
  font-weight:600;
  text-decoration:none;
  border-radius:4px;
  transition:0.3s;
}

.map-btn:hover{
  opacity:0.9;
}

/* Mobile */
@media(max-width:576px){
  .map-embed{
    height:320px;
  }
}


.contact-form-section{
  background:#f9f9f9;
  padding:80px 20px;
}

.contact-form-container{
  max-width:700px;
  margin:auto;
  text-align:center;
}

.contact-form-container h2{
  color:#b11217;
  font-size:32px;
  margin-bottom:10px;
}

.form-sub{
  color:#555;
  margin-bottom:35px;
  font-size:16px;
}

.contact-form{
  background:#ffffff;
  padding:35px 30px;
  border-radius:8px;
  box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.form-group{
  margin-bottom:18px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px 15px;
  border:1px solid #ddd;
  border-radius:4px;
  font-size:15px;
  outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:#b11217;
}

.form-btn{
  width:100%;
  padding:14px;
  background:#b11217;
  color:#ffffff;
  border:none;
  font-size:16px;
  font-weight:600;
  border-radius:4px;
  cursor:pointer;
  transition:0.3s;
}

.form-btn:hover{
  opacity:0.9;
}

.form-note{
  margin-top:12px;
  color:#666;
  font-size:14px;
}

/* Mobile */
@media(max-width:576px){
  .contact-form-container h2{
    font-size:26px;
  }
}


.why-visit-section{
  background:#ffffff;
  padding:80px 20px;
}

.why-visit-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.why-visit-container h2{
  color:#b11217;
  font-size:32px;
  margin-bottom:10px;
}

.why-visit-sub{
  color:#555;
  font-size:16px;
  margin-bottom:40px;
}

.why-visit-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

.why-visit-card{
  background:#fff;
  border:1px solid #eee;
  padding:20px 15px;
  font-size:15px;
  font-weight:600;
  color:#333;
  border-radius:6px;
  transition:0.3s;
}

.why-visit-card:hover{
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transform:translateY(-4px);
}

/* Tablet */
@media(max-width:992px){
  .why-visit-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile */
@media(max-width:576px){
  .why-visit-grid{
    grid-template-columns:1fr;
  }
}

/* QUICK CTA – STICKY FEEL */
.quick-cta{
  position:sticky;
  bottom:0;
  width:100%;
  background:#b11217;
  z-index:999;
  padding:12px 15px;
}

.quick-cta-wrap{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
}

.quick-cta-text{
  color:#ffffff;
  font-weight:600;
  font-size:16px;
}

.quick-cta-buttons{
  display:flex;
  gap:10px;
}

.quick-cta-btn{
  padding:10px 16px;
  border-radius:4px;
  font-weight:600;
  text-decoration:none;
  color:#ffffff;
  font-size:14px;
  transition:0.3s;
}

.quick-cta-btn.call{
  background:#000000;
}

.quick-cta-btn.whatsapp{
  background:#25D366;
}

.quick-cta-btn:hover{
  opacity:0.9;
}

/* MOBILE – EXTRA EFFECTIVE */
@media(max-width:576px){
  .quick-cta-wrap{
    flex-direction:column;
    text-align:center;
  }

  .quick-cta-buttons{
    width:100%;
  }

  .quick-cta-btn{
    flex:1;
    text-align:center;
  }
}


.faq-section{
  background:#ffffff;
  padding:80px 20px;
}

.faq-container{
  max-width:900px;
  margin:auto;
  text-align:center;
}

.faq-container h2{
  color:#b11217;
  font-size:32px;
  margin-bottom:10px;
}

.faq-sub{
  color:#555;
  margin-bottom:40px;
  font-size:16px;
}

.faq-list{
  text-align:left;
}

.faq-item{
  border-bottom:1px solid #eee;
}

.faq-question{
  width:100%;
  padding:16px;
  font-size:16px;
  font-weight:600;
  background:none;
  border:none;
  text-align:left;
  cursor:pointer;
  color:#333;
  position:relative;
}

.faq-question::after{
  content:"+";
  position:absolute;
  right:15px;
  font-size:20px;
  color:#b11217;
}

.faq-item.active .faq-question::after{
  content:"–";
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:0.3s ease;
}

.faq-answer p{
  padding:0 16px 16px;
  color:#555;
  line-height:1.6;
}

.faq-item.active .faq-answer{
  max-height:200px;
}

/* Mobile */
@media(max-width:576px){
  .faq-container h2{
    font-size:26px;
  }
}


.footer-bottom {
  background: #000;
  color: #fff;
  padding: 12px 10px;
  text-align: center;
  font-size: 14px;
}

/* Separator */
.footer-separator {
  margin: 0 6px;
  color: #aaa;
}

/* Talk2Market Brand Styling */
.talk2market {
  color: #f36f21; /* Talk2Market Orange */
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.4px;
  position: relative;
}

/* Brand underline */
.talk2market::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #f36f21;
}

/* Hover effect */
.talk2market:hover {
  color: #fff;
}
