/*=========================================
        Mahadev Taxi Tours Gallery CSS
        Part 1
==========================================*/

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/*==========================
        RESET
==========================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f8f9fa;
  color: #000;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

section {
  position: relative;
}

/*==========================
        HERO SECTION
==========================*/

.gallery-hero {
  position: relative;

  height: 300px;

  background: url("../package-img/background-image.webp") center center/cover
    no-repeat;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

  background-attachment: fixed;
}

/*==========================
      SCROLL INDICATOR
==========================*/

.scroll-down {
  position: absolute;

  bottom: 40px;

  left: 50%;

  transform: translateX(-50%);

  z-index: 10;
}

.scroll-down span {
  width: 35px;

  height: 60px;

  border: 2px solid #fff;

  border-radius: 30px;

  display: block;

  position: relative;
}

.scroll-down span::before {
  content: "";

  width: 8px;

  height: 8px;

  background: #fff;

  position: absolute;

  left: 50%;

  top: 10px;

  transform: translateX(-50%);

  border-radius: 50%;

  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;

    top: 10px;
  }

  100% {
    opacity: 0;

    top: 35px;
  }
}

/*==========================
       BREADCRUMB
==========================*/

.breadcrumb-section {
  background: #fff;

  padding: 18px 0;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.breadcrumb-section nav {
  font-size: 16px;

  font-weight: 500;
}

.breadcrumb-section a {
  color: #f77d0a;
}

.breadcrumb-section span {
  margin: 0 10px;

  color: #888;
}

/*==========================
      ABOUT SECTION
==========================*/

.gallery-about {
  padding: 100px 0;
}

.gallery-about img {
  border-radius: 20px;

  transition: 0.5s;
}

.gallery-about img:hover {
  transform: scale(1.04);
}

.gallery-about h6 {
  color: #f77d0a;

  text-transform: uppercase;

  letter-spacing: 3px;

  font-weight: 700;
}

.gallery-about h2 {
  font-size: 35px;

  margin: 20px 0;

  font-weight: 700;
}

.gallery-about p {
  color: #000;

  line-height: 30px;
  margin-bottom: 20px;
}

.gallery-about .btn {
  background: #f77d0a;

  color: #fff;

  padding: 14px 35px;

  border-radius: 40px;

  transition: 0.4s;
}

.gallery-about .btn:hover {
  background: #111;

  color: #fff;
}

/*==========================
    CATEGORY FILTER
==========================*/

.gallery-category {
  background: #fff;

  padding: 80px 0;
}

.gallery-category h6 {
  color: #f77d0a;

  text-transform: uppercase;

  letter-spacing: 3px;
}

.gallery-category h2 {
  font-size: 42px;

  margin-top: 10px;

  font-weight: 700;
}

.filter-buttons {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 15px;

  margin-top: 45px;
}

.filter-buttons button {
  border: none;

  background: #fff;

  color: #000;

  padding: 14px 30px;

  border-radius: 50px;

  cursor: pointer;

  font-weight: 600;

  transition: 0.4s;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.filter-buttons button:hover {
  background: #f77d0a;

  color: #fff;

  transform: translateY(-5px);
}

.filter-buttons button.active {
  background: #f77d0a;

  color: #fff;
}

/*==========================
      GALLERY GRID
==========================*/

.gallery-section {
  padding: 100px 0;
}

.gallery-grid {
  row-gap: 30px;
}

.gallery-card {
  position: relative;

  overflow: hidden;

  border-radius: 20px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

  transition: 0.5s;
}

.gallery-card img {
  height: 300px;

  object-fit: cover;

  transition: 0.6s;
}

.gallery-card:hover img {
  transform: scale(1.12);
}

.gallery-card:hover {
  transform: translateY(-10px);
}

/*==========================
    GALLERY OVERLAY
==========================*/

.gallery-overlay {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  align-items: center;

  color: #fff;

  opacity: 0;

  transition: 0.5s;

  padding: 30px;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 28px;

  font-weight: 700;

  margin-bottom: 10px;

  color: white;
}

.gallery-overlay p {
  margin-bottom: 20px;

  color: #ddd;
}

.gallery-overlay a {
  width: 55px;

  height: 55px;

  background: #f77d0a;

  color: #fff;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 22px;

  transition: 0.4s;
}

.gallery-overlay a:hover {
  transform: rotate(360deg);

  background: #fff;

  color: #f77d0a;
}
/*=========================================
        Mahadev Taxi Tours Gallery CSS
                Part 2
==========================================*/

/*==========================
        FLEET SECTION
==========================*/

.fleet-section {
  padding: 100px 0;
  background: #ffffff;
}

.fleet-section h6 {
  color: #f77d0a;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
}

.fleet-section h2 {
  font-size: 45px;
  font-weight: 700;
  margin: 15px 0;
}

.fleet-section p {
  color: #000;
}

.fleet-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  overflow: hidden;
  transition: 0.5s;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
  position: relative;
}

.fleet-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  top: 0;
  background: #0d0436;
  transition: 0.5s;
  z-index: 0;
}

