@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Oswald:wght@400;500;700&display=swap");

:root {
  --primary-color: #d32f2f;
  --primary-dark: #b71c1c;
  --secondary-color: #333333;
  --text-color: #333333;
  --text-light: #666666;
  --bg-light: #f4f6f8;
  --bg-white: #ffffff;
  --white: #ffffff;
  --dark: #1a1a1a;
  --glass-bg: rgba(255, 255, 255, 0.95);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
}

/* Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-color);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 992px) {

  html,
  body {
    overflow-x: hidden;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  color: var(--secondary-color);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utilities */
.section-padding {
  padding: 60px 0;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(211, 47, 47, 0.4);
}

/* Intro */
#intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#intro.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.logo {
  width: 140px;
  opacity: 0;
  transform: scale(0.8);
  animation: logoAnim 2s ease forwards;
}

@keyframes logoAnim {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* =========================
   HEADER
========================= */

.site-header {
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease;
}

/* Main Navbar */
.main-navbar {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  z-index: 1001;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 0;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary-color);
  position: relative;
  padding: 5px 0;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--primary-dark),
      var(--primary-color),
      transparent);
  background-size: 300% 100%;
  transition: width 0.4s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary-color);
}

/* Mobile Menu */
.call-now {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.call-now i {
  font-size: 14px;
}

.call-now.active {
  visibility: hidden;
  opacity: 0;
}

.call-now::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.call-now:hover::after {
  left: 125%;
}

/* Mobile Menu */
.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.mobile-menu-logo,
.mobile-social {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    justify-content: space-between;
  }

  .call-now {
    display: inline-flex;
    position: relative;
    overflow: hidden;
  }

  .hamburger {
    display: block;
    z-index: 1001;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    left: -100%;
    top: 0;
    gap: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: 0.3s;
  }

  .nav-links.active {
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
  }

  .nav-links a {
    width: fit-content;
    margin: 0 auto;
    padding: 15px;
    display: block;
    font-size: 15px;
  }

  .mobile-menu-logo {
    position: relative;
    width: 100px;
    margin: 30px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    isolation: isolate;
  }

  .mobile-menu-logo img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    animation: logoFloat 4s ease-in-out infinite;
  }

  .mobile-menu-logo::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(211, 47, 47, 0.25),
        transparent 65%);
    z-index: 0;
    animation: glowPulse 3.5s ease-in-out infinite;
  }

  .mobile-menu-logo::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(211, 47, 47, 0.15),
        transparent 70%);
    z-index: 0;
    animation: glowPulse 5s ease-in-out infinite reverse;
  }

  .mobile-menu-logo a::after,
  .mobile-menu-logo a::before {
    display: none;
    content: none;
  }

  .mobile-social {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding: 15px 0;
    background: var(--bg-light);
  }

  .mobile-social a {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg,
        var(--primary-color),
        var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
    margin: 0 10px;
  }

  .mobile-social a::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    opacity: 0;
    transition: var(--transition);
  }

  .mobile-social a::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    animation: socialPulse 3s infinite;
  }

  .mobile-social a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }

  .mobile-social a:hover::before {
    opacity: 1;
  }

  .mobile-social a i {
    font-size: 15px;
  }

  @keyframes socialPulse {
    0% {
      transform: scale(0.9);
      opacity: 0.6;
    }

    70% {
      transform: scale(1.5);
      opacity: 0;
    }

    100% {
      opacity: 0;
    }
  }
}

/* =========================
   HOME PAGE
========================= */

/* Hero Section */
.hero-slider {
  width: 100%;
  overflow: hidden;
  background: var(--dark);
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

/* Premium zoom effect */
.swiper-slide-active img {
  transform: scale(1.05);
}

/* Pagination dots styled with your palette */
.swiper-pagination {
  bottom: 50px !important;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--white);
  opacity: 0.5;
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .swiper-pagination {
    bottom: 0px !important;
  }
}

