/* ===========================
   ROOT VARIABLES & COLORS
   =========================== */
:root {
  /* Primary Colors */
  --themeColor: #f41200;
  --primaryColor: #156caa;
  --textColor: #010535;

  /* Neutral Colors */
  --blackColor: #000;
  --whiteColor: #fff;
  --darkBg: #0a0a0a;
  --cardBg: #121212;
  --borderColor: rgba(244, 18, 0, 0.12);

  /* Dropdown Colors */
  --dropdownBg: #156caa;
  --dropdownHoverBg: rgba(255, 255, 255, 0.15);
  --dropdownText: #ffffff;
  --dropdownBorder: rgba(244, 18, 0, 0.3);
  --dropdownArrowColor: #f41200;

  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Disable smooth scroll on mobile to prevent navbar jump */
@media (max-width: 991px) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--textColor);
  background-color: var(--whiteColor);
  overflow-x: hidden;
}

/* ===========================
   CUSTOM SCROLLBAR
   =========================== */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: clamp(6px, 0.8vw, 8px);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff3d2e 0%, #1a7ec4 100%);
}


/* Font Sizes */
.font-8 {
  font-size: 8px;
}

.font-11 {
  font-size: 11px;
}

.font-12 {
  font-size: clamp(10px, 1.2vw, 12px);
}

.font-14 {
  font-size: clamp(12px, 1.4vw, 14px);
}

.font-16 {
  font-size: clamp(14px, 1.6vw, 16px);
}

.font-18 {
  font-size: clamp(15px, 1.8vw, 18px);
}

.font-20 {
  font-size: clamp(16px, 2vw, 20px);
}

.font-22 {
  font-size: clamp(18px, 2.2vw, 22px);
}

.font-24 {
  font-size: clamp(20px, 2.4vw, 24px);
}

.font-28 {
  font-size: clamp(20px, 2.8vw, 28px);
}

.font-30 {
  font-size: clamp(20px, 3vw, 30px);
}

.font-32 {
  font-size: clamp(24px, 3.2vw, 32px);
}

.font-40 {
  font-size: clamp(28px, 3.5vw, 40px);
}

.font-48 {
  font-size: clamp(28px, 4.8vw, 48px);
}

.font-56 {
  font-size: clamp(28px, 5.6vw, 56px);
}

.font-64 {
  font-size: clamp(36px, 6.4vw, 64px);
}


/* Font Weights */
.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

/* Line Heights */
.line-height-20 {
  line-height: clamp(18px, 2vw, 20px);
}

.line-height-24 {
  line-height: clamp(20px, 2.4vw, 24px);
}

.line-height-28 {
  line-height: clamp(24px, 2.8vw, 28px);
}

.line-height-32 {
  line-height: clamp(1.5rem, 0.875rem + 2vw, 2rem);
}

/* ===========================
   COLORS
   =========================== */
.primaryColor {
  color: var(--primaryColor);
}

.themeColor {
  color: var(--themeColor);
}

.textColor {
  color: var(--textColor);
}

.textLight {
  color: rgba(255, 255, 255, 0.8);
}

/* ===========================
   NAVBAR
   =========================== */

/* ===========================
   NAVBAR
   =========================== */

.navbar {
  background-color: #ffffff;
  transition: all 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar-logo {
  height: clamp(50px, 5vw, 80px);
  width: auto;
  transition: all 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  transition: all 0.3s ease;
  position: relative;
  color: var(--textColor) !important;
}

.navbar-nav .nav-link:hover {
  color: var(--themeColor) !important;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link.active {
  color: var(--themeColor) !important;
}

.navbar-toggler-icon {
  background-color: var(--themeColor);
  border-radius: 2px;
  background-size: 80% !important;
  transition: all 0.3s ease;
  background-repeat: no-repeat;
  background-position: center;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Navbar toggler - show close icon when navbar is open */
.navbar-toggler-open .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") !important;
}


/* Navbar Scrolled State - BLACK BACKGROUND */
.navbar.navbar-scrolled {
  background-color: #000000 !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

.navbar.navbar-scrolled {
  .navbar-nav .nav-link.active {
    color: var(--themeColor) !important;
  }
}

.navbar.navbar-scrolled .navbar-brand img {
  filter: brightness(0) invert(1);
}

.navbar.navbar-scrolled .navbar-nav .nav-link {
  color: #ffffff !important;
}

.navbar.navbar-scrolled .navbar-nav .nav-link:hover {
  color: var(--themeColor) !important;
}

.navbar.navbar-scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar.navbar-scrolled .navbar-toggler-open .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") !important;
}

.navbar.navbar-scrolled .btn-primary-custom {
  background: var(--themeColor);
  color: var(--whiteColor);
}

.navbar.navbar-scrolled .dropdown-menu .dropdown-item {
  color: var(--textColor) !important;
}

/* Services Dropdown Arrow */
.navbar-nav .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.navbar-nav .dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.3s ease;
  margin-left: 4px;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  border-radius: clamp(6px, 0.8vw, 8px);
  box-shadow: 0 8px 24px rgba(1, 5, 53, 0.12);
  padding: 8px 0;
  animation: dropdownSlide 0.3s ease;
  margin-top: 8px;
  min-width: 215px;
  position: absolute !important;
  left: -100% !important;
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu .dropdown-item {
  color: var(--textColor) !important;
  padding: clamp(0.5rem, 0.4779rem + 0.1176vw, 0.625rem) 20px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  font-size: 13px;
  font-weight: 500;
}

.dropdown-menu .dropdown-item:hover {
  background: rgba(244, 18, 0, 0.08);
  border-left-color: var(--themeColor);
  padding-left: 24px;
  color: var(--themeColor) !important;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
  min-height: 100vh;

}

.hero-section-about {
  min-height: 320px;
  background-color: #ffffff;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(244, 18, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(21, 108, 170, 0.04) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(1, 5, 53, 0.01) 35px, rgba(1, 5, 53, 0.01) 70px);
  background-size: 100% 100%, 100% 100%, 100% 100%;
}

.hero-section-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    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='%23f41200' fill-opacity='0.02'%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.4;
  z-index: 1;
}

.hero-section-about .hero-content-overlay {
  z-index: 3;
}

.hero-content-overlay {
  z-index: 3;
  top: 8% !important;
  transform: translateX(-50%) !important;
}

.hero-main-heading {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-size: clamp(1.75rem, 1.5294rem + 1.1765vw, 3rem);
}

.hero-main-heading em {
  font-style: italic;
}

.hero-subtext {
  color: #495057;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.hero-phone-btn {
  transition: all 0.3s ease;
}

.hero-phone-btn:hover {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .hero-section {
    min-height: 500px;
  }

  .hero-content-overlay {
    padding: clamp(1.5rem, 3vw, 2rem) 0;
  }

  /* Prevent navbar from jumping on mobile */
  .navbar {
    min-height: 70px;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
  }

  .navbar-nav {
    padding: 0px 0px 14px;

  }

  .navbar.navbar-scrolled .navbar-collapse {
    background: #000000;
  }
}

@media(max-width: 1200px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

.hero-slider {
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: clamp(2.5rem, 6vw, 3rem) 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.06), transparent);
}

