:root {
  --primary-color: #000000;
  --secondary-color: #FFD700;
  --accent-color: #FFD700;
  --light-color: #FFFFFF;
  --dark-color: #000000;
  --text-color: #333333;
  --heading-color: #000000;
  --gradient-bg: linear-gradient(135deg, #FFD700, #D4AF37);
  --h1-fluid: clamp(2.5rem, 5vw + 1rem, 3.5rem);
  --h2-fluid: clamp(2rem, 4vw + 1rem, 2.5rem);
  --h3-fluid: clamp(1.5rem, 3vw + 1rem, 2rem);
  --body-fluid: clamp(16px, 2.5vw, 18px);
  --small-fluid: clamp(12px, 2vw, 14px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
  line-height: 1.7;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

h1 {
  font-size: var(--h1-fluid);
}

h2 {
  font-size: var(--h2-fluid);
}

h3 {
  font-size: var(--h3-fluid);
}

p,
.lead,
.card-text {
  font-size: var(--body-fluid);
  line-height: 1.7;
}

.footer-links li a,
footer p {
  font-size: var(--small-fluid);
}

.hover-gold {
  transition: color 0.2s ease-in-out;
}

.hover-gold:hover {
  color: var(--secondary-color) !important;
}

.btn {
  min-width: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--body-fluid);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  will-change: transform;
}

.btn-primary {
  background: var(--gradient-bg);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.5);
  color: var(--primary-color);
}

.btn-outline-primary {
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.navbar {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  will-change: transform;
  contain: layout style;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
}

.navbar-brand img {
  height: 50px;
  transition: transform 0.3s;
  width: auto;
}

.navbar-brand:hover img {
  transform: scale(1.1) rotate(5deg);
}

.nav-link {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-color) !important;
  transition: color 0.3s ease, transform 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--secondary-color) !important;
  transform: translateY(-2px);
}

/* ==================== DROPDOWN & MEGA MENU STYLES ==================== */
.dropdown-menu {
  background: #111827 !important;
  border: 1px solid rgba(255, 215, 0, 0.3) !important;
  border-radius: 14px !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.15) !important;
  padding: 12px !important;
  z-index: 1050;
}

.dropdown-item {
  color: #E5E7EB !important;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 8px 12px !important;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-item i {
  color: #FFD700;
  width: 18px;
  text-align: center;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(255, 215, 0, 0.15) !important;
  color: #FFD700 !important;
  transform: translateX(4px);
}

.dropdown-item:hover i {
  transform: scale(1.2);
}

.dropdown-divider {
  border-color: rgba(255, 255, 255, 0.12) !important;
  margin: 6px 0 !important;
}

.dropdown-header-custom {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFD700;
  font-weight: 700;
  padding: 6px 12px 4px;
}

/* Mega Dropdown for Services */
.mega-dropdown-menu {
  min-width: 820px !important;
  padding: 20px !important;
}

.mega-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mega-col-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #FFD700;
  font-weight: 700;
  margin-bottom: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

@media (max-width: 991.98px) {
  .mega-dropdown-menu {
    min-width: 100% !important;
    box-shadow: none !important;
    border: 1px solid rgba(255, 215, 0, 0.15) !important;
    background: #111827 !important;
    margin-top: 8px !important;
  }
  .mega-dropdown-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url('../images/hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 180px 0 150px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  contain: layout style;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(212, 175, 55, 0.1));
  z-index: 1;
}


.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.floating-element {
  position: absolute;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  width: 60px;
  height: 60px;
  top: 80%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  @keyframes float {
    0%, 100% {
      transform: none;
    }
    50% {
      transform: none;
    }
  }
}

.stat-section {
  background: var(--gradient-bg);
  color: var(--primary-color);
  padding: 80px 0;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  contain: layout style paint;
}

.stat-box {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s;
  height: 100%;
  backdrop-filter: blur(10px);
}

.stat-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-box h3 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
  height: 100%;
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  position: relative;
  z-index: 1;
  contain: layout style paint;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-bg);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.5);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary-color);
  font-size: 35px;
  box-shadow: 0 5px 12px rgba(255, 215, 0, 0.4);
  transition: transform 0.3s;
}

.service-card:hover .service-icon {
  transform: rotate(360deg) scale(1.1);
}