/* Why Choose Section */
.features-section {
  background-color: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(211, 47, 47, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.feature-card:hover .icon-box {
  background-color: var(--primary-color);
  color: var(--white);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
  background:
    linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)),
    url("../img/hero-bg.png") center/cover;
  background-attachment: fixed;
  color: var(--white);
  padding: 60px 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Categories Section */
.categories-section {
  background: var(--bg-white);
  padding: 60px 0;
}

.categories-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* Card */
.categories-item {
  flex: 1 1 240px;
  background: var(--bg-light);
}

/* Clickable Card */
.category-card {
  display: block;
  padding: 25px 20px 25px;
  text-align: center;
  box-shadow: 2px 3px 7px rgba(0, 0, 0, 0.12);
}

/* Image */
.category-card img {
  object-fit: cover;
  margin: 0 auto 7px;
  transition: var(--transition);
}

/* Name */
.category-name {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-color);
  letter-spacing: 0.5px;
}

.categories-item:hover .category-name {
  color: var(--primary-color);
}

/* MOBILE */
@media (max-width: 768px) {
  .categories-list {
    grid-template-columns: 100%;
  }
}

/* Brands Section */
.brands-section {
  overflow: hidden;
  background: var(--bg-white);
  padding-bottom: 30px;
}

.logo-container {
  position: relative;
  width: 120px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}

.logo-container img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.logo-container::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(211, 47, 47, 0.25),
      transparent 65%);
  z-index: 0;
  animation: glowPulse 3.5s ease-in-out infinite;
}

.logo-container::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(211, 47, 47, 0.15),
      transparent 70%);
  z-index: 0;
  animation: glowPulse 5s ease-in-out infinite reverse;
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.1);
  }
}

.center-section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.center-section-header h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  color: var(--secondary-color);
}

.brands-section .center-section-header {
  margin-bottom: 15px;
}

.brands-overflow {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.brands-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollBrands 18s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-item img {
  height: 120px;
  object-fit: cover;
  transition: 0.3s ease;
}

.brand-item:hover img {
  transform: scale(1.2);
}

@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .brands-section {
    padding-top: 40px;
  }
}

/* Car Brands Section */
.car-brands-section {
  overflow: hidden;
  background: var(--bg-light);
}

.car-brands-section .center-section-header {
  margin-bottom: 45px;
}

.car-brands-section .brands-track {
  animation: scrollCarBrands 30s linear infinite;
}

.car-brands-section .brands-track:hover {
  animation-play-state: paused;
}

@keyframes scrollCarBrands {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(-0);
  }
}

.car-brands-section .brand-item img {
  height: 100px;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-icon {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.stat-item h3 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 10px;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

/* Our Client Section */
.cb-section {
  background: var(--bg-light);
  padding: 60px 0 80px;
  overflow: hidden;
}

.cb-section .center-section-header {
  margin-bottom: 30px;
}

.cb-section .center-section-header h2 span {
  color: var(--primary-color, #d32f2f);
}

.cb-rows-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cb-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #f4f6f8 8%, #f4f6f8 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #f4f6f8 8%, #f4f6f8 92%, transparent 100%);
}

.cb-track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
}

.cb-track.cb-rtl {
  animation: cbScrollRTL 20s linear infinite;
}

.cb-track.cb-ltr {
  animation: cbScrollLTR 25s linear infinite;
}

.cb-row:hover .cb-track {
  animation-play-state: paused;
}

@keyframes cbScrollRTL {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes cbScrollLTR {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

.cb-card {
  flex-shrink: 0;
  width: 140px;
  height: 90px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  cursor: default;
}

.cb-card:hover {
  transform: scale(1.06);
}

.cb-card img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 0.85;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

@media (max-width: 768px) {
  .cb-card {
    width: 110px;
    height: 72px;
    padding: 10px 14px;
    border-radius: 8px;
  }

  .cb-card img {
    max-height: 75px;
  }

  .cb-rows-wrapper {
    gap: 15px;
  }

  .cb-track {
    gap: 10px;
  }
}

/* =========================
   ABOUT PAGE
========================= */
.story-section {
  background: var(--bg-white);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
}

.img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.img-frame:hover::before {
  opacity: 0;
}

.img-frame img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.img-frame:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--primary-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 15px 40px rgba(211, 47, 47, 0.4);
  z-index: 2;
}

.experience-badge .count {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  font-family: "Oswald", sans-serif;
}

.experience-badge .label {
  font-size: 0.85rem;
  text-align: center;
  margin-top: 5px;
  font-weight: 600;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.floating-anim {
  animation: floatBadge 3s ease-in-out infinite;
}

.about-text-content {
  padding-left: 20px;
}

.section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.lead-text {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 20px;
}

.modern-check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.modern-check-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: var(--text-color);
}

.modern-check-list i {
  color: var(--primary-color);
  font-size: 1.3rem;
}

/* Stats Section */
.stats-section {
  background: var(--secondary-color);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  opacity: 0.8;
}

/* Mission Modern */
.mission-modern {
  background: var(--bg-light);
}

.mission-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mission-modern .section-heading {
  margin-bottom: 60px;
}

.mission-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-icon-3d {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  box-shadow: 0 10px 25px rgba(211, 47, 47, 0.3);
  transition: transform 0.4s;
}

.mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.mission-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.card-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  transition: width 0.4s ease;
}

.mission-card:hover .card-border {
  width: 100%;
}

/* Modern CTA */
.modern-cta-section {
  padding: 60px 0 80px;
  background: linear-gradient(135deg,
      var(--secondary-color),
      var(--primary-dark));
  position: relative;
  overflow: hidden;
}

.modern-cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 50%;
}