.slider-scroll-container {
  width: 100%;
  overflow: hidden;
  margin-bottom: 80px;
  perspective: 1500px;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
}

.slider-scroll-track {
  display: flex;
  gap: clamp(0.8rem, 1.8vw, 1.4rem);
  animation: scrollSlider 35s linear infinite;
  will-change: transform;
  width: fit-content;
  padding: clamp(1rem, 2vw, 1.5rem) 0;
  margin: 0 auto;
}

.hero-cta-bottom {
  z-index: 999;
}

@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}



.slider-scroll-item {
  flex-shrink: 0;
  width: clamp(100px, 14vw, 165px);
  height: clamp(145px, 18vw, 225px);
  border-radius: clamp(6px, 0.8vw, 8px);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  transform: perspective(1000px) rotateY(-12deg) rotateX(4deg) skewY(-3deg) translateZ(20px);
  transform-style: preserve-3d;
}

.slider-scroll-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: clamp(6px, 0.8vw, 8px);
}

.slider-scroll-item:nth-child(2n) {
  transform: perspective(1000px) rotateY(12deg) rotateX(-4deg) skewY(3deg) translateZ(20px);
}

.slider-scroll-item:nth-child(3n) {
  transform: perspective(1000px) rotateY(-6deg) rotateX(0deg) skewY(0deg) translateZ(10px);
}

.slider-scroll-item:nth-child(5n) {
  transform: perspective(1000px) rotateY(8deg) rotateX(2deg) skewY(-2deg) translateZ(15px);
}

.slider-scroll-item:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) skewY(0deg) translateY(-10px) translateZ(40px);
  box-shadow: 0 10px 20px rgba(244, 18, 0, 0.25);
}

.slider-scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
  position: relative;
  z-index: 0;
}

.slider-scroll-item:hover img {
  transform: scale(1.15);
}

.z-2 {
  position: relative;
  z-index: 2;
}

.slider-scroll-item {
  flex-shrink: 0;
  width: clamp(100px, 14vw, 165px);
  height: clamp(145px, 18vw, 225px);
  border-radius: clamp(6px, 0.8vw, 8px);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  transform: perspective(1000px) rotateY(-12deg) rotateX(4deg) skewY(-3deg) translateZ(20px);
  transform-style: preserve-3d;
}

.slider-scroll-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: clamp(6px, 0.8vw, 8px)
}

.slider-scroll-item:nth-child(2n) {
  transform: perspective(1000px) rotateY(12deg) rotateX(-4deg) skewY(3deg) translateZ(20px);
}

.slider-scroll-item:nth-child(3n) {
  transform: perspective(1000px) rotateY(-6deg) rotateX(0deg) skewY(0deg) translateZ(10px);
}

.slider-scroll-item:nth-child(5n) {
  transform: perspective(1000px) rotateY(8deg) rotateX(2deg) skewY(-2deg) translateZ(15px);
}

.slider-scroll-item:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) skewY(0deg) translateY(-10px) translateZ(40px);
  box-shadow: 0 10px 20px rgba(244, 18, 0, 0.25);
}

.slider-scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
  position: relative;
  z-index: 0;
}

.slider-scroll-item:hover img {
  transform: scale(1.15);
}

.z-2 {
  position: relative;
  z-index: 2;
}

@media(max-width:991px) {
  .hero-slider {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .slider-scroll-item {
    width: clamp(90px, 16vw, 145px);
    height: clamp(130px, 21vw, 200px);
  }

  .slider-scroll-item {
    transform: perspective(800px) rotateY(-8deg) rotateX(3deg) skewY(-2deg) translateZ(15px);
  }

  .slider-scroll-item:nth-child(2n) {
    transform: perspective(800px) rotateY(8deg) rotateX(-3deg) skewY(2deg) translateZ(15px);
  }

  .slider-scroll-item:nth-child(3n) {
    transform: perspective(800px) rotateY(-4deg) rotateX(0deg) skewY(0deg) translateZ(8px);
  }

  .slider-scroll-item:nth-child(5n) {
    transform: perspective(800px) rotateY(5deg) rotateX(1deg) skewY(-1deg) translateZ(10px);
  }

  .slider-scroll-item:hover {
    transform: perspective(800px) rotateY(0deg) rotateX(0deg) skewY(0deg) translateY(-14px) translateZ(30px);
  }

  @keyframes scrollSlider {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

}

/* Cta Section */
.cta-badge {
  position: absolute;
  top: -22px;
  right: 72px;
  z-index: 10;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 1px solid rgba(244, 18, 0, 0.25);
  box-shadow: 0 4px 20px rgba(244, 18, 0, 0.1);
  gap: 2px;
}

.cta-badge::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed rgba(244, 18, 0, 0.22);
  animation: spin 18s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "›";
  color: rgba(1, 5, 53, 0.4);
  font-size: 16px;
  padding: 0 8px;
}

.stat-box {
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.scroll-indicator a {
  transition: opacity 0.3s ease;
}

.scroll-indicator a:hover {
  opacity: 0.7;
}

.cta-badge-num {
  font-family: var(--font-display);
  line-height: 1;
}

.cta-badge-text {
  letter-spacing: 0.1em;
  color: rgba(1, 5, 53, 0.4);
  line-height: 1.4;
}

.cta-card {
  border: 1px solid rgba(1, 5, 53, 0.07);
  border-radius: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 340px;
  box-shadow: 0 12px 48px rgba(1, 5, 53, 0.08);
}

@media (max-width: 991px) {
  .cta-card {
    grid-template-columns: 1fr;
  }
}

/* top gradient line */
.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primaryColor) 0%, var(--themeColor) 100%);
  z-index: 5;
}

/* big bg watermark */
.cta-bg-text {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(50px, 10vw, 160px);
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgb(1 5 53 / 10%);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  opacity: clamp(0.05, 0.5vw, 0.1);
}

/* ━━ LEFT ━━ */
.cta-left {
  z-index: 2;
  padding: clamp(1.5rem, 4vw, 2.875rem) clamp(1.5rem, 4vw, 2.875rem);
  gap: clamp(5.5rem, 3vw, 2.5rem);
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.cta-tag-line {
  width: 28px;
  height: 1px;
  background: var(--themeColor);
}

.cta-tag span {
  letter-spacing: 0.22em;
  color: rgba(1, 5, 53, 0.4);
}

.cta-title {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-size: clamp(28px, 5vw, 48px);
}

.cta-title em {
  font-style: italic;
}

.cta-title strong {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(1, 5, 53, 0.25);
}

/* ━━ CONTACTS ━━ */
.cta-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 2vw, 1rem);
}