.fleet-card:hover::before {
  height: 100%;
}

.fleet-card * {
  position: relative;
  z-index: 2;
}

.fleet-card img {
  width: 220px;
  margin: auto;
  transition: 0.6s;
}

.fleet-card:hover img {
  transform: scale(1.08);
}

.fleet-card h4 {
  margin-top: 25px;
  font-weight: 700;
  transition: 0.4s;
}

.fleet-card p {
  color: #000;
  transition: 0.4s;
}

.fleet-card:hover h4,
.fleet-card:hover p {
  color: #fff;
}

/*==========================
      TOUR PACKAGE
==========================*/

.package-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.package-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.5s;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.package-card img {
  height: 250px;
  object-fit: cover;
  transition: 0.5s;
}

.package-card:hover img {
  transform: scale(1.1);
}

.package-content {
  padding: 25px;
}

.package-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.package-content p {
  color: #666;
  line-height: 28px;
}

.package-price {
  color: #f77d0a;
  font-size: 26px;
  font-weight: 700;
  margin: 15px 0;
}

.package-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #f77d0a;
  color: #fff;
  border-radius: 40px;
  transition: 0.4s;
}

.package-btn:hover {
  background: #111;
  color: #fff;
}

/*==========================
    CUSTOMER MEMORIES
==========================*/

.memories-section {
  padding: 100px 0;
  background: #fff;
}

.memory-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 30px;
}

.memory-card img {
  transition: 0.6s;
}

.memory-card:hover img {
  transform: scale(1.15);
}

.memory-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  opacity: 0;
  transition: 0.5s;
}

.memory-card:hover .memory-overlay {
  opacity: 1;
}

.memory-overlay h4 {
  font-size: 28px;
  margin-bottom: 10px;
}

.memory-overlay p {
  font-size: 15px;
  color: #eee;
}

/*==========================
      COUNTER SECTION
==========================*/

.counter-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #111, #222);
  color: #fff;
}

.counter-section .col-lg-3 {
  padding: 30px;
}

.counter {
  font-size: 60px;
  font-weight: 800;
  color: #f77d0a;
}

.counter-section p {
  margin-top: 15px;
  font-size: 18px;
  color: #ddd;
}

/*==========================
      WHY CHOOSE US
==========================*/

.why-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.why-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  transition: 0.5s;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.why-card i {
  font-size: 55px;
  color: #f77d0a;
  margin-bottom: 25px;
}

.why-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.why-card p {
  color: #666;
}

.why-card:hover {
  transform: translateY(-12px);
  background: #f77d0a;
}

.why-card:hover i,
.why-card:hover h4,
.why-card:hover p {
  color: #fff;
}

/*==========================
       CTA SECTION
==========================*/

.cta-section {
    padding: 20px 0;
    background:
        url("../package-img/other-package.webp") center/cover no-repeat;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
  font-size: 50px;
  font-weight: 800;
}

.cta-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 20px auto 35px;
  color: #ddd;
}

.cta-section .btn {
  padding: 15px 45px;
  background: #f77d0a;
  border: none;
  border-radius: 40px;
  color: #fff;
  font-weight: 600;
  transition: 0.4s;
}

.cta-section .btn:hover {
  background: #fff;
  color: #111;
  transform: translateY(-5px);
}

/*==========================
         FOOTER
==========================*/

.gallery-footer {
  background: #111;
  color: #ccc;
  padding: 60px 0;
  text-align: center;
}

.gallery-footer h3 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}

.gallery-footer p {
  margin-bottom: 10px;
  color: #aaa;
}

/*==========================
        LIGHTBOX
==========================*/

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

#lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

#lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 45px;
  cursor: pointer;
  transition: 0.3s;
}

