/* ==========================================================================
   1. FONTS & DESIGN TOKENS (VARIABLES)
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&family=Manrope:wght@700;800&display=swap");

:root {
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

:root {
  /* Color Palette */
  --primary-charcoal: #263238;
  --secondary-orange: #e2b71d;
  --accent-teal: #b68107;
  --neutral-white: #ffffff;
  --bg-light: #f8f9fa;
  --text-muted: #546e7a;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   2. GLOBAL & UTILITY STYLES
   ========================================================================== */
body {
  font-family: var(--font-body);
  color: var(--primary-charcoal);
  background-color: var(--neutral-white);
  overflow-x: hidden;
}

/* Headings Strategy */
h1,
h2,
h3,
h4,
.brand-text,
.section-title,
.cta-headline {
  font-family: var(--font-display);
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary-charcoal);
}

/* Global Color Utilities */
.text-teal {
  color: var(--accent-teal);
}
.text-orange,
.text-secondary-color,
.text-secondary-orange {
  color: var(--secondary-orange);
}
.text-accent {
  color: var(--accent-teal);
}

/* ==========================================================================
   3. HEADER, NAVBAR & NAVIGATION
   ========================================================================== */
.topbar {
  background-color: var(--primary-charcoal);
  color: var(--neutral-white);
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar a {
  color: var(--neutral-white);
  transition: var(--transition-smooth);
}

.topbar a:hover {
  color: var(--secondary-orange);
}

/* Navbar & Glow System */
.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(8px);
  padding: 10px 0;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.35),
    0 0 15px rgba(226, 183, 29, 0.3);
}

.brand-text {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.5px;
  color: var(--neutral-white);
}

.nav-link {
  color: var(--primary-charcoal) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-teal) !important;
}

/* Dropdown Customization */
.dropdown-menu {
  border: none;
  border-top: 3px solid var(--secondary-orange);
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dropdown-item:hover {
  background-color: var(--accent-teal);
  color: var(--neutral-white);
}

.navbar-toggler {
  border-color: var(--accent-teal);
}

/* ==========================================================================
   4. HERO & CAROUSEL SECTION
   ========================================================================== */
#hero-carousel {
  background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
  padding: 80px 0;
  min-height: 600px;
}

.hero-container {
  padding: 40px 15px;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 550px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* Hero Cards Interaction */
.hero-image-card {
  background: #e0e6ed;
  border-radius: 20px;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition-smooth);
  will-change: transform;
}

.hero-image-card:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.carousel-indicators [data-bs-target] {
  background-color: var(--primary-charcoal);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* ===== HERO SECTION ===== */

.about-hero {
  background:
    linear-gradient(135deg, rgba(38, 50, 56, 0.97), rgba(26, 37, 41, 0.96)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80");

  background-size: cover;
  background-position: center;
  color: var(--neutral-white);
  padding: 150px 0 130px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(226, 183, 29, 0.08);
  border-radius: 50%;
  top: -120px;
  right: -120px;
  filter: blur(30px);
}

.about-hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--neutral-white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.about-hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  margin-bottom: 20px;
  animation: fadeUp 1s ease;
}

.about-hero p {
  font-size: 1.2rem;
  animation: fadeUp 1.3s ease;
}

/* ==========================================================================
   5. COMPONENT ELEMENTS (BUTTONS & BADGES)
   ========================================================================== */
.btn-get-started,
.btn-primary,
.btn-outline-primary,
.btn-primary-custom,
.btn-outline-light-custom,
.btn-secondary-custom,
.btn-outline-charcoal,
.btn-primary-orange,
.btn-outline-white {
  padding: 12px 30px;
  font-weight: 700;
  border-radius: 6px;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-get-started {
  background-color: var(--secondary-orange);
  color: var(--neutral-white);
  border: 2px solid transparent;
}

.btn-get-started:hover {
  background-color: transparent;
  border-color: var(--secondary-orange);
  color: var(--secondary-orange);
}

.btn-primary,
.btn-primary-custom {
  background-color: var(--primary-charcoal);
  border: 2px solid var(--primary-charcoal);
  color: var(--neutral-white);
}

.btn-primary:hover,
.btn-primary-custom:hover {
  background-color: var(--secondary-orange);
  border-color: var(--secondary-orange);
  color: var(--neutral-white);
}

.btn-outline-primary {
  border: 2px solid var(--primary-charcoal);
  color: var(--primary-charcoal);
  background: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--secondary-orange);
  border-color: var(--secondary-orange);
  color: var(--neutral-white);
}

.btn-outline-light-custom {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--neutral-white);
}