@media (max-width: 991px) {
  .cta-contacts {
    flex-direction: column;
  }
}

.cta-contact {
  text-decoration: none;
  padding: clamp(1rem, 2vw, 1.25rem) clamp(1rem, 2vw, 1.75rem) clamp(1rem, 2vw, 1.25rem) 0;
  flex: 1;
  min-width: 210px;
  transition: opacity 0.2s;
}

@media (max-width: 991px) {
  .cta-contact {
    width: 100%;
    padding: 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .cta-contact:last-child {
    border-bottom: none;
  }
}

.cta-contact:not(:last-child) {
  border-right: 1px solid rgba(1, 5, 53, 0.07);
  margin-right: clamp(1rem, 2vw, 1.75rem);
}

@media (max-width: 991px) {
  .cta-contact:not(:last-child) {
    border-right: none;
    margin-right: 0;
  }
}

.cta-contact:hover {
  opacity: 0.7;
}

.cta-icon-box {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(244, 18, 0, 0.22);
  background: rgba(244, 18, 0, 0.03);
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}

.cta-icon-box::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--themeColor);
  border-left: 2px solid var(--themeColor);
}

.cta-icon-box::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--themeColor);
  border-right: 2px solid var(--themeColor);
}

.cta-contact:hover .cta-icon-box {
  background: rgba(244, 18, 0, 0.07);
  border-color: rgba(244, 18, 0, 0.5);
}

.cta-contact-label {
  color: rgb(125 125 129 / 91%);
  letter-spacing: 0.1em;
}


/* ━━ RIGHT PHOTO ━━ */
.cta-right {
  width: clamp(260px, 28vw, 360px);
}

.cta-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.cta-right:hover .cta-photo {
  transform: scale(1.04);
}

/* soft left vignette to blend photo into white card */
.cta-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.1) 30%,
      transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.cta-photo-label {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.cta-photo-label span {
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.75);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.cta-photo-label-line {
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

/* ━━ BOTTOM STRIP ━━ */
.cta-strip {
  padding: 12px 56px;
  background: rgba(244, 18, 0, 0.03);
  border: 1px solid rgba(1, 5, 53, 0.07);
  border-top: none;
}

.cta-strip-text {
  color: rgb(125 125 129 / 91%);
  letter-spacing: 0.12em;
}

.cta-strip-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(1, 5, 53, 0.1);
}

.cta-strip-dots span:first-child {
  background: var(--themeColor);
  opacity: 0.5;
}

/* Why Choose */
.tag-label {
  letter-spacing: 0.16em;
}

.photo-frame {
  height: clamp(400px, 60vw, 480px);
  border-radius: clamp(6px, 0.8vw, 8px);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-overlay {
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(1, 5, 53, 0.35) 0%, #00000005 50%);
  border-radius: clamp(6px, 0.8vw, 8px);
}

.photo-stat {
  position: absolute;
  bottom: clamp(1.5rem, 3vw, 2rem);
  left: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.95);
  padding: clamp(0.8rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: clamp(6px, 0.8vw, 8px);
  backdrop-filter: blur(10px);
}

.photo-stat-label {
  color: rgba(1, 5, 53, 0.45);
}

.why-choose-desc {
  color: rgba(1, 5, 53, 0.5);
  max-width: 420px;
  line-height: 1.8;
}

.feature-card {
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(244, 18, 0, 0.1);
  transform: translateY(-4px);
}

.feature-desc {
  color: rgba(1, 5, 53, 0.5);
  line-height: 1.4;
}

.display-title {
  font-family: var(--font-display);
  line-height: 1.1;
}

.display-title em {
  font-style: italic;
}

.feature-card {
  border: 1px solid rgba(1, 5, 53, 0.07) !important;
  border-left: 3px solid var(--themeColor) !important;
  transition: box-shadow .25s, transform .25s;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(244, 18, 0, 0.08) !important;
  transform: translateY(-3px);
}

.icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(244, 18, 0, 0.06);
  border: 1px solid rgba(244, 18, 0, 0.15);
  flex-shrink: 0;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-stat {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 40px;
  padding: 10px 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Couple  Section */
.img-main {
  width: 100%;
  height: clamp(380px, 55vw, 580px);
  object-fit: cover;
  border-radius: 4px 80px 4px 4px;
  display: block;
  filter: contrast(1.04) saturate(1.06);
}

.exp-badge {
  position: absolute;
  top: 28px;
  left: -20px;
  border: 1px solid rgba(1, 5, 53, 0.07);
  border-radius: clamp(6px, 0.8vw, 8px);
  padding: 14px clamp(0.875rem, 0.8088rem + 0.3529vw, 1.25rem);
  box-shadow: 0 8px 32px rgba(1, 5, 53, 0.1);
  min-width: 130px;
}

.exp-badge-num {
  font-family: var(--font-display);
  line-height: 1;
}

.exp-badge-txt {
  letter-spacing: .12em;
  color: rgba(1, 5, 53, 0.45);
}

.count-chip {
  position: absolute;
  bottom: 32px;
  left: -20px;
  background: var(--textColor);
  border-radius: 40px;
  padding: 10px 20px;
}

.count-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--themeColor);
  flex-shrink: 0;
}

.count-chip span {
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: .1em;
}

.img-deco-line {
  position: absolute;
  right: -18px;
  top: 10%;
  bottom: 10%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--themeColor) 40%, var(--primaryColor) 70%, transparent);
  border-radius: 2px;
}

.content-col {
  padding-left: clamp(8px, 4vw, 56px)
}

.tag-line {
  width: 22px;
  height: 1.5px;
  background-color: var(--themeColor);
}

.section-tag {
  letter-spacing: .22em;
}

.main-heading {
  font-family: var(--font-display);
  line-height: 1.3;
  letter-spacing: -.01em;
}

.main-heading em {
  font-style: italic;
}

.main-heading .ghost {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(1, 5, 53, 0.15);
  font-style: italic;
}

.body-text {
  color: rgba(1, 5, 53, 0.52);
  line-height: 1.85;
}

.quote-strip {
  border-left: 3px solid var(--themeColor);
  padding: 12px 20px;
  background: rgba(244, 18, 0, 0.03);
  border-radius: 0 6px 6px 0;
}

.quote-strip p {
  font-family: var(--font-display);
  font-style: italic;
  line-height: 1.6;
}

.stat-item {
  border-right: 1px solid rgba(1, 5, 53, 0.08)
}

.stat-item:last-child {
  border-right: none
}

.stat-num {
  font-family: var(--font-display);
  line-height: 1;
}