.contact-section {
  background: var(--primary-color);
  color: white;
  padding: 100px 0;
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 80px 0 30px;
  position: relative;
}

.footer-logo {
  height: 60px;
  transition: transform 0.3s;
  width: auto;
}

.footer-logo:hover {
  transform: scale(1.1) rotate(5deg);
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--gradient-bg);
  transform: translateY(-5px) rotate(10deg) scale(1.1);
  color: var(--primary-color);
}

.back-to-top-footer {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-bg);
  color: var(--primary-color);
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.back-to-top-footer:hover {
  transform: scale(1.15) rotate(90deg);
  background: #FFA500;
}

.trust-badges {
  background: var(--light-color);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.badge-item {
  text-align: center;
  padding: 20px;
}

.badge-icon {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.faq-question {
  background: var(--gradient-bg);
  color: var(--primary-color);
  padding: 15px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  border: none;
  text-align: left;
}

.faq-question:hover {
  background: linear-gradient(135deg, #D4AF37, #FFD700);
}

.faq-answer {
  padding: 20px;
  background: white;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.yarverse-badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.1);
  color: #B8860B;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

img {
  max-width: 100%;
  height: auto;
  content-visibility: auto;
}

/* =========================================
   NEW ADDTIONS FOR IFRAME & RESPONSIVENESS
   ========================================= */

.iframe-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: #f8f9fa;
  margin-bottom: 20px;
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Enhancing accessibility focus states */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
}

/* =========================================
   COOKIE CONSENT & PWA STYLES
   ========================================= */

.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: white;
  padding: 20px 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: bottom 0.5s ease;
}

.cookie-consent.show {
  bottom: 0;
}

.pwa-install-prompt {
  display: none;
  /* Controlled by JS */
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 15px 20px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 9998;
  text-align: center;
  border: 2px solid var(--secondary-color);
  min-width: 300px;
}

.pwa-install-prompt p {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Toast Notification Styles (Fallback/Enhancement) */
.toast-notification {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-clients {
  margin-top: 0;
  margin-bottom: 24px;
}

.client-logos {
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logos img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: contain;
  margin-left: -10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.client-logos img:hover {
  transform: translateY(-3px) scale(1.1);
  z-index: 2;
}

.client-logos img:first-child {
  margin-left: 0;
}

.client-trust-text {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-top: 8px;
  margin-bottom: 0;
}

.client-count-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-bg);
  color: var(--primary-color);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
  position: relative;
}

/* Enhanced Review/Iframe Section */
.iframe-container {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iframe-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .iframe-container {
    padding-top: 100%;
    /* Taller aspect ratio for mobile readability */
  }
}

/* Testimonial Carousel Styles */
.testimonial-carousel .carousel-control-prev-icon,
.testimonial-carousel .carousel-control-next-icon {
  background-color: var(--secondary-color);
  padding: 15px;
  background-size: 50% 50%;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.testimonial-carousel .carousel-indicators [data-bs-target] {
  background-color: var(--secondary-color);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  margin: 0 5px;
  opacity: 0.6;
}

.testimonial-carousel .carousel-indicators .active {
  background-color: var(--primary-color);
  opacity: 1;
  transform: scale(1.2);
}

/* Slower Carousel Transition */
.carousel-item {
  transition: transform 1.2s ease-in-out;
}




.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #ddd8d8;
}

.contact-btn svg {
  flex-shrink: 0;
}

.whatsapp-btn {
  background: #FFD700;
  color: #000000;
}

.email-btn {
  background: #0d6efd;
}

.phone-btn {
  background: #212529;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  color: #fff;
}
/* =============== ANIMATED COUNTER STYLING =============== */
.stat-counter {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--secondary-color);
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  transition: all 0.3s ease;
  min-width: fit-content;
}

.stat-counter.animated {
  animation: counterComplete 0.3s ease;
}

@keyframes counterComplete {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.stat-box {
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(255, 215, 0, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.stat-box:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-5px);
}

.stat-box p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--text-color);
  margin-top: 0.75rem;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .stat-counter {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  .stat-box {
    padding: 1.25rem 0.75rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .stat-counter {
    font-size: clamp(1.25rem, 4vw, 2rem);
  }

  .stat-box {
    padding: 1rem 0.5rem;
  }

  .stat-box p {
    font-size: 0.9rem;
  }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .stat-counter,
  .stat-counter.animated,
  .stat-box {
    animation: none;
    transition: none;
  }
}


.hero1-section {
  /* Background Image + Gradient Overlay */
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)),
                    url('../images/Privacy-Policy-Hero-Image.webp');
  background-size: cover;          /* Cover full area */
  background-position: center;     /* Center the image */
  background-repeat: no-repeat;    /* No repetition */
  
  /* Mobile-safe: Avoid fixed background issues */
  background-attachment: scroll;   /* Mobile-friendly; fixed causes issues */

  /* Layout */
  color: #fff;
  padding: 150px 20px 100px;       /* Top padding slightly reduced for mobile */
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;         /* Center content horizontally */
  text-align: center;              /* Center text for hero */

  /* Optional: Smooth overlay transition for scroll */
  transition: background 0.5s ease-in-out;
}