.btn-outline-light-custom:hover {
  background-color: var(--accent-teal);
  border-color: var(--accent-teal);
}

.btn-secondary-custom {
  background-color: var(--secondary-orange);
  color: var(--neutral-white);
  border: 2px solid var(--secondary-orange);
}

.btn-secondary-custom:hover {
  background-color: transparent;
  color: var(--secondary-orange);
}

.btn-outline-charcoal {
  border: 2px solid var(--primary-charcoal);
  color: var(--primary-charcoal);
}

.btn-outline-charcoal:hover {
  background-color: var(--primary-charcoal);
  color: var(--neutral-white);
}

.btn-primary-orange {
  background-color: var(--secondary-orange);
  color: var(--neutral-white);
  border: none;
  box-shadow: 0 4px 15px rgba(226, 183, 29, 0.3);
}

.btn-primary-orange:hover {
  background-color: #cda417;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(226, 183, 29, 0.45);
}

.btn-outline-white {
  border: 2px solid var(--neutral-white);
  color: var(--neutral-white);
}

.btn-outline-white:hover {
  background-color: var(--neutral-white);
  color: var(--primary-charcoal);
}

/* ==========================================================================
   6. CARDS & SECTIONS (SERVICES, SOLUTIONS & STATS)
   ========================================================================== */
.what-we-do-section {
  background-color: var(--neutral-white);
}
.section-text {
  color: #455a64;
  font-size: 1.15rem;
}

/* Real Estate Tint Box */
.highlight-box {
  background-color: #f1f8f7;
  border-left: 5px solid var(--accent-teal);
  color: #37474f;
}

.italic-text {
  font-style: italic;
  line-height: 1.6;
}

/* Stat Cards Archetype */
.stat-card {
  background: var(--neutral-white);
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  transition: var(--transition-smooth);
}

.stat-card i {
  font-size: 2rem;
  color: var(--primary-charcoal);
}
.stat-card h5 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 5px;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.active-card {
  background-color: var(--primary-charcoal);
  color: var(--neutral-white);
}
.active-card i {
  color: var(--secondary-orange);
}
.active-card p {
  color: #cfd8dc;
}

/* Solutions Configuration */
.complete-solution-section {
  background-color: var(--primary-charcoal);
  position: relative;
  overflow: hidden;
}

.solution-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: var(--neutral-white);
  transition: var(--transition-smooth);
}

.solution-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.solution-card p {
  font-size: 0.95rem;
  color: #b0bec5;
  line-height: 1.6;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: rgba(255, 111, 0, 0.1);
  color: var(--secondary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.solution-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--accent-teal);
  transform: translateY(-8px);
}

.solution-card:hover .icon-box {
  background: var(--secondary-orange);
  color: var(--neutral-white);
}

.highlight-card {
  border-right: 4px solid var(--accent-teal);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(182, 129, 7, 0.05) 100%
  );
}

/* Features & Services Grid */
.about-us-section {
  background-color: #fcfdfe;
}
.img-premium {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}
.img-premium:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.about-card-main {
  background-color: #050a30;
  height: 500px;
  width: 100%;
}

.trust-badge-float {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background-color: var(--secondary-orange);
  color: var(--neutral-white);
  border-radius: 12px;
  width: 240px;
}

.approach-container {
  background-color: var(--bg-light);
}
.accent-line {
  height: 4px;
  background-color: var(--secondary-orange);
  width: 100%;
}
.border-end {
  border-color: #dee2e6 !important;
}