.stat-lbl {
  letter-spacing: .12em;
  color: rgba(1, 5, 53, 0.38);
}

.btn-primary-custom {
  padding: 12px clamp(1.75rem, 1.7059rem + 0.2353vw, 2rem);
  background: var(--themeColor);
  border-radius: 3px;
  font-family: var(--font-body);
  letter-spacing: .08em;
  text-decoration: none;
  transition: background .25s, transform .2s;
}

.btn-primary-custom:hover {
  background: #c50f00;
  transform: translateY(-2px);
}

.btn-primary-custom svg {
  transition: transform .25s
}

.btn-primary-custom:hover svg {
  transform: translateX(4px)
}

.btn-outline-custom {
  padding: 12px 28px;
  border: 1px solid rgba(1, 5, 53, 0.18);
  border-radius: 3px;
  font-family: var(--font-body);
  text-decoration: none;
  transition: border-color .25s, color .25s;
}

.btn-outline-custom:hover {
  border-color: var(--themeColor);
  color: var(--themeColor)
}

.btn-outline-custom:hover svg {
  stroke: var(--themeColor);
}

@media(max-width:991px) {
  .img-main {
    height: 340px;
    border-radius: 4px 40px 4px 4px
  }

  .exp-badge,
  .count-chip {
    left: 0
  }

  .img-deco-line {
    display: none
  }

  .content-col {
    margin-top: 48px
  }
}

/* ===========================
   TOP NOTCH PHOTOGRAPHER SECTION
   =========================== */
.photographer-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  height: clamp(450px, 55vw, 600px);
}

.mosaic-main {
  grid-column: 1;
  border-radius: clamp(6px, 0.8vw, 8px);
}

.mosaic-tl {
  grid-column: 2;
  grid-row: 1;
  border-radius: clamp(6px, 0.8vw, 8px);
}

.mosaic-tr {
  grid-column: 2;
  grid-row: 2;
  border-radius: clamp(6px, 0.8vw, 8px);
  position: relative;
}

.mosaic-br {
  border-radius: clamp(6px, 0.8vw, 8px);
}

.photographer-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.photographer-mosaic>div:hover img {
  transform: scale(1.06);
}

.mosaic-badge {
  bottom: 8px;
  right: 25px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px clamp(0.5rem, 0.4338rem + 0.3529vw, 0.875rem);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 2;
}


@media(max-width:991px) {
  .photographer-mosaic {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .mosaic-tl {
    grid-column: 1;
    grid-row: 2;
  }

  .mosaic-tr {
    grid-column: 2;
    grid-row: 2;
  }

  .photographer-content-col {
    margin-top: 32px;
  }
}

/* ===========================
   SERVICES CARDS
   =========================== */
.service-card-new {
  background: #ffffff;
  border: 1px solid rgba(1, 5, 53, 0.07);
  border-radius: clamp(6px, 0.8vw, 8px);
  transition: all 0.4s ease;
}

.service-card-new:hover {
  border-color: var(--themeColor);
  box-shadow: 0 12px 40px rgba(244, 18, 0, 0.12);
  transform: translateY(-6px);
}

.service-img-box {
  width: 100%;
  height: clamp(200px, 25vw, 260px);
}

.service-img-new {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card-new:hover .service-img-new {
  transform: scale(1.1);
}

.service-overlay-new {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 108, 170, 0.15) 0%, rgba(244, 18, 0, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card-new:hover .service-overlay-new {
  opacity: 1;
}

.service-info {
  flex-grow: 1;
  gap: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(1, 5, 53, 0.06);
}

.service-info h5 {
  color: var(--textColor);
  transition: all 0.3s ease;
}

.service-card-new:hover .service-info h5 {
  color: var(--themeColor);
}

.service-info svg {
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card-new:hover .service-info svg {
  transform: translateX(6px);
}

/* ===========================
   BRIDAL SECTION
   =========================== */
.bridal-section {
  background: var(--bgColor);
}

.bridal-section>.container {
  position: relative;
  z-index: 1;
}

.bridal-content-col {
  padding-right: clamp(8px, 5vw, 64px);
}

.bridal-tag-icon svg {
  flex-shrink: 0;
}

.bridal-section-tag {
  letter-spacing: .22em;
}

.bridal-heading {
  font-family: var(--font-display);
  line-height: 1.3;
  letter-spacing: -.015em;
}

.bridal-heading em {
  font-style: italic;
}

.fancy-rule {
  gap: 12px;
}

.fancy-rule-bar {
  height: 1.5px;
  width: 40px;
  background: var(--themeColor);
}

.fancy-rule-text {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(1, 5, 53, 0.38);
  letter-spacing: .04em;
}

.bridal-body {
  color: rgba(1, 5, 53, 0.52);
  line-height: 1.88;
}

.bridal-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.bridal-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(12px, 1.3vw, 13px);
  color: rgba(1, 5, 53, 0.60);
  letter-spacing: .01em;
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--themeColor);
}

.check-icon svg {
  display: block;
}

.bridal-highlight-card {
  background: var(--textColor);
  border-radius: 12px;
}

.bridal-highlight-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(244, 18, 0, 0.15);
}

.bridal-highlight-card p {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin: 0 0 12px;
  z-index: 1;
}

.bridal-highlight-card cite {
  letter-spacing: .14em;
  color: rgba(255, 255, 255, 0.38);
  font-style: normal;
}

.bridal-img-col {
  padding-left: clamp(8px, 3vw, 28px);
}

.bridal-mosaic {
  height: clamp(440px, 56vw, 550px);
}

.mosaic-tr {
  border-radius: 4px 55px 4px 4px;
  height: 100%;
}

.mosaic-tr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: contrast(1.04) saturate(1.07);
  transition: transform .55s ease;
}

.mosaic-tr:hover img {
  transform: scale(1.04);
}

@media(max-width:991px) {
  .bridal-content-col {
    order: 2;
  }

  .bridal-img-col {
    order: 1;
  }

  .bridal-mosaic {
    height: clamp(340px, 85vw, 460px);
  }

  .bridal-checklist {
    grid-template-columns: 1fr
  }
}












































































































































/* ===========================
   FAQ SECTION - PREMIUM ACCORDION
   =========================== */

.section-badge {
  display: inline-flex;
  padding: 5px 14px;
  border: 1px solid #156caa;
  border-radius: 40px;
  background: #156caa1a;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}

.faq-accordion {
  gap: 12px;
}

.badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primaryColor);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.65);
  }
}