.cta-inner-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.modern-cta-content h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 800;
}

.highlight-white {
  color: #ffeb3b;
}

.modern-cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-btn-pulse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: #fff;
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn-pulse::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(211, 47, 47, 0.1);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.cta-btn-pulse:hover::before {
  width: 300px;
  height: 300px;
}

.cta-btn-pulse:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-img-wrapper {
    order: 2;
  }

  .about-text-content {
    order: 1;
    padding-left: 0;
  }

  .cta-inner-glass {
    text-align: center;
    justify-content: center;
    padding: 40px 20px;
  }

  .modern-cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 2rem;
  }

  .experience-badge {
    width: 100px;
    height: 100px;
    bottom: 15px;
    right: 15px;
  }

  .experience-badge .count {
    font-size: 1.8rem;
  }

  .experience-badge .label {
    font-size: 0.7rem;
  }
}

/* ================================
   SERVICE PAGE
   ================================ */
.services-page-modern {
  background: linear-gradient(135deg, var(--bg-light) 0%, #f9f9f9 100%);
  position: relative;
}

.services-page-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 0% 0%,
      rgba(211, 47, 47, 0.02) 0%,
      transparent 50%),
    radial-gradient(circle at 100% 100%,
      rgba(211, 47, 47, 0.02) 0%,
      transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.services-layout-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.service-card-modern {
  position: relative;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.service-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(211, 47, 47, 0.08);
}

.service-card-modern:hover .service-card-link {
  box-shadow: 0 20px 40px rgba(211, 47, 47, 0.2);
  transform: translateY(-8px);
  border-color: rgba(211, 47, 47, 0.2);
}

.service-card-img {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: var(--bg-light);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.service-card-modern:hover .service-card-img img {
  transform: scale(1.1) rotate(1deg);
  filter: brightness(0.95);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(211, 47, 47, 0.3) 0%,
      rgba(183, 28, 28, 0.2) 100%);
  opacity: 0.5;
  transition: var(--transition);
  z-index: 1;
}

.service-card-modern:hover .service-card-overlay {
  opacity: 1;
}

.service-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  position: relative;
}

.service-card-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card-modern:hover .service-card-content::before {
  opacity: 1;
}

.service-card-content h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  line-height: 1.3;
  color: var(--secondary-color);
  transition: var(--transition);
  position: relative;
}

.service-card-content p {
  flex: 1;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  position: relative;
  padding: 8px 0;
  transition: var(--transition);
}

.service-read-more i {
  font-size: 13px;
  transition: var(--transition);
  transform: translateX(0);
}

.service-card-modern:hover .service-read-more {
  color: var(--primary-dark);
}

.service-card-modern:hover .service-read-more i {
  transform: translateX(5px);
}

/* ------ CTA SECTION ------ */
.cta-section-modern {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      var(--secondary-color) 0%,
      var(--primary-dark) 100%);
  z-index: 0;
}

.cta-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/hero-bg.png") center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}

.cta-section-modern .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  overflow: hidden;
}

.cta-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  animation: shimmer 3s infinite;
}

.cta-section-modern:hover .cta-badge {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -1px;
}

.highlight-text {
  background: linear-gradient(90deg, #fff, #ffeb3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 35px;
  opacity: 0.95;
}

.btn-lg {
  padding: 15px 45px;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}

.cta-section-modern .btn-primary {
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}

.cta-section-modern .btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease-out,
    height 0.6s ease-out;
  z-index: 1;
}