.why-choose-us {
  background-color: var(--bg-light);
}

.feature-card {
  background-color: var(--neutral-white);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06) !important;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(182, 129, 7, 0.1);
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
}

.highlight-border {
  border-left: 5px solid var(--secondary-orange) !important;
}

.services-section {
  background-color: var(--neutral-white);
}
.title-line {
  width: 60px;
  height: 4px;
  background-color: var(--secondary-orange);
  margin-top: 15px;
}

.service-card {
  border: 1px solid #f1f1f1;
  background-color: var(--neutral-white);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--secondary-orange);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05) !important;
}

.service-icon {
  font-size: 2rem;
  color: var(--secondary-orange);
}
.icon-teal {
  color: var(--accent-teal);
}
.border-teal {
  border-bottom: 3px solid var(--accent-teal);
}

/* ==========================================================================
   7. INDUSTRY EXPERTISE & PRICING
   ========================================================================== */
.industries-serve-section {
  background-color: var(--primary-charcoal);
}
.industries-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
}

.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  will-change: transform;
}

.industry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: var(--transition-smooth);
}

.industry-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(38, 50, 56, 0) 0%,
    rgba(38, 50, 56, 1) 100%
  );
}

.main-industry-card,
.small-industry-card {
  height: 400px;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.industry-card:hover .industry-img {
  filter: brightness(0.9);
  transform: scale(1.05);
}

.more-industries-box {
  background: rgba(255, 255, 255, 0.03);
  border: 2px dashed rgba(255, 255, 255, 0.1);
}

/* Pricing Grid Architecture */
.package-card {
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  background-color: var(--neutral-white);
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
}
.package-features li {
  padding: 8px 0;
  font-size: 0.95rem;
}

.border-highlight {
  border-color: var(--secondary-orange) !important;
  transform: scale(1.05);
  z-index: 2;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary-orange);
  color: var(--neutral-white);
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}

/* ==========================================================================
   8. REAL ESTATE NYANCE & PROCESS TIMELINE
   ========================================================================== */
.real-estate-focus {
  background-color: #fcfdfe;
  border-top: 1px solid #eee;
}
.focus-headline {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--primary-charcoal);
}

.benefit-icon {
  background-color: rgba(182, 129, 7, 0.1);
  color: var(--accent-teal);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.real-estate-visual {
  border-left: 8px solid var(--primary-charcoal);
  position: relative;
}
.overlay-card {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, var(--primary-charcoal));
}

.pulse-icon {
  width: 12px;
  height: 12px;
  background-color: var(--accent-teal);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(182, 129, 7, 0.4);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(182, 129, 7, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(182, 129, 7, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(182, 129, 7, 0);
  }
}

/* Process Section & Responsive Grid */
.process-section {
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .col-lg-2-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.process-wrapper {
  position: relative;
}
.process-line {
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #ddd 0,
    #ddd 10px,
    transparent 10px,
    transparent 20px
  );
  z-index: 1;
}

.step-number,
.step-number-active {
  width: 80px;
  height: 80px;
  line-height: 76px;
  border-radius: 50%;
  margin: 0 auto;
  font-weight: 800;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.step-number {
  background-color: var(--neutral-white);
  border: 2px solid #ddd;
  color: #ddd;
}
.step-number-active {
  background-color: var(--accent-teal);
  border: 2px solid var(--accent-teal);
  color: var(--neutral-white);
  box-shadow: 0 10px 20px rgba(182, 129, 7, 0.3);
}

.step-card:hover .step-number {
  border-color: var(--secondary-orange);
  color: var(--secondary-orange);
  transform: translateY(-5px);
}

/* ==========================================================================
   9. CALL TO ACTION & FOOTER
   ========================================================================== */
.cta-section {
  background-color: var(--neutral-white);
}
.cta-box {
  background-color: var(--primary-charcoal);
  color: var(--neutral-white);
  position: relative;
  overflow: hidden;
}
.cta-headline {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
}
.cta-text {
  font-size: 1.25rem;
  opacity: 0.85;
}

.cta-circle {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--accent-teal);
  opacity: 0.1;
  border-radius: 50%;
  pointer-events: none;
}

.footer-main {
  background-color: #1a2327;
}
.footer-links li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition-smooth);
  line-height: 2.2;
}