.faq-heading {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.faq-heading em {
  font-style: italic;
  color: var(--themeColor);
}

.testimonials-heading {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.testimonials-heading em {
  font-style: italic;
  color: var(--themeColor);
}

.faq-subtext {
  max-width: 500px;
  margin: 0 auto;
}

.header-divider {
  width: 48px;
  height: 2px;
  background: var(--themeColor);
  margin: 12px auto;
  border-radius: 2px;
  opacity: 0.55;
}

.faq-item {
  border: 1px solid rgba(1, 5, 53, 0.08);
  border-radius: clamp(6px, 0.8vw, 8px);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
  border-color: rgba(244, 18, 0, 0.2);
}

.faq-item.open {
  border-color: rgba(244, 18, 0, 0.35);
  box-shadow: 0 4px 24px rgba(244, 18, 0, 0.06);
}

.faq-trigger {
  width: 100%;
  background: none;
  cursor: pointer;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-body);
}

.faq-num {
  font-family: var(--font-display);
  opacity: 0.6;
  min-width: 20px;
}

.faq-q {
  transition: color 0.2s;
}

.faq-item.open .faq-q {
  color: var(--themeColor);
}

.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(244, 18, 0, 0.2);
  border-radius: 50%;
  transition: background 0.25s, border-color 0.25s;
}

.faq-icon svg {
  transition: transform 0.4s ease;
}

.faq-item.open .faq-icon {
  background: var(--themeColor);
  border-color: var(--themeColor);
}

.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
  stroke: var(--whiteColor);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body-inner {
  padding: 0 24px 20px 58px;
  border-top: 1px solid rgba(1, 5, 53, 0.06);
  padding-top: 16px;
  color: rgba(1, 5, 53, 0.58);
}

.faq-body-inner strong {
  color: var(--textColor);
  font-weight: 500;
}

/* ===========================
   CTA SECTION - CLAMP ONLY
   =========================== */
.cta-section {
  padding: clamp(5rem, 10vw, 7rem) 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  min-height: clamp(400px, 60vh, 500px);
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(21, 108, 170, 0.7) 0%, rgba(244, 18, 0, 0.7) 100%);
  z-index: 1;
  animation: overlayPulse 4s ease-in-out infinite;
}

@keyframes overlayPulse {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 0.75;
  }
}

.cta-section>.container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.cta-section .row {
  min-height: clamp(400px, 60vh, 500px);
}

.cta-section h2,
.cta-section p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.cta-btn-primary {
  background: var(--whiteColor);
  color: var(--themeColor);
  box-shadow: 0 8px 25px rgba(244, 18, 0, 0.3);
}

.cta-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(244, 18, 0, 0.4);
}

.cta-btn-secondary {
  background: transparent;
  color: var(--whiteColor);
  border-color: var(--whiteColor);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--whiteColor);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* ===========================
   FOOTER SECTION - CLEAN & SIMPLE
   =========================== */
.footer-section {
  background: var(--darkBg);
  padding: clamp(3rem, 7vw, 3rem) 0 clamp(2rem, 3vw, 2rem);
  border-top: 1px solid var(--borderColor);
}

.footer-logo {
  height: clamp(50px, 6vw, 75px);
  width: auto;
  transition: all 0.3s ease;
  display: block;
  background: rgb(255, 255, 255);
  border: 1px solid var(--borderColor);
  border-radius: clamp(6px, 0.8vw, 8px);
  padding: 8px;
}

.footer-logo:hover {
  transform: scale(1.08);
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: clamp(0.8rem, 1.2vw, 1rem);
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--themeColor);
}

.footer-col {
  transition: all 0.3s ease;
}

.footer-col:hover {
  transform: translateY(-4px);
}

.footer-title {
  color: var(--whiteColor);
  margin-bottom: clamp(1.5rem, 2vw, 1.8rem);
  font-size: clamp(14px, 1.6vw, 16px);
  position: relative;
  padding-bottom: 12px;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor) 0%, rgba(244, 18, 0, 0.3) 100%);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.footer-col:hover .footer-title::after {
  width: 100%;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
}

.footer-social {
  display: flex;
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
  margin-top: clamp(1.5rem, 2.5vw, 2rem);
  flex-wrap: wrap;
}

.footer-social-btn {
  width: clamp(40px, 5vw, 48px);
  height: clamp(40px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--borderColor);
  border-radius: 10px;
  color: var(--whiteColor);
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  background: var(--themeColor);
  border-color: var(--themeColor);
  transform: translateY(-4px);
}

.social-icon {
  width: clamp(18px, 2vw, 20px);
  height: clamp(18px, 2vw, 20px);
}

.footer-contact-label {
  color: var(--themeColor);
}

.footer-contact-value {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-contact-value:hover {
  color: var(--themeColor);
}

.footer-bottom {
  border-top: 1px solid rgb(244 18 0 / 33%);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(13px, 1.3vw, 14px);
}

.footer-bottom-links {
  display: flex;
  gap: clamp(1.5rem, 2.5vw, 2rem);
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(13px, 1.3vw, 14px);
}

.footer-bottom-links a:hover {
  color: var(--themeColor);
}


/* ===========================
   TESTIMONIALS SECTION - PREMIUM DESIGN
   =========================== */

/* Section Background */
.testimonials-section {
  background: #fafafa;
  position: relative;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(244, 18, 0, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(21, 108, 170, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.testimonials-section>* {
  position: relative;
  z-index: 1;
}

/* Premium Tab Buttons */
.testimonials-tab-btn {
  background: var(--whiteColor);
  border: 2px solid rgba(1, 5, 53, 0.1);
  color: var(--textColor);
  padding: 10px 30px;
  border-radius: clamp(6px, 0.8vw, 8px);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(1, 5, 53, 0.06);
}

/* Animated background on hover */
.testimonials-tab-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primaryColor);
  transition: left 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
  border-radius: 6px;
}

/* Ripple effect */
.testimonials-tab-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.testimonials-tab-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.testimonials-tab-btn span {
  position: relative;
  z-index: 1;
}

ul li {
  list-style: none;
}

/* Hover State */
.testimonials-tab-btn:hover {
  border-color: var(--primaryColor);
  color: var(--primaryColor);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 98, 244, 0.2);
}

.testimonials-tab-btn:hover::after {
  width: 300px;
  height: 300px;
}

.testimonials-tab-btn:hover svg {
  transform: scale(1.15) rotate(8deg);
}

/* Active State */
.testimonials-tab-btn.active {
  color: var(--whiteColor);
  transform: translateY(-2px);
  border: 2px solid #ffffff75;
  background: var(--primaryColor);
}

.testimonials-tab-btn.active::before {
  left: 0;
}

.testimonials-tab-btn.active svg {
  transform: scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  color: var(--whiteColor);
}

/* Tab Content */
.testimonials-content {
  display: none;
  animation: fadeIn 0.6s ease-in-out;
}

.testimonials-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slider Container */
.testimonials-slider {
  width: 100%;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: clamp(1rem, 3vw, 1.4rem);
  width: fit-content;
  animation: slideTestimonials 30s linear infinite;
}

@keyframes slideTestimonials {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.testimonials-track:hover {
  animation-play-state: paused;
}

.testimonial-item {
  flex-shrink: 0;
  width: clamp(280px, 30vw, 340px);
  cursor: pointer;
}

.testimonial-video {
  border-radius: clamp(6px, 0.8vw, 8px);
  transition: all 0.3s ease;
  background: var(--whiteColor);
  border: 1px solid rgba(1, 5, 53, 0.08);
  box-shadow: 0 2px 8px rgba(1, 5, 53, 0.04);
}

.testimonial-video:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(1, 5, 53, 0.12);
  border-color: rgba(244, 18, 0, 0.2);
}

.video-container {
  width: 100%;
  height: clamp(180px, 20vw, 220px);
  border-radius: 6px;
  background: var(--darkBg);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 1rem 0rem 0rem;
  position: relative;
  z-index: 1;
}

.video-info h4 {
  transition: color 0.3s ease;
}

.testimonial-video:hover .video-info h4 {
  color: var(--themeColor);
}

/* Feedback Card */
.feedback-card {
  background: var(--whiteColor);
  border: 1px solid rgba(1, 5, 53, 0.08);
  border-radius: clamp(6px, 0.8vw, 8px);
  padding: clamp(1.1rem, 2vw, 1.5rem);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
  box-shadow: 0 4px 20px rgba(1, 5, 53, 0.06);
}

.feedback-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 70px;
  background: rgba(244, 18, 0, 0.05);
  border-radius: 100px 8px 0 0;
  transition: all 0.5s ease;
  z-index: 0;
}