.cta-section-modern .btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.cta-section-modern .btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.2) 50%,
      transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease-in-out;
  z-index: 2;
  pointer-events: none;
}

.cta-section-modern .btn-primary:hover::after {
  animation: shimmerSlide 0.8s ease-in-out;
}

@keyframes shimmerSlide {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.cta-section-modern .btn-primary span {
  position: relative;
  z-index: 3;
  transition: var(--transition);
}

.cta-section-modern .btn-primary:hover span {
  transform: scale(1.05);
  letter-spacing: 2px;
}

.cta-section-modern .btn-primary:hover {
  box-shadow:
    0 0 20px rgba(211, 47, 47, 0.6),
    0 8px 20px rgba(211, 47, 47, 0.4) !important;
  transform: translateY(-3px) !important;
}

.additional-services-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #ffffff 100%);
  border-top: 1px solid rgba(211, 47, 47, 0.1);
  position: relative;
}

.additional-services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 20%,
      rgba(211, 47, 47, 0.02) 0%,
      transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.additional-services-section .container {
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(211, 47, 47, 0.05);
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  transition: var(--transition);
  border-radius: 2px;
}

.feature-item:hover::before {
  width: 100%;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(211, 47, 47, 0.15);
  border-color: rgba(211, 47, 47, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: inline-block;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  transform: scale(1.2) rotate(10deg);
  color: var(--primary-dark);
}

.feature-item h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ------ RESPONSIVE DESIGN ------ */
@media (max-width: 768px) {
  .services-layout-modern {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-card-img {
    height: 220px;
  }

  .service-card-content h3 {
    font-size: 1.4rem;
  }

  .service-card-content {
    padding: 25px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .btn-lg {
    padding: 12px 35px;
    font-size: 14px;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .feature-item {
    padding: 25px 15px;
  }
}

/* =========================
   GALLERY PAGE
========================= */
.gallery-page-section {
  background: var(--bg-light);
  position: relative;
}

.gallery-page-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D32F2F' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.gallery-content {
  display: none;
  position: relative;
  z-index: 1;
}

.gallery-content.active {
  display: block;
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modern Gallery Layout */
.gallery-layout-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
}

.gallery-item-modern {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.gallery-item-modern:hover::before {
  opacity: 1;
}

.gallery-item-modern::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.3), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.gallery-item-modern:hover::after {
  width: 200%;
  height: 200%;
}

.gallery-item-modern:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(211, 47, 47, 0.2);
}

.gallery-item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-item-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.gallery-item-modern:hover img {
  transform: scale(1.1) rotate(2deg);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.gallery-item-modern:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-content {
  text-align: center;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item-modern:hover .gallery-item-content {
  transform: translateY(0);
}

.gallery-item-content i {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
  color: var(--primary-color);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.gallery-item-caption {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* Lightbox Modal */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lightbox-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lightbox-media-wrapper {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  min-height: 0;
  overflow: hidden;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: fadeInScale 0.5s ease;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-info {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10003;
  max-width: 90%;
  pointer-events: none;
  padding: 20px 20px 0;
  flex-shrink: 0;
}

.lightbox-caption {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 30px;
  background: rgba(211, 47, 47, 0.95);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
  animation: slideUp 0.5s ease 0.2s both;
  pointer-events: auto;
  position: relative;
}

.lightbox-caption::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 50px;
  pointer-events: none;
}

.lightbox-counter {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.5s ease 0.3s both;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Oswald", sans-serif;
  letter-spacing: 2px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  transition: all 0.3s ease;
}

.lightbox-close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: -1;
}

.lightbox-close:hover::before {
  width: 100%;
  height: 100%;
}

.lightbox-close:hover {
  border-color: var(--primary-color);
  transform: rotate(90deg) scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  transition: all 0.3s ease;
}

.lightbox-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: -1;
}

.lightbox-nav:hover::before {
  width: 100%;
  height: 100%;
}

.lightbox-nav:hover {
  border-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-nav i {
  transition: transform 0.3s ease;
}

.lightbox-prev:hover i {
  transform: translateX(-3px);
}

.lightbox-next:hover i {
  transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .gallery-layout-modern {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }

  .lightbox-container {
    width: 95%;
    height: 85vh;
  }

  .lightbox-info {
    padding: 15px 15px 0;
  }

  .lightbox-caption {
    font-size: 16px;
    padding: 12px 25px;
  }

  .lightbox-counter {
    font-size: 13px;
    padding: 8px 18px;
  }
}

@media (max-width: 768px) {
  .gallery-layout-modern {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    padding: 0 10px;
  }

  .gallery-item-content i {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .gallery-item-caption {
    font-size: 13px;
  }

  .lightbox-container {
    width: 100%;
    height: 100vh;
    padding: 50px 10px 20px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .lightbox-nav {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-info {
    max-width: 95%;
    gap: 10px;
    padding: 15px 10px 0;
  }

  .lightbox-caption {
    font-size: 14px;
    padding: 12px 20px;
    width: 100%;
  }

  .lightbox-counter {
    font-size: 12px;
    padding: 8px 16px;
  }
}

/* Loading Animation */
.gallery-item-modern img {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.gallery-item-modern img[src] {
  animation: none;
  background: transparent;
}

/* =========================
   CONTACT PAGE
========================= */
.modern-contact-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  z-index: 1;
}

.relative-z {
  position: relative;
  z-index: 2;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.6;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: rgba(211, 47, 47, 0.15);
  top: -50px;
  right: -50px;
  animation: floatShape1 10s ease-in-out infinite alternate;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background: rgba(51, 51, 51, 0.1);
  bottom: -50px;
  left: -50px;
  animation: floatShape2 8s ease-in-out infinite alternate;
}

@keyframes floatShape1 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(30px, 50px) rotate(180deg);
  }
}

@keyframes floatShape2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-20px, -40px);
  }
}

.modern-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.contact-left-panel {
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tag-line {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 50px;
}

.tag-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  transform: translateY(-50%);
}

.glitch-text {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
}

.desc-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 90%;
}

.modern-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.modern-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.modern-info-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.9);
}