.footer-links li a:hover {
  color: var(--secondary-orange);
  padding-left: 5px;
}

.social-links a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--neutral-white);
  margin-right: 10px;
  transition: var(--transition-smooth);
}

.social-links a:hover {
  background: var(--accent-teal);
  transform: translateY(-3px);
}

/* ==========================================================================
   10. FLOATING INTERACTION SYSTEM (FAB)
   ========================================================================== */
.fab-wrapper {
  position: fixed;
  bottom: 25px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.fab-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-white);
  text-decoration: none;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: var(--transition-bounce);
  will-change: transform;
}

.fab-btn:hover {
  transform: scale(1.15);
  color: var(--neutral-white);
}

.fab-whatsapp {
  background-color: #25d366;
}
.fab-call {
  background-color: var(--secondary-orange);
}
.fab-email {
  background-color: var(--accent-teal);
}
.fab-top {
  background-color: var(--primary-charcoal);
  border: none;
  display: none;
}
/* ==========================================================================
   MODELS GALLERY SECTION & LIGHTBOX (Pure CSS)
   ========================================================================== */
.gallery-section {
  padding: 100px 0;
  background-color: var(--neutral-white);
}

.gallery-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 15px auto 0 auto;
}

/* Gallery Layout Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 15px;
}

/* Individual Gallery Item Container */
.gallery-item {
  text-decoration: none;
  display: block;
  outline: none;
}

.gallery-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: var(--primary-charcoal);
  height: 380px;
  transform: translateY(0);
  transition: var(--transition-smooth);
  will-change: transform, box-shadow;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

/* Interactive Hover States */
.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(38, 50, 56, 0.2) 0%,
    rgba(38, 50, 56, 0.95) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-view-icon {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: var(--neutral-white);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-meta h4 {
  color: var(--neutral-white);
  font-size: 1.35rem;
  margin-bottom: 4px;
  font-weight: 700;
}

.gallery-meta p {
  color: var(--secondary-orange);
  font-size: 0.9rem;
  margin-bottom: 0;
  font-weight: 500;
}

/* Hover Micro-interactions */
.gallery-item:hover .gallery-img-wrapper {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(38, 50, 56, 0.2);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-hover-overlay {
  opacity: 1;
}

/* ==========================================================================
   PURE CSS LIGHTBOX SYSTEM ARCHITECTURE
   ========================================================================== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Close background clicking mechanism */
.lightbox-close-zone {
  position: absolute;
  inset: 0;
  cursor: default;
  z-index: 1;
}

/* Activated State via CSS Anchor Triggers (:target) */
.lightbox-overlay:target {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  background-color: var(--primary-charcoal);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.2);
}

.lightbox-overlay:target .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  display: block;
}

/* UI Elements Inside Lightbox */
.lightbox-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.5rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  z-index: 5;
}

.lightbox-close-btn:hover {
  color: var(--secondary-orange);
  transform: scale(1.1);
}

.lightbox-caption {
  padding: 25px 30px;
  background-color: var(--primary-charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-caption h3 {
  color: var(--neutral-white);
  margin-bottom: 5px;
  font-size: 1.5rem;
}

.lightbox-caption p {
  color: #b0bec5;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Responsive Adaptive Tweak */
@media (max-width: 576px) {
  .gallery-img-wrapper {
    height: 320px;
  }
  .lightbox-caption {
    padding: 15px 20px;
  }
  .lightbox-caption h3 {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   11. COMPREHENSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 991px) {
  .trust-badge-float {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: -50px;
    width: 100%;
  }
  .border-highlight {
    transform: scale(1);
    margin: 20px 0;
  }
  .cta-box {
    padding: 40px 20px !important;
  }
}