.feedback-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 20px rgba(244, 18, 0, 0.12);
  border-color: rgba(244, 18, 0, 0.15);
}

.feedback-card:hover::before {
  width: 80px;
  height: 80px;
  background: rgba(244, 18, 0, 0.08);
}

.feedback-card:hover::after {
  height: 100%;
}

.feedback-header {
  position: relative;
  z-index: 2;
}

.feedback-avatar {
  flex-shrink: 0;
}

.avatar-circle {
  width: 52px;
  height: 52px;
  background: var(--themeColor);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(244, 37, 0, 0.25);
  transition: all 0.4s ease;
  position: relative;
}

.avatar-circle::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--themeColor);
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

.feedback-card:hover .avatar-circle {
  transform: scale(1.1);
}

.feedback-card:hover .avatar-circle::before {
  opacity: 1;
}

.feedback-stars {
  gap: 0.25rem;
}

.star-icon {
  width: 16px;
  height: 16px;
  color: #ffc107;
  fill: #ffc107;
  filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
  transition: transform 0.3s ease;
}

.feedback-card:hover .star-icon {
  transform: scale(1.1);
}

.feedback-card>p {
  position: relative;
  z-index: 2;
  color: rgba(1, 5, 53, 0.7);
  line-height: 1.7;
}

.feedback-footer {
  z-index: 2;
  border-top: 1px solid rgba(1, 5, 53, 0.06);
}

.feedback-footer h4 {
  transition: color 0.3s ease;
}

.feedback-card:hover .feedback-footer h4 {
  color: var(--themeColor);
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-tab-btn {
    padding: 8px 24px;
    font-size: 14px;
  }

  .testimonial-item {
    width: 280px;
  }

}



