/* Care My Car Dark Automotive Theme – Global Styles */

/* ===========================================
   CSS VARIABLES
   =========================================== */
:root {
  --cmcc-dark: #050608;
  --cmcc-dark-soft: #0d0f12;
  --cmcc-dark-lighter: #151820;
  --cmcc-red: #b01e2c;
  --cmcc-red-light: #d32535;
  --cmcc-red-dark: #8a1722;
  --cmcc-yellow: #ffd75a;
  --cmcc-light: #f8f9fa;
  --cmcc-light-soft: #cfd3da;
  --cmcc-gray: #6c757d;
}

/* ===========================================
   BASE & TYPOGRAPHY
   =========================================== */
html,
body {
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--cmcc-dark);
  color: var(--cmcc-light);
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  direction: rtl;
  text-align: right;
}

/* Prevent horizontal scroll on all containers */
.site-wrapper {
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
  padding-top: 60px !important;
}

@media (max-width: 991.98px) {
  .site-wrapper {
    padding-top: 55px !important;
  }
}

@media (max-width: 575.98px) {
  .site-wrapper {
    padding-top: 50px !important;
  }
}

.bg-dark-deep { background-color: var(--cmcc-dark); }
.bg-dark-soft { background-color: var(--cmcc-dark-soft); }
.text-light-soft { color: var(--cmcc-light-soft); }
.text-accent-red { color: var(--cmcc-red); }
.bg-accent-red { background-color: var(--cmcc-red); }
.border-accent-red { border-color: var(--cmcc-red) !important; }
.accent-yellow { color: var(--cmcc-yellow); }

a { 
  color: var(--cmcc-red); 
  transition: color 0.2s ease; 
  text-decoration: none; 
}
a:hover { 
  color: var(--cmcc-red-light); 
  text-decoration: none; 
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn-accent-red {
  background: linear-gradient(135deg, var(--cmcc-red) 0%, var(--cmcc-red-dark) 100%);
  border: none;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-accent-red::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-accent-red:hover {
  background: linear-gradient(135deg, var(--cmcc-red-light) 0%, var(--cmcc-red) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 43, 61, 0.4);
}

.btn-accent-red:hover::before {
  left: 100%;
}

.btn-glow {
  box-shadow: 0 0 20px rgba(255, 43, 61, 0.4);
}

.btn-outline-accent-red {
  border: 2px solid var(--cmcc-red);
  color: var(--cmcc-red);
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-accent-red:hover {
  background: var(--cmcc-red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 43, 61, 0.3);
}

.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

/* ===========================================
   UTILITIES
   =========================================== */
.bg-glass-dark {
  background: rgba(5, 6, 8, 0.85);
  backdrop-filter: blur(12px);
}

.shadow-soft {
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.75);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.tracking-wide {
  letter-spacing: 0.1em;
}

/* ===========================================
   HEADER
   =========================================== */
/* ===========================================
   HEADER - Clean Design from Scratch
   =========================================== */
.cmcc-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1040;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.9) 0%, rgba(5, 6, 8, 0.8) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  padding: 1rem 0;
  min-height: 77px;
}

.cmcc-header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cmcc-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.cmcc-logo-img {
  height: 54px;
  width: auto;
  max-width: 192px;
  object-fit: contain;
  display: block;
}

.cmcc-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1050;
}

.cmcc-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.cmcc-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
  justify-content: center;
}

.cmcc-nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cmcc-nav-menu li {
  margin: 0;
}

.cmcc-nav-menu a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  position: relative;
}

.cmcc-nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--cmcc-red);
  transition: width 0.3s ease;
}

.cmcc-nav-menu a:hover,
.cmcc-nav-menu .current-menu-item a {
  color: var(--cmcc-red);
}

.cmcc-nav-menu a:hover::after,
.cmcc-nav-menu .current-menu-item a::after {
  width: 100%;
}


.cmcc-header-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.cmcc-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cmcc-whatsapp-btn:hover {
  background: #20BA5A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.cmcc-whatsapp-btn i {
  font-size: 1rem;
}

.cmcc-header-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.cmcc-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cmcc-whatsapp-btn:hover {
  background: #20BA5A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.cmcc-whatsapp-btn i {
  font-size: 1rem;
}


.cmcc-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cmcc-red);
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cmcc-book-btn:hover {
  background: var(--cmcc-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(211, 20, 27, 0.4);
  color: #fff;
}

.cmcc-book-btn i {
  font-size: 1rem;
}

/* Mobile Styles */
@media (max-width: 991.98px) {
  .cmcc-header {
    padding: 0.85rem 0;
    min-height: 67px;
  }
  
  .cmcc-header-container {
    padding: 0 1rem;
    gap: 1rem;
  }
  
  .cmcc-logo-img {
    height: 48px;
    max-width: 168px;
  }
  
  .cmcc-menu-toggle {
    display: flex;
  }
  
  .cmcc-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: rgba(5, 6, 8, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
  }
  
  .cmcc-nav.active {
    transform: translateX(0);
  }
  
  .cmcc-nav-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    padding: 1.5rem 0;
    align-items: stretch;
    justify-items: center;
  }
  
  .cmcc-nav-menu li {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    position: relative;
  }
  
  .cmcc-nav-menu a {
    width: 100%;
    padding: 1.25rem 1rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    min-height: 110px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    gap: 0.75rem;
  }
  
  /* Icon styling - using li::before so it doesn't conflict with a::before */
  .cmcc-nav-menu li[data-icon] a {
    padding-top: 1.5rem;
  }
  
  .cmcc-nav-menu li[data-icon]::before {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'bootstrap-icons';
    font-size: 2rem;
    color: var(--cmcc-red);
    transition: all 0.3s ease;
    position: absolute;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    line-height: 1;
    width: auto;
    height: auto;
    pointer-events: none;
  }
  
  /* Add icons using data-icon attribute */
  .cmcc-nav-menu li[data-icon="bi-house-fill"]::before {
    content: '\f479';
  }
  
  .cmcc-nav-menu li[data-icon="bi-star-fill"]::before {
    content: '\f586';
  }
  
  .cmcc-nav-menu li[data-icon="bi-grid-3x3-gap-fill"]::before {
    content: '\f2d1';
  }
  
  .cmcc-nav-menu li[data-icon="bi-award-fill"]::before {
    content: '\f1c3';
  }
  
  .cmcc-nav-menu li[data-icon="bi-building"]::before {
    content: '\f1c7';
  }
  
  .cmcc-nav-menu li[data-icon="bi-info-circle-fill"]::before {
    content: '\f431';
  }
  
  .cmcc-nav-menu li[data-icon="bi-newspaper"]::before {
    content: '\f4e5';
  }
  
  .cmcc-nav-menu li[data-icon="bi-images"]::before {
    content: '\f42b';
  }
  
  .cmcc-nav-menu li[data-icon="bi-telephone-fill"]::before {
    content: '\f5e3';
  }
  
  .cmcc-nav-menu a i {
    font-size: 2rem;
    color: var(--cmcc-red);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
  }
  
  .cmcc-nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 43, 61, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
  }
  
  .cmcc-nav-menu a span,
  .cmcc-nav-menu a {
    position: relative;
    z-index: 1;
  }
  
  .cmcc-nav-menu a::after {
    display: none;
  }
  
  .cmcc-nav-menu a:hover,
  .cmcc-nav-menu .current-menu-item a {
    color: #fff;
    background: linear-gradient(145deg, rgba(255, 43, 61, 0.15) 0%, rgba(255, 43, 61, 0.08) 100%);
    border-color: rgba(255, 43, 61, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 43, 61, 0.2);
  }
  
  .cmcc-nav-menu a:hover::before {
    opacity: 1;
  }
  
  .cmcc-nav-menu a:hover i,
  .cmcc-nav-menu li[data-icon]:hover::before {
    color: var(--cmcc-red-light);
    transform: translateX(-50%) scale(1.1);
  }
  
  .cmcc-header-buttons {
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    gap: 0.75rem;
    margin-top: 1.5rem;
    justify-content: center;
  }
  
  .cmcc-whatsapp-btn,
  .cmcc-book-btn {
    flex: 1;
    max-width: calc(50% - 0.375rem);
    justify-content: center;
    padding: 1rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    min-height: 52px;
  }
  
  .cmcc-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .cmcc-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .cmcc-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