#lightbox .close:hover {
  color: #f77d0a;
  transform: rotate(90deg);
}
/*=========================================
        Mahadev Taxi Tours Gallery CSS
                Part 3 (Final)
==========================================*/

/*==========================
        SCROLL TO TOP
==========================*/

.scroll-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 55px;
  height: 55px;
  background: #f77d0a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(247, 125, 10, 0.35);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 35px;
}

.scroll-top:hover {
  background: #111;
  transform: translateY(-6px);
}

/*==========================
      FLOATING SHAPES
==========================*/

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(247, 125, 10, 0.15);
  animation: float 8s ease-in-out infinite;
  z-index: -1;
}

.shape1 {
  width: 150px;
  height: 150px;
  top: 80px;
  left: 5%;
}

.shape2 {
  width: 100px;
  height: 100px;
  right: 8%;
  top: 350px;
  animation-delay: 2s;
}

.shape3 {
  width: 180px;
  height: 180px;
  bottom: 50px;
  left: 40%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }
}

/*==========================
       IMAGE EFFECTS
==========================*/

.gallery-card {
  cursor: pointer;
}

.gallery-card img {
  transition: 0.7s;
}

.gallery-card:hover img {
  transform: scale(1.15) rotate(2deg);
}

.gallery-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

/*==========================
     BUTTON EFFECTS
==========================*/

.btn {
  transition: 0.4s ease;
}

.btn:hover {
  transform: translateY(-5px);
}

.filter-buttons button {
  position: relative;
  overflow: hidden;
}

.filter-buttons button::before {
  content: "";

  position: absolute;

  width: 0;

  height: 100%;

  left: 0;

  top: 0;

  background: #111;

  transition: 0.4s;

  z-index: -1;
}

.filter-buttons button:hover::before {
  width: 100%;
}

.filter-buttons button:hover {
  color: #fff;
}

/*==========================
       CARD SHADOW
==========================*/

.gallery-card,
.fleet-card,
.package-card,
.why-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.gallery-card:hover,
.fleet-card:hover,
.package-card:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

/*==========================
      CUSTOM SCROLLBAR
==========================*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #eee;
}

::-webkit-scrollbar-thumb {
  background: #f77d0a;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #111;
}

/*==========================
      SELECTION COLOR
==========================*/

::selection {
  background: #f77d0a;
  color: #fff;
}

/*==========================
      AOS IMPROVEMENT
==========================*/

[data-aos] {
  transition-duration: 1000ms !important;
}

/*==========================
      HOVER ICON
==========================*/

.gallery-overlay a {
  transition: 0.5s;
}

.gallery-overlay a:hover {
  transform: scale(1.2) rotate(360deg);
}

/*==========================
      IMAGE BORDER
==========================*/

.gallery-card img {
  border-radius: 20px;
}

/*==========================
      RESPONSIVE
==========================*/

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 55px;
  }

  .gallery-about h2,
  .fleet-section h2,
  .cta-section h2 {
    font-size: 40px;
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 46px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .gallery-about {
    text-align: justify;
  }

  .gallery-about img {
    margin-bottom: 40px;
  }

  .counter {
    font-size: 48px;
  }

  .cta-section h2 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .gallery-hero {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 28px;
  }

  .gallery-about h2,
  .gallery-category h2,
  .fleet-section h2 {
    font-size: 32px;
  }

  .filter-buttons {
    gap: 10px;
  }

  .filter-buttons button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .gallery-card img {
    height: 240px;
  }

  .cta-section {
    padding: 70px 0;
  }

  .cta-section h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content h5 {
    font-size: 14px;
  }

  .hero-content .btn {
    padding: 12px 28px;
  }

  .gallery-about {
    padding: 60px 0;
  }

  .gallery-category {
    padding: 60px 0;
  }

  .gallery-section {
    padding: 60px 0;
  }

  .fleet-section {
    padding: 60px 0;
  }

  .counter-section {
    padding: 60px 0;
  }

  .gallery-card img {
    height: 410px;
  }

  .gallery-overlay h4 {
    font-size: 22px;
  }

  .cta-section h2 {
    font-size: 26px;
  }

  .scroll-top {
    width: 48px;
    height: 48px;
  }
}

/*==========================
        END CSS
==========================*/