/* CTA Section - Mobile Responsive */
@media (max-width: 991px) {
  .cta-card {
    flex-direction: column;
    padding: clamp(1.5rem, 4vw, 2rem);
  }

  .cta-left {
    width: 100%;
    padding: 0;
  }

  .cta-title {
    font-size: clamp(28px, 5vw, 32px);
    line-height: 1.2;
  }

  .cta-contacts {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-contact {
    width: 100%;
    padding: 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .cta-contact:last-child {
    border-bottom: none;
  }

  .cta-contact-value {
    font-size: clamp(12px, 2.5vw, 14px);
    text-align: center;
    word-break: break-all;
  }

  .cta-badge {
    top: 1rem;
    right: 1rem;
    width: 60px;
    height: 60px;
  }

  .cta-badge-num {
    font-size: 18px;
  }

  .cta-badge-text {
    font-size: 7px;
  }

  .cta-strip {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .cta-strip-text {
    font-size: 10px;
  }
}

@media (max-width: 576px) {
  .cta-title {
    font-size: 28px;
  }

  .cta-contact-value {
    font-size: 12px;
  }

  .cta-bg-text {
    font-size: 65px;
    top: 33%;
  }

  .approach-section img {
    min-height: 300px !important;
  }

  .filter-tabs {
    overflow: auto;
  }

  .slider-scroll-track {
    animation: scrollSlider 35s linear infinite;
  }

}


/* About page css */
.photo-wrap {
  height: clamp(20.3125rem, 17.7206rem + 13.8235vw, 35rem);
}

.photo-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 62%;
  height: 100%;
  border-radius: clamp(6px, 0.8vw, 8px);
}

.photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-side {
  position: absolute;
  right: 0;
  top: 0;
  width: 34%;
  height: 100%;
  gap: 12px;
}

.photo-side-top {
  height: 55%;
  border-radius: clamp(6px, 0.8vw, 8px);
}

.photo-side-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-side-bottom {
  height: 43%;
  border-radius: clamp(6px, 0.8vw, 8px);
}

.photo-side-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-badge {
  position: absolute;
  bottom: 24px;
  left: clamp(1.875rem, 1.6544rem + 1.1765vw, 3.125rem);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  padding: 8px 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
}

.stat-item p {
  color: #6c757d;
}

.stat-item+.stat-item {
  border-left: 1px solid #e9ecef;
}

.approach-section img {
  object-fit: cover;
  height: 100%;
  min-height: 440px;
}

/* Our Approach Section - Mobile Image First */
@media (max-width: 991px) {
  .approach-section-row {
    display: flex;
    flex-direction: column-reverse;
  }
}



/* ===========================
   CINEMATIC SECTION
   =========================== */
.cinematic-image-wrapper {
  box-shadow: 0 clamp(4px, 1vw, 12px) clamp(12px, 3vw, 32px) rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: clamp(18.75rem, 14.3382rem + 23.5294vw, 43.75rem);
}

.cinematic-image-wrapper img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: clamp(6px, 0.8vw, 8px);
}

.cinematic-image-wrapper:hover img {
  transform: scale(1.02);
}

.cinematic-image-wrapper:hover {
  box-shadow: 0 clamp(6px, 1.5vw, 16px) clamp(16px, 4vw, 40px) rgba(0, 0, 0, 0.12);
}

/* ===========================
   CITIES SECTION
   =========================== */
.cities-heading {
  font-family: var(--font-display);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.city-item {
  transition: all 0.3s ease;
  border: 1px solid #ff00001f;
  padding: 12px;
  border-radius: clamp(6px, 0.8vw, 8px) 0px;
}

.city-item:hover .city-name {
  color: var(--themeColor);
}

.city-number {
  min-width: 40px;
  flex-shrink: 0;
  color: #fbdedb;
  font-size: 28px;
}

.city-name {
  transition: color 0.3s ease;
}

.city-desc {
  line-height: 1.7;
}


/* ===========================
   WHY CHOOSE SECTION
   =========================== */
.why-choose-image-wrapper {
  box-shadow: 0 clamp(4px, 1vw, 12px) clamp(12px, 3vw, 32px) rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: clamp(18.75rem, 16.5441rem + 11.7647vw, 29.25rem);
  ;
}

.why-choose-image-wrapper img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: clamp(6px, 0.8vw, 8px);
}

.why-choose-image-wrapper:hover img {
  transform: scale(1.02);
}

.why-choose-image-wrapper:hover {
  box-shadow: 0 clamp(6px, 1.5vw, 16px) clamp(16px, 4vw, 40px) rgba(0, 0, 0, 0.12);
}

.why-choose-heading {
  font-family: var(--font-display);
  line-height: 1.3;
  letter-spacing: -0.01em;
}


.why-choose-list {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.why-choose-item {
  transition: all 0.3s ease;
}

.why-choose-item:hover {
  transform: translateX(4px);
}

.why-choose-divider {
  height: 1px;
  background: rgba(1, 5, 53, 0.1);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}


/* ===========================
   CTA SECTION
   =========================== */
.cta-section-heading {
  font-family: var(--font-display);
  line-height: 1.3;
  letter-spacing: -0.01em;
}


/* ===========================
   PROCESS SECTION - SIMPLE CARDS
   =========================== */
.process-card {
  border: 1px solid rgba(1, 5, 53, 0.07);
  transition: all 0.3s ease;
}

.process-card:hover {
  border-color: rgba(244, 18, 0, 0.15);
  box-shadow: 0 4px 16px rgba(1, 5, 53, 0.06);
}

.step-number-badge {
  background: rgba(244, 18, 0, 0.05) !important;
  flex-shrink: 0;
}

/* ===========================
   PORTFOLIO GALLERY SECTION - ASYMMETRICAL MASONRY LAYOUT
   =========================== */
.gallery-icon {
  position: absolute;
  right: 12px;
  width: 12%;
  opacity: 0.06;
}

.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1rem);
  grid-auto-rows: clamp(140px, 20vw, 200px);
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: clamp(6px, 0.8vw, 8px);
  cursor: pointer;
  background: var(--darkBg);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
  display: flex;
  align-items: flex-end;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.portfolio-content {
  width: 100%;
}

.portfolio-content {
  h2 {
    font-size: clamp(1rem, 0.8235rem + 0.9412vw, 2rem);
  }
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

/* Large Items (2x2) - Left and Center */
.portfolio-item-lg-left {
  grid-column: span 2;
  grid-row: span 2;
}

/* Medium Items (2x1) - Right and Bottom */
.portfolio-item-md-right {
  grid-column: span 2;
  grid-row: span 1;
}

/* Small Items (1x1) - Right side stacked */
.portfolio-item-sm {
  grid-column: span 1;
  grid-row: span 1;
}

/* Responsive - Tablet */
@media (max-width: 1199px) {
  .portfolio-masonry {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: clamp(120px, 22vw, 180px);
  }

  .portfolio-item-lg-left {
    grid-column: span 2;
    grid-row: span 2;
  }

  .portfolio-item-md-right {
    grid-column: span 2;
    grid-row: span 1;
  }

  .portfolio-item-sm {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .portfolio-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(100px, 40vw, 160px);
  }

  .portfolio-item-lg-left,
  .portfolio-item-md-right,
  .portfolio-item-sm {
    grid-column: span 1;
    grid-row: span 1;
  }

  .portfolio-overlay {
    padding: clamp(0.5rem, 1.5vw, 1rem);
  }
}


/* ===========================
   EQUIPMENT SECTION
   =========================== */
.equipment-card {
  box-shadow: 0 2px 8px rgba(1, 5, 53, 0.05);
}

.equipment-image-box {
  width: clamp(50px, 10vw, 70px);
  height: clamp(50px, 10vw, 70px);
  background: #f5f5f5;
  overflow: hidden;
  flex-shrink: 0;
}

.equipment-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.equipment-content {
  flex: 1;
}


/* ===========================
   CONTENT SECTION (SEO)
   =========================== */
.content-area {
  border-radius: clamp(6px, 0.8vw, 8px);
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid rgba(1, 5, 53, 0.08);
}


.content-area h3 {
  color: var(--textColor);
  margin-top: clamp(2rem, 3vw, 2.5rem) !important;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem) !important;
}

.content-area ul li {
  position: relative;
  padding-left: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
  line-height: 1.8;
}

.content-area ul li strong {
  color: var(--textColor);
  font-weight: 600;
}

.content-area p {
  color: rgba(1, 5, 53, 0.65);
  margin-bottom: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.85;
}

.content-area a.btn-primary-custom {
  margin-top: clamp(1rem, 2vw, 2rem);
}











/* ===========================
   GALLERY FILTER SECTION - SAME AS PORTFOLIO NUMBERS BG
   =========================== */
.gallery-filter-section {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #f8fbff 100%);
}

.filter-tabs {
  gap: 10px;
  white-space: nowrap;
}

.filter-tabs .nav-link:focus {
  box-shadow: none;
}

/* Gallery Content Section */
.gallery-item {
  border-radius: clamp(6px, 0.8vw, 8px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover {
  transform: translateY(clamp(-6px, -1vw, -8px));
  box-shadow: 0 12px 40px rgba(136, 26, 19, 0.15);
}

.gallery-image-wrapper {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content {
  transform: translateY(clamp(15px, 3vw, 20px));
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-content {
  transform: translateY(0);
}

/* Animation Effects */
.gallery-item {
  animation: fadeInUp 0.6s ease-out both;
}

.gallery-content-section .col-lg-4:nth-child(1) .gallery-item {
  animation-delay: 0.1s;
}

.gallery-content-section .col-lg-4:nth-child(2) .gallery-item {
  animation-delay: 0.2s;
}

.gallery-content-section .col-lg-4:nth-child(3) .gallery-item {
  animation-delay: 0.3s;
}

.gallery-content-section .col-lg-4:nth-child(4) .gallery-item {
  animation-delay: 0.4s;
}

.gallery-content-section .col-lg-4:nth-child(5) .gallery-item {
  animation-delay: 0.5s;
}

.gallery-content-section .col-lg-4:nth-child(6) .gallery-item {
  animation-delay: 0.6s;
}

/* ===========================
   GALLERY DETAIL ITEMS
   =========================== */
.gallery-details {
  margin-top: 8px;
}

.gallery-detail-item {
  transition: all 0.2s ease;
}

.gallery-detail-item:hover {
  transform: translateX(2px);
}

.gallery-detail-item svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: white !important;
  stroke: white !important;
  fill: none !important;
}

.gallery-detail-item:hover svg {
  transform: scale(1.1);
}

.gallery-detail-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive adjustments for gallery details */
@media (max-width: 768px) {
  .gallery-detail-item {
    margin-bottom: 6px !important;
  }

  .gallery-detail-item span {
    font-size: 13px;
  }

  .gallery-detail-item svg {
    width: 14px;
    height: 14px;
  }
}

.video-play-icon {
  bottom: -2%;
  right: 0%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  width: 50px;
  height: 50px;
  background: var(--themeColor);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 0 rgba(245, 91, 80, 0.7);
  animation: videoPulse 2s ease-in-out infinite;
}

.video-play-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: ripple 2s ease-out infinite;
}

.video-play-icon svg {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}


/* ===========================
   BOOK NOW MODAL
   =========================== */

.book-now-modal {
  border-radius: clamp(6px, 0.8vw, 8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.book-now-header {
  padding: 16px 20px;
}

.book-now-body {
  padding: 24px;
}

.book-now-input {
  border: 1px solid rgba(1, 5, 53, 0.12);
  border-radius: clamp(6px, 0.8vw, 8px);
  padding: clamp(0.75rem, 1.5vw, 12px) clamp(1rem, 2vw, 1.25rem);
  transition: all 0.3s ease;
}

.book-now-input::placeholder {
  color: rgba(1, 5, 53, 0.4);
}

.book-now-input:focus {
  border-color: var(--themeColor);
  box-shadow: 0 0 0 3px rgba(244, 18, 0, 0.1);
  outline: none;
}

.book-now-input:hover {
  border-color: rgba(1, 5, 53, 0.2);
}

.captcha-refresh {
  cursor: pointer;
  transition: all 0.3s ease;
}

.captcha-refresh:hover {
  transform: rotate(180deg);
  opacity: 0.8;
}

.book-now-close {
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
  background: rgb(255 0 0 / 12%);
  padding: 0;
  cursor: pointer;
  color: var(--textColor);
}

.book-now-close::before,
.book-now-close::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--textColor);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.book-now-close::before {
  transform: rotate(45deg);
}

.book-now-close::after {
  transform: rotate(-45deg);
}

.book-now-close:hover::before,
.book-now-close:hover::after {
  background: var(--themeColor);
  width: 22px;
}


.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
}


/* ===========================
   CONTACT SECTION - TWO COLUMN LAYOUT
   =========================== */

.contact-left-content {
  padding-right: clamp(0rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.contact-section-title {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-size: clamp(28px, 5vw, 40px);
}

.contact-section-desc {
  color: rgba(1, 5, 53, 0.65);
  line-height: 1.8;
}

.contact-info-item {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.contact-info-icon {
  width: clamp(40px, 8vw, 48px);
  height: clamp(40px, 8vw, 48px);
  background: rgba(244, 18, 0, 0.08);
  border: 1px solid rgba(244, 18, 0, 0.15);
  border-radius: 6px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
  background: rgba(244, 18, 0, 0.12);
  border-color: var(--themeColor);
  transform: scale(1.08);
}


.contact-info-value {
  color: rgba(1, 5, 53, 0.65);
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.6;
}

.contact-info-value:hover {
  color: var(--themeColor);
}

.contact-form-wrapper {
  background: #f9f9f9;
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: clamp(6px, 0.8vw, 8px);
  border: 1px solid rgba(1, 5, 53, 0.06);
}

.form-group {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.contact-form-input {
  border: 1px solid rgba(1, 5, 53, 0.12);
  border-radius: clamp(4px, 0.8vw, 6px);
  padding: clamp(0.625rem, 1.2vw, 0.875rem) clamp(0.875rem, 1.8vw, 1.25rem);
  transition: all 0.3s ease;
  font-family: var(--font-body);
  font-size: clamp(13px, 1.4vw, 14px);
}

.contact-form-input::placeholder {
  color: rgba(1, 5, 53, 0.4);
}

.contact-form-input:focus {
  outline: none;
  border-color: var(--themeColor);
  box-shadow: 0 0 0 3px rgba(244, 18, 0, 0.1);
  background: #ffffff;
}

.contact-form-input:hover {
  border-color: rgba(1, 5, 53, 0.2);
}

.contact-form-input:valid {
  border-color: rgba(1, 5, 53, 0.15);
}


/* ===========================
   MAP SECTION
   =========================== */
.map-section {
  width: 100%;
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.map-container {
  width: 100%;
  height: clamp(300px, 50vw, 500px);
  border-radius: clamp(6px, 0.8vw, 8px);
  background-color: rgb(243 241 241);
  padding: 10px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


/* City Cards */
.city-card {
  border: 1px solid rgba(1, 5, 53, 0.08);
  border-radius: clamp(6px, 0.8vw, 8px);
  transition: all 0.3s ease;
  height: 100%;
}

.city-card:hover {
  border-color: var(--themeColor);
  box-shadow: 0 8px 24px rgba(244, 18, 0, 0.1);
  transform: translateY(-4px);
}

.city-card-image {
  width: 100%;
  height: clamp(130px, 15vw, 180px);
}

.city-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.city-card:hover .city-card-image img {
  transform: scale(1.05);
}

.city-card-title {
  transition: color 0.3s ease;
}

.city-card:hover .city-card-title {
  color: var(--themeColor);
}

.city-card-link {
  text-decoration: none;
  transition: all 0.3s ease;
}

.city-card-link:hover {
  opacity: 0.8;
}

.inner-gallery-img {
  height: 200px;
   transition: transform 0.3s ease;

  img {
    object-fit: cover;
    transition: transform 0.3s ease;
  }
}
.inner-gallery-img:hover{
  transform: scale(1.05);
}


/* ===========================
   VENUE CARDS SECTION
   =========================== */
.venue-card {
  border-radius: clamp(6px, 0.8vw, 8px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(1, 5, 53, 0.08);
}

.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(244, 18, 0, 0.15);
}

.venue-img-wrapper {
  height: 220px;
}

.venue-img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.venue-card:hover .venue-img {
  transform: scale(1.08);
}

.venue-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(1, 5, 53, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.venue-card:hover .venue-overlay {
  opacity: 1;
}

.venue-content {
  background: #fff;
}

.venue-tag {
  background: rgba(244, 18, 0, 0.08);
  color: var(--themeColor);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.venue-card:hover .venue-tag {
  background: var(--themeColor);
  color: #fff;
}

@media (max-width: 768px) {
  .venue-img-wrapper {
    height: 180px;
  }
}