.icon-box-3d {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.icon-box-3d i {
  z-index: 2;
  transition: transform 0.2s;
}

.icon-box-3d::after {
  content: "";
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 60%);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  pointer-events: none;
}

.icon-box-3d:hover::after {
  opacity: 1;
}

.text-content .label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.text-content p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--secondary-color);
  margin: 0;
}

.glass-form-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.glass-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
}

.glass-form-card h3 {
  margin-bottom: 30px;
  font-size: 2rem;
  color: var(--secondary-color);
}

.modern-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-wrapper {
  position: relative;
  margin-bottom: 10px;
}

.input-wrapper input,
.input-wrapper textarea {
  display: block;
  width: 100%;
  padding: 15px 10px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #ddd;
  outline: none;
  font-size: 1rem;
  color: var(--secondary-color);
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  resize: none;
}

.input-wrapper label {
  position: absolute;
  top: 15px;
  left: 10px;
  font-size: 1rem;
  color: #999;
  pointer-events: none;
  transition: all 0.3s ease;
}

.input-wrapper input:focus,
.input-wrapper input:not(:placeholder-shown),
.input-wrapper textarea:focus,
.input-wrapper textarea:not(:placeholder-shown) {
  outline: none;
  background: transparent;
  box-shadow: none;
}

.input-wrapper input:focus~label,
.input-wrapper input:not(:placeholder-shown)~label,
.input-wrapper textarea:focus~label,
.input-wrapper textarea:not(:placeholder-shown)~label {
  top: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
}

.input-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.4s ease;
}

.input-wrapper input:focus~.input-border,
.input-wrapper textarea:focus~.input-border {
  width: 100%;
}

.submit-btn-modern {
  margin-top: 20px;
  padding: 16px 30px;
  background: linear-gradient(270deg, #d32f2f, #ff5252, #b71c1c, #d32f2f);
  background-size: 300% 300%;
  animation: gradientMove 4s ease infinite;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.submit-btn-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(211, 47, 47, 0.6);
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transform: skewX(-20deg);
  transition: left 0.5s;
}

.submit-btn-modern:hover .btn-shimmer {
  left: 150%;
  transition: left 0.5s ease-in-out;
}

/* =========================
   POPUP MODAL
========================= */
.status-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.status-popup.show {
  opacity: 1;
  visibility: visible;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.popup-content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
  z-index: 10000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.status-popup.show .popup-content {
  transform: scale(1);
  opacity: 1;
}

.popup-icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
}

.popup-icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--primary-color);
  animation: spin 3s linear infinite;
  opacity: 0.2;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.popup-content h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  color: var(--secondary-color);
}