@media (max-width: 575.98px) {
  .cmcc-header {
    padding: 0.7rem 0;
    min-height: 58px;
  }
  
  .cmcc-header-container {
    padding: 0 0.75rem;
  }
  
  .cmcc-logo-img {
    height: 43px;
    max-width: 156px;
  }
  
  .cmcc-nav {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem 1rem;
  }
  
  .cmcc-nav-menu {
    gap: 0.75rem;
    padding: 1.25rem 0;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cmcc-nav-menu a {
    padding: 1rem 0.75rem;
    font-size: 0.9rem;
    min-height: 100px;
  }
  
  .cmcc-nav-menu a i {
    font-size: 1.75rem;
    margin-bottom: 0.4rem;
  }
  
  .cmcc-nav-menu li[data-icon]::before {
    font-size: 1.75rem;
    top: 1rem;
  }
  
  .cmcc-header-buttons {
    flex-direction: row;
    max-width: 100%;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
  }
  
  .cmcc-whatsapp-btn,
  .cmcc-book-btn {
    flex: 1;
    max-width: calc(50% - 0.25rem);
    padding: 0.85rem 0.75rem;
    font-size: 0.9rem;
    min-height: 48px;
  }
}

/* ===========================================
   SITE WRAPPER
   =========================================== */
.site-main { 
  min-height: 60vh; 
  overflow-x: hidden;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 6, 8, 0.75) 0%,
    rgba(5, 6, 8, 0.5) 40%,
    rgba(5, 6, 8, 0.85) 100%
  );
  z-index: 1;
}

/* Hero Glow Effects */
.hero-glow-effects {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
}

.glow-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--cmcc-red);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.glow-orb-2 {
  width: 300px;
  height: 300px;
  background: var(--cmcc-red-dark);
  bottom: 20%;
  right: 15%;
  animation-delay: 2s;
}