/* =========================================================
   MAHADEV TAXI TOURS - OTHER SERVICES
   Complete responsive stylesheet
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #ff8a00;
  --orange-dark: #ef7000;
  --gold: #ffb000;
  --black: #070707;
  --dark: #111318;
  --text: #252a31;
  --muted: #70757d;
  --white: #fff;
  --light: #f6f7f8;
  --border: #e7e7e7;
  --shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Rubik", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
body::selection {
  background: var(--orange);
  color: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
/* CONTENT */
.services-section {
  width: min(1380px, 92%);
  margin: auto;
  padding: 20px 0 82px;
}
.section-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 35px;
}
.section-intro h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-intro h2 strong {
  color: var(--orange);
}
.section-intro p {
  color: #1b1d20;
  line-height: 1.7;
  font-size: 15px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARDS */
.service-card {
  background: var(--black);
  border-radius: 13px;
  overflow: hidden;
  min-height: 335px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 7px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(0);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.service-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}
.service-image {
  height: 250px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}
.service-card:hover .service-image {
  background-size: 108%;
  transition: background-size 0.6s ease;
}
.image-label {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  padding: 7px 10px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}
.featured-text {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 17px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  text-shadow: 0 2px 7px #000;
}
.service-title {
  min-height: 78px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  text-align: center;
  background: #070707;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
}
.service-title i {
  color: var(--orange);
  font-size: 13px;
  transition: transform 0.25s;
}
.service-card:hover .service-title i {
  transform: translateX(4px);
}
.featured {
  background: black;
}
.featured .service-title {
  background: black;
  color: #fff;
}
.featured .service-title i {
  color: #080808;
}

/* Background image areas: these are intentionally lightweight gradients so the page works without image files. */
.image-mumbai {
  background-image: linear-gradient(135deg, #8fc7e9, #e9f0f3 45%, #657f8c);
}
.image-lonavala {
  background-image: linear-gradient(145deg, #c8e29b, #599260 50%, #244c3a);
}
.image-bhimashankar {
  background-image: linear-gradient(145deg, #ffd34f, #ff8a00 50%, #934400);
}
.image-mahabaleshwar {
  background-image: linear-gradient(145deg, #c4e39b, #5b9b62 50%, #204b35);
}
.image-kolhapur {
  background-image: linear-gradient(145deg, #dc9460, #87462d 50%, #39201a);
}
.image-solapur {
  background-image: linear-gradient(145deg, #eed28e, #bd7b32 50%, #624125);
}
.image-nashik {
  background-image: linear-gradient(145deg, #c0ded3, #588c79 50%, #284b48);
}
.image-aurangabad {
  background-image: linear-gradient(145deg, #e0b47b, #8f5938 50%, #3c2927);
}
.image-shirdi {
  background-image: linear-gradient(145deg, #f1e4bd, #bb914b 50%, #5a3d2a);
}
.image-trimbakeshwar {
  background-image: linear-gradient(145deg, #a8d2bc, #4f7c6d 50%, #253f3a);
}
.image-grishneshwar {
  background-image: linear-gradient(145deg, #dcb17a, #985d3d 50%, #452d28);
}
.image-goa {
  background-image: linear-gradient(145deg, #8bd9ed, #279bc2 50%, #0b536a);
}
.image-ahilyanagar {
  background-image: linear-gradient(145deg, #ddc493, #a97943 50%, #4a3627);
}
.image-airport {
  background-image: linear-gradient(145deg, #acd9f6, #527e9e 50%, #243b50);
}
.image-corporate {
  background-image: linear-gradient(145deg, #c8d0da, #5d6f82 50%, #1e2731);
}
.image-wedding {
  background-image: linear-gradient(145deg, #f8cbd0, #c96270 50%, #682f45);
}

/* CTA */
.cta-section {
  width: min(1250px, 92%);
  margin: 0 auto 78px;
  border-radius: 17px;
  overflow: hidden;
}
.cta-content {
  padding: 35px 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-content > div > span {
  color: #171717;
  margin-bottom: 7px;
}
.cta-content h2 {
  font-family: "Oswald", sans-serif;
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.cta-content p {
  font-size: 15px;
  font-weight: 500;
}
.cta-btn {
  background: #080808;
  color: #fff;
  padding: 15px 21px;
  border-radius: 7px;
  white-space: nowrap;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: 0.25s;
}
.cta-btn i {
  margin: 0 5px;
}
.cta-btn:hover {
  background: #fff;
  color: #111;
  transform: translateY(-2px);
}

/* FOOTER */
.footer-section {
  /* background: #0a0a0a; */
  color: #eee;
  padding: 70px 5% 25px;
}
.footer-grid {
  width: min(1450px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.15fr 1.2fr;
  gap: 45px;
}
.footer-column h3 {
  color: #fff;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 21px;
  letter-spacing: 0.5px;
  margin-bottom: 23px;
}
.footer-column h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 9px;
  background: var(--orange);
  border-radius: 5px;
}
.footer-column h4 {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 13px;
  margin: 20px 0 12px;
  letter-spacing: 1px;
}
.footer-column p {
  color: #b9b9b9;
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 12px;
}
.footer-column p i {
  width: 19px;
  color: var(--orange);
  margin-right: 5px;
}
.footer-column p a,
.footer-column > a {
  color: #bdbdbd;
  transition: 0.2s;
}
.footer-column > a {
  display: block;
  font-size: 13px;
  margin-bottom: 13px;
}
.footer-column > a i {
  color: var(--orange);
  margin-right: 8px;
}
.footer-column a:hover {
  color: var(--orange);
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #3c3c3c;
  color: #ddd;
  border-radius: 4px;
  transition: 0.25s;
}
.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #111;
  transform: translateY(-3px);
}
.footer-map {
  width: 100%;
  /* height: 220px; */
  border: 0;
  border-radius: 7px;
  filter: grayscale(20%);
}
.footer-divider {
  height: 1px;
  background: #292929;
  margin: 38px auto 20px;
  width: min(1450px, 100%);
}
.footer-bottom {
  text-align: center;
  color: #999;
  font-size: 12px;
  line-height: 1.8;
}
.footer-bottom strong,
.footer-bottom a {
  color: #fff;
}
.footer-bottom a:hover {
  color: var(--orange);
}
.footer-bottom small {
  color: #777;
}

/* FLOATING BUTTONS */
.floating-buttons {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.floating-buttons a {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-size: 21px;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.floating-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
}
.call-btn {
  background: #1688ff;
}
.whatsapp-btn {
  background: #20c866;
}

/* TABLET */
@media (max-width: 1180px) {
  .navbar {
    width: 94%;
    gap: 20px;
  }
  .nav-links {
    gap: 18px;
  }
  .nav-links a {
    font-size: 14px;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .topbar {
    min-height: 48px;
    padding: 8px 15px;
  }
  .topbar-contact {
    font-size: 11px;
    gap: 8px;
  }
  .topbar-contact a:last-child,
  .topbar-divider {
    display: none;
  }
  .social-icons {
    gap: 10px;
  }
  .social-icons a {
    font-size: 12px;
  }

  .navbar {
    width: 100%;
    min-height: 78px;
    padding: 0 16px;
  }
  .brand img {
    width: 165px;
    max-height: 62px;
  }
  .menu-btn {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    display: none;
    margin: 0;
    padding: 8px 18px 15px;
    flex-direction: column;
    gap: 0;
    background: #fff;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 13px 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
  }
  .nav-links a::after {
    bottom: 4px;
    left: 35%;
    right: 35%;
  }

  .page-heading {
    padding: 43px 15px 34px;
  }
  .page-heading h1 {
    font-size: 35px;
  }
  .page-heading p {
    font-size: 12px;
  }
  .section-intro {
    margin-bottom: 27px;
  }
  .section-intro h2 {
    font-size: 32px;
  }
  .section-intro p {
    font-size: 14px;
  }

  .services-section {
    width: 90%;
    padding: 10px 0 50px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 21px;
  }
  .service-card {
    min-height: 320px;
  }
  .service-image {
    height: 245px;
  }
  .service-title {
    min-height: 75px;
    font-size: 20px;
  }

  .cta-section {
    width: 90%;
    margin-bottom: 50px;
  }
  .cta-content {
    padding: 27px 20px;
    flex-direction: column;
    text-align: center;
  }
  .cta-content h2 {
    font-size: 28px;
  }
  .cta-btn {
    width: 100%;
    text-align: center;
  }

  .footer-section {
    padding: 50px 20px 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-column h3 {
    margin-bottom: 17px;
  }
  .footer-map {
    height: 230px;
  }
  .footer-divider {
    margin-top: 12px;
  }
  .footer-bottom small {
    display: block;
    margin-top: 5px;
  }

  .floating-buttons {
    right: 15px;
    bottom: 16px;
    gap: 9px;
  }
  .floating-buttons a {
    width: 47px;
    height: 47px;
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