.popup-content p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1rem;
}

.popup-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: color 0.3s;
}

.popup-close-btn:hover {
  color: var(--primary-color);
}

/* Map Section */
.map-section {
  position: relative;
  padding: 20px 0 60px;
  background: var(--bg-light);
}

.map-section iframe {
  border-radius: 20px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .modern-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-left-panel {
    padding-right: 0;
    text-align: center;
  }

  .tag-line {
    padding-left: 0;
    margin-bottom: 10px;
  }

  .tag-line::before {
    display: none;
  }

  .modern-info-list {
    align-items: center;
  }

  .modern-info-item {
    width: 100%;
    max-width: 400px;
    justify-content: left;
    text-align: left;
  }

  .glitch-text {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .modern-info-item {
    width: 100%;
    max-width: 300px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .glass-form-card {
    padding: 30px 20px;
    max-width: 300px;
  }
}

/* ================= FOOTER ================= */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #1a1a1a, #111);
  color: var(--white);
  padding: 100px 0 20px;
  overflow: visible;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.15), transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

.footer-center-logo {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.footer-center-logo img {
  width: 100px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.footer-col h4 {
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  color: var(--white);
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      var(--primary-color),
      var(--primary-dark),
      var(--primary-color),
      transparent);
  background-size: 300% 100%;
  animation: footerLineMove 2.8s linear infinite;
  transition: width 0.4s ease;
}

.footer-col:hover h4::after {
  width: 90px;
}

@keyframes footerLineMove {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 300% 0%;
  }
}

.footer-col p {
  color: #aaa;
  line-height: 1.7;
}

/* ===== Payment Methods ===== */
.payment-methods {
  margin-top: 20px;
}

.payment-icons img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  background: #fff;
  padding: 10px;
  opacity: 0.9;
  transition: 0.3s ease;
}

.payment-icons img:hover {
  opacity: 1;
  transform: scale(1.03);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #aaa;
  text-decoration: none;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-links a i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(6px);
}

.footer-links a:hover i {
  transform: rotate(-10deg) scale(1.1);
}

.contact-links li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #aaa;
  line-height: 1.6;
}

.contact-links i {
  color: var(--primary-color);
  margin-top: 4px;
}

.contact-links a {
  color: #aaa;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.social-links {
  margin-top: 25px;
}

.social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.social-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-color);
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.4s ease;
  z-index: -1;
}

.social-links a:hover::before {
  transform: scale(1);
}

.social-links a:hover {
  transform: translateY(-6px);
}

/* ===== Copyright ===== */
.copyright {
  position: relative;
  margin-top: 40px;
  padding: 20px 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.copyright::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      var(--primary-color),
      transparent);
}

.copyright p {
  color: #888;
  font-size: 14px;
  letter-spacing: 0.4px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .footer-content {
    gap: 35px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }
}

/* ================= STICKY ACTIONS ================= */
.sticky-actions {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 25px;
  border: none;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.action-btn::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  pointer-events: none;
}

.action-btn:hover {
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.45);
}

.action-btn:hover::after {
  opacity: 1;
  transform: scale(1);
}

.action-btn:hover i {
  transform: scale(1.12);
  transition: transform 0.3s ease;
}

.wa-float {
  background: #25d366;
}

.phone-float {
  background: #4285f4;
}

.wa-float::before,
.phone-float::before,
.gmb-float::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: ring 2.4s infinite;
}

.scroll-top {
  background: var(--primary-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.9);
  transition: all 0.45s ease;
  isolation: isolate;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-icon {
  position: relative;
  z-index: 5;
  pointer-events: none;
  font-size: 20px;
}

.progress-ring {
  position: absolute;
  inset: 4px;
  transform: rotate(-90deg);
  z-index: 1;
}

.progress-ring circle {
  fill: none;
  stroke-width: 6;
}

.progress-ring-bg {
  stroke: rgba(255, 255, 255, 0.2);
}

.progress-ring-circle {
  stroke: #fff;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 0.25s linear;
}

.scroll-top.show::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  animation: ring 2.4s infinite;
  z-index: 0;
}

@keyframes ring {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.1);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .action-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* Individual Service page */