.glow-orb-3 {
  width: 200px;
  height: 200px;
  background: var(--cmcc-yellow);
  top: 50%;
  right: 30%;
  opacity: 0.2;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Hero Content */
.hero-content { z-index: 2; max-width: 900px; }

/* Animated Text */
.text-glow {
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.text-glow-red {
  text-shadow: 0 0 60px rgba(255, 43, 61, 0.6), 0 0 120px rgba(255, 43, 61, 0.4);
}

.animate-text-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: textReveal 0.8s ease forwards;
}

@keyframes textReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-down {
  animation: fadeInDown 0.6s ease forwards;
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Features */
.hero-feature {
  background: rgba(255, 255, 255, 0.06);
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.hero-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
  font-size: 1rem;
}

/* Hero CTA Buttons Container */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-ctas .btn {
  min-width: 160px;
}

/* Scroll Mouse Indicator */
.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
  margin: 0 auto;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--cmcc-red);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* ===========================================
   WHY CHOOSE US - MODERN CARDS
   =========================================== */
/* ===========================================
   WHY CHOOSE US - 4 GRID PREMIUM LAYOUT
   =========================================== */
.why-cmcc-section {
  position: relative;
  overflow: hidden;
  padding-top: 2rem !important;
  padding-bottom: 6rem !important;
  margin-top: 0;
}

.why-cmcc-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(176, 30, 44, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(176, 30, 44, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(176, 30, 44, 0.02) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.why-cmcc-section .container {
  position: relative;
  z-index: 1;
}

.why-cmcc-section .badge {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(176, 30, 44, 0.3);
}

.why-cmcc-section h2 {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.why-cmcc-section .lead {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

.why-cards-grid {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
}

.why-cards-grid > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

/* Premium Why Card */
.why-card-premium {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.why-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.why-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--cmcc-red) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 3;
}

.why-card-inner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(176, 30, 44, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.why-card-hover-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(176, 30, 44, 0.12) 0%, rgba(176, 30, 44, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 28px;
  pointer-events: none;
  z-index: 1;
}

.why-card-premium:hover .why-card-inner {
  transform: translateY(-16px);
  border-color: rgba(176, 30, 44, 0.5);
  box-shadow: 
    0 32px 80px rgba(176, 30, 44, 0.25),
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(176, 30, 44, 0.2) inset,
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.why-card-premium:hover .why-card-inner::before {
  opacity: 1;
  height: 4px;
}

.why-card-premium:hover .why-card-inner::after {
  opacity: 1;
}

.why-card-premium:hover .why-card-hover-effect {
  opacity: 1;
}

/* Icon Wrapper */
.why-card-icon-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.why-card-icon {
  position: relative;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--cmcc-red) 0%, var(--cmcc-red-dark) 100%);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 2;
  box-shadow: 
    0 12px 35px rgba(176, 30, 44, 0.4),
    0 4px 12px rgba(176, 30, 44, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.why-card-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--cmcc-red-light), var(--cmcc-red));
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
  filter: blur(8px);
}

.why-card-icon i {
  font-size: 2.25rem;
  color: #fff;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.why-card-icon-glow {
  position: absolute;
  inset: -15px;
  background: radial-gradient(circle, rgba(176, 30, 44, 0.5) 0%, rgba(176, 30, 44, 0.2) 50%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: scale(0.7);
  z-index: 1;
  filter: blur(10px);
}

.why-card-premium:hover .why-card-icon {
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 
    0 20px 50px rgba(176, 30, 44, 0.6),
    0 8px 20px rgba(176, 30, 44, 0.4),
    0 0 0 2px rgba(176, 30, 44, 0.3) inset;
  border-radius: 24px;
}

.why-card-premium:hover .why-card-icon::before {
  opacity: 0.6;
}

.why-card-premium:hover .why-card-icon i {
  transform: scale(1.15) rotate(8deg);
}

.why-card-premium:hover .why-card-icon-glow {
  opacity: 1;
  transform: scale(1.3);
  animation: pulse-glow-enhanced 2.5s ease-in-out infinite;
}

@keyframes pulse-glow-enhanced {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

/* Card Content */
.why-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.why-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.3;
  transition: all 0.4s ease;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.why-card-premium:hover .why-card-title {
  color: var(--cmcc-red-light);
  transform: translateX(4px);
}

.why-card-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
  transition: all 0.4s ease;
}

.why-card-premium:hover .why-card-desc {
  color: rgba(255, 255, 255, 0.95);
  transform: translateX(2px);
}

/* Synchronized Animation on Scroll */
.why-card-premium {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.why-card-premium.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .why-cmcc-section h2 {
    font-size: 2.5rem;
  }

  .why-card-inner {
    padding: 2.5rem 2rem;
    min-height: 340px;
  }

  .why-card-icon-wrapper {
    width: 85px;
    height: 85px;
    margin-bottom: 1.75rem;
  }

  .why-card-icon {
    width: 85px;
    height: 85px;
    border-radius: 20px;
  }

  .why-card-icon i {
    font-size: 2rem;
  }

  .why-card-title {
    font-size: 1.4rem;
    margin-bottom: 1.15rem;
  }

  .why-card-desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 991.98px) {
  .why-cmcc-section {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .why-cmcc-section h2 {
    font-size: 2.25rem;
  }

  .why-cards-grid {
    margin-top: 2.5rem;
  }
  
  .why-cards-grid > [class*="col-"] {
    margin-bottom: 0;
  }

  .why-card-inner {
    padding: 2.25rem 2rem;
    min-height: 320px;
    border-radius: 24px;
  }

  .why-card-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }

  .why-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
  }

  .why-card-icon i {
    font-size: 1.85rem;
  }

  .why-card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .why-card-desc {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .why-card-premium:hover .why-card-inner {
    transform: translateY(-12px);
  }
}

@media (max-width: 767.98px) {
  .why-cmcc-section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .why-cmcc-section h2 {
    font-size: 2rem;
    margin-bottom: 0.875rem;
  }

  .why-cmcc-section .lead {
    font-size: 1rem;
  }

  .why-cards-grid {
    margin-top: 2rem;
  }
  
  .why-cards-grid > [class*="col-"] {
    margin-bottom: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .why-card-inner {
    padding: 2rem 1.75rem;
    min-height: 300px;
    border-radius: 22px;
  }

  .why-card-icon-wrapper {
    width: 75px;
    height: 75px;
    margin-bottom: 1.5rem;
  }

  .why-card-icon {
    width: 75px;
    height: 75px;
    border-radius: 18px;
  }

  .why-card-icon i {
    font-size: 1.75rem;
  }

  .why-card-title {
    font-size: 1.2rem;
    margin-bottom: 0.875rem;
  }

  .why-card-desc {
    font-size: 0.875rem;
    line-height: 1.65;
  }

  .why-card-premium:hover .why-card-inner {
    transform: translateY(-10px);
  }
}

@media (max-width: 575.98px) {
  .why-cmcc-section {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .why-cmcc-section h2 {
    font-size: 1.75rem;
  }

  .why-cmcc-section .badge {
    font-size: 0.75rem;
    padding: 0.5rem 1.25rem;
  }

  .why-cards-grid {
    margin-top: 1.75rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .why-cards-grid .col-md-6,
  .why-cards-grid .col-6 {
    margin-bottom: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .why-cards-grid > [class*="col-"] {
    margin-bottom: 1rem;
  }

  .why-card-inner {
    padding: 1.75rem 1.5rem;
    min-height: 280px;
    border-radius: 20px;
  }

  .why-card-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
  }

  .why-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
  }

  .why-card-icon i {
    font-size: 1.6rem;
  }

  .why-card-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .why-card-desc {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .why-card-premium:hover .why-card-inner {
    transform: translateY(-8px);
  }
}

/* ===========================================
   SERVICES – ADVANCED FLIP CARDS
   =========================================== */
.service-card-advanced {
  perspective: 1000px;
  height: 380px;
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.service-card-advanced:hover .service-card-inner {
  transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
}

.service-card-front {
  background: var(--cmcc-dark-lighter);
}

.service-card-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.service-card-advanced:hover .service-card-image {
  transform: scale(1.1);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 6, 8, 0.95) 100%);
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  text-align: center;
}

.service-icon-badge {
  width: 56px;
  height: 56px;
  background: var(--cmcc-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 25px rgba(255, 43, 61, 0.4);
}

.service-icon-badge i {
  font-size: 1.5rem;
  color: #fff;
}

.service-card-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-card-hint {
  color: var(--cmcc-light-soft);
  font-size: 0.85rem;
  opacity: 0.7;
}

.service-card-back {
  background: linear-gradient(145deg, #d42839 0%, #a01525 50%, #7a1020 100%);
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-back-content {
  padding: 1.75rem;
  text-align: center;
}

.service-back-icon {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.service-card-back h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem !important;
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.service-card-back p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: 1.25rem !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.service-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.service-card-actions .btn {
  border-radius: 50px;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.service-card-actions .btn-light {
  background: #fff;
  color: var(--cmcc-red);
  border: 2px solid #fff;
}

.service-card-actions .btn-light:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: scale(1.03);
}

.service-card-actions .btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.service-card-actions .btn-outline-light:hover {
  background: #fff;
  color: var(--cmcc-red);
  border-color: #fff;
  transform: scale(1.03);
}

/* Keep desktop flip cards as-is */
@media (min-width: 768px) {
  .service-card-advanced {
    height: 380px;
  }
}

/* ===========================================
   EXPERIENCE SECTION
   =========================================== */
.experience-section {
  position: relative;
}

.experience-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.experience-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 6, 8, 0.97) 0%, rgba(5, 6, 8, 0.85) 50%, rgba(5, 6, 8, 0.7) 100%);
}

.experience-stats {
  display: flex;
  gap: 2.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--cmcc-red);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--cmcc-light-soft);
}

.experience-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.experience-feature-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.experience-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 43, 61, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.experience-feature-card:hover {
  background: linear-gradient(145deg, rgba(255, 43, 61, 0.12) 0%, rgba(255, 43, 61, 0.05) 100%);
  border-color: rgba(255, 43, 61, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255, 43, 61, 0.2);
}

.experience-feature-card:hover::before {
  opacity: 1;
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--cmcc-red, #b01e2c) 0%, var(--cmcc-red-dark, #8a1722) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(255, 43, 61, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.experience-feature-card:hover .feature-icon-box {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(255, 43, 61, 0.4);
}

.feature-icon-box i {
  font-size: 1.4rem;
  color: #fff;
  transition: transform 0.3s ease;
}

.experience-feature-card:hover .feature-icon-box i {
  transform: scale(1.1);
}

.feature-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.feature-content h5 {
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.feature-content p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive: Single column on mobile */
@media (max-width: 991.98px) {
  .experience-features {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
  
  .experience-feature-card {
    padding: 1.25rem;
  }
  
  .feature-icon-box {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon-box i {
    font-size: 1.25rem;
  }
}

/* ===========================================
   CTA SECTION
   =========================================== */
.cta-section {
  position: relative;
}

.cta-card {
  background: linear-gradient(145deg, var(--cmcc-dark-lighter, #151820) 0%, var(--cmcc-dark, #050608) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cta-card-bg {
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 43, 61, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cta-card-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 43, 61, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.cta-top-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-badge {
  padding: 0.625rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 43, 61, 0.25);
  animation: pulse-badge 2s ease-in-out infinite;
}

.cta-badge i {
  font-size: 0.75rem;
}

@keyframes pulse-badge {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(255, 43, 61, 0.25);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255, 43, 61, 0.4);
  }
}

.cta-heading {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.cta-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--cmcc-red, #b01e2c) 50%, transparent 100%);
  border-radius: 2px;
}

.cta-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}

.cta-actions-wrapper {
  margin-top: 2rem;
}

.cta-primary-btn,
.cta-secondary-btn {
  min-width: 180px;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-size: 1rem;
}

.cta-primary-btn {
  box-shadow: 0 6px 20px rgba(255, 43, 61, 0.35);
  background: linear-gradient(135deg, var(--cmcc-red, #b01e2c) 0%, var(--cmcc-red-dark, #8a1722) 100%);
}

.cta-primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta-primary-btn:hover::before {
  left: 100%;
}

.cta-primary-btn:hover {
  box-shadow: 0 8px 25px rgba(255, 43, 61, 0.5);
  transform: translateY(-3px) scale(1.02);
}

.cta-secondary-btn {
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.cta-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.cta-contacts {
  margin-top: 0;
  padding-top: 0;
}

.cta-contacts-map {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.map-wrapper-home {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.map-border-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(255, 43, 61, 0.3) 0%, rgba(255, 43, 61, 0.1) 100%);
  border-radius: 16px;
  z-index: 0;
  pointer-events: none;
}

.map-frame {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cmcc-dark, #050608);
}

.map-frame iframe {
  display: block;
  width: 100%;
  border: none;
  border-radius: 16px;
}

.cta-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.cta-contact-card:hover {
  background: rgba(255, 43, 61, 0.08);
  border-color: rgba(255, 43, 61, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 43, 61, 0.15);
}

.cta-contact-card .contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--cmcc-red, #b01e2c) 0%, var(--cmcc-red-dark, #8a1722) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 43, 61, 0.3);
  transition: all 0.3s ease;
}

.cta-contact-card:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 43, 61, 0.4);
}

.cta-contact-card .contact-icon i {
  font-size: 1.35rem;
  color: #fff;
}

.cta-contact-card .contact-info {
  flex: 1;
  min-width: 0;
}

.cta-contact-card .contact-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.cta-contact-card .contact-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: block;
  word-break: break-word;
}

.cta-contact-card:hover .contact-link {
  color: var(--cmcc-red-light, #d32535);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .cta-card {
    padding: 2.5rem 2rem;
  }
  
  .cta-top-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
  }
  
  .cta-header-content {
    max-width: 100%;
  }
  
  .cta-heading {
    font-size: 2.25rem;
  }
  
  .cta-heading::after {
    width: 60px;
  }
  
  .cta-description {
    font-size: 1.05rem;
  }
  
  .cta-actions-wrapper {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-primary-btn,
  .cta-secondary-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .cta-contacts-map {
    margin-top: 2rem;
    padding-top: 2rem;
  }
  
  .map-wrapper-home {
    margin-top: 2rem;
  }
}

@media (max-width: 575.98px) {
  .cta-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
  
  .cta-badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .cta-heading {
    font-size: 1.75rem;
  }
  
  .cta-heading::after {
    width: 50px;
    height: 3px;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .cta-primary-btn,
  .cta-secondary-btn {
    min-width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .cta-contact-card {
    padding: 1rem;
    gap: 0.875rem;
  }
  
  .cta-contact-card .contact-icon {
    width: 44px;
    height: 44px;
  }
  
  .cta-contact-card .contact-icon i {
    font-size: 1.2rem;
  }
  
  .cta-contact-card .contact-title {
    font-size: 0.9rem;
  }
  
  .cta-contact-card .contact-link {
    font-size: 0.85rem;
  }
  
  .cta-contacts-map {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
  
  .map-wrapper-home {
    margin-top: 1.5rem;
  }
  
  .map-frame iframe {
    height: 350px;
  }
}

/* ===========================================
   FOOTER - Premium Redesign
   =========================================== */
.site-footer {
  background: linear-gradient(180deg, var(--cmcc-dark-soft, #0d0f12) 0%, var(--cmcc-dark, #050608) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 43, 61, 0.5) 50%, transparent 100%);
}

.footer-main {
  padding: 4rem 0 2.5rem;
  position: relative;
  z-index: 1;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.footer-logo-link:hover {
  transform: scale(1.05);
}

.footer-logo {
  height: 97.5px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 320px;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.footer-social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cmcc-red, #b01e2c) 0%, var(--cmcc-red-dark, #8a1722) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-social-link i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.footer-social-link:hover {
  border-color: var(--cmcc-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 43, 61, 0.3);
}

.footer-social-link:hover::before {
  opacity: 1;
}

.footer-social-link:hover i {
  color: #fff;
  transform: scale(1.15);
}

.footer-column {
  height: 100%;
}

.footer-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255, 43, 61, 0.2);
}

.footer-title i {
  color: var(--cmcc-red);
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding-right: 0.5rem;
}

.footer-links a::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--cmcc-red);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-right: 1rem;
}

.footer-links a:hover::before {
  width: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  background: linear-gradient(145deg, rgba(255, 43, 61, 0.08) 0%, rgba(255, 43, 61, 0.03) 100%);
  border-color: rgba(255, 43, 61, 0.3);
  transform: translateX(-5px);
}

.footer-contact-item .contact-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--cmcc-red, #b01e2c) 0%, var(--cmcc-red-dark, #8a1722) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 43, 61, 0.3);
}

.footer-contact-item .contact-icon i {
  color: #fff;
  font-size: 1.1rem;
}

.contact-details {
  flex: 1;
  min-width: 0;
}

.contact-label {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.contact-value {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: block;
  word-break: break-word;
}

.contact-value:hover {
  color: var(--cmcc-red-light);
}

.footer-bottom {
  background: rgba(5, 6, 8, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  position: relative;
}

.footer-bottom-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-copyright {
  flex: 1;
  min-width: 200px;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.policy-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.policy-link:hover {
  background: rgba(255, 43, 61, 0.15);
  border-color: rgba(255, 43, 61, 0.4);
  color: var(--cmcc-red-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 43, 61, 0.2);
}

.policy-link i {
  font-size: 0.9rem;
}

.footer-credits {
  flex: 1;
  text-align: left;
  min-width: 150px;
}

.coded-by {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.abn-link {
  color: var(--cmcc-red);
  text-decoration: none;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: rgba(255, 43, 61, 0.1);
  transition: all 0.3s ease;
  display: inline-block;
}

.abn-link:hover {
  background: var(--cmcc-red);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 43, 61, 0.3);
}

/* Responsive Footer */
@media (max-width: 991.98px) {
  .footer-main {
    padding: 3rem 0 2rem;
  }
  
  .footer-logo {
    height: 82.5px;
  }
  
  .footer-description {
    max-width: 100%;
  }
  
  .footer-social-links {
    margin-top: 1.25rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
  
  .footer-copyright,
  .footer-credits {
    text-align: center;
    width: 100%;
  }
  
  .footer-policy-links {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .footer-main {
    padding: 2.5rem 0 1.5rem;
  }
  
  .footer-logo {
    height: 75px;
  }
  
  .footer-title {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
  
  .footer-social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .footer-contact-item {
    padding: 0.875rem;
    gap: 0.875rem;
  }
  
  .footer-contact-item .contact-icon {
    width: 38px;
    height: 38px;
  }
  
  .footer-contact-item .contact-icon i {
    font-size: 1rem;
  }
  
  .footer-bottom {
    padding: 1.25rem 0;
  }
  
  .footer-bottom-content {
    gap: 1rem;
  }
  
  .policy-link {
    padding: 0.4rem 0.875rem;
    font-size: 0.8rem;
  }
}

/* ===========================================
   FLOATING CONTACTS
   =========================================== */
.floating-contacts {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1050;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 10px;
}

/* Main Toggle Button */
.floating-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--cmcc-red) 0%, var(--cmcc-red-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 43, 61, 0.4);
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.floating-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(255, 43, 61, 0.5);
}

.floating-toggle i {
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.floating-toggle .toggle-icon-close {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg);
}

.floating-contacts.is-open .floating-toggle .toggle-icon-open {
  opacity: 0;
  transform: rotate(90deg);
}

.floating-contacts.is-open .floating-toggle .toggle-icon-close {
  opacity: 1;
  transform: rotate(0);
}

/* Contact Items Container */
.floating-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.floating-contacts.is-open .floating-items {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-contact-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.floating-contacts.is-open .floating-contact-item {
  opacity: 1;
  transform: scale(1);
}

.floating-contacts.is-open .floating-contact-item:nth-child(1) { transition-delay: 0.05s; }
.floating-contacts.is-open .floating-contact-item:nth-child(2) { transition-delay: 0.1s; }
.floating-contacts.is-open .floating-contact-item:nth-child(3) { transition-delay: 0.15s; }
.floating-contacts.is-open .floating-contact-item:nth-child(4) { transition-delay: 0.2s; }

.floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.floating-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-shifa {
  background: linear-gradient(135deg, var(--cmcc-red) 0%, var(--cmcc-red-dark) 100%);
}

.floating-qadisiyah {
  background: linear-gradient(135deg, #ff6b35 0%, #cc5528 100%);
}

.floating-admin {
  background: linear-gradient(135deg, #6c5ce7 0%, #5541d7 100%);
}

.floating-btn i {
  font-size: 1.2rem;
}

.floating-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  color: #fff;
}

/* Floating Tooltip */
.floating-tooltip {
  position: absolute;
  left: 100%;
  margin-left: 12px;
  background: rgba(5, 6, 8, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 43, 61, 0.3);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.25s ease;
  pointer-events: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  font-size: 0.85rem;
  color: #fff;
  font-weight: 500;
}

.floating-tooltip::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: rgba(5, 6, 8, 0.95);
}

.floating-contact-item:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 575.98px) {
  .floating-contacts {
    bottom: 16px;
    left: 16px;
    gap: 8px;
  }
  
  .floating-toggle {
    width: 50px;
    height: 50px;
  }
  
  .floating-btn {
    width: 44px;
    height: 44px;
  }
  
  .floating-btn i {
    font-size: 1.1rem;
  }
  
  .floating-tooltip {
    display: none;
  }
}

/* ===========================================
   PAGE HERO
   =========================================== */
.page-hero {
  background: linear-gradient(135deg, var(--cmcc-dark-soft) 0%, var(--cmcc-dark) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 30% 70%, rgba(255, 43, 61, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 43, 61, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* ===========================================
   FORMS
   =========================================== */
.form-control,
.form-select {
  background-color: var(--cmcc-dark-lighter);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cmcc-light);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-control:focus,
.form-select:focus {
  background-color: var(--cmcc-dark-lighter);
  border-color: var(--cmcc-red);
  box-shadow: 0 0 0 3px rgba(255, 43, 61, 0.15);
  color: var(--cmcc-light);
}

.form-label {
  color: var(--cmcc-light);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Date input */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

/* ===========================================
   BLOG CARDS
   =========================================== */
.blog-card {
  transition: all 0.4s ease;
  border-radius: 16px;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 43, 61, 0.4) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.blog-card-image img {
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-card-title a {
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: var(--cmcc-red) !important;
}

/* ===========================================
   ALERTS
   =========================================== */
.alert-success {
  background-color: rgba(25, 135, 84, 0.15);
  border: 1px solid rgba(25, 135, 84, 0.3);
  color: #75b798;
  border-radius: 12px;
}

.alert-danger {
  background-color: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #ea868f;
  border-radius: 12px;
}

/* ===========================================
   CONTENT TYPOGRAPHY
   =========================================== */
.post-body h2, .post-body h3, .post-body h4,
.page-body h2, .page-body h3, .page-body h4 {
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-body p, .page-body p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.post-body a, .page-body a {
  color: var(--cmcc-red);
  text-decoration: underline;
}

.post-body ul, .post-body ol,
.page-body ul, .page-body ol {
  margin-bottom: 1.25rem;
  padding-right: 1.5rem;
}

.post-body blockquote, .page-body blockquote {
  border-right: 4px solid var(--cmcc-red);
  padding-right: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--cmcc-light-soft);
}

/* ===========================================
   BADGES
   =========================================== */
.badge.bg-accent-red {
  background: linear-gradient(135deg, var(--cmcc-red) 0%, var(--cmcc-red-dark) 100%) !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.5em 1em;
}

/* ===========================================
   SCROLLBAR
   =========================================== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cmcc-dark-soft);
}

::-webkit-scrollbar-thumb {
  background: var(--cmcc-red);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cmcc-red-light);
}

/* ===========================================
   SELECTION
   =========================================== */
::selection {
  background-color: var(--cmcc-red);
  color: #fff;
}

/* ===========================================
   RESPONSIVE
   =========================================== */

/* Global mobile overflow fix */
@media (max-width: 991.98px) {
  html, body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
  }
  
  main,
  section,
  .container,
  .container-fluid {
    overflow-x: hidden;
    max-width: 100%;
  }
  
  .row {
    --bs-gutter-x: 1rem;
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
  }
  
  .container,
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  
  .hero-features {
    flex-wrap: wrap;
    gap: 0.5rem !important;
    justify-content: center;
  }
  
  .hero-feature {
    font-size: 0.75rem;
    padding: 0.5rem 0.85rem;
  }
  
  .feature-icon {
    font-size: 0.85rem;
  }
  
  .experience-stats {
    justify-content: center;
  }
  
  .cta-card {
    padding: 2rem;
  }
  
  .cta-actions-wrapper {
    flex-direction: row !important;
    gap: 0.75rem !important;
  }
  
  .cta-actions-wrapper .btn {
    flex: 1 1 auto;
    min-width: 0;
  }
  
  .cta-contacts .col-md-4 {
    padding: 0.25rem;
  }
}

@media (max-width: 575.98px) {
  /* Buttons side-by-side on mobile */
  .hero-ctas {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.5rem !important;
    justify-content: center;
  }
  
  .hero-ctas .btn {
    flex: 0 1 auto;
  }
  
  .cta-actions-wrapper {
    flex-direction: row !important;
    gap: 0.5rem !important;
  }
  
  .cta-actions-wrapper .btn {
    flex: 1 1 auto;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }
  
  .cta-contacts .col-md-4 {
    padding: 0.25rem;
  }
  
  .cta-contact-card {
    padding: 0.5rem;
    gap: 0.5rem;
  }
  
  .cta-contact-card .contact-icon {
    width: 40px;
    height: 40px;
  }
  
  .cta-contact-card .contact-icon i {
    font-size: 1rem;
  }
  
  .cta-contact-card .contact-info h6 {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
  }
  
  .cta-contact-card .contact-link {
    font-size: 0.8rem;
  }
  
  .hero-ctas .btn.btn-lg {
    padding: 0.5rem 0.85rem !important;
    font-size: 0.8rem !important;
  }
  
  .hero-ctas .btn.px-5 {
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
  }
  
  .hero-ctas .btn.py-3 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  
  /* Hero features in a row (compact) */
  .hero-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem !important;
  }
  
  .hero-feature {
    font-size: 0.65rem;
    padding: 0.35rem 0.6rem;
  }
  
  .feature-icon {
    font-size: 0.7rem;
  }
  
  /* Section Headings */
  section h2 {
    font-size: 1.5rem !important;
  }
  
  section .lead {
    font-size: 0.9rem;
  }
  
  /* Footer */
  .footer-logo {
    height: 75px;
  }
  
  .footer-title {
    font-size: 1rem;
  }
  
  /* Map */
  .cmcc-map-container {
    height: 280px !important;
  }
}

/* ===========================================
   PARTNERS SECTION
   =========================================== */
.partners-section {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.partners-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 43, 61, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.partners-section .container {
  position: relative;
  z-index: 1;
}

/* Partners Grid Layout */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.partner-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.partner-logo-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 43, 61, 0.1), transparent 30%);
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: partnerShine 3s linear infinite paused;
}

.partner-logo-wrapper:hover::before {
  opacity: 1;
  animation-play-state: running;
}

@keyframes partnerShine {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.partner-logo-wrapper:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 43, 61, 0.4);
  background: linear-gradient(145deg, rgba(255, 43, 61, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 43, 61, 0.2),
    0 0 40px rgba(255, 43, 61, 0.08);
}

.partner-logo {
  max-width: 85%;
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.55);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.partner-logo-wrapper:hover .partner-logo {
  filter: brightness(0) invert(1) opacity(1);
  transform: scale(1.08);
}

/* Original color logos (no white filter) */
.partner-logo.partner-logo-original {
  filter: opacity(0.75);
}

.partner-logo-wrapper:hover .partner-logo.partner-logo-original {
  filter: opacity(1);
}

/* Tablet - 4 columns */
@media (max-width: 1199.98px) and (min-width: 992px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

/* Mobile - 3 columns */
@media (max-width: 991.98px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0;
  }
  
  .partner-logo-wrapper {
    padding: 1rem 0.75rem;
    border-radius: 12px;
    aspect-ratio: 3 / 2;
  }
  
  .partner-logo {
    max-height: 40px;
    max-width: 85%;
  }
  
  .partners-section .badge {
    font-size: 0.7rem;
  }
  
  .partners-section h2 {
    font-size: 1.5rem !important;
  }
  
  .partners-section p {
    font-size: 0.9rem;
  }
}

/* Small Mobile - 2 columns */
@media (max-width: 575.98px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .partner-logo-wrapper {
    padding: 0.75rem 0.5rem;
    aspect-ratio: 4 / 3;
  }
  
  .partner-logo {
    max-height: 35px;
  }
}

/* Extra class for last row centering when odd number */
.partners-grid.center-last .partner-item:last-child:nth-child(odd) {
  grid-column: span 2;
  justify-self: center;
  max-width: 50%;
}

/* ===========================================
   HERO CAROUSEL SECTION (Care My Car)
   =========================================== */
.hero-carousel-section {
  position: relative;
  width: 100%;
  overflow: visible;
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
}

.hero-carousel-section .hero-carousel-wrapper {
  aspect-ratio: 3168 / 1344;
}

/* Fallback for older browsers */
@supports not (aspect-ratio: 3168 / 1344) {
  .hero-carousel-section {
    height: 42.42vw; /* 1344/3168 * 100 = 42.42% */
    min-height: 400px;
    max-height: 800px;
  }
}

.hero-carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: none;
}

.hero-carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: none;
}

/* Hero Slide */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: none;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
}

.hero-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  filter: none;
  -webkit-filter: none;
}

.hero-slide-overlay {
  display: none;
  visibility: hidden;
  opacity: 0;
}

/* Carousel Controls Container */
.hero-carousel-controls {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: transparent;
}

/* Carousel Navigation Arrows */
.hero-carousel-nav {
  position: relative;
  transform: translateY(0);
  z-index: 10;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.8;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  flex-shrink: 0;
}

.hero-carousel-nav:hover {
  background: rgba(176, 30, 44, 0.8);
  border-color: rgba(176, 30, 44, 1);
  opacity: 1;
  transform: scale(1.1);
}

.hero-carousel-nav:active {
  transform: scale(0.95);
}

.hero-carousel-prev {
  order: 1;
}

.hero-carousel-next {
  order: 3;
}

.hero-carousel-nav i {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Carousel Indicators (Dots) */
.hero-carousel-indicators {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  order: 2;
  flex-shrink: 0;
}

.hero-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  position: relative;
}

.hero-carousel-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s ease;
}

.hero-carousel-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.hero-carousel-dot:hover::before {
  background: rgba(176, 30, 44, 0.2);
}

.hero-carousel-dot.active {
  background: var(--cmcc-red);
  border-color: var(--cmcc-red);
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(176, 30, 44, 0.4);
}

.hero-carousel-dot.active::before {
  background: rgba(176, 30, 44, 0.3);
}

/* Carousel Disabled State (Single Image) */
.carousel-disabled .hero-carousel-container {
  position: static;
}

.carousel-disabled .hero-slide {
  position: static;
  opacity: 1;
}

.carousel-disabled .hero-slide:not(:first-child) {
  display: none;
}

/* Loading State */
.hero-carousel-container.loading .hero-slide-image img {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-carousel-container .hero-slide-image img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-carousel-section .hero-carousel-wrapper {
    aspect-ratio: auto;
    height: 500px;
  }

  .hero-carousel-controls {
    padding: 1.25rem 1.5rem;
    gap: 0.75rem;
  }

  .hero-carousel-nav {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }

  .hero-carousel-indicators {
    padding: 8px 16px;
    gap: 8px;
  }

  .hero-carousel-dot {
    width: 10px;
    height: 10px;
  }

  .hero-carousel-dot.active {
    width: 28px;
  }
}

@media (max-width: 767.98px) {
  .hero-carousel-section .hero-carousel-wrapper {
    aspect-ratio: auto;
    height: 400px;
  }

  .hero-carousel-controls {
    padding: 1rem;
    gap: 0.5rem;
  }

  .hero-carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .hero-carousel-indicators {
    padding: 6px 12px;
    gap: 6px;
  }

  .hero-carousel-wrapper {
    margin: 0;
    border: none;
    outline: none;
    height: 100%;
    width: 100%;
  }

  .hero-carousel-container {
    margin: 0;
    border: none;
    outline: none;
    border-radius: 0;
    height: 100%;
    width: 100%;
  }

  .hero-slide {
    margin: 0;
    border: none;
    outline: none;
    border-radius: 0;
    width: 100%;
    height: 100%;
  }

  .hero-slide-image {
    margin: 0;
    border: none;
    outline: none;
    border-radius: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .hero-slide-image img {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    border-radius: 0;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    min-height: 100%;
    min-width: 100%;
  }

  .hero-slide-overlay {
    background: transparent;
    display: none;
  }

  .hero-carousel-controls {
    padding: 1rem;
    gap: 0.5rem;
  }

  .hero-carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .hero-carousel-indicators {
    padding: 6px 12px;
    gap: 6px;
  }

  .hero-carousel-dot {
    width: 8px;
    height: 8px;
    border-width: 1px;
  }

  .hero-carousel-dot.active {
    width: 24px;
    height: 8px;
  }
}

@media (max-width: 575.98px) {
  .hero-carousel-section .hero-carousel-wrapper {
    aspect-ratio: auto;
    height: 350px;
  }

  .hero-carousel-controls {
    padding: 0.875rem;
    gap: 0.5rem;
  }

  .hero-carousel-nav {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    opacity: 0.7;
  }

  .hero-carousel-indicators {
    padding: 6px 10px;
    gap: 6px;
  }

  .hero-carousel-dot {
    width: 8px;
    height: 8px;
  }

  .hero-carousel-dot.active {
    width: 24px;
  }
}

/* Touch/Swipe Support */
.hero-carousel-wrapper.touch-enabled {
  touch-action: pan-y pinch-zoom;
}

.hero-carousel-wrapper.touch-enabled .hero-slide {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease-in-out;
}

/* Fade Animation */
.hero-carousel-wrapper[data-animation="fade"] .hero-slide {
  transition: opacity 0.6s ease-in-out;
}

/* Slide Animation (Optional - can be enabled via data attribute) */
.hero-carousel-wrapper[data-animation="slide"] .hero-slide {
  transform: translateX(100%);
}

.hero-carousel-wrapper[data-animation="slide"] .hero-slide.active {
  transform: translateX(0);
}

.hero-carousel-wrapper[data-animation="slide"] .hero-slide.prev {
  transform: translateX(-100%);
}

/* ===========================================
   SERVICES GALLERY SECTION
   =========================================== */
.services-gallery-section {
  position: relative;
  overflow: hidden;
}

/* Desktop Grid Layout (4 columns) */
.services-grid-desktop {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 100%;
  width: 100%;
}

@media (max-width: 1199.98px) {
  .services-grid-desktop {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

@media (max-width: 991.98px) {
  .services-grid-desktop {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .services-grid-desktop {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  
  .services-carousel-mobile {
    display: none !important;
  }
}

.service-gallery-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
}

.service-gallery-item .service-image-container {
  flex-shrink: 0;
}

.service-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1696 / 2528; /* Exact image dimensions: width 1696, height 2528 */
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--cmcc-dark-lighter);
  cursor: pointer;
  transition: all 0.4s ease;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fallback for browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 1696 / 2528) {
  .service-image-container::before {
    content: '';
    display: block;
    padding-top: 149.06%; /* 2528/1696 * 100 = 149.06% */
  }
  
  .service-image-container .service-gallery-image {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.service-image-container:focus {
  outline: 2px solid var(--cmcc-red);
  outline-offset: 2px;
}

.service-image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.5s ease;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  max-width: 100%;
  max-height: 100%;
}

@supports not (aspect-ratio: 1696 / 2528) {
  .service-gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
  }
}

.service-image-container:hover .service-gallery-image {
  transform: scale(1.1);
}

.service-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
}

.service-image-container:hover .service-image-overlay {
  opacity: 1;
}

.lightbox-trigger {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cmcc-dark);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-trigger:hover {
  background: #fff;
  transform: scale(1.1);
}

/* Mobile Carousel - Hidden, using grid instead */
.services-carousel-mobile {
  display: none !important;
  position: relative;
  padding: 0 0.5rem;
}

.service-carousel-item {
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.services-carousel-mobile .carousel-item {
  padding: 0;
  min-height: auto;
}

.services-carousel-mobile .carousel-inner {
  overflow: visible;
}

.services-carousel-mobile .carousel-indicators {
  position: relative;
  margin-top: 1.5rem;
  margin-bottom: 0;
  bottom: auto;
  left: auto;
  right: auto;
  justify-content: center;
}

.services-carousel-mobile .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin: 0 5px;
  transition: all 0.3s ease;
}

.services-carousel-mobile .carousel-indicators button.active {
  background: var(--cmcc-red);
  border-color: var(--cmcc-red);
  width: 32px;
  border-radius: 6px;
}

.services-carousel-mobile .carousel-indicators button:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 1rem;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-close:hover {
  background: var(--cmcc-red);
  border-color: var(--cmcc-red);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-prev {
  right: 20px;
}

.lightbox-next {
  left: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--cmcc-red);
  border-color: var(--cmcc-red);
  transform: translateY(-50%) scale(1.1);
}


@media (max-width: 767.98px) {
  .lightbox-close {
    top: -40px;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
  
  .lightbox-prev {
    right: 10px;
  }
  
  .lightbox-next {
    left: 10px;
  }
}

/* ============================================
   WORKS GALLERY SECTION
   ============================================ */

.works-gallery-section {
  position: relative;
}

.works-gallery-tabs {
  margin-bottom: 3rem;
}

.works-gallery-tabs .nav-pills .nav-link {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.works-gallery-tabs .nav-pills .nav-link:hover {
  background: rgba(255, 43, 61, 0.1);
  border-color: rgba(255, 43, 61, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

.works-gallery-tabs .nav-pills .nav-link.active {
  background: linear-gradient(135deg, var(--cmcc-red, #b01e2c) 0%, var(--cmcc-red-dark, #8a1722) 100%);
  border-color: var(--cmcc-red);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 43, 61, 0.3);
}

.works-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 991.98px) {
  .works-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .works-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 575.98px) {
  .works-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

.works-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.works-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 43, 61, 0.3);
}

/* Works Image Container */
.works-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  background: var(--cmcc-dark-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
}

.works-image-container:focus {
  outline: 2px solid var(--cmcc-red);
  outline-offset: 2px;
}

.works-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.works-image-container:hover .works-gallery-image {
  transform: scale(1.1);
}

.works-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.works-image-container:hover .works-image-overlay {
  opacity: 1;
}

.works-lightbox-trigger {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scale(0.8);
}

.works-image-container:hover .works-lightbox-trigger {
  transform: scale(1);
}

.works-lightbox-trigger:hover {
  background: var(--cmcc-red);
  border-color: var(--cmcc-red);
  transform: scale(1.1);
}

/* Works Video Container */
.works-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
}

.works-gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.works-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, background 0.3s ease;
  z-index: 2;
  cursor: pointer;
}

.works-video-overlay:hover {
  background: rgba(0, 0, 0, 0.2);
}

.works-video-container.playing .works-video-overlay {
  opacity: 0;
  pointer-events: none;
}

.works-play-btn {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding-right: 3px; /* RTL: slight offset for play icon */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.works-play-btn:hover {
  background: linear-gradient(135deg, var(--cmcc-red, #d3141b) 0%, #b01e2c 100%);
  border-color: var(--cmcc-red, #d3141b);
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(255, 43, 61, 0.6);
}

.works-play-btn:active {
  transform: scale(1.05);
}

.works-play-btn i {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Mobile responsive adjustments */
@media (max-width: 767.98px) {
  .works-play-btn {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
    padding-right: 2px;
  }
}

@media (max-width: 575.98px) {
  .works-play-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    border-width: 1.5px;
  }
  
  .works-play-btn:hover {
    transform: scale(1.1);
  }
}