/* Responsive Tweaks */
@media (max-width: 1200px) {
  .hero1-section {
    padding: 120px 20px 80px;
  }
}

@media (max-width: 768px) {
  .hero1-section {
    padding: 100px 15px 60px;
    background-attachment: scroll; /* Ensure mobile shows correctly */
  }
}

@media (max-width: 480px) {
  .hero1-section {
    padding: 80px 10px 50px;
    background-size: cover;        /* Cover entire mobile viewport */
  }
}

/* ==================== ADVANCED PWA INSTALLATION STYLES ==================== */
.pwa-install-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 32px);
  max-width: 450px;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.15);
  z-index: 99999;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: #FFFFFF;
}

.pwa-install-banner.show {
  transform: translateX(-50%) translateY(0);
}

.pwa-banner-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pwa-banner-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid #FFD700;
  flex-shrink: 0;
}

.pwa-banner-info {
  flex: 1;
  min-width: 0;
}

.pwa-banner-title {
  font-size: 1rem;
  font-weight: 700;
  color: #FFD700;
  margin: 0 0 2px 0;
  line-height: 1.2;
}

.pwa-banner-desc {
  font-size: 0.8rem;
  color: #D1D5DB;
  margin: 0;
  line-height: 1.3;
}

.pwa-banner-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.pwa-btn-install {
  flex: 1;
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  color: #000000;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50px;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 40px;
}

.pwa-btn-install:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.pwa-btn-dismiss {
  background: rgba(255, 255, 255, 0.1);
  color: #9CA3AF;
  font-size: 0.85rem;
  border-radius: 50px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  min-height: 40px;
  transition: background 0.2s ease;
}

.pwa-btn-dismiss:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #FFF8DC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.inner-hero {
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.88) 0%, rgba(11, 15, 25, 0.95) 100%), url('/assets/images/hero.webp') center center / cover no-repeat;
  color: #FFFFFF;
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(255, 215, 0, 0.25);
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255, 215, 0, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.bg-black-footer {
  background-color: #000000 !important;
  color: #E5E7EB;
  border-top: 3px solid #FFD700;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-item a {
  color: #D1D5DB;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: #FFD700;
}

.breadcrumb-item.active {
  color: #FFD700;
  font-weight: 600;
}

.card-hover-effect {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.15) !important;
}

.card-hover-effect:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12), 0 0 15px rgba(255, 215, 0, 0.1) !important;
  border-color: rgba(255, 215, 0, 0.4) !important;
}

/* iOS Safari PWA Install Modal / Sheet */
.ios-pwa-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ios-pwa-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.ios-pwa-modal {
  width: 100%;
  max-width: 500px;
  background: #111827;
  border-top: 2px solid #FFD700;
  border-radius: 28px 28px 0 0;
  padding: 24px 20px 32px;
  color: #FFFFFF;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
  position: relative;
}

.ios-pwa-modal-overlay.show .ios-pwa-modal {
  transform: translateY(0);
}

.ios-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ios-modal-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFD700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ios-modal-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #FFFFFF;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ios-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ios-step-num {
  background: #FFD700;
  color: #000000;
  font-weight: 800;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.ios-step-text {
  font-size: 0.9rem;
  color: #E5E7EB;
  line-height: 1.4;
}

.ios-icon-badge {
  background: rgba(255, 215, 0, 0.2);
  color: #FFD700;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

