@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;500;600;700&display=swap');* {
  box-sizing: border-box;
}

:root {
  --nav-offset: 96px;
}

/* Global scrollbar removal */
html,
body {
  overflow-x: hidden !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

html,
body,
#root {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden !important;
}

html {
  scroll-padding-top: var(--nav-offset);
  overflow-x: hidden !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

html::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  color: #fff;
  /* padding-top: var(--nav-offset); */
  overflow-x: hidden !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

body::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.site-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, 92%);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(25, 25, 25, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.site-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}


.site-logo {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.logo-img {
  height: 35px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
  transition: transform 0.25s ease;
  filter: brightness(0) invert(1);
}

.site-logo:hover .logo-img {
  transform: scale(1.02);
}

.nav-book-btn {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
  display: inline-block;
}

.nav-book-btn:hover {
  background: linear-gradient(135deg, #1e40af, #1e3a8a);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(45, 45, 45, 0.6);
  color: #fff;
  border-radius: 14px;
  padding: 10px 10px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.nav-toggle:hover {
  transform: scale(1.03);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(65, 65, 65, 0.8);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.88);
  margin: 3px 0;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.site-nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-end;
}

.site-nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  padding: 8px 10px;
  border-radius: 999px;
  line-height: 1;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.site-nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

/* Footer is styled via `components/Footer.css`. */

@media (max-width: 900px) {
  :root {
    --nav-offset: 92px;
  }

  .site-nav {
    top: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav-links {
    width: 100%;
    display: grid;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease;
  }

  .site-nav-links[data-open='true'] {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav-links a {
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(45, 45, 45, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
  }
}

@media (max-width: 520px) {
  :root {
    --nav-offset: 92px;
  }

  .site-nav-links a {
    font-size: 0.9rem;
    padding: 12px 12px;
  }
}
.lux-footer {
  position: relative;
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(255, 255, 255, 0.08), transparent 62%),
    radial-gradient(700px 520px at 85% 45%, rgba(255, 255, 255, 0.05), transparent 60%),
    linear-gradient(180deg, #050505 0%, #040404 40%, #060606 100%);
  color: rgba(255, 255, 255, 0.9);
}
section.lux-footer__brand {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.lux-footer__topline {
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0)
  );
}

.lux-footer__inner {
  padding: 54px min(6vw, 70px) 34px;
}

.lux-footer__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 0.8fr 1fr;
  gap: 30px;
}

.lux-footer__logo {
  display: inline-flex;
  text-decoration: none;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.98rem;
}

.lux-footer__logo .logo-img {
    height: 75px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.25s ease;
}

.lux-footer__logo:hover .logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255,255,255,0.4));
}

.lux-footer__tagline {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  max-width: 40ch;
}

.lux-footer__tagline {
    margin-top: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.95);
}

.lux-footer__description {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
    text-align: center;
}

.lux-footer__services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lux-footer__services-grid .lux-footer__title {
    text-align: center;
    grid-column: 1 / -1;
    margin-bottom: 10px;
}

.lux-footer__contact-details {
    line-height: 1.8;
}

.lux-footer__contact-details p {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.lux-footer__contact-details strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.lux-footer__contact-details a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.lux-footer__contact-details a:hover {
    color: #fff;
    text-decoration: underline;
}

.lux-footer__col {
  min-width: 0;
}

.lux-footer__title {
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 33px;
}

.lux-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.lux-footer__muted {
  color: rgba(255, 255, 255, 0.66);
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.lux-footer__link {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  position: relative;
  width: fit-content;
  transition: color 0.25s ease;
}

.lux-footer__link svg {
  opacity: 0.85;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

/* Slide underline */
.lux-footer__link::after {
  content: '';
  position: absolute;
  left: 26px;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.lux-footer__link:hover {
  color: #fff;
}

.lux-footer__link:hover::after {
  transform: scaleX(1);
}

.lux-footer__link:hover svg {
  opacity: 1;
  filter: brightness(1.15);
}

.lux-footer__bottom {
  padding: 16px min(6vw, 70px);
  background: rgba(0, 0, 0, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hardcoded Contact Info Styles */
.lux-footer__contact-info {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr;
  max-width: 300px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.contact-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #fff;
  text-decoration: underline;
}

.lux-footer__bottom-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  text-align: center;
  flex-wrap: wrap;
}

.lux-footer__dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

@media (max-width: 1024px) {
  .lux-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .lux-footer__inner {
    padding: 46px 18px 28px;
  }

  .lux-footer__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .lux-footer__tagline {
    max-width: none;
  }
}

/* ============================================
   WHATSAPP FLOATING BUTTON STYLES
   ============================================ */

.whatsapp-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  pointer-events: none;
}

.whatsapp-float-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 8px 25px rgba(37, 211, 102, 0.4),
    0 4px 12px rgba(37, 211, 102, 0.3),
    0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: all;
  overflow: visible;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 
    0 12px 35px rgba(37, 211, 102, 0.5),
    0 6px 18px rgba(37, 211, 102, 0.4),
    0 3px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-float-btn:active {
  transform: scale(0.95);
}

/* WhatsApp Icon */
.whatsapp-icon {
  color: #ffffff;
  font-size: 28px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.whatsapp-float-btn:hover .whatsapp-icon {
  transform: rotate(15deg) scale(1.1);
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid rgba(0, 0, 0, 0.9);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-5px);
}

/* Pulse Animation Ring */
.whatsapp-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #25D366;
  animation: whatsappPulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes whatsappPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .whatsapp-container {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float-btn {
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-icon {
    font-size: 26px;
  }
  
  .whatsapp-tooltip {
    display: none; /* Hide tooltip on mobile for better UX */
  }
  
  .whatsapp-pulse-ring {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 480px) {
  .whatsapp-container {
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-float-btn {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-icon {
    font-size: 24px;
  }
  
  .whatsapp-pulse-ring {
    width: 50px;
    height: 50px;
  }
}
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 620px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%, #0f0f0f 100%);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 5s ease-in-out;
  z-index: 1;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  transition: opacity 5s ease-in-out;
}

.hero-slide.loading {
  opacity: 0.3;
  filter: brightness(0.7);
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.overlay-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 15, 15, 0.7) 0%, rgba(26, 26, 26, 0.5) 50%, rgba(15, 15, 15, 0.8) 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
    linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
}

.overlay-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particleFloat 8s ease-in-out infinite;
  animation-delay: var(--delay);
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(50px);
    opacity: 0;
  }
}

/* Premium Side Elements */
.hero-side-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.hero-side-element {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  animation: sideElementFloat 8s ease-in-out infinite;
}

.hero-side-left {
  left: 40px;
  animation-delay: 0s;
}

.hero-side-right {
  right: 40px;
  animation-delay: 3s;
}

.side-element-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: rgba(45, 45, 45, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.side-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.hero-side-element:hover .side-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.side-element-content span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  white-space: nowrap;
}

@keyframes sideElementFloat {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(8px);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  width: min(980px, 88%);
  color: #fff;
}

.hero-text-wrapper {
  margin-bottom: 30px;
}


.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: titleSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.title-line:first-child {
  animation-delay: 0.2s;
}

.title-line:last-child {
  animation-delay: 0.4s;
}

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

.hero-subtitle {
  margin: 0;
  color: #ffffff !important;
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  max-width: 760px;
  opacity: 0;
  transform: translateY(20px);
  animation: subtitleFadeIn 0.8s ease forwards;
  animation-delay: 0.6s;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

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

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn {
  position: relative;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #ffffff !important;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: btnSlideIn 0.8s ease forwards;
  animation-delay: 0.8s;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-btn:nth-child(2) {
  animation-delay: 0.9s;
}

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

.btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-content svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.hero-btn:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero-btn:hover .btn-glow {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}

.hero-btn:hover .btn-content svg {
  transform: translateX(3px);
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.primary-btn {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  border-color: rgba(255, 255, 255, 0.8);
}

.primary-btn .btn-content {
  color: #000;
}

.secondary-btn {
  background: rgba(45, 45, 45, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Premium Indicators */
.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
  opacity: 0;
  animation: indicatorsFadeIn 0.8s ease forwards;
  animation-delay: 1s;
}

@keyframes indicatorsFadeIn {
  to {
    opacity: 1;
  }
}

.indicator {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scaleY(1.5);
}

.indicator.active {
  background: rgba(255, 255, 255, 0.8);
  transform: scaleY(1.5);
}

.indicator-dot {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.indicator.active .indicator-dot {
  opacity: 1;
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 560px;
  }

  .hero-slide-img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }

  .hero-side-left {
    left: 20px;
  }

  .hero-side-right {
    right: 20px;
  }

  .side-element-content {
    padding: 12px;
  }

  .side-icon {
    width: 32px;
    height: 32px;
  }

  .side-element-content span {
    font-size: 0.7rem;
  }

  .hero-indicators {
    bottom: 20px;
    gap: 8px;
  }

  .indicator {
    width: 30px;
    height: 3px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 380px;
  }

  .hero-slide-img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }

  .hero-content {
    width: 90%;
  }

  .hero-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .hero-subtitle {
    font-size: clamp(0.75rem, 2.5vw, 0.85rem);
  }

  .hero-side-left,
  .hero-side-right {
    display: none;
  }

  .hero-indicators {
    bottom: 15px;
  }

  .indicator {
    width: 25px;
    height: 2px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
    font-size: 0.8rem;
  }
}

/* Ensure hero elements are visible immediately */
.hero-section .title-line,
.hero-section .hero-subtitle,
.hero-section .hero-btn {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* Phantom Hero Classes - Ultra Unique */
.hero-content-phantom-main-wrapper {
  position: relative;
  z-index: 9999 !important;
  width: min(980px, 88%);
  color: #fff !important;
}

.hero-text-container-phantom-2024 {
  margin-bottom: 30px;
}




.hero-description-p {
  margin: 0;
  color: #ffffff !important;
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  max-width: 760px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
}

.hero-buttons-container-phantom-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-button-phantom-primary-cta,
.hero-button-phantom-secondary-cta {
  position: relative;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
  text-shadow: none !important;
}

.hero-button-phantom-primary-cta {
  background: rgba(255, 255, 255, 0.9) !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  text-shadow: none !important;
}

.hero-button-phantom-secondary-cta {
  background: rgba(0, 0, 0, 0.7) !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

.hero-button-phantom-primary-cta:hover,
.hero-button-phantom-secondary-cta:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-button-phantom-primary-cta:hover {
  background: rgba(255, 255, 255, 1) !important;
}

.hero-button-phantom-secondary-cta:hover {
  background: rgba(0, 0, 0, 0.8) !important;
}

.hero-button-content-phantom-primary,
.hero-button-content-phantom-secondary {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.hero-button-content-phantom-primary {
  color: #000000 !important;
}

.hero-button-content-phantom-secondary {
  color: #ffffff !important;
}

.hero-button-text-phantom-primary,
.hero-button-text-phantom-secondary {
  font-weight: 600;
}

.hero-button-icon-phantom-primary,
.hero-button-icon-phantom-secondary {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.hero-button-icon-phantom-primary {
  fill: #000000 !important;
  stroke: #000000 !important;
}

.hero-button-icon-phantom-secondary {
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

.hero-button-phantom-primary-cta:hover .hero-button-icon-phantom-primary,
.hero-button-phantom-secondary-cta:hover .hero-button-icon-phantom-secondary {
  transform: translateX(3px);
}

.hero-button-glow-phantom-primary,
.hero-button-glow-phantom-secondary {
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.hero-button-phantom-primary-cta:hover .hero-button-glow-phantom-primary,
.hero-button-phantom-secondary-cta:hover .hero-button-glow-phantom-secondary {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}

/* Reduced motion support for hero section */
@media (prefers-reduced-motion: reduce) {
  .hero-section .title-line,
  .hero-section .hero-subtitle,
  .hero-section .hero-btn {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Luxury Appointment Section */
.luxury-appointment-section {
  background: #ffffff;
  color: #000000;
  padding: 80px min(6vw, 70px);
  position: relative;
  overflow: hidden;
}

.luxury-appointment-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.luxury-appointment-content {
  position: relative;
  z-index: 2;
}

.luxury-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #000000;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: luxuryTitleFadeIn 1s ease forwards;
}

.luxury-subtitle {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: #333333;
  margin: 0 0 40px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: luxurySubtitleFadeIn 1s ease 0.2s forwards;
}

.luxury-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: luxuryButtonsFadeIn 1s ease 0.4s forwards;
}

.luxury-btn {
  position: relative;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
}

.luxury-btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.luxury-btn-content svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.luxury-btn-glow {
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.primary-luxury-btn {
  background: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.primary-luxury-btn .luxury-btn-glow {
  background: linear-gradient(45deg, transparent, rgba(0, 0, 0, 0.2), transparent);
}

.secondary-luxury-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #000000;
  border: 2px solid rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.secondary-luxury-btn .luxury-btn-glow {
  background: linear-gradient(45deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.luxury-btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.luxury-btn:hover .luxury-btn-glow {
  opacity: 1;
  animation: luxuryGlowPulse 2s ease-in-out infinite;
}

.luxury-btn:hover .luxury-btn-content svg {
  transform: translateX(4px);
}

.primary-luxury-btn:hover {
  background: rgba(0, 0, 0, 1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.secondary-luxury-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(0, 0, 0, 1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

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

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

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

@keyframes luxuryGlowPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Responsive styles for luxury appointment section */
@media (max-width: 768px) {
  .luxury-appointment-section {
    padding: 60px 20px;
  }

  .luxury-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 15px;
  }

  .luxury-subtitle {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    margin-bottom: 30px;
  }

  .luxury-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .luxury-btn {
    width: 100%;
    max-width: 300px;
    padding: 14px 28px;
  }
}

@media (max-width: 480px) {
  .luxury-appointment-section {
    padding: 50px 15px;
  }

  .luxury-title {
    font-size: 1.5rem;
  }

  .luxury-subtitle {
    font-size: 1rem;
  }

  .luxury-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

.services-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  color: #fff;
  padding: 88px min(6vw, 70px);
}

.services-head {
  margin: 0 auto 38px;
  max-width: 980px;
}

.services-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  letter-spacing: -0.02em;
}

.services-head p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.services-group {
  margin-top: 42px;
}

.services-group h3 {
  margin: 0 0 18px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  background: rgba(45, 45, 45, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.service-image-wrap {
  height: 210px;
  overflow: hidden;
}

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

.service-body {
  padding: 16px 16px 18px;
}

.service-body h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #fff;
}

.service-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
  font-size: 0.95rem;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(55, 55, 55, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.1);
}

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

/* Scroll-triggered slide animations for service cards */
.service-card.slide-left {
  opacity: 0;
  transform: translateX(-100px);
}

.service-card.animate-in {
  animation: slideInFromLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInFromLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .services-section {
    padding: 68px 18px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

.home-services-preview {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  color: #fff;
  padding: 100px 0;
}

.home-services-preview__inner {
  max-width: 100%;
  margin: 0;
  padding: 0 20px;
}

.home-services-preview__head {
  margin: 0 auto 26px;
  text-align: center;
}

.home-services-preview__head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  letter-spacing: -0.02em;
}

.home-services-preview__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.home-services-preview__foot {
  margin-top: 18px;
}

.home-services-preview__link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.home-services-preview__link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Premium Service Card Styles */
.services-slider {
  margin-top: 40px;
}

.services-slider-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
  padding: 0;
}

.services-slider-track.slide-in {
  opacity: 1;
  transform: translateY(0);
}

.service-slide {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.6s ease forwards;
}

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

.service-card-luxury {
  background: rgba(45, 45, 45, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 240px;
}


.service-image-container {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.service-image-luxury {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.95) contrast(1.05);
}


.service-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
}

.service-content-premium {
  padding: 24px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
  backdrop-filter: blur(10px);
}

.service-content-premium h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-content-premium p {
  margin: 0 0 16px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.service-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-badge {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}


/* Responsive Styles for Premium Service Cards */
@media (max-width: 1024px) {
  .services-slider-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .home-services-preview {
    padding: 80px 0;
  }
  
  .home-services-preview__inner {
    padding: 0 15px;
  }
  
  .services-slider-track {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0;
  }
  
  .service-card-luxury {
    border-radius: 16px;
  }
  
  .service-image-container {
    height: 180px;
  }
  
  .service-content-premium {
    padding: 20px;
  }
  
  .service-content-premium h3 {
    font-size: 1.1rem;
  }
  
  .service-content-premium p {
    font-size: 0.85rem;
  }
  
  .feature-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
  }
}

@media (max-width: 480px) {
  .home-services-preview {
    padding: 60px 0;
  }
  
  .home-services-preview__inner {
    padding: 0 10px;
  }
  
  .services-slider-track {
    gap: 30px;
    padding: 0;
  }
  
  .service-image-container {
    height: 160px;
  }
  
  .service-content-premium {
    padding: 16px;
  }
  
  .service-content-premium h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .service-content-premium p {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
  
  .service-tag {
    font-size: 0.65rem;
    padding: 4px 10px;
    top: 12px;
    right: 12px;
  }
}

.why-preview {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  color: #fff;
  padding: 72px min(6vw, 70px) 92px;
}

.why-preview__inner {
  max-width: 980px;
  margin: 0 auto;
}

.why-preview__head {
  margin-bottom: 22px;
}

.why-preview__head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
}

.why-preview__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.why-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.why-preview__card {
  background: rgba(45, 45, 45, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.why-preview__card:hover {
  transform: translateY(-5px);
  background: rgba(55, 55, 55, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.65),
    0 0 28px rgba(255, 255, 255, 0.1);
}

.why-preview__title {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.why-preview__desc {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .why-preview__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .home-services-preview {
    padding: 68px 18px;
  }

  .why-preview {
    padding: 60px 18px 78px;
  }
}

.stats-section {
  background: #ffffff;
  padding: 72px min(6vw, 70px);
  color: #000000;
}

.stats-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}


.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 60px 20px;
  gap: 40px;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stats-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: #000000;
  margin-bottom: 8px;
}

.stats-number {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: #000000;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-label {
  color: rgba(0, 0, 0, 0.75);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .stats-section {
    padding: 54px 18px;
  }

  .stats-container {
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
  }

  .stat-item {
    gap: 6px;
  }
}

.customization-showcase {
  position: relative;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(255, 255, 255, 0.08), transparent 60%),
    radial-gradient(900px 520px at 85% 40%, rgba(255, 255, 255, 0.05), transparent 62%),
    linear-gradient(180deg, #050505 0%, #070707 60%, #050505 100%);
  color: #fff;
  padding: 92px min(6vw, 70px);
  overflow: hidden;
}

.customization-showcase__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.customization-showcase__head {
  margin-bottom: 34px;
}

.customization-showcase__head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3.4vw, 2.9rem);
  letter-spacing: -0.02em;
}

.customization-showcase__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.customization-showcase__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
  gap: 26px;
  align-items: stretch;
}

.customization-showcase__featured {
  min-height: 520px;
}

.customization-feature {
  position: relative;
  height: 100%;
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #000;
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.62),
    0 10px 22px rgba(255, 255, 255, 0.05);
  transform: translateZ(0);
}

.customization-feature__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.customization-feature:hover .customization-feature__image {
  transform: scale(1.05);
}

.customization-feature__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 380px at 30% 25%, rgba(255, 255, 255, 0.14), transparent 60%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.78));
  z-index: 1;
}

.customization-feature__meta {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px 18px 18px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.5);
}

.customization-feature__meta h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}

.customization-feature__meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
  font-size: 0.98rem;
  max-width: 52ch;
}

.customization-showcase__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 560px;
  overflow: auto;
  padding-right: 6px;
}

.customization-card {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 58px 1fr 22px;
  gap: 14px;
  align-items: center;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    background-color 0.4s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
}

.customization-card__media {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.customization-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.95);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.customization-card__title {
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.customization-card__desc {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
  font-size: 0.93rem;
}

.customization-card__chev {
  display: grid;
  place-items: center;
}

.customization-card__chev span {
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(255, 255, 255, 0.65);
  border-top: 2px solid rgba(255, 255, 255, 0.65);
  transform: rotate(45deg);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.customization-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 28px rgba(255, 255, 255, 0.08);
}

.customization-card:hover .customization-card__media img {
  filter: brightness(1.05) saturate(1.08);
  transform: scale(1.05);
}

.customization-card.is-active {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 34px rgba(255, 255, 255, 0.1);
}

.customization-card.is-active .customization-card__chev span {
  border-color: rgba(255, 255, 255, 0.92);
  transform: rotate(45deg) translate(1px, -1px);
}

@media (max-width: 1024px) {
  .customization-showcase__layout {
    grid-template-columns: 1fr;
  }

  .customization-showcase__list {
    max-height: none;
  }

  .customization-showcase__featured,
  .customization-feature {
    min-height: 460px;
  }
}

@media (max-width: 680px) {
  .customization-showcase {
    padding: 72px 18px;
  }

  .customization-feature__meta {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .customization-card {
    grid-template-columns: 54px 1fr 18px;
  }

  .customization-card__media {
    width: 54px;
    height: 54px;
  }
}

.brand-logo-strip {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-logo-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.brand-logo-track {
  display: flex;
  align-items: center;
  animation: scrollLogos 30s linear infinite;
  will-change: transform;
}

.brand-logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.brand-logo-item:hover {
  opacity: 1;
  transform: scale(1.1);
}

.brand-logo-item:hover .brand-logo {
  filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

/* Pause animation on hover */
.brand-logo-track:hover {
  animation-play-state: paused;
}

/* Infinite scroll animation */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .brand-logo-strip {
    padding: 30px 0;
  }
  
  .brand-logo-item {
    padding: 0 25px;
  }
  
  .brand-logo {
    height: 45px;
  }
}

@media (max-width: 480px) {
  .brand-logo-strip {
    padding: 25px 0;
  }
  
  .brand-logo-item {
    padding: 0 20px;
  }
  
  .brand-logo {
    height: 35px;
  }
}

.customization-transformations {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.customization-transformations__head h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.customization-transformations__head p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.68);
}

.customization-transformations__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.transformation-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
  transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.transformation-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.72),
    0 0 28px rgba(255, 255, 255, 0.08);
}

.transformation-card__media {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #000;
}

.transformation-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.75s ease;
}

.transformation-card:hover .transformation-card__img {
  transform: scale(1.1) translateX(-2%);
}

.transformation-card__media::before {
  content: '';
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.14) 45%,
    rgba(255, 255, 255, 0.24) 50%,
    rgba(255, 255, 255, 0.14) 55%,
    transparent 100%
  );
  transform: translateX(-30%) rotate(8deg);
  opacity: 0;
  transition: transform 0.9s ease, opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}

.transformation-card:hover .transformation-card__media::before {
  opacity: 1;
  transform: translateX(30%) rotate(8deg);
}

.transformation-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 240px at 25% 15%, rgba(255, 255, 255, 0.14), transparent 65%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.7));
  pointer-events: none;
}


.transformation-card__body {
  padding: 14px 16px 16px;
}

.transformation-card__title {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.transformation-card__subtitle {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
  font-size: 0.93rem;
}

@media (max-width: 1024px) {
  .customization-transformations__grid {
    grid-template-columns: 1fr;
  }

  .transformation-card__media {
    height: 240px;
  }
}

.booking-cta {
  position: relative;
  padding: 92px min(6vw, 70px);
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(255, 255, 255, 0.08), transparent 62%),
    radial-gradient(700px 520px at 85% 45%, rgba(255, 255, 255, 0.05), transparent 60%),
    linear-gradient(135deg, #050505, #0a0a0a, #050505);
  background-size: 200% 200%;
  animation: bookingCtaGradient 18s ease-in-out infinite;
}

@keyframes bookingCtaGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.booking-cta__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: center;
}

.booking-cta__left {
  position: relative;
  padding: 12px 0;
}

.booking-cta__glow {
  position: absolute;
  inset: -40px -40px auto -40px;
  height: 280px;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.14), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.booking-cta__left h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.06;
  max-width: 18ch;
}

.booking-cta__left p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  max-width: 56ch;
  line-height: 1.55;
}

.booking-cta__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 10px;
  max-width: 62ch;
}

.booking-cta__bullets li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.booking-cta__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

.booking-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.booking-cta__btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background-color 0.35s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
}

.booking-cta__btn--primary {
  background: #fff;
  color: #000;
  border-color: rgba(255, 255, 255, 0.92);
}

.booking-cta__btn:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 30px rgba(255, 255, 255, 0.1);
}

.booking-cta__btn--primary:hover {
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 34px rgba(255, 255, 255, 0.16);
}

.booking-cta__right {
  display: grid;
  justify-items: stretch;
}

.booking-cta-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.62),
    0 10px 22px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.booking-cta-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 30px 72px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 32px rgba(255, 255, 255, 0.08);
}

.booking-cta-card__top {
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(500px 240px at 30% 10%, rgba(255, 255, 255, 0.09), transparent 70%),
    rgba(0, 0, 0, 0.14);
}

.booking-cta-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
}

.booking-cta-card__title {
  margin-top: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.25rem;
}

.booking-cta-card__subtitle {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  font-size: 0.95rem;
}

.booking-cta-card__form {
  padding: 16px 18px 10px;
  display: grid;
  gap: 12px;
}

.booking-cta-card__row {
  display: grid;
  gap: 12px;
}

.booking-cta-card__row--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-cta-card__field {
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 12px;
}

.booking-cta-card__label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.booking-cta-card__input {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-cta-card__bottom {
  padding: 14px 18px 18px;
  display: grid;
  gap: 10px;
}

.booking-cta-card__cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff;
  color: #000;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255, 255, 255, 0.92);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.booking-cta-card__cta:hover {
  transform: scale(1.02);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.55),
    0 0 26px rgba(255, 255, 255, 0.12);
}

.booking-cta-card__note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .booking-cta__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .booking-cta {
    padding: 72px 18px;
  }

  .booking-cta__left h2 {
    max-width: none;
  }

  .booking-cta-card__row--two {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   HOME ABOUT US SECTION
   ============================================ */

.home-about-section {
  padding: 80px min(6vw, 70px);
  background: #ffffff;
}

.home-about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.home-about-content {
  padding-right: 40px;
}

.home-about-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.1;
  position: relative;
  padding-bottom: 15px;
  border-bottom: 3px solid #000000;
  display: inline-block;
}

.home-about-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #000000 0%, #333333 50%, #000000 100%);
  border-radius: 2px;
}

.home-about-title::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 85px;
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, #000000 0%, #666666 100%);
  border-radius: 2px;
}

.home-about-text {
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.home-about-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  max-width: 450px;
  margin: 0 auto;
  border: 3px solid #e0e0e0;
}

.home-about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.home-about-image:hover img {
  transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .home-about-section {
    padding: 60px 20px;
  }
  
  .home-about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .home-about-content {
    padding-right: 0;
  }
  
  .home-about-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  
  .home-about-text {
    font-size: 1rem;
  }
}

/* ============================================
   CINEMATIC CUSTOMIZATION GALLERY
   ============================================ */

.customization-gallery {
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.customization-gallery.loaded {
  opacity: 1;
  transform: translateY(0);
}

.gallery-header-cinematic {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.badge-glow {
  width: 8px;
  height: 8px;
  background: linear-gradient(45deg, #fff, #888);
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

.gallery-title-cinematic {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #ccc 50%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.gallery-subtitle-cinematic {
  font-size: 1.2rem;
  color: #888;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.gallery-grid-cinematic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item-cinematic {
  opacity: 0;
  transform: translateY(40px) rotateX(-10deg);
  animation: cinematicFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: calc(var(--item-index) * 0.2s);
  perspective: 1000px;
}

.gallery-frame {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  height: 300px;
}

.gallery-item-cinematic:hover .gallery-frame {
  transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(255, 255, 255, 0.1);
}

.gallery-shimmer-wrapper {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  pointer-events: none;
}

.gallery-shimmer-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  animation: shimmerLine 3s ease-in-out infinite;
}

.gallery-shimmer-line:nth-child(2) {
  animation-delay: 0.5s;
}

.gallery-shimmer-line:nth-child(3) {
  animation-delay: 1s;
}

.gallery-image-cinematic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--image-delay, 0s);
  opacity: 0;
  transform: translateX(-50px) scale(1.1) rotateX(5deg);
  filter: blur(5px);
}

.gallery-image-cinematic.loaded {
  opacity: 1;
  transform: translateX(0) scale(1) rotateX(0deg);
  filter: blur(0);
}

.gallery-item-cinematic:hover .gallery-image-cinematic {
  transform: translateX(0) scale(1.15) rotateX(-2deg);
  filter: blur(0);
}

.gallery-overlay-cinematic {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-cinematic:hover .gallery-overlay-cinematic {
  opacity: 1;
}

.overlay-content {
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-cinematic:hover .overlay-content {
  transform: translateY(0);
}

.overlay-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.overlay-description {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.overlay-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.overlay-action svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.overlay-action:hover svg {
  transform: translate(3px, -3px);
}

.gallery-frame-border {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.gallery-item-cinematic:hover .gallery-frame-border {
  opacity: 1;
  animation: borderGlow 3s linear infinite;
}

.gallery-corner-decoration {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: all 0.6s ease;
}

.gallery-corner-tl {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.gallery-corner-tr {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
}

.gallery-corner-bl {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
}

.gallery-corner-br {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

.gallery-item-cinematic:hover .gallery-corner-decoration {
  opacity: 1;
}

/* View Detail Button Overlay */
.gallery-view-detail-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  z-index: 4;
  pointer-events: auto;
}

.gallery-view-detail-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff !important;
  color: #000000 !important;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid #000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  transform: none !important;
  animation: none !important;
}

.gallery-view-detail-btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.gallery-info {
  margin-top: 1.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: calc(var(--item-index) * 0.2s + 0.4s);
}

.gallery-item-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.gallery-item-description {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 700;
}

/* Gallery Content - Always Visible */
.gallery-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
  padding: 1.5rem;
  color: #fff;
  transform: translateY(0);
  opacity: 1;
  transition: all 0.3s ease;
}

.gallery-content .view-detail-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
  margin-top: 0.5rem;
}

.gallery-content .view-detail-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Cinematic Animations */
@keyframes cinematicFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px) rotateX(-10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

@keyframes shimmerLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .customization-gallery {
    padding: 3rem 1rem;
  }

  .gallery-title-cinematic {
    font-size: 2rem;
  }

  .gallery-subtitle-cinematic {
    font-size: 1rem;
  }

  .gallery-grid-cinematic {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-frame {
    height: 250px;
  }

  .overlay-content {
    padding: 1rem;
  }

  .overlay-title {
    font-size: 1.2rem;
  }

  .gallery-item-title {
    font-size: 1.1rem;
  }
}

/* Tablet Responsive Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .gallery-grid-cinematic {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .gallery-frame {
    height: 280px;
  }
}

/* Large Screens */
@media (min-width: 1400px) {
  .gallery-grid-cinematic {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-frame {
    height: 320px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .gallery-shimmer-line,
  .badge-glow {
    animation: none !important;
  }
  
  .gallery-item-cinematic {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  
  .gallery-info {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}/* ============================================
   GALLERY SECTION
   ============================================ */
.home-gallery {
  padding: 80px min(6vw, 70px);
  background: #000;
}

.home-gallery__container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item.slide-in {
  animation: slideInFromLeft 0.6s ease forwards;
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100px) translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-icon {
  color: #fff;
  font-size: 24px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .home-gallery {
    padding: 60px 20px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .home-gallery {
    padding: 40px 15px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
/* Generic Hero Heading Styles - Consistent Across All Pages */

h1.hero-heading-generic,
.booking-hero h1.hero-heading-generic,
.contact-hero h1.hero-heading-generic,
.faq-hero h1.hero-heading-generic,
.booking-hero__inner h1.hero-heading-generic,
.contact-hero__content h1.hero-heading-generic,
.faq-hero__content h1.hero-heading-generic,
.main h1.hero-heading-generic,
section h1.hero-heading-generic {
  margin: 0 0 20px !important;
  font-size: clamp(1.8rem, 5vw, 3.2rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  color: #ffffff !important;
  text-align: center !important;
}

.hero-heading-generic .title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: titleSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-heading-generic .title-line:first-child {
  animation-delay: 0.2s;
}

.hero-heading-generic .title-line:last-child {
  animation-delay: 0.4s;
}

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

/* Generic Hero Subtitle */
p.hero-subtitle-generic,
.booking-hero p.hero-subtitle-generic,
.contact-hero p.hero-subtitle-generic,
.faq-hero p.hero-subtitle-generic,
.booking-hero__inner p.hero-subtitle-generic,
.contact-hero__content p.hero-subtitle-generic,
.faq-hero__content p.hero-subtitle-generic,
.main p.hero-subtitle-generic,
section p.hero-subtitle-generic {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 0 !important;
  text-align: center !important;
  opacity: 0;
  transform: translateY(20px);
  animation: subtitleFadeIn 0.8s ease forwards;
  animation-delay: 0.6s;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  h1.hero-heading-generic {
    font-size: clamp(1.6rem, 6vw, 2.4rem) !important;
  }
  
  p.hero-subtitle-generic {
    font-size: clamp(1rem, 2.8vw, 1.2rem) !important;
  }
}

@media (max-width: 480px) {
  h1.hero-heading-generic {
    font-size: clamp(1.4rem, 5vw, 2rem) !important;
  }
  
  p.hero-subtitle-generic {
    font-size: clamp(0.95rem, 3vw, 1.1rem) !important;
  }
}

/* Specific Hero Title Classes - Increased Desktop Font Sizes */
.about-hero__title,
.services-hero__title,
.hero-title-customization,
.faq-hero__title,
.booking-hero__title,
.contact-hero__title {
  margin: 0 0 20px !important;
  font-size: clamp(2.2rem, 5.5vw, 4rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  color: #ffffff !important;
  text-align: center !important;
}

.hero-title-premium-main {
  margin: 0 0 20px !important;
  font-size: clamp(2.2rem, 5.5vw, 4rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  color: #ffffff !important;
  text-align: left !important;
}

.hero-subtitle-premium-services {
  margin: 0 0 20px !important;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  text-align: left !important;
  line-height: 1.4 !important;
}

/* Responsive adjustments for specific hero titles */
@media (max-width: 768px) {
  .about-hero__title,
  .services-hero__title,
  .hero-title-customization,
  .faq-hero__title,
  .booking-hero__title,
  .contact-hero__title,
  .hero-title-premium-main {
    font-size: clamp(1.8rem, 6vw, 2.8rem) !important;
  }
  
  .hero-subtitle-premium-services {
    font-size: clamp(1rem, 2.8vw, 1.2rem) !important;
  }
}

@media (max-width: 480px) {
  .about-hero__title,
  .services-hero__title,
  .hero-title-customization,
  .faq-hero__title,
  .booking-hero__title,
  .contact-hero__title,
  .hero-title-premium-main {
    font-size: clamp(1.6rem, 5vw, 2.2rem) !important;
  }
  
  .hero-subtitle-premium-services {
    font-size: clamp(0.95rem, 3vw, 1.1rem) !important;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hero-heading-generic .title-line,
  .hero-subtitle-generic {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
/* ============================================
   PREMIUM REVIEWS / TESTIMONIALS SECTION
   ============================================ */

.reviews-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg, #080808 0%, #0a0a0a 50%, #080808 100%);
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 1s ease;
}

.reviews-section.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Background Effects */
.reviews-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.reviews-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.15;
  animation: orbFloatReviews 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, transparent 70%);
  top: -200px;
  left: -100px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  animation-delay: -10s;
}

@keyframes orbFloatReviews {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
}

/* Container */
.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.reviews-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: headerReveal 0.8s ease forwards;
  animation-delay: 0.2s;
}

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

.reviews-badge {
  display: inline-block;
  background: rgba(128, 128, 128, 0.1);
  border: 1px solid rgba(128, 128, 128, 0.3);
  color: #808080;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.reviews-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  background: linear-gradient(135deg, #fff 0%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Carousel */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.reviews-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.reviews-slide {
  padding: 15px;
  box-sizing: border-box;
}

/* Review Card */
.review-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 4rem;
  color: rgba(128, 128, 128, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.review-card__glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, 
    rgba(128, 128, 128, 0.1) 0%, 
    transparent 30%, 
    transparent 70%, 
    rgba(128, 128, 128, 0.05) 100%
  );
  border-radius: 26px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 40px rgba(128, 128, 128, 0.08);
}

.review-card:hover .review-card__glow {
  opacity: 1;
}

.review-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Review Header */
.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, 0.3);
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  position: relative;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-avatar__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #808080;
  background: rgba(128, 128, 128, 0.1);
}

.review-meta {
  flex: 1;
}

.review-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: #fff;
}

/* Star Rating */
.star-rating {
  display: flex;
  gap: 4px;
}

.star {
  width: 18px;
  height: 18px;
}

.star-full {
  color: #808080;
  filter: drop-shadow(0 0 4px rgba(128, 128, 128, 0.5));
}

.star-half {
  color: #808080;
}

.star-empty {
  color: rgba(255, 255, 255, 0.15);
}

/* Review Text */
.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 20px;
  flex: 1;
  font-style: italic;
}

/* Review Footer */
.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.review-car {
  font-size: 0.85rem;
  font-weight: 600;
  color: #808080;
  background: rgba(128, 128, 128, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

.review-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Navigation Arrows */
.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.reviews-arrow svg {
  width: 24px;
  height: 24px;
}

.reviews-arrow-prev {
  left: 10px;
}

.reviews-arrow-next {
  right: 10px;
}

.reviews-arrow:hover {
  background: rgba(128, 128, 128, 0.15);
  border-color: rgba(128, 128, 128, 0.4);
  box-shadow: 0 0 30px rgba(128, 128, 128, 0.2);
  transform: translateY(-50%) scale(1.1);
}

/* Progress Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.reviews-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding: 0;
  transition: all 0.3s ease;
}

.reviews-dot__fill {
  position: absolute;
  inset: 0;
  background: #808080;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(128, 128, 128, 0.5);
}

.reviews-dot.active .reviews-dot__fill {
  transform: scale(1);
}

.reviews-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.3);
}

/* Progress Bar */
.reviews-progress {
  max-width: 400px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin: 30px auto 0;
  overflow: hidden;
}

.reviews-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, #808080, rgba(128, 128, 128, 0.5));
  border-radius: 3px;
  transition: width 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .reviews-section {
    padding: 80px 20px;
  }
  
  .reviews-title {
    font-size: 2.2rem;
  }
  
  .review-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 15px;
  }
  
  .reviews-header {
    margin-bottom: 40px;
  }
  
  .reviews-title {
    font-size: 1.8rem;
  }
  
  .reviews-subtitle {
    font-size: 0.95rem;
  }
  
  .reviews-slide {
    padding: 10px;
  }
  
  .review-card {
    padding: 20px;
  }
  
  .review-header {
    gap: 12px;
  }
  
  .review-avatar {
    width: 50px;
    height: 50px;
  }
  
  .review-name {
    font-size: 1rem;
  }
  
  .star {
    width: 16px;
    height: 16px;
  }
  
  .review-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .review-car {
    font-size: 0.8rem;
  }
  
  .reviews-arrow {
    width: 40px;
    height: 40px;
    display: none; /* Hide arrows on mobile, use swipe */
  }
  
  .reviews-dots {
    margin-top: 30px;
  }
  
  .reviews-dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .reviews-title {
    font-size: 1.5rem;
  }
  
  .review-card::before {
    font-size: 3rem;
    top: 15px;
    right: 20px;
  }
  
  .review-footer {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .reviews-section,
  .review-card,
  .reviews-track {
    transition: none;
    animation: none;
  }
  
  .reviews-orb {
    animation: none;
  }
}
/* ============================================
   BEFORE / AFTER IMAGE COMPARISON SLIDER
   ============================================ */

.before-after-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Main Container */
.before-after-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 0 100px rgba(0, 0, 0, 0.3);
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

.before-after-container.dragging {
  cursor: grabbing;
}

/* Image Wrappers */
.before-image-wrapper,
.after-image-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.before-image-wrapper {
  z-index: 1;
}

.after-image-wrapper {
  z-index: 2;
  transition: clip-path 0.1s ease-out;
}

.before-after-container.dragging .after-image-wrapper {
  transition: none;
}

/* Images */
.before-after-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* Image Labels */
.image-label {
  position: absolute;
  top: 20px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  pointer-events: none;
  z-index: 3;
  transition: all 0.3s ease;
}

.before-label {
  left: 20px;
  border-color: rgba(255, 100, 100, 0.3);
  background: rgba(150, 50, 50, 0.4);
}

.after-label {
  right: 20px;
  border-color: rgba(100, 255, 100, 0.3);
  background: rgba(50, 150, 50, 0.4);
}

/* Slider Handle */
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Vertical Line */
.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(128, 128, 128, 0.8) 20%,
    rgba(128, 128, 128, 0.8) 80%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(128, 128, 128, 0.5);
  transition: all 0.3s ease;
}

/* Slider Knob */
.slider-knob {
  position: relative;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border: 2px solid rgba(128, 128, 128, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 0 4px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(128, 128, 128, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: auto;
  cursor: grab;
}

.slider-knob svg {
  width: 14px;
  height: 14px;
  color: #808080;
  opacity: 0.8;
}

/* Slider Glow */
.slider-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(128, 128, 128, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Hover States */
.before-after-container:hover .slider-knob {
  transform: scale(1.1);
  border-color: rgba(128, 128, 128, 0.9);
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.6),
    0 0 0 4px rgba(0, 0, 0, 0.3),
    0 0 50px rgba(128, 128, 128, 0.4);
}

.before-after-container:hover .slider-glow {
  opacity: 1;
}

.before-after-container:hover .slider-line {
  width: 4px;
  box-shadow: 0 0 30px rgba(128, 128, 128, 0.7);
}

/* Dragging States */
.before-after-container.dragging .slider-knob {
  transform: scale(0.95);
  cursor: grabbing;
  border-color: #808080;
  box-shadow: 
    0 5px 30px rgba(0, 0, 0, 0.4),
    0 0 0 4px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(128, 128, 128, 0.6);
}

.before-after-container.dragging .slider-glow {
  opacity: 1;
}

/* Instructions */
.slider-instructions {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.before-after-container.dragging .slider-instructions,
.before-after-container:hover .slider-instructions {
  opacity: 0;
}

.slider-instructions span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-instructions span::before,
.slider-instructions span::after {
  content: '';
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5));
}

.slider-instructions span::after {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.5), transparent);
}

/* Section Styling for Home Page */
.before-after-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg, #080808 0%, #0d0d0d 50%, #080808 100%);
  overflow: hidden;
}

.before-after-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(128, 128, 128, 0.2), transparent);
}

.before-after-header {
  text-align: center;
  margin-bottom: 60px;
}

.before-after-badge {
  display: inline-block;
  background: rgba(128, 128, 128, 0.1);
  border: 1px solid rgba(128, 128, 128, 0.3);
  color: #808080;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.before-after-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  background: linear-gradient(135deg, #fff 0%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.before-after-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Background Effects */
.before-after-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.before-after-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.1;
  animation: orbFloatBeforeAfter 25s ease-in-out infinite;
}

.before-after-orb-1 {
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.before-after-orb-2 {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  animation-delay: -12s;
}

@keyframes orbFloatBeforeAfter {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.15); }
}

/* Responsive */
@media (max-width: 768px) {
  .before-after-section {
    padding: 60px 15px;
  }
  
  .before-after-header {
    margin-bottom: 40px;
  }
  
  .before-after-container {
    border-radius: 16px;
    aspect-ratio: 4 / 3;
  }
  
  .slider-knob {
    width: 44px;
    height: 44px;
  }
  
  .slider-knob svg {
    width: 12px;
    height: 12px;
  }
  
  .image-label {
    font-size: 0.7rem;
    padding: 6px 12px;
    top: 12px;
  }
  
  .before-label {
    left: 12px;
  }
  
  .after-label {
    right: 12px;
  }
  
  .slider-instructions {
    font-size: 0.75rem;
    padding: 8px 16px;
    bottom: 12px;
  }
}

@media (max-width: 480px) {
  .before-after-container {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
  }
  
  .slider-knob {
    width: 40px;
    height: 40px;
  }
  
  .slider-line {
    width: 2px;
  }
  
  .image-label {
    font-size: 0.65rem;
    padding: 5px 10px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .after-image-wrapper {
    transition: none;
  }
  
  .slider-knob,
  .slider-line,
  .slider-glow,
  .image-label {
    transition: none;
  }
  
  .before-after-orb {
    animation: none;
  }
}


.premium-why-choose-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background: linear-gradient(135deg, #000000 0%, #525255 50%, #0b0b0b 100%);
  overflow: hidden;
  padding: 100px 0;
}

.premium-why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(110, 111, 112, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(100, 99, 100, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.premium-why-choose-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.premium-why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.premium-why-choose-text {
  opacity: 0;
  transform: translateX(-50px);
  animation: premiumSlideInLeft 1s ease-out forwards;
}

@keyframes premiumSlideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.premium-why-choose-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.premium-title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: premiumFadeSlideUp 0.8s ease-out forwards;
}

.premium-title-line:nth-child(2) {
  animation-delay: 0.2s;
}

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

.premium-title-highlight {
  color: white;
  background: linear-gradient(135deg, #fafafa 0%, #fdfdfd 50%, #f7f4f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.premium-why-choose-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 50px;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: premiumFadeIn 1s ease-out 0.4s forwards;
}

@keyframes premiumFadeIn {
  to {
    opacity: 1;
  }
}

.premium-features-slider {
  position: relative;
  min-height: 200px;
  margin-bottom: 40px;
}

.premium-feature-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.premium-feature-item.premium-feature-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.premium-feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(83, 83, 83, 0.2) 0%, rgba(92, 92, 92, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3f3f3f;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.premium-feature-item.premium-feature-active .premium-feature-icon {
  background: linear-gradient(135deg, #808080 0%, #111111 100%);
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(95, 95, 95, 0.3);
}

.premium-feature-text {
  flex: 1;
}

.premium-feature-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.1s;
}

.premium-feature-item.premium-feature-active .premium-feature-title {
  opacity: 1;
  transform: translateY(0);
}

.premium-feature-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.2s;
}

.premium-feature-item.premium-feature-active .premium-feature-desc {
  opacity: 1;
  transform: translateY(0);
}

.premium-why-choose-indicators {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.premium-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.premium-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(135deg, #414141 0%, #1b1b1b 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.premium-indicator:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.premium-indicator.premium-indicator-active {
  border-color: rgba(96, 96, 97, 0.5);
}

.premium-indicator.premium-indicator-active::before {
  width: 100%;
  height: 100%;
}

.premium-why-choose-visual {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  animation: premiumSlideInRight 1s ease-out 0.3s forwards;
}

@keyframes premiumSlideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.premium-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(112, 112, 112, 0.1);
  transition: all 0.5s ease;
}

.premium-image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 35px 100px rgba(0, 0, 0, 0.6),
    0 0 120px rgba(88, 88, 88, 0.15);
}

.premium-why-choose-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.premium-image-wrapper:hover .premium-why-choose-image {
  transform: scale(1.05);
}

.premium-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(104, 105, 105, 0.15) 0%,
    transparent 50%,
    rgba(105, 104, 105, 0.15) 100%
  );
  pointer-events: none;
}

.premium-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(89, 90, 90, 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(60px);
  pointer-events: none;
  animation: premiumPulseGlow 4s ease-in-out infinite;
}

@keyframes premiumPulseGlow {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.premium-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.premium-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.premium-float-1 {
  top: 10%;
  right: -20px;
  animation: premiumFloat1 6s ease-in-out infinite;
}

.premium-float-2 {
  bottom: 15%;
  left: -20px;
  animation: premiumFloat2 6s ease-in-out infinite 1s;
}

@keyframes premiumFloat1 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes premiumFloat2 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(20px) rotate(-5deg);
  }
}

.premium-float-card svg {
  color: #ffffff;
}

/* Responsive Design */

@media (max-width: 1024px) {
  .premium-why-choose-section {
    padding: 80px 0;
  }

  .premium-why-choose-container {
    padding: 0 30px;
  }

  .premium-why-choose-content {
    gap: 60px;
  }

  .premium-why-choose-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .premium-why-choose-image {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .premium-why-choose-section {
    padding: 60px 0;
    min-height: auto;
  }

  .premium-why-choose-container {
    padding: 0 20px;
  }

  .premium-why-choose-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .premium-why-choose-text {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .premium-why-choose-visual {
    opacity: 1;
    transform: none;
    animation: none;
    order: -1;
  }

  .premium-why-choose-title {
    font-size: 2rem;
  }

  .premium-title-line {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .premium-why-choose-subtitle {
    opacity: 1;
    animation: none;
  }

  .premium-why-choose-image {
    height: 300px;
  }

  .premium-float-1 {
    right: 10px;
  }

  .premium-float-2 {
    left: 10px;
  }

  .premium-feature-title {
    font-size: 1.25rem;
  }

  .premium-feature-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .premium-why-choose-section {
    padding: 40px 0;
  }

  .premium-why-choose-container {
    padding: 0 15px;
  }

  .premium-why-choose-content {
    gap: 40px;
  }

  .premium-why-choose-title {
    font-size: 1.75rem;
  }

  .premium-why-choose-subtitle {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .premium-features-slider {
    min-height: 180px;
    margin-bottom: 30px;
  }

  .premium-feature-item {
    gap: 15px;
  }

  .premium-feature-icon {
    width: 45px;
    height: 45px;
  }

  .premium-feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .premium-feature-title {
    font-size: 1.1rem;
  }

  .premium-feature-desc {
    font-size: 0.9rem;
  }

  .premium-why-choose-image {
    height: 250px;
  }

  .premium-float-card {
    padding: 10px 16px;
    font-size: 0.75rem;
  }

  .premium-float-card svg {
    width: 16px;
    height: 16px;
  }
}
/* Home Services Section - Unique Classes (hss- prefix) */

.hss-section {
  padding: 5rem 1rem;
  background: linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.hss-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hss-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header Styles */
.hss-header {
  text-align: center;
  margin-bottom: 3.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hss-header-visible {
  opacity: 1;
  transform: translateY(0);
}

.hss-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffffff;
  margin-bottom: 0.75rem;
  position: relative;
}

.hss-subtitle::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.hss-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hss-intro {
  font-size: 1.125rem;
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid Layout */
.hss-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 4.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .hss-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hss-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card Styles */
.hss-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.hss-card {
  background: rgba(45, 45, 45, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.hss-card-link:hover .hss-card {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 255, 255, 0.1);
}

/* View Detail Button Styles */
.hss-view-detail-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.hss-view-detail-btn:hover {
  background: #f0f0f0;
  /* No transform - keeping button static */
}

.hss-animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hss-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(255, 255, 255, 0.1);
}

/* Card Image */
.hss-card-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.hss-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hss-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.hss-card:hover .hss-card-overlay {
  opacity: 0.8;
}

/* Card Content */
.hss-card-content {
  padding: 1.5rem;
}

.hss-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.hss-card-description {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}

/* CTA Button */
.hss-cta-wrap {
  text-align: center;
  margin-top: 2rem;
}

.hss-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hss-cta-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 ease;
}

.hss-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

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

.hss-cta-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.hss-cta-btn:hover svg {
  transform: translateX(4px);
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .hss-section {
    padding: 3rem 1rem;
  }

  .hss-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hss-card-image-wrap {
    height: 200px;
  }

  .hss-card-content {
    padding: 1.25rem;
  }

  .hss-title {
    font-size: 1.75rem;
  }

  .hss-intro {
    font-size: 1rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hss-header,
  .hss-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hss-card-image,
  .hss-cta-btn,
  .hss-cta-btn svg {
    transition: none;
  }
}
/* ============================================
   PREMIUM SERVICES CAROUSEL - LUXURY THEME
   ============================================ */

.services-page {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%, #0f0f0f 100%);
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Animated Background Effects */
.services-bg-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

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

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,200,200,0.1) 0%, transparent 70%);
  bottom: 10%;
  right: -100px;
  animation-delay: -7s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation-delay: -14s;
}

@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 SECTION - ANIMATED ENTRANCE
   ============================================ */

.services-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  z-index: 1;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.85) 100%);
}

.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.services-hero__content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 2;
}


.title-line {
  display: block;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  opacity: 0;
  transform: translateX(-100px);
  text-transform: uppercase;
  position: relative;
}

.title-line-1 {
  animation: slideInFromLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.2s;
}

.title-line-2 {
  animation: slideInFromLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.4s;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.title-line-2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.3) 100%);
  border-radius: 2px;
  animation: slideInFromLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.6s;
  opacity: 0;
  transform: translateX(-100px);
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


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

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 1.2s;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 13px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s ease-in-out infinite;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Loaded State Animations */
.services-hero.loaded .title-line-1,
.services-hero.loaded .title-line-2,
.services-hero.loaded .hero-subtitle {
  animation-play-state: running;
}

/* Prevent animation interruption errors */
.progress-bar {
  will-change: transform;
}

/* ============================================
   PREMIUM CAROUSEL SECTION
   ============================================ */

.services-carousel-section {
  position: relative;
  padding: 80px 20px 100px;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.services-carousel-section.loaded {
  opacity: 1;
  transform: translateY(0);
}

.carousel-header {
  text-align: center;
  margin-bottom: 60px;
}

.carousel-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.2s;
}

.title-accent {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  margin: 0 auto;
  opacity: 0;
  animation: expandWidth 0.8s ease forwards;
  animation-delay: 0.4s;
}

@keyframes expandWidth {
  from { width: 0; opacity: 0; }
  to { width: 60px; opacity: 1; }
}

/* ============================================
   CAROUSEL CONTAINER & TRACK
   ============================================ */

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  perspective: 1000px;
}

.carousel-track {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   CAROUSEL SLIDES
   ============================================ */

.services-carousel-slide {
  position: absolute;
  width: 380px;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: scale(0.7) translateX(0);
  pointer-events: none;
}

.services-carousel-slide.services-slide-active {
  opacity: 1;
  transform: scale(1) translateX(0);
  z-index: 10;
  pointer-events: all;
}

.services-carousel-slide.services-slide-prev {
  opacity: 0.4;
  transform: scale(0.75) translateX(-450px);
  z-index: 5;
  filter: blur(2px);
}

.services-carousel-slide.services-slide-next {
  opacity: 0.4;
  transform: scale(0.75) translateX(450px);
  z-index: 5;
  filter: blur(2px);
}

.services-carousel-slide.services-slide-hidden {
  opacity: 0;
  transform: scale(0.5);
  z-index: 0;
}

/* ============================================
   LUXURY SERVICE CARD
   ============================================ */

.services-carousel-card {
  position: relative;
  background: rgba(45, 45, 45, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 550px;
  display: flex;
  flex-direction: column;
}

/* Card Glow Effect */
.services-carousel-card-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, 
    rgba(255,255,255,0.2) 0%, 
    transparent 50%, 
    rgba(255,255,255,0.1) 100%);
  border-radius: 26px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ============================================
   IMAGE CONTAINER
   ============================================ */

.services-carousel-image-container {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.services-carousel-image-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.1) 50%,
    transparent 100%
  );
  animation: shimmer 2s infinite;
  z-index: 2;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.services-carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.9) contrast(1.1);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    rgba(0,0,0,0.8) 100%
  );
  z-index: 1;
}

/* Service Tag */
.services-carousel-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  z-index: 3;
  transform: translateY(-10px);
  opacity: 0;
  animation: tagSlideIn 0.5s ease forwards;
  animation-delay: 0.3s;
}

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

/* ============================================
   SERVICE CONTENT
   ============================================ */

.services-carousel-content {
  padding: 24px;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services-carousel-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-carousel-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 16px;
  white-space: pre-line;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Service Features */
.services-carousel-features {
  margin: 16px 0 20px;
}

.services-carousel-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.services-carousel-feature svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.services-carousel-feature span {
  line-height: 1.4;
}

.services-carousel-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 10px 20px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.services-carousel-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.services-carousel-cta:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.services-carousel-cta:hover svg {
  transform: translateX(4px);
}

/* ============================================
   NAVIGATION ARROWS
   ============================================ */

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-nav svg {
  width: 24px;
  height: 24px;
}

.carousel-nav-prev {
  left: -25px;
}

.carousel-nav-next {
  right: -25px;
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

/* ============================================
   DOTS INDICATOR
   ============================================ */

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  padding: 0;
}

.dot-inner {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.2);
}

.carousel-dot.active .dot-inner {
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.carousel-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.35);
}

/* ============================================
   PROGRESS BAR
   ============================================ */

.carousel-progress {
  max-width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 30px auto 0;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0.5));
  border-radius: 2px;
  animation: progressFill 4s linear infinite;
}

@keyframes progressFill {
  0% { width: 0; }
  100% { width: 100%; }
}

/* ============================================
   FEATURES GRID
   ============================================ */

.services-features {
  padding: 80px 20px 100px;
  background: #ffffff;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.services-features.loaded {
  opacity: 1;
  transform: translateY(0);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: featureFadeIn 0.6s ease forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

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

.feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  color: #000;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: #000000;
  font-weight: 700;
}

.feature-item p {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}

/* ============================================
   PREMIUM PROCESS SECTION
   ============================================ */

.services-process {
  padding: 80px 20px 100px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.services-process.loaded {
  opacity: 1;
  transform: translateY(0);
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  background: linear-gradient(135deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  z-index: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: processFadeIn 0.6s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }

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

.step-number {
  width: 60px;
  height: 60px;
  background: rgba(55, 55, 55, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  background: rgba(75, 75, 75, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: #fff;
}

.step-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.services-testimonials {
  padding: 80px 20px 100px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  background: #ffffff;
}

.services-testimonials.loaded {
  opacity: 1;
  transform: translateY(0);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: #000000;
}

.testimonials-header p {
  font-size: 1.1rem;
  color: #000000;
  margin: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #2d2d2d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: testimonialFadeIn 0.6s ease forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

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

.testimonial-card:hover {
  background: #3d3d3d;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: #fff;
}

.author-info span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

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

@media (max-width: 1200px) {
  .services-carousel-slide.services-slide-prev {
    transform: scale(0.7) translateX(-350px);
  }
  
  .services-carousel-slide.services-slide-next {
    transform: scale(0.7) translateX(350px);
  }
}

@media (max-width: 1024px) {
  .carousel-track {
    height: 500px;
  }
  
  .services-carousel-slide {
    width: 340px;
  }
  
  .services-carousel-slide.services-slide-prev {
    transform: scale(0.65) translateX(-300px);
  }
  
  .services-carousel-slide.services-slide-next {
    transform: scale(0.65) translateX(300px);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .process-timeline::before {
    width: 2px;
    height: 80%;
    top: 10%;
    left: 50%;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-hero {
    min-height: 60vh;
    padding: 80px 20px 40px;
  }
  
  .carousel-track {
    height: 480px;
  }
  
  .services-carousel-slide {
    width: 300px;
  }
  
  .services-carousel-slide.services-slide-prev,
  .services-carousel-slide.services-slide-next {
    opacity: 0;
    transform: scale(0.5);
  }
  
  .carousel-nav {
    width: 40px;
    height: 40px;
  }
  
  .carousel-nav-prev {
    left: 10px;
  }
  
  .carousel-nav-next {
    right: 10px;
  }
  
  .services-carousel-image-container {
    height: 220px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-item {
    padding: 25px 20px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .feature-item h4 {
    font-size: 1.1rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }
  
  .services-carousel-section {
    padding: 60px 15px 80px;
  }
}

@media (max-width: 480px) {
  .services-carousel-slide {
    width: 280px;
  }

  .services-carousel-content {
    padding: 20px;
  }

  .services-carousel-title {
    font-size: 1.2rem;
  }

  .services-features {
    padding: 60px 15px 80px;
  }

  .features-grid {
    gap: 15px;
  }

  .feature-item {
    padding: 20px 15px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
  }

  .feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .feature-item h4 {
    font-size: 1rem;
  }

  .feature-item p {
    font-size: 0.85rem;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

/* ============================================
   SERVICE IMAGE GALLERY WITH LOADING EFFECTS
   ============================================ */

.service-image-gallery {
  padding: 4rem 2rem 6rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-image-gallery.loaded {
  opacity: 1;
  transform: translateY(0);
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.gallery-header p {
  font-size: 1.1rem;
  color: #888;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  opacity: 0;
  transform: translateX(-100px);
  animation: slideInFromLeft 0.8s ease forwards;
  animation-delay: var(--delay);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

/* Service Gallery Overlay and Button */
.service-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.service-gallery-item:hover .service-gallery-overlay {
  opacity: 1;
  pointer-events: all;
}

.view-detail-btn {
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transform: translateY(20px);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


.gallery-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2s ease-in-out infinite;
  z-index: 1;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  opacity: 0;
  transform: scale(1.1);
}

.gallery-image.loaded {
  opacity: 1;
  transform: scale(1);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.08);
}

.gallery-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-image-overlay {
  opacity: 1;
}

.gallery-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-tag {
  opacity: 1;
  transform: translateY(0);
}

.gallery-content {
  padding: 1.5rem;
}

.gallery-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.gallery-description {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.6;
}

/* Service Gallery Content - Always Visible */
.service-gallery-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
  padding: 1.5rem;
  color: #fff;
  transform: translateY(0);
  opacity: 1;
  transition: all 0.3s ease;
}

.service-gallery-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem 0;
}

.service-gallery-description {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1rem 0;
  line-height: 1.4;
}

.service-gallery-content .view-detail-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
}


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

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .service-image-gallery {
    padding: 2.5rem 1rem;
  }

  .gallery-header h2 {
    font-size: 1.75rem;
  }

  .gallery-header p {
    font-size: 0.95rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-image-wrapper {
    height: 200px;
  }

  .view-detail-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .gallery-content {
    padding: 1.25rem;
  }

  .gallery-title {
    font-size: 1.1rem;
  }

  .gallery-description {
    font-size: 0.85rem;
  }
}

/* Tablet Responsive Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .gallery-image-wrapper {
    height: 220px;
  }
}

/* Large Screens */
@media (min-width: 1400px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-image-wrapper {
    height: 280px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .gradient-orb {
    animation: none;
  }
  
  .progress-bar {
    animation: none;
  }
  
  .gallery-item {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .gallery-shimmer {
    animation: none;
  }
}

/* ============================================
   SERVICE IMAGE GALLERY SECTION
   ============================================ */

.service-image-gallery {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.service-image-gallery.loaded {
  opacity: 1;
  transform: translateY(0);
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-gallery-item {
  background: rgba(45, 45, 45, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

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

.service-gallery-item:hover .service-gallery-image {
  transform: scale(1.08);
}

.service-gallery-description {
  padding: 16px 20px;
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  line-height: 1.4;
  background: rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
  .service-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .service-gallery-image-wrapper {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .service-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-gallery-image-wrapper {
    height: 220px;
  }
}

/* Image Detail Page - Black and White Theme */

.image-detail-page {
  min-height: 100vh;
  background: #ffffff;
  color: #000000;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.image-detail-page.loaded {
  opacity: 1;
}

.image-not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 2rem;
}

.image-not-found h1 {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 1rem;
}

.image-not-found p {
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 2rem;
}

.back-to-service {
  display: inline-block;
  padding: 1rem 2rem;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-to-service:hover {
  background: #333333;
  transform: translateY(-2px);
}

/* Hero Section with Image */
.image-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-container {
  position: relative;
  width: 100%;
  height: 400px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent, rgba(0, 0, 0, 0.7));
  pointer-events: none;
}

.image-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  text-align: center;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95));
}

.image-breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666666;
}

.image-breadcrumb a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.image-breadcrumb a:hover {
  color: #333333;
}

.image-breadcrumb span {
  color: #999999;
  margin: 0 0.5rem;
}

.image-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.image-tagline {
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Content Section */
.image-content {
  padding: 4rem 2rem;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Service Description */
.service-description {
  margin-bottom: 3rem;
  padding: 2rem;
  background: #f8f8f8;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.service-description h2 {
  font-size: 1.8rem;
  color: #000000;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.service-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333333;
  margin: 0;
}

/* Service Info Cards */
.service-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 2rem;
  background: #f8f8f8;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
  font-size: 1.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  border-radius: 50%;
  flex-shrink: 0;
  color: #ffffff;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #000000;
}

.info-card:hover .info-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.price-icon {
  background: #000000;
}

.duration-icon {
  background: #000000;
}

.warranty-icon {
  background: #000000;
}

.info-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-content p {
  font-size: 1rem;
  color: #000000;
  font-weight: 500;
  margin: 0;
}

/* Features Section */
.features-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: #f8f8f8;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.features-section h3 {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
  color: #333333;
  line-height: 1.6;
  position: relative;
  padding-left: 2rem;
}

.features-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Benefits Section */
.benefits-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: #f8f8f8;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.benefits-section h3 {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
  color: #333333;
  line-height: 1.6;
  position: relative;
  padding-left: 2rem;
}

.benefits-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Navigation */
.image-navigation {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
  padding: 2rem;
  background: #f8f8f8;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.nav-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid #000000;
}

.nav-btn:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .image-hero {
    min-height: 50vh;
  }
  
  .image-content {
    padding: 1rem;
  }
  
  .image-title {
    font-size: 1.5rem;
  }
  
  .image-tagline {
    font-size: 0.9rem;
  }
  
  .image-content {
    padding: 2rem 1rem;
  }
  
  .service-info-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .image-navigation {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .image-hero {
    min-height: 40vh;
  }
  
  .image-title {
    font-size: 1.2rem;
  }
  
  .image-tagline {
    font-size: 0.8rem;
  }
  
  .info-card {
    padding: 1rem;
  }
  
  .info-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}
/* ============================================
   VINYL WRAPPING SERVICE DETAIL PAGE - PREMIUM BLACK/WHITE
   ============================================ */

.service-detail-page {
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ============================================
   MODERN HERO SECTION - IMAGE LEFT, CONTENT RIGHT
   ============================================ */

.service-hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) contrast(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.8) 0%, 
    rgba(0, 0, 0, 0.6) 50%, 
    rgba(0, 0, 0, 0.9) 100%);
}

.hero-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  width: 100%;
  padding: 60px 40px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-detail-page.loaded .hero-content-modern {
  opacity: 1;
  transform: translateY(0);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-side-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.hero-side-image:hover {
  transform: scale(1.02);
}

.hero-breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
}

.hero-cta {
  display: inline-block;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
  background: #000;
  color: #fff;
}

/* ============================================
   VINYL WRAPPING SERVICE PAGE - UNIQUE CLASSES
   ============================================ */

/* Hero Section */
.vw-service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vw-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.vw-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.vw-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
}

.vw-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.vw-hero-content p {
  font-size: 1.3rem;
  margin: 0;
  opacity: 0.9;
}

/* Container */
.vw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Service Description Section */
.vw-service-description-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.vw-service-description-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vw-service-description-image {
  position: relative;
}

.vw-description-main-image {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vw-service-description-content {
  padding: 20px 0;
}

.vw-service-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.vw-service-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.vw-service-short-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.vw-service-detailed-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Three Column Content Section */
.vw-service-three-column-section {
  padding: 80px 0;
  background: #000000;
  position: relative;
}

.vw-three-column-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.vw-service-content {
  text-align: left;
  padding: 20px 0;
}

.vw-service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  text-align: left;
}

.vw-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vw-list-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.vw-list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}

/* Luxury Appointment Section */
.vw-luxury-appointment-section {
  background: #ffffff;
  color: #000000;
  padding: 80px min(6vw, 70px);
  position: relative;
  overflow: hidden;
}

.vw-luxury-appointment-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.vw-luxury-appointment-content {
  position: relative;
  z-index: 2;
}

.vw-luxury-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #000000;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: vwLuxuryTitleFadeIn 1s ease forwards;
}

.vw-luxury-subtitle {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: #333333;
  margin: 0 0 40px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: vwLuxurySubtitleFadeIn 1s ease 0.2s forwards;
}

.vw-luxury-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: vwLuxuryButtonsFadeIn 1s ease 0.4s forwards;
}

.vw-luxury-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  border: 2px solid transparent;
}

.vw-primary-luxury-btn {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.vw-secondary-luxury-btn {
  background: transparent;
  color: #000000;
  border-color: #000000;
}

.vw-luxury-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.vw-primary-luxury-btn:hover {
  background: #ffffff;
  color: #000000;
}

.vw-secondary-luxury-btn:hover {
  background: #000000;
  color: #ffffff;
}

.vw-luxury-btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vw-luxury-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.vw-luxury-btn:hover svg {
  transform: translateX(4px);
}

.vw-luxury-btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.vw-luxury-btn:hover .vw-luxury-btn-glow {
  opacity: 1;
}

/* Animations */
@keyframes vwLuxuryTitleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@media (max-width: 768px) {
  .vw-service-description-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .vw-service-description-content {
    padding: 0;
  }
  
  .vw-service-title {
    font-size: 2rem;
  }
  
  .vw-three-column-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .vw-service-content {
    padding: 15px 0;
  }
  
  .vw-luxury-appointment-section {
    padding: 60px 20px;
  }
  
  .vw-luxury-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .vw-luxury-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .vw-service-description-section {
    padding: 60px 0;
  }
  
  .vw-service-three-column-section {
    padding: 60px 0;
  }
  
  .vw-luxury-appointment-section {
    padding: 50px 15px;
  }
  
  .vw-service-title {
    font-size: 1.8rem;
  }
  
  .vw-column-title {
    font-size: 1.3rem;
  }
  
  .vw-luxury-btn {
    padding: 16px 24px;
    font-size: 0.9rem;
  }
}

/* ============================================
   MODERN BOOKING SECTION
   ============================================ */

.service-booking-modern {
  text-align: center;
  margin-top: 60px;
}

.book-service-btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.2),
    0 4px 15px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.book-service-btn-modern:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.3),
    0 6px 20px rgba(255, 255, 255, 0.4);
  background: #000;
  color: #fff;
}

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

@media (max-width: 1200px) {
  .hero-content-modern {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-right {
    order: -1;
    margin-bottom: 30px;
  }

  .hero-side-image {
    max-width: 400px;
  }

  .three-column-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .service-hero-modern {
    min-height: 80vh;
  }

  .hero-content-modern {
    padding: 40px 20px;
  }

  .service-content-modern {
    padding: 60px 15px 80px;
  }

  .service-description-modern h2 {
    font-size: 2.2rem;
  }

  .main-description {
    font-size: 1.1rem;
  }

  .three-column-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .column {
    padding: 30px;
  }

  .column h3 {
    font-size: 1.3rem;
  }

  .hero-side-image {
    max-width: 300px;
  }

  .book-service-btn-modern {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .column {
    padding: 25px;
  }

  .column h3 {
    font-size: 1.2rem;
  }

  .book-service-btn-modern {
    padding: 14px 32px;
    font-size: 1rem;
  }
}
/* ============================================
   PAINT CORRECTION SERVICE PAGE - UNIQUE CLASSES
   ============================================ */

.pc-service-page {
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Hero Section */
.pc-service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pc-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.pc-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.pc-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
}

.pc-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.pc-hero-content p {
  font-size: 1.3rem;
  margin: 0;
  opacity: 0.9;
}

/* Container */
.pc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Service Description Section */
.pc-service-description-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.pc-service-description-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pc-service-description-image {
  position: relative;
}

.pc-description-main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pc-service-description-content {
  padding: 20px 0;
}

.pc-service-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.pc-service-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.pc-service-short-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.pc-service-detailed-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Three Column Content Section */
.pc-service-three-column-section {
  padding: 80px 0;
  background: #000000;
  position: relative;
}

.pc-three-column-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.pc-service-content {
  text-align: left;
  padding: 20px 0;
}

.pc-service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  text-align: left;
}

.pc-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pc-list-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.pc-list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}

/* Luxury Appointment Section */
.pc-luxury-appointment-section {
  background: #ffffff;
  color: #000000;
  padding: 80px min(6vw, 70px);
  position: relative;
  overflow: hidden;
}

.pc-luxury-appointment-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pc-luxury-appointment-content {
  position: relative;
  z-index: 2;
}

.pc-luxury-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #000000;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: pcLuxuryTitleFadeIn 1s ease forwards;
}

.pc-luxury-subtitle {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: #333333;
  margin: 0 0 40px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: pcLuxurySubtitleFadeIn 1s ease 0.2s forwards;
}

.pc-luxury-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: pcLuxuryButtonsFadeIn 1s ease 0.4s forwards;
}

.pc-luxury-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  border: 2px solid transparent;
}

.pc-primary-luxury-btn {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.pc-secondary-luxury-btn {
  background: transparent;
  color: #000000;
  border-color: #000000;
}

.pc-luxury-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pc-primary-luxury-btn:hover {
  background: #ffffff;
  color: #000000;
}

.pc-secondary-luxury-btn:hover {
  background: #000000;
  color: #ffffff;
}

.pc-luxury-btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pc-luxury-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.pc-luxury-btn:hover svg {
  transform: translateX(4px);
}

.pc-luxury-btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.pc-luxury-btn:hover .pc-luxury-btn-glow {
  opacity: 1;
}

/* Animations */
@keyframes pcLuxuryTitleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@media (max-width: 768px) {
  .pc-service-description-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .pc-service-description-content {
    padding: 0;
  }
  
  .pc-service-title {
    font-size: 2rem;
  }
  
  .pc-three-column-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .pc-service-content {
    padding: 15px 0;
  }
  
  .pc-luxury-appointment-section {
    padding: 60px 20px;
  }
  
  .pc-luxury-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .pc-luxury-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .pc-service-description-section {
    padding: 60px 0;
  }
  
  .pc-service-three-column-section {
    padding: 60px 0;
  }
  
  .pc-luxury-appointment-section {
    padding: 50px 15px;
  }
  
  .pc-service-title {
    font-size: 1.8rem;
  }
  
  .pc-service-title {
    font-size: 1.3rem;
  }
  
  .pc-luxury-btn {
    padding: 16px 24px;
    font-size: 0.9rem;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  z-index: 1;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(0, 0, 0, 0.6) 50%, 
    rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-detail-page.loaded .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: #fff;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
  font-weight: 500;
  font-style: italic;
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  color: #000;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
}

/* ============================================
   SERVICE CONTENT SECTION
   ============================================ */

.service-content {
  padding: 80px 20px 100px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-detail-page.loaded .service-content {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
  align-items: start;
}

/* ============================================
   SERVICE IMAGE SECTION
   ============================================ */

.service-image-section {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-main-image {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}

.service-main-image:hover {
  transform: scale(1.05);
}

/* ============================================
   SERVICE INFO SECTION
   ============================================ */

.service-info-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.service-detail-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.tagline {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.service-features {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-features h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-features h3::before {
  content: '✓';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  font-size: 1.1rem;
}

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

.features-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.features-list li:hover {
  transform: translateX(8px);
  color: #fff;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.service-benefits {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-benefits h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-benefits h3::before {
  content: '✓';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  font-size: 1.1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.benefits-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.benefits-list li:hover {
  transform: translateX(8px);
  color: #fff;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   IDEAL SECTION
   ============================================ */

.ideal-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 24px;
}

.ideal-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
}

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

.ideal-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.ideal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #888;
  font-weight: bold;
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.service-booking {
  text-align: center;
  margin-top: 60px;
}

.book-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.2),
    0 4px 15px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.book-service-btn:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.3),
    0 6px 20px rgba(255, 255, 255, 0.4);
  background: #000;
  color: #fff;
}

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

@media (max-width: 1200px) {
  .service-detail-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
  }

  .service-main-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: 60vh;
    padding: 80px 15px 40px;
  }

  .service-content {
    padding: 60px 15px 80px;
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-main-image {
    height: 250px;
  }

  .service-description h2 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .description {
    font-size: 1rem;
  }

  .service-features,
  .service-benefits {
    padding: 30px;
    margin-bottom: 30px;
  }

  .service-features h3,
  .service-benefits h3 {
    font-size: 1.3rem;
  }

  .features-list li,
  .benefits-list li {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 30px;
  }

  .book-service-btn {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
}
/* ============================================
   CAR DETAILING SERVICE PAGE - UNIQUE CLASSES
   ============================================ */

.cd-service-page {
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Hero Section */
.cd-service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cd-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.cd-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.cd-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
}

.cd-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.cd-hero-content p {
  font-size: 1.3rem;
  margin: 0;
  opacity: 0.9;
}

/* Container */
.cd-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Service Description Section */
.cd-service-description-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.cd-service-description-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cd-service-description-image {
  position: relative;
}

.cd-description-main-image {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cd-service-description-content {
  padding: 20px 0;
}

.cd-service-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.cd-service-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.cd-service-short-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.cd-service-detailed-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Three Column Content Section */
.cd-service-three-column-section {
  padding: 80px 0;
  background: #000000;
  position: relative;
}

.cd-three-column-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.cd-service-content {
  text-align: left;
  padding: 20px 0;
}

.cd-service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  text-align: left;
}

.cd-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cd-list-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.cd-list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}

/* Luxury Appointment Section */
.cd-luxury-appointment-section {
  background: #ffffff;
  color: #000000;
  padding: 80px min(6vw, 70px);
  position: relative;
  overflow: hidden;
}

.cd-luxury-appointment-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cd-luxury-appointment-content {
  position: relative;
  z-index: 2;
}

.cd-luxury-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #000000;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: cdLuxuryTitleFadeIn 1s ease forwards;
}

.cd-luxury-subtitle {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: #333333;
  margin: 0 0 40px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: cdLuxurySubtitleFadeIn 1s ease 0.2s forwards;
}

.cd-luxury-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: cdLuxuryButtonsFadeIn 1s ease 0.4s forwards;
}

.cd-luxury-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  border: 2px solid transparent;
}

.cd-primary-luxury-btn {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.cd-secondary-luxury-btn {
  background: transparent;
  color: #000000;
  border-color: #000000;
}

.cd-luxury-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cd-primary-luxury-btn:hover {
  background: #ffffff;
  color: #000000;
}

.cd-secondary-luxury-btn:hover {
  background: #000000;
  color: #ffffff;
}

.cd-luxury-btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cd-luxury-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.cd-luxury-btn:hover svg {
  transform: translateX(4px);
}

.cd-luxury-btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.cd-luxury-btn:hover .cd-luxury-btn-glow {
  opacity: 1;
}

/* Animations */
@keyframes cdLuxuryTitleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@media (max-width: 768px) {
  .cd-service-description-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .cd-service-description-content {
    padding: 0;
  }
  
  .cd-service-title {
    font-size: 2rem;
  }
  
  .cd-three-column-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cd-service-content {
    padding: 15px 0;
  }
  
  .cd-luxury-appointment-section {
    padding: 60px 20px;
  }
  
  .cd-luxury-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cd-luxury-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cd-service-description-section {
    padding: 60px 0;
  }
  
  .cd-service-three-column-section {
    padding: 60px 0;
  }
  
  .cd-luxury-appointment-section {
    padding: 50px 15px;
  }
  
  .cd-service-title {
    font-size: 1.8rem;
  }
  
  .cd-service-title {
    font-size: 1.3rem;
  }
  
  .cd-luxury-btn {
    padding: 16px 24px;
    font-size: 0.9rem;
  }
}

.hero-content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-detail-page.loaded .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: #fff;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
  font-weight: 500;
  font-style: italic;
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  color: #000;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
}

/* ============================================
   SERVICE CONTENT SECTION
   ============================================ */

.service-content {
  padding: 80px 20px 100px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-detail-page.loaded .service-content {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
  align-items: start;
}

/* ============================================
   SERVICE IMAGE SECTION
   ============================================ */

.service-image-section {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-main-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-main-image:hover {
  transform: scale(1.05);
}

/* ============================================
   SERVICE DESCRIPTION SECTION
   ============================================ */

.service-description-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.service-description-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-description-image {
  position: relative;
}

.description-main-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-description-content {
  padding: 20px 0;
}

.service-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.service-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.service-short-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.service-detailed-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ============================================
   THREE COLUMN CONTENT SECTION
   ============================================ */

.service-three-column-section {
  padding: 80px 0;
  background: #000000;
  position: relative;
}

.three-column-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-column {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.service-column:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.column-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

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

.column-list li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.column-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.service-booking-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  text-align: center;
}

.booking-content {
  display: flex;
  justify-content: center;
}

.service-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.service-detail-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.tagline {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px;
}

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

@media (max-width: 768px) {
  .service-description-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .service-description-content {
    padding: 0;
  }
  
  .service-title {
    font-size: 2rem;
  }
  
  .three-column-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-column {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .service-description-section {
    padding: 60px 0;
  }
  
  .service-three-column-section {
    padding: 60px 0;
  }
  
  .service-booking-section {
    padding: 40px 0;
  }
  
  .service-title {
    font-size: 1.8rem;
  }
  
  .column-title {
    font-size: 1.3rem;
  }
}

.book-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.2),
    0 4px 15px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.book-service-btn:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.3),
    0 6px 20px rgba(255, 255, 255, 0.4);
  background: #000;
  color: #fff;
}

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

@media (max-width: 1200px) {
  .service-detail-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
  }

  .service-main-image {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: 60vh;
    padding: 80px 15px 40px;
  }

  .service-content {
    padding: 60px 15px 80px;
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-main-image {
    height: 350px;
  }

  .service-description h2 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .description {
    font-size: 1rem;
  }

  .service-features,
  .service-benefits {
    padding: 30px;
    margin-bottom: 30px;
  }

  .service-features h3,
  .service-benefits h3 {
    font-size: 1.3rem;
  }

  .features-list li,
  .benefits-list li {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 30px;
  }

  .book-service-btn {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
}
/* ============================================
   AMBIENT LIGHTING SERVICE DETAIL PAGE - PREMIUM BLACK/WHITE
   ============================================ */

.service-detail-page {
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ============================================
   MODERN HERO SECTION - IMAGE LEFT, CONTENT RIGHT
   ============================================ */

.service-hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) contrast(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.8) 0%, 
    rgba(0, 0, 0, 0.6) 50%, 
    rgba(0, 0, 0, 0.9) 100%);
}

.hero-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  width: 100%;
  padding: 60px 40px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-detail-page.loaded .hero-content-modern {
  opacity: 1;
  transform: translateY(0);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-side-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.hero-side-image:hover {
  transform: scale(1.02);
}

.hero-breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
}

.hero-cta {
  display: inline-block;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
  background: #000;
  color: #fff;
}

/* ============================================
   AMBIENT LIGHTING SERVICE PAGE - UNIQUE CLASSES
   ============================================ */

/* Hero Section */
.al-service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.al-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.al-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.al-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
}

.al-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.al-hero-content p {
  font-size: 1.3rem;
  margin: 0;
  opacity: 0.9;
}

/* Container */
.al-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Service Description Section */
.al-service-description-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.al-service-description-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.al-service-description-image {
  position: relative;
}

.al-description-main-image {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.al-service-description-content {
  padding: 20px 0;
}

.al-service-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.al-service-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.al-service-short-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.al-service-detailed-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Three Column Content Section */
.al-service-three-column-section {
  padding: 80px 0;
  background: #000000;
  position: relative;
}

.al-three-column-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.al-service-content {
  text-align: left;
  padding: 20px 0;
}

.al-service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  text-align: left;
}

.al-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.al-list-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.al-list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}

/* Luxury Appointment Section */
.al-luxury-appointment-section {
  background: #ffffff;
  color: #000000;
  padding: 80px min(6vw, 70px);
  position: relative;
  overflow: hidden;
}

.al-luxury-appointment-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.al-luxury-appointment-content {
  position: relative;
  z-index: 2;
}

.al-luxury-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #000000;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: alLuxuryTitleFadeIn 1s ease forwards;
}

.al-luxury-subtitle {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: #333333;
  margin: 0 0 40px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: alLuxurySubtitleFadeIn 1s ease 0.2s forwards;
}

.al-luxury-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: alLuxuryButtonsFadeIn 1s ease 0.4s forwards;
}

.al-luxury-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  border: 2px solid transparent;
}

.al-primary-luxury-btn {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.al-secondary-luxury-btn {
  background: transparent;
  color: #000000;
  border-color: #000000;
}

.al-luxury-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.al-primary-luxury-btn:hover {
  background: #ffffff;
  color: #000000;
}

.al-secondary-luxury-btn:hover {
  background: #000000;
  color: #ffffff;
}

.al-luxury-btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.al-luxury-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.al-luxury-btn:hover svg {
  transform: translateX(4px);
}

.al-luxury-btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.al-luxury-btn:hover .al-luxury-btn-glow {
  opacity: 1;
}

/* Animations */
@keyframes alLuxuryTitleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@media (max-width: 768px) {
  .al-service-description-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .al-service-description-content {
    padding: 0;
  }
  
  .al-service-title {
    font-size: 2rem;
  }
  
  .al-three-column-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .al-service-content {
    padding: 15px 0;
  }
  
  .al-luxury-appointment-section {
    padding: 60px 20px;
  }
  
  .al-luxury-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .al-luxury-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .al-service-description-section {
    padding: 60px 0;
  }
  
  .al-service-three-column-section {
    padding: 60px 0;
  }
  
  .al-luxury-appointment-section {
    padding: 50px 15px;
  }
  
  .al-service-title {
    font-size: 1.8rem;
  }
  
  .al-column-title {
    font-size: 1.3rem;
  }
  
  .al-luxury-btn {
    padding: 16px 24px;
    font-size: 0.9rem;
  }
}

/* ============================================
   MODERN BOOKING SECTION
   ============================================ */

.service-booking-modern {
  text-align: center;
  margin-top: 60px;
}

.book-service-btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.2),
    0 4px 15px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.book-service-btn-modern:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.3),
    0 6px 20px rgba(255, 255, 255, 0.4);
  background: #000;
  color: #fff;
}

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

@media (max-width: 1200px) {
  .hero-content-modern {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-right {
    order: -1;
    margin-bottom: 30px;
  }

  .hero-side-image {
    max-width: 400px;
  }

  .three-column-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .service-hero-modern {
    min-height: 80vh;
  }

  .hero-content-modern {
    padding: 40px 20px;
  }

  .service-content-modern {
    padding: 60px 15px 80px;
  }

  .service-description-modern h2 {
    font-size: 2.2rem;
  }

  .main-description {
    font-size: 1.1rem;
  }

  .three-column-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .column {
    padding: 30px;
  }

  .column h3 {
    font-size: 1.3rem;
  }

  .hero-side-image {
    max-width: 300px;
  }

  .book-service-btn-modern {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .column {
    padding: 25px;
  }

  .column h3 {
    font-size: 1.2rem;
  }

  .book-service-btn-modern {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  color: #000;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
}

/* ============================================
   SERVICE CONTENT SECTION
   ============================================ */

.service-content {
  padding: 80px 20px 100px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-detail-page.loaded .service-content {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
  align-items: start;
}

/* ============================================
   SERVICE IMAGE SECTION
   ============================================ */

.service-image-section {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-main-image {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}

.service-main-image:hover {
  transform: scale(1.05);
}

/* ============================================
   SERVICE INFO SECTION
   ============================================ */

.service-info-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.service-detail-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.tagline {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.service-features {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-features h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-features h3::before {
  content: '✓';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  font-size: 1.1rem;
}

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

.features-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.features-list li:hover {
  transform: translateX(8px);
  color: #fff;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.service-benefits {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-benefits h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-benefits h3::before {
  content: '✓';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  font-size: 1.1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.benefits-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.benefits-list li:hover {
  transform: translateX(8px);
  color: #fff;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   IDEAL SECTION
   ============================================ */

.ideal-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 24px;
}

.ideal-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
}

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

.ideal-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.ideal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #888;
  font-weight: bold;
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.service-booking {
  text-align: center;
  margin-top: 60px;
}

.book-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.2),
    0 4px 15px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.book-service-btn:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.3),
    0 6px 20px rgba(255, 255, 255, 0.4);
  background: #000;
  color: #fff;
}

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

@media (max-width: 1200px) {
  .service-detail-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
  }

  .service-main-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: 60vh;
    padding: 80px 15px 40px;
  }

  .service-content {
    padding: 60px 15px 80px;
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-main-image {
    height: 250px;
  }

  .service-description h2 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .description {
    font-size: 1rem;
  }

  .service-features,
  .service-benefits {
    padding: 30px;
    margin-bottom: 30px;
  }

  .service-features h3,
  .service-benefits h3 {
    font-size: 1.3rem;
  }

  .features-list li,
  .benefits-list li {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 30px;
  }

  .book-service-btn {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
}
/* ============================================
   STARLIGHT HEADLINER SERVICE DETAIL PAGE - PREMIUM BLACK/WHITE
   ============================================ */

.service-detail-page {
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ============================================
   MODERN HERO SECTION - IMAGE LEFT, CONTENT RIGHT
   ============================================ */

.service-hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) contrast(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.8) 0%, 
    rgba(0, 0, 0, 0.6) 50%, 
    rgba(0, 0, 0, 0.9) 100%);
}

.hero-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  width: 100%;
  padding: 60px 40px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-detail-page.loaded .hero-content-modern {
  opacity: 1;
  transform: translateY(0);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-side-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.hero-side-image:hover {
  transform: scale(1.02);
}

.hero-breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
}

.hero-cta {
  display: inline-block;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
  background: #000;
  color: #fff;
}

/* ============================================
   STARLIGHT HEADLINER SERVICE PAGE - UNIQUE CLASSES
   ============================================ */

/* Hero Section */
.sh-service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sh-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.sh-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.sh-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
}

.sh-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.sh-hero-content p {
  font-size: 1.3rem;
  margin: 0;
  opacity: 0.9;
}

/* Container */
.sh-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Service Description Section */
.sh-service-description-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.sh-service-description-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sh-service-description-image {
  position: relative;
}

.sh-description-main-image {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sh-service-description-content {
  padding: 20px 0;
}

.sh-service-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.sh-service-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.sh-service-short-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.sh-service-detailed-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Three Column Content Section */
.sh-service-three-column-section {
  padding: 80px 0;
  background: #000000;
  position: relative;
}

.sh-three-column-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.sh-service-content {
  text-align: left;
  padding: 20px 0;
}

.sh-service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  text-align: left;
}

.sh-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sh-list-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.sh-list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}

/* Luxury Appointment Section */
.sh-luxury-appointment-section {
  background: #ffffff;
  color: #000000;
  padding: 80px min(6vw, 70px);
  position: relative;
  overflow: hidden;
}

.sh-luxury-appointment-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.sh-luxury-appointment-content {
  position: relative;
  z-index: 2;
}

.sh-luxury-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #000000;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: shLuxuryTitleFadeIn 1s ease forwards;
}

.sh-luxury-subtitle {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: #333333;
  margin: 0 0 40px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: shLuxurySubtitleFadeIn 1s ease 0.2s forwards;
}

.sh-luxury-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: shLuxuryButtonsFadeIn 1s ease 0.4s forwards;
}

.sh-luxury-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  border: 2px solid transparent;
}

.sh-primary-luxury-btn {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.sh-secondary-luxury-btn {
  background: transparent;
  color: #000000;
  border-color: #000000;
}

.sh-luxury-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sh-primary-luxury-btn:hover {
  background: #ffffff;
  color: #000000;
}

.sh-secondary-luxury-btn:hover {
  background: #000000;
  color: #ffffff;
}

.sh-luxury-btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sh-luxury-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.sh-luxury-btn:hover svg {
  transform: translateX(4px);
}

.sh-luxury-btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.sh-luxury-btn:hover .sh-luxury-btn-glow {
  opacity: 1;
}

/* Animations */
@keyframes shLuxuryTitleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@media (max-width: 768px) {
  .sh-service-description-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .sh-service-description-content {
    padding: 0;
  }
  
  .sh-service-title {
    font-size: 2rem;
  }
  
  .sh-three-column-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .sh-service-content {
    padding: 15px 0;
  }
  
  .sh-luxury-appointment-section {
    padding: 60px 20px;
  }
  
  .sh-luxury-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .sh-luxury-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .sh-service-description-section {
    padding: 60px 0;
  }
  
  .sh-service-three-column-section {
    padding: 60px 0;
  }
  
  .sh-luxury-appointment-section {
    padding: 50px 15px;
  }
  
  .sh-service-title {
    font-size: 1.8rem;
  }
  
  .sh-column-title {
    font-size: 1.3rem;
  }
  
  .sh-luxury-btn {
    padding: 16px 24px;
    font-size: 0.9rem;
  }
}

/* ============================================
   MODERN BOOKING SECTION
   ============================================ */

.service-booking-modern {
  text-align: center;
  margin-top: 60px;
}

.book-service-btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.2),
    0 4px 15px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.book-service-btn-modern:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.3),
    0 6px 20px rgba(255, 255, 255, 0.4);
  background: #000;
  color: #fff;
}

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

@media (max-width: 1200px) {
  .hero-content-modern {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-right {
    order: -1;
    margin-bottom: 30px;
  }

  .hero-side-image {
    max-width: 400px;
  }

  .three-column-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .service-hero-modern {
    min-height: 80vh;
  }

  .hero-content-modern {
    padding: 40px 20px;
  }

  .service-content-modern {
    padding: 60px 15px 80px;
  }

  .service-description-modern h2 {
    font-size: 2.2rem;
  }

  .main-description {
    font-size: 1.1rem;
  }

  .three-column-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .column {
    padding: 30px;
  }

  .column h3 {
    font-size: 1.3rem;
  }

  .hero-side-image {
    max-width: 300px;
  }

  .book-service-btn-modern {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .column {
    padding: 25px;
  }

  .column h3 {
    font-size: 1.2rem;
  }

  .book-service-btn-modern {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
  align-items: start;
}

/* ============================================
   SERVICE IMAGE SECTION
   ============================================ */

.service-image-section {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-main-image {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}

.service-main-image:hover {
  transform: scale(1.05);
}

/* ============================================
   SERVICE INFO SECTION
   ============================================ */

.service-info-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.service-detail-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.tagline {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.service-features {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-features h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-features h3::before {
  content: '✓';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  font-size: 1.1rem;
}

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

.features-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.features-list li:hover {
  transform: translateX(8px);
  color: #fff;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.service-benefits {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-benefits h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-benefits h3::before {
  content: '✓';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  font-size: 1.1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.benefits-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.benefits-list li:hover {
  transform: translateX(8px);
  color: #fff;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   IDEAL SECTION
   ============================================ */

.ideal-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 24px;
}

.ideal-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
}

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

.ideal-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.ideal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #888;
  font-weight: bold;
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.service-booking {
  text-align: center;
  margin-top: 60px;
}

.book-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.2),
    0 4px 15px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.book-service-btn:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.3),
    0 6px 20px rgba(255, 255, 255, 0.4);
  background: #000;
  color: #fff;
}

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

@media (max-width: 1200px) {
  .service-detail-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
  }

  .service-main-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: 60vh;
    padding: 80px 15px 40px;
  }

  .service-content {
    padding: 60px 15px 80px;
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-main-image {
    height: 250px;
  }

  .service-description h2 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .description {
    font-size: 1rem;
  }

  .service-features,
  .service-benefits {
    padding: 30px;
    margin-bottom: 30px;
  }

  .service-features h3,
  .service-benefits h3 {
    font-size: 1.3rem;
  }

  .features-list li,
  .benefits-list li {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 30px;
  }

  .book-service-btn {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
}
/* ============================================
   DASHCAM SERVICE DETAIL PAGE - PREMIUM BLACK/WHITE
   ============================================ */

.service-detail-page {
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ============================================
   MODERN HERO SECTION - IMAGE LEFT, CONTENT RIGHT
   ============================================ */

.service-hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) contrast(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.8) 0%, 
    rgba(0, 0, 0, 0.6) 50%, 
    rgba(0, 0, 0, 0.9) 100%);
}

.hero-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  width: 100%;
  padding: 60px 40px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-detail-page.loaded .hero-content-modern {
  opacity: 1;
  transform: translateY(0);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-side-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.hero-side-image:hover {
  transform: scale(1.02);
}

.hero-breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
}

.hero-cta {
  display: inline-block;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
  background: #000;
  color: #fff;
}

/* ============================================
   DASHCAM SERVICE PAGE - UNIQUE CLASSES
   ============================================ */

/* Hero Section */
.dc-service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dc-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.dc-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.dc-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
}

.dc-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.dc-hero-content p {
  font-size: 1.3rem;
  margin: 0;
  opacity: 0.9;
}

/* Container */
.dc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Service Description Section */
.dc-service-description-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.dc-service-description-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dc-service-description-image {
  position: relative;
}

.dc-description-main-image {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dc-service-description-content {
  padding: 20px 0;
}

.dc-service-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.dc-service-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.dc-service-short-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.dc-service-detailed-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Three Column Content Section */
.dc-service-three-column-section {
  padding: 80px 0;
  background: #000000;
  position: relative;
}

.dc-three-column-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.dc-service-content {
  text-align: left;
  padding: 20px 0;
}

.dc-service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  text-align: left;
}

.dc-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dc-list-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.dc-list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}

/* Luxury Appointment Section */
.dc-luxury-appointment-section {
  background: #ffffff;
  color: #000000;
  padding: 80px min(6vw, 70px);
  position: relative;
  overflow: hidden;
}

.dc-luxury-appointment-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.dc-luxury-appointment-content {
  position: relative;
  z-index: 2;
}

.dc-luxury-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #000000;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: dcLuxuryTitleFadeIn 1s ease forwards;
}

.dc-luxury-subtitle {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: #333333;
  margin: 0 0 40px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: dcLuxurySubtitleFadeIn 1s ease 0.2s forwards;
}

.dc-luxury-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: dcLuxuryButtonsFadeIn 1s ease 0.4s forwards;
}

.dc-luxury-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  border: 2px solid transparent;
}

.dc-primary-luxury-btn {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.dc-secondary-luxury-btn {
  background: transparent;
  color: #000000;
  border-color: #000000;
}

.dc-luxury-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dc-primary-luxury-btn:hover {
  background: #ffffff;
  color: #000000;
}

.dc-secondary-luxury-btn:hover {
  background: #000000;
  color: #ffffff;
}

.dc-luxury-btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dc-luxury-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.dc-luxury-btn:hover svg {
  transform: translateX(4px);
}

.dc-luxury-btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.dc-luxury-btn:hover .dc-luxury-btn-glow {
  opacity: 1;
}

/* Animations */
@keyframes dcLuxuryTitleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@media (max-width: 768px) {
  .dc-service-description-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .dc-service-description-content {
    padding: 0;
  }
  
  .dc-service-title {
    font-size: 2rem;
  }
  
  .dc-three-column-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .dc-service-content {
    padding: 15px 0;
  }
  
  .dc-luxury-appointment-section {
    padding: 60px 20px;
  }
  
  .dc-luxury-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .dc-luxury-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .dc-service-description-section {
    padding: 60px 0;
  }
  
  .dc-service-three-column-section {
    padding: 60px 0;
  }
  
  .dc-luxury-appointment-section {
    padding: 50px 15px;
  }
  
  .dc-service-title {
    font-size: 1.8rem;
  }
  
  .dc-column-title {
    font-size: 1.3rem;
  }
  
  .dc-luxury-btn {
    padding: 16px 24px;
    font-size: 0.9rem;
  }
}

/* ============================================
   MODERN BOOKING SECTION
   ============================================ */

.service-booking-modern {
  text-align: center;
  margin-top: 60px;
}

.book-service-btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.2),
    0 4px 15px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.book-service-btn-modern:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.3),
    0 6px 20px rgba(255, 255, 255, 0.4);
  background: #000;
  color: #fff;
}

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

@media (max-width: 1200px) {
  .hero-content-modern {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-right {
    order: -1;
    margin-bottom: 30px;
  }

  .hero-side-image {
    max-width: 400px;
  }

  .three-column-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .service-hero-modern {
    min-height: 80vh;
  }

  .hero-content-modern {
    padding: 40px 20px;
  }

  .service-content-modern {
    padding: 60px 15px 80px;
  }

  .service-description-modern h2 {
    font-size: 2.2rem;
  }

  .main-description {
    font-size: 1.1rem;
  }

  .three-column-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .column {
    padding: 30px;
  }

  .column h3 {
    font-size: 1.3rem;
  }

  .hero-side-image {
    max-width: 300px;
  }

  .book-service-btn-modern {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .column {
    padding: 25px;
  }

  .column h3 {
    font-size: 1.2rem;
  }

  .book-service-btn-modern {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
}

/* ============================================
   SERVICE CONTENT SECTION
   ============================================ */

.service-content {
  padding: 80px 20px 100px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-detail-page.loaded .service-content {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
  align-items: start;
}

/* ============================================
   SERVICE IMAGE SECTION
   ============================================ */

.service-image-section {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-main-image {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}

.service-main-image:hover {
  transform: scale(1.05);
}

/* ============================================
   SERVICE INFO SECTION
   ============================================ */

.service-info-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.service-detail-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.tagline {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.service-features {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-features h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-features h3::before {
  content: '✓';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  font-size: 1.1rem;
}

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

.features-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.features-list li:hover {
  transform: translateX(8px);
  color: #fff;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.service-benefits {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-benefits h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-benefits h3::before {
  content: '✓';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  font-size: 1.1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.benefits-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.benefits-list li:hover {
  transform: translateX(8px);
  color: #fff;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   IDEAL SECTION
   ============================================ */

.ideal-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 24px;
}

.ideal-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
}

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

.ideal-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.ideal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #888;
  font-weight: bold;
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.service-booking {
  text-align: center;
  margin-top: 60px;
}

.book-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.2),
    0 4px 15px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.book-service-btn:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.3),
    0 6px 20px rgba(255, 255, 255, 0.4);
  background: #000;
  color: #fff;
}

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

@media (max-width: 1200px) {
  .service-detail-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
  }

  .service-main-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: 60vh;
    padding: 80px 15px 40px;
  }

  .service-content {
    padding: 60px 15px 80px;
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-main-image {
    height: 250px;
  }

  .service-description h2 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .description {
    font-size: 1rem;
  }

  .service-features,
  .service-benefits {
    padding: 30px;
    margin-bottom: 30px;
  }

  .service-features h3,
  .service-benefits h3 {
    font-size: 1.3rem;
  }

  .features-list li,
  .benefits-list li {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 30px;
  }

  .book-service-btn {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
}
/* ============================================
   CARPLAY INSTALLATION SERVICE DETAIL PAGE - PREMIUM BLACK/WHITE
   ============================================ */

.service-detail-page {
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ============================================
   MODERN HERO SECTION - IMAGE LEFT, CONTENT RIGHT
   ============================================ */

.service-hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) contrast(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.8) 0%, 
    rgba(0, 0, 0, 0.6) 50%, 
    rgba(0, 0, 0, 0.9) 100%);
}

.hero-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  width: 100%;
  padding: 60px 40px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-detail-page.loaded .hero-content-modern {
  opacity: 1;
  transform: translateY(0);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-side-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.hero-side-image:hover {
  transform: scale(1.02);
}

.hero-breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
}

.hero-cta {
  display: inline-block;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
  background: #000;
  color: #fff;
}

/* ============================================
   CARPLAY INSTALLATION SERVICE PAGE - UNIQUE CLASSES
   ============================================ */

/* Hero Section */
.cp-service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cp-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.cp-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.cp-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
}

.cp-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.cp-hero-content p {
  font-size: 1.3rem;
  margin: 0;
  opacity: 0.9;
}

/* Container */
.cp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Service Description Section */
.cp-service-description-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.cp-service-description-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cp-service-description-image {
  position: relative;
}

.cp-description-main-image {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cp-service-description-content {
  padding: 20px 0;
}

.cp-service-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.cp-service-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.cp-service-short-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.cp-service-detailed-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Three Column Content Section */
.cp-service-three-column-section {
  padding: 80px 0;
  background: #000000;
  position: relative;
}

.cp-three-column-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.cp-service-content {
  text-align: left;
  padding: 20px 0;
}

.cp-service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  text-align: left;
}

.cp-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cp-list-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.cp-list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}

/* Luxury Appointment Section */
.cp-luxury-appointment-section {
  background: #ffffff;
  color: #000000;
  padding: 80px min(6vw, 70px);
  position: relative;
  overflow: hidden;
}

.cp-luxury-appointment-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cp-luxury-appointment-content {
  position: relative;
  z-index: 2;
}

.cp-luxury-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #000000;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: cpLuxuryTitleFadeIn 1s ease forwards;
}

.cp-luxury-subtitle {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: #333333;
  margin: 0 0 40px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: cpLuxurySubtitleFadeIn 1s ease 0.2s forwards;
}

.cp-luxury-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: cpLuxuryButtonsFadeIn 1s ease 0.4s forwards;
}

.cp-luxury-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  border: 2px solid transparent;
}

.cp-primary-luxury-btn {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.cp-secondary-luxury-btn {
  background: transparent;
  color: #000000;
  border-color: #000000;
}

.cp-luxury-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cp-primary-luxury-btn:hover {
  background: #ffffff;
  color: #000000;
}

.cp-secondary-luxury-btn:hover {
  background: #000000;
  color: #ffffff;
}

.cp-luxury-btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cp-luxury-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.cp-luxury-btn:hover svg {
  transform: translateX(4px);
}

.cp-luxury-btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.cp-luxury-btn:hover .cp-luxury-btn-glow {
  opacity: 1;
}

/* Animations */
@keyframes cpLuxuryTitleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@media (max-width: 768px) {
  .cp-service-description-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .cp-service-description-content {
    padding: 0;
  }
  
  .cp-service-title {
    font-size: 2rem;
  }
  
  .cp-three-column-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cp-service-content {
    padding: 15px 0;
  }
  
  .cp-luxury-appointment-section {
    padding: 60px 20px;
  }
  
  .cp-luxury-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cp-luxury-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cp-service-description-section {
    padding: 60px 0;
  }
  
  .cp-service-three-column-section {
    padding: 60px 0;
  }
  
  .cp-luxury-appointment-section {
    padding: 50px 15px;
  }
  
  .cp-service-title {
    font-size: 1.8rem;
  }
  
  .cp-luxury-btn {
    padding: 16px 24px;
    font-size: 0.9rem;
  }
}

/* ============================================
   SERVICE CONTENT SECTION
   ============================================ */

.service-content {
  padding: 80px 20px 100px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-detail-page.loaded .service-content {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
  align-items: start;
}

/* ============================================
   SERVICE IMAGE SECTION
   ============================================ */

.service-image-section {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-main-image {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}

.service-main-image:hover {
  transform: scale(1.05);
}

/* ============================================
   SERVICE INFO SECTION
   ============================================ */

.service-info-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.service-detail-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.tagline {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.service-features {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-features h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-features h3::before {
  content: '✓';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  font-size: 1.1rem;
}

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

.features-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.features-list li:hover {
  transform: translateX(8px);
  color: #fff;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.service-benefits {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-benefits h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-benefits h3::before {
  content: '✓';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  font-size: 1.1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.benefits-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.benefits-list li:hover {
  transform: translateX(8px);
  color: #fff;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   IDEAL SECTION
   ============================================ */

.ideal-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 24px;
}

.ideal-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
}

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

.ideal-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.ideal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #888;
  font-weight: bold;
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.service-booking {
  text-align: center;
  margin-top: 60px;
}

.book-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.2),
    0 4px 15px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.book-service-btn:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.3),
    0 6px 20px rgba(255, 255, 255, 0.4);
  background: #000;
  color: #fff;
}

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

@media (max-width: 1200px) {
  .service-detail-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
  }

  .service-main-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: 60vh;
    padding: 80px 15px 40px;
  }

  .service-content {
    padding: 60px 15px 80px;
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-main-image {
    height: 250px;
  }

  .service-description h2 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .description {
    font-size: 1rem;
  }

  .service-features,
  .service-benefits {
    padding: 30px;
    margin-bottom: 30px;
  }

  .service-features h3,
  .service-benefits h3 {
    font-size: 1.3rem;
  }

  .features-list li,
  .benefits-list li {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 30px;
  }

  .book-service-btn {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
}
/* ============================================
   PAINT PROTECTION FILM SERVICE DETAIL PAGE - PREMIUM BLACK/WHITE
   ============================================ */

.service-detail-page {
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ============================================
   MODERN HERO SECTION - IMAGE LEFT, CONTENT RIGHT
   ============================================ */

.service-hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) contrast(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.8) 0%, 
    rgba(0, 0, 0, 0.6) 50%, 
    rgba(0, 0, 0, 0.9) 100%);
}

.hero-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  width: 100%;
  padding: 60px 40px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-detail-page.loaded .hero-content-modern {
  opacity: 1;
  transform: translateY(0);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-side-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.hero-side-image:hover {
  transform: scale(1.02);
}

.hero-breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
}

.hero-cta {
  display: inline-block;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
  background: #000;
  color: #fff;
}

/* ============================================
   PAINT PROTECTION FILM SERVICE PAGE - UNIQUE CLASSES
   ============================================ */

/* Hero Section */
.pp-service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pp-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.pp-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.pp-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
}

.pp-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.pp-hero-content p {
  font-size: 1.3rem;
  margin: 0;
  opacity: 0.9;
}

/* Container */
.pp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Service Description Section */
.pp-service-description-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.pp-service-description-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pp-service-description-image {
  position: relative;
}

.pp-description-main-image {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pp-service-description-content {
  padding: 20px 0;
}

.pp-service-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.pp-service-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.pp-service-short-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.pp-service-detailed-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Three Column Content Section */
.pp-service-three-column-section {
  padding: 80px 0;
  background: #000000;
  position: relative;
}

.pp-three-column-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.pp-service-content {
  text-align: left;
  padding: 20px 0;
}

.pp-service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  text-align: left;
}

.pp-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pp-list-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.pp-list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}

/* Luxury Appointment Section */
.pp-luxury-appointment-section {
  background: #ffffff;
  color: #000000;
  padding: 80px min(6vw, 70px);
  position: relative;
  overflow: hidden;
}

.pp-luxury-appointment-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pp-luxury-appointment-content {
  position: relative;
  z-index: 2;
}

.pp-luxury-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #000000;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: ppLuxuryTitleFadeIn 1s ease forwards;
}

.pp-luxury-subtitle {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: #333333;
  margin: 0 0 40px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: ppLuxurySubtitleFadeIn 1s ease 0.2s forwards;
}

.pp-luxury-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: ppLuxuryButtonsFadeIn 1s ease 0.4s forwards;
}

.pp-luxury-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  border: 2px solid transparent;
}

.pp-primary-luxury-btn {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.pp-secondary-luxury-btn {
  background: transparent;
  color: #000000;
  border-color: #000000;
}

.pp-luxury-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pp-primary-luxury-btn:hover {
  background: #ffffff;
  color: #000000;
}

.pp-secondary-luxury-btn:hover {
  background: #000000;
  color: #ffffff;
}

.pp-luxury-btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pp-luxury-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.pp-luxury-btn:hover svg {
  transform: translateX(4px);
}

.pp-luxury-btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.pp-luxury-btn:hover .pp-luxury-btn-glow {
  opacity: 1;
}

/* Animations */
@keyframes ppLuxuryTitleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@media (max-width: 768px) {
  .pp-service-description-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .pp-service-description-content {
    padding: 0;
  }
  
  .pp-service-title {
    font-size: 2rem;
  }
  
  .pp-three-column-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .pp-service-content {
    padding: 15px 0;
  }
  
  .pp-luxury-appointment-section {
    padding: 60px 20px;
  }
  
  .pp-luxury-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .pp-luxury-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .pp-service-description-section {
    padding: 60px 0;
  }
  
  .pp-service-three-column-section {
    padding: 60px 0;
  }
  
  .pp-luxury-appointment-section {
    padding: 50px 15px;
  }
  
  .pp-service-title {
    font-size: 1.8rem;
  }
  
  .pp-luxury-btn {
    padding: 16px 24px;
    font-size: 0.9rem;
  }
}
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  color: #000;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
}

/* ============================================
   SERVICE CONTENT SECTION
   ============================================ */

.service-content {
  padding: 80px 20px 100px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-detail-page.loaded .service-content {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
  align-items: start;
}

/* ============================================
   SERVICE IMAGE SECTION
   ============================================ */

.service-image-section {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-main-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-main-image:hover {
  transform: scale(1.05);
}

/* ============================================
   SERVICE INFO SECTION
   ============================================ */

.service-info-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.service-detail-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.tagline {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.service-features {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-features h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-features h3::before {
  content: '✓';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  font-size: 1.1rem;
}

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

.features-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.features-list li:hover {
  transform: translateX(8px);
  color: #fff;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.service-benefits {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-benefits h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-benefits h3::before {
  content: '✓';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  font-size: 1.1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.benefits-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.benefits-list li:hover {
  transform: translateX(8px);
  color: #fff;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   IDEAL SECTION
   ============================================ */

.ideal-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 24px;
}

.ideal-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
}

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

.ideal-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.ideal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #888;
  font-weight: bold;
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.service-booking {
  text-align: center;
  margin-top: 60px;
}

.book-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.2),
    0 4px 15px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.book-service-btn:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.3),
    0 6px 20px rgba(255, 255, 255, 0.4);
  background: #000;
  color: #fff;
}

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

@media (max-width: 1200px) {
  .service-detail-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
  }

  .service-main-image {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: 60vh;
    padding: 80px 15px 40px;
  }

  .service-content {
    padding: 60px 15px 80px;
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-main-image {
    height: 350px;
  }

  .service-description h2 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .description {
    font-size: 1rem;
  }

  .service-features,
  .service-benefits {
    padding: 30px;
    margin-bottom: 30px;
  }

  .service-features h3,
  .service-benefits h3 {
    font-size: 1.3rem;
  }

  .features-list li,
  .benefits-list li {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 30px;
  }

  .book-service-btn {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
}
/* ============================================
   CERAMIC COATING SERVICE PAGE - UNIQUE CLASSES
   ============================================ */

.cc-service-page {
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Hero Section */
.cc-service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cc-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.cc-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.cc-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
}

.cc-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.cc-hero-content p {
  font-size: 1.3rem;
  margin: 0;
  opacity: 0.9;
}

/* Container */
.cc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Service Description Section */
.cc-service-description-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.cc-service-description-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cc-service-description-image {
  position: relative;
}

.cc-description-main-image {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cc-service-description-content {
  padding: 20px 0;
}

.cc-service-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.cc-service-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.cc-service-short-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.cc-service-detailed-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Three Column Content Section */
.cc-service-three-column-section {
  padding: 80px 0;
  background: #000000;
  position: relative;
}

.cc-three-column-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.cc-service-content {
  text-align: left;
  padding: 20px 0;
}

.cc-service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  text-align: left;
}

.cc-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cc-list-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.cc-list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}

/* Luxury Appointment Section */
.cc-luxury-appointment-section {
  background: #ffffff;
  color: #000000;
  padding: 80px min(6vw, 70px);
  position: relative;
  overflow: hidden;
}

.cc-luxury-appointment-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cc-luxury-appointment-content {
  position: relative;
  z-index: 2;
}

.cc-luxury-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #000000;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: ccLuxuryTitleFadeIn 1s ease forwards;
}

.cc-luxury-subtitle {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: #333333;
  margin: 0 0 40px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: ccLuxurySubtitleFadeIn 1s ease 0.2s forwards;
}

.cc-luxury-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: ccLuxuryButtonsFadeIn 1s ease 0.4s forwards;
}

.cc-luxury-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  border: 2px solid transparent;
}

.cc-primary-luxury-btn {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.cc-secondary-luxury-btn {
  background: transparent;
  color: #000000;
  border-color: #000000;
}

.cc-luxury-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cc-primary-luxury-btn:hover {
  background: #ffffff;
  color: #000000;
}

.cc-secondary-luxury-btn:hover {
  background: #000000;
  color: #ffffff;
}

.cc-luxury-btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cc-luxury-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.cc-luxury-btn:hover svg {
  transform: translateX(4px);
}

.cc-luxury-btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.cc-luxury-btn:hover .cc-luxury-btn-glow {
  opacity: 1;
}

/* Animations */
@keyframes ccLuxuryTitleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@media (max-width: 768px) {
  .cc-service-description-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .cc-service-description-content {
    padding: 0;
  }
  
  .cc-service-title {
    font-size: 2rem;
  }
  
  .cc-three-column-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cc-service-content {
    padding: 15px 0;
  }
  
  .cc-luxury-appointment-section {
    padding: 60px 20px;
  }
  
  .cc-luxury-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cc-luxury-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cc-service-description-section {
    padding: 60px 0;
  }
  
  .cc-service-three-column-section {
    padding: 60px 0;
  }
  
  .cc-luxury-appointment-section {
    padding: 50px 15px;
  }
  
  .cc-service-title {
    font-size: 1.8rem;
  }
  
  .cc-service-title {
    font-size: 1.3rem;
  }
  
  .cc-luxury-btn {
    padding: 16px 24px;
    font-size: 0.9rem;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  z-index: 1;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(0, 0, 0, 0.6) 50%, 
    rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-detail-page.loaded .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: #fff;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
  font-weight: 500;
  font-style: italic;
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  color: #000;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
}

/* ============================================
   SERVICE CONTENT SECTION
   ============================================ */

.service-content {
  padding: 80px 20px 100px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-detail-page.loaded .service-content {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
  align-items: start;
}

/* ============================================
   SERVICE IMAGE SECTION
   ============================================ */

.service-image-section {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-main-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-main-image:hover {
  transform: scale(1.05);
}

/* ============================================
   SERVICE INFO SECTION
   ============================================ */

.service-info-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.service-detail-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.tagline {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.service-features {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-features h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-features h3::before {
  content: '✓';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  font-size: 1.1rem;
}

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

.features-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.features-list li:hover {
  transform: translateX(8px);
  color: #fff;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.service-benefits {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-benefits h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-benefits h3::before {
  content: '✓';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  font-size: 1.1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.benefits-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.benefits-list li:hover {
  transform: translateX(8px);
  color: #fff;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   IDEAL SECTION
   ============================================ */

.ideal-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 24px;
}

.ideal-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
}

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

.ideal-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.ideal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #888;
  font-weight: bold;
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.service-booking {
  text-align: center;
  margin-top: 60px;
}

.book-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.2),
    0 4px 15px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.book-service-btn:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.3),
    0 6px 20px rgba(255, 255, 255, 0.4);
  background: #000;
  color: #fff;
}

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

@media (max-width: 1200px) {
  .service-detail-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
  }

  .service-main-image {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: 60vh;
    padding: 80px 15px 40px;
  }

  .service-content {
    padding: 60px 15px 80px;
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-main-image {
    height: 350px;
  }

  .service-description h2 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .description {
    font-size: 1rem;
  }

  .service-features,
  .service-benefits {
    padding: 30px;
    margin-bottom: 30px;
  }

  .service-features h3,
  .service-benefits h3 {
    font-size: 1.3rem;
  }

  .features-list li,
  .benefits-list li {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 30px;
  }

  .book-service-btn {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
}
/* ============================================
   TIRE REPAIRING SERVICE DETAIL PAGE - PREMIUM BLACK/WHITE
   ============================================ */

.service-detail-page {
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ============================================
   MODERN HERO SECTION - IMAGE LEFT, CONTENT RIGHT
   ============================================ */

.service-hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) contrast(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.8) 0%, 
    rgba(0, 0, 0, 0.6) 50%, 
    rgba(0, 0, 0, 0.9) 100%);
}

.hero-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  width: 100%;
  padding: 60px 40px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-detail-page.loaded .hero-content-modern {
  opacity: 1;
  transform: translateY(0);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-side-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.hero-side-image:hover {
  transform: scale(1.02);
}

.hero-breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
}

.hero-cta {
  display: inline-block;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
  background: #000;
  color: #fff;
}

/* ============================================
   TIRE REPAIRING SERVICE PAGE - UNIQUE CLASSES
   ============================================ */

/* Hero Section */
.tr-service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tr-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.tr-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.tr-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
}

.tr-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.tr-hero-content p {
  font-size: 1.3rem;
  margin: 0;
  opacity: 0.9;
}

/* Container */
.tr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Service Description Section */
.tr-service-description-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.tr-service-description-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tr-service-description-image {
  position: relative;
}

.tr-description-main-image {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tr-service-description-content {
  padding: 20px 0;
}

.tr-service-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.tr-service-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.tr-service-short-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.tr-service-detailed-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Three Column Content Section */
.tr-service-three-column-section {
  padding: 80px 0;
  background: #000000;
  position: relative;
}

.tr-three-column-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.tr-service-content {
  text-align: left;
  padding: 20px 0;
}

.tr-service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  text-align: left;
}

.tr-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tr-list-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.tr-list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}

/* Luxury Appointment Section */
.tr-luxury-appointment-section {
  background: #ffffff;
  color: #000000;
  padding: 80px min(6vw, 70px);
  position: relative;
  overflow: hidden;
}

.tr-luxury-appointment-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.tr-luxury-appointment-content {
  position: relative;
  z-index: 2;
}

.tr-luxury-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #000000;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: trLuxuryTitleFadeIn 1s ease forwards;
}

.tr-luxury-subtitle {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: #333333;
  margin: 0 0 40px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: trLuxurySubtitleFadeIn 1s ease 0.2s forwards;
}

.tr-luxury-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: trLuxuryButtonsFadeIn 1s ease 0.4s forwards;
}

.tr-luxury-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  border: 2px solid transparent;
}

.tr-primary-luxury-btn {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.tr-secondary-luxury-btn {
  background: transparent;
  color: #000000;
  border-color: #000000;
}

.tr-luxury-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tr-primary-luxury-btn:hover {
  background: #ffffff;
  color: #000000;
}

.tr-secondary-luxury-btn:hover {
  background: #000000;
  color: #ffffff;
}

.tr-luxury-btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tr-luxury-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.tr-luxury-btn:hover svg {
  transform: translateX(4px);
}

.tr-luxury-btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.tr-luxury-btn:hover .tr-luxury-btn-glow {
  opacity: 1;
}

/* Animations */
@keyframes trLuxuryTitleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@media (max-width: 768px) {
  .tr-service-description-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .tr-service-description-content {
    padding: 0;
  }
  
  .tr-service-title {
    font-size: 2rem;
  }
  
  .tr-three-column-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .tr-service-content {
    padding: 15px 0;
  }
  
  .tr-luxury-appointment-section {
    padding: 60px 20px;
  }
  
  .tr-luxury-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .tr-luxury-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .tr-service-description-section {
    padding: 60px 0;
  }
  
  .tr-service-three-column-section {
    padding: 60px 0;
  }
  
  .tr-luxury-appointment-section {
    padding: 50px 15px;
  }
  
  .tr-service-title {
    font-size: 1.8rem;
  }
  
  .tr-column-title {
    font-size: 1.3rem;
  }
  
  .tr-luxury-btn {
    padding: 16px 24px;
    font-size: 0.9rem;
  }
}

/* ============================================
   MODERN BOOKING SECTION
   ============================================ */

.service-booking-modern {
  text-align: center;
  margin-top: 60px;
}

.book-service-btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.2),
    0 4px 15px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.book-service-btn-modern:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.3),
    0 6px 20px rgba(255, 255, 255, 0.4);
  background: #000;
  color: #fff;
}

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

@media (max-width: 1200px) {
  .hero-content-modern {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-right {
    order: -1;
    margin-bottom: 30px;
  }

  .hero-side-image {
    max-width: 400px;
  }

  .three-column-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .service-hero-modern {
    min-height: 80vh;
  }

  .hero-content-modern {
    padding: 40px 20px;
  }

  .service-content-modern {
    padding: 60px 15px 80px;
  }

  .service-description-modern h2 {
    font-size: 2.2rem;
  }

  .main-description {
    font-size: 1.1rem;
  }

  .three-column-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .column {
    padding: 30px;
  }

  .column h3 {
    font-size: 1.3rem;
  }

  .hero-side-image {
    max-width: 300px;
  }

  .book-service-btn-modern {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .column {
    padding: 25px;
  }

  .column h3 {
    font-size: 1.2rem;
  }

  .book-service-btn-modern {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
  align-items: start;
}

/* ============================================
   SERVICE IMAGE SECTION
   ============================================ */

.service-image-section {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-main-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-main-image:hover {
  transform: scale(1.05);
}

/* ============================================
   SERVICE INFO SECTION
   ============================================ */

.service-info-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.service-detail-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.tagline {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.service-features {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-features h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-features h3::before {
  content: '✓';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  font-size: 1.1rem;
}

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

.features-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.features-list li:hover {
  transform: translateX(8px);
  color: #fff;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.service-benefits {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-benefits h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-benefits h3::before {
  content: '✓';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  font-size: 1.1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.benefits-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.benefits-list li:hover {
  transform: translateX(8px);
  color: #fff;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   IDEAL SECTION
   ============================================ */

.ideal-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 24px;
}

.ideal-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
}

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

.ideal-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.ideal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #888;
  font-weight: bold;
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.service-booking {
  text-align: center;
  margin-top: 60px;
}

.book-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.2),
    0 4px 15px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.book-service-btn:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.3),
    0 6px 20px rgba(255, 255, 255, 0.4);
  background: #000;
  color: #fff;
}

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

@media (max-width: 1200px) {
  .service-detail-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
  }

  .service-main-image {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: 60vh;
    padding: 80px 15px 40px;
  }

  .service-content {
    padding: 60px 15px 80px;
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-main-image {
    height: 350px;
  }

  .service-description h2 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .description {
    font-size: 1rem;
  }

  .service-features,
  .service-benefits {
    padding: 30px;
    margin-bottom: 30px;
  }

  .service-features h3,
  .service-benefits h3 {
    font-size: 1.3rem;
  }

  .features-list li,
  .benefits-list li {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 30px;
  }

  .book-service-btn {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
}
/* ============================================
   BRAKE REPAIR SERVICE DETAIL PAGE - PREMIUM BLACK/WHITE
   ============================================ */

.service-detail-page {
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ============================================
   MODERN HERO SECTION - IMAGE LEFT, CONTENT RIGHT
   ============================================ */

.service-hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) contrast(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.8) 0%, 
    rgba(0, 0, 0, 0.6) 50%, 
    rgba(0, 0, 0, 0.9) 100%);
}

.hero-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  width: 100%;
  padding: 60px 40px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-detail-page.loaded .hero-content-modern {
  opacity: 1;
  transform: translateY(0);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-side-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.hero-side-image:hover {
  transform: scale(1.02);
}

.hero-breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
}

.hero-cta {
  display: inline-block;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
  background: #000;
  color: #fff;
}

/* ============================================
   BRAKE REPAIR SERVICE PAGE - UNIQUE CLASSES
   ============================================ */

/* Hero Section */
.br-service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.br-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.br-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.br-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
}

.br-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.br-hero-content p {
  font-size: 1.3rem;
  margin: 0;
  opacity: 0.9;
}

/* Container */
.br-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Service Description Section */
.br-service-description-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.br-service-description-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.br-service-description-image {
  position: relative;
}

.br-description-main-image {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.br-service-description-content {
  padding: 20px 0;
}

.br-service-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.br-service-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.br-service-short-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.br-service-detailed-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Three Column Content Section */
.br-service-three-column-section {
  padding: 80px 0;
  background: #000000;
  position: relative;
}

.br-three-column-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.br-service-content {
  text-align: left;
  padding: 20px 0;
}

.br-service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  text-align: left;
}

.br-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.br-list-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.br-list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}

/* Luxury Appointment Section */
.br-luxury-appointment-section {
  background: #ffffff;
  color: #000000;
  padding: 80px min(6vw, 70px);
  position: relative;
  overflow: hidden;
}

.br-luxury-appointment-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.br-luxury-appointment-content {
  position: relative;
  z-index: 2;
}

.br-luxury-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #000000;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: brLuxuryTitleFadeIn 1s ease forwards;
}

.br-luxury-subtitle {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: #333333;
  margin: 0 0 40px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: brLuxurySubtitleFadeIn 1s ease 0.2s forwards;
}

.br-luxury-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: brLuxuryButtonsFadeIn 1s ease 0.4s forwards;
}

.br-luxury-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  border: 2px solid transparent;
}

.br-primary-luxury-btn {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.br-secondary-luxury-btn {
  background: transparent;
  color: #000000;
  border-color: #000000;
}

.br-luxury-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.br-primary-luxury-btn:hover {
  background: #ffffff;
  color: #000000;
}

.br-secondary-luxury-btn:hover {
  background: #000000;
  color: #ffffff;
}

.br-luxury-btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.br-luxury-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.br-luxury-btn:hover svg {
  transform: translateX(4px);
}

.br-luxury-btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.br-luxury-btn:hover .br-luxury-btn-glow {
  opacity: 1;
}

/* Animations */
@keyframes brLuxuryTitleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@media (max-width: 768px) {
  .br-service-description-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .br-service-description-content {
    padding: 0;
  }
  
  .br-service-title {
    font-size: 2rem;
  }
  
  .br-three-column-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .br-service-content {
    padding: 15px 0;
  }
  
  .br-luxury-appointment-section {
    padding: 60px 20px;
  }
  
  .br-luxury-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .br-luxury-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .br-service-description-section {
    padding: 60px 0;
  }
  
  .br-service-three-column-section {
    padding: 60px 0;
  }
  
  .br-luxury-appointment-section {
    padding: 50px 15px;
  }
  
  .br-service-title {
    font-size: 1.8rem;
  }
  
  .br-column-title {
    font-size: 1.3rem;
  }
  
  .br-luxury-btn {
    padding: 16px 24px;
    font-size: 0.9rem;
  }
}

/* ============================================
   MODERN BOOKING SECTION
   ============================================ */

.service-booking-modern {
  text-align: center;
  margin-top: 60px;
}

.book-service-btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.2),
    0 4px 15px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.book-service-btn-modern:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.3),
    0 6px 20px rgba(255, 255, 255, 0.4);
  background: #000;
  color: #fff;
}

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

@media (max-width: 1200px) {
  .hero-content-modern {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-right {
    order: -1;
    margin-bottom: 30px;
  }

  .hero-side-image {
    max-width: 400px;
  }

  .three-column-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .service-hero-modern {
    min-height: 80vh;
  }

  .hero-content-modern {
    padding: 40px 20px;
  }

  .service-content-modern {
    padding: 60px 15px 80px;
  }

  .service-description-modern h2 {
    font-size: 2.2rem;
  }

  .main-description {
    font-size: 1.1rem;
  }

  .three-column-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .column {
    padding: 30px;
  }

  .column h3 {
    font-size: 1.3rem;
  }

  .hero-side-image {
    max-width: 300px;
  }

  .book-service-btn-modern {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .column {
    padding: 25px;
  }

  .column h3 {
    font-size: 1.2rem;
  }

  .book-service-btn-modern {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  color: #000;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
}

/* ============================================
   SERVICE CONTENT SECTION
   ============================================ */

.service-content {
  padding: 80px 20px 100px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-detail-page.loaded .service-content {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
  align-items: start;
}

/* ============================================
   SERVICE IMAGE SECTION
   ============================================ */

.service-image-section {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-main-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-main-image:hover {
  transform: scale(1.05);
}

/* ============================================
   SERVICE INFO SECTION
   ============================================ */

.service-info-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.service-detail-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.tagline {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.service-features {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-features h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-features h3::before {
  content: '✓';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  font-size: 1.1rem;
}

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

.features-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.features-list li:hover {
  transform: translateX(8px);
  color: #fff;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.service-benefits {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-benefits h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-benefits h3::before {
  content: '✓';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  font-size: 1.1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.benefits-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.benefits-list li:hover {
  transform: translateX(8px);
  color: #fff;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   IDEAL SECTION
   ============================================ */

.ideal-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 24px;
}

.ideal-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
}

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

.ideal-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.ideal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #888;
  font-weight: bold;
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.service-booking {
  text-align: center;
  margin-top: 60px;
}

.book-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.2),
    0 4px 15px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.book-service-btn:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.3),
    0 6px 20px rgba(255, 255, 255, 0.4);
  background: #000;
  color: #fff;
}

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

@media (max-width: 1200px) {
  .service-detail-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
  }

  .service-main-image {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: 60vh;
    padding: 80px 15px 40px;
  }

  .service-content {
    padding: 60px 15px 80px;
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-main-image {
    height: 350px;
  }

  .service-description h2 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .description {
    font-size: 1rem;
  }

  .service-features,
  .service-benefits {
    padding: 30px;
    margin-bottom: 30px;
  }

  .service-features h3,
  .service-benefits h3 {
    font-size: 1.3rem;
  }

  .features-list li,
  .benefits-list li {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 30px;
  }

  .book-service-btn {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
}
/* ============================================
   OIL CHANGE SERVICE DETAIL PAGE - PREMIUM BLACK/WHITE
   ============================================ */

.service-detail-page {
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ============================================
   MODERN HERO SECTION - IMAGE LEFT, CONTENT RIGHT
   ============================================ */

.service-hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) contrast(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.8) 0%, 
    rgba(0, 0, 0, 0.6) 50%, 
    rgba(0, 0, 0, 0.9) 100%);
}

.hero-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  width: 100%;
  padding: 60px 40px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-detail-page.loaded .hero-content-modern {
  opacity: 1;
  transform: translateY(0);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-side-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.hero-side-image:hover {
  transform: scale(1.02);
}

.hero-breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
}

.hero-cta {
  display: inline-block;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
  background: #000;
  color: #fff;
}

/* ============================================
   OIL CHANGE SERVICE PAGE - UNIQUE CLASSES
   ============================================ */

/* Hero Section */
.oc-service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.oc-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.oc-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.oc-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
}

.oc-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.oc-hero-content p {
  font-size: 1.3rem;
  margin: 0;
  opacity: 0.9;
}

/* Container */
.oc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Service Description Section */
.oc-service-description-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.oc-service-description-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.oc-service-description-image {
  position: relative;
}

.oc-description-main-image {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.oc-service-description-content {
  padding: 20px 0;
}

.oc-service-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.oc-service-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.oc-service-short-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.oc-service-detailed-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Three Column Content Section */
.oc-service-three-column-section {
  padding: 80px 0;
  background: #000000;
  position: relative;
}

.oc-three-column-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.oc-service-content {
  text-align: left;
  padding: 20px 0;
}

.oc-service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  text-align: left;
}

.oc-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oc-list-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.oc-list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}

/* Luxury Appointment Section */
.oc-luxury-appointment-section {
  background: #ffffff;
  color: #000000;
  padding: 80px min(6vw, 70px);
  position: relative;
  overflow: hidden;
}

.oc-luxury-appointment-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.oc-luxury-appointment-content {
  position: relative;
  z-index: 2;
}

.oc-luxury-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #000000;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: ocLuxuryTitleFadeIn 1s ease forwards;
}

.oc-luxury-subtitle {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: #333333;
  margin: 0 0 40px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: ocLuxurySubtitleFadeIn 1s ease 0.2s forwards;
}

.oc-luxury-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: ocLuxuryButtonsFadeIn 1s ease 0.4s forwards;
}

.oc-luxury-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  border: 2px solid transparent;
}

.oc-primary-luxury-btn {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.oc-secondary-luxury-btn {
  background: transparent;
  color: #000000;
  border-color: #000000;
}

.oc-luxury-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.oc-primary-luxury-btn:hover {
  background: #ffffff;
  color: #000000;
}

.oc-secondary-luxury-btn:hover {
  background: #000000;
  color: #ffffff;
}

.oc-luxury-btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.oc-luxury-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.oc-luxury-btn:hover svg {
  transform: translateX(4px);
}

.oc-luxury-btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.oc-luxury-btn:hover .oc-luxury-btn-glow {
  opacity: 1;
}

/* Animations */
@keyframes ocLuxuryTitleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@media (max-width: 768px) {
  .oc-service-description-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .oc-service-description-content {
    padding: 0;
  }
  
  .oc-service-title {
    font-size: 2rem;
  }
  
  .oc-three-column-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .oc-service-content {
    padding: 15px 0;
  }
  
  .oc-luxury-appointment-section {
    padding: 60px 20px;
  }
  
  .oc-luxury-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .oc-luxury-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .oc-service-description-section {
    padding: 60px 0;
  }
  
  .oc-service-three-column-section {
    padding: 60px 0;
  }
  
  .oc-luxury-appointment-section {
    padding: 50px 15px;
  }
  
  .oc-service-title {
    font-size: 1.8rem;
  }
  
  .oc-column-title {
    font-size: 1.3rem;
  }
  
  .oc-luxury-btn {
    padding: 16px 24px;
    font-size: 0.9rem;
  }
}

/* ============================================
   MODERN BOOKING SECTION
   ============================================ */

.service-booking-modern {
  text-align: center;
  margin-top: 60px;
}

.book-service-btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.2),
    0 4px 15px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.book-service-btn-modern:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.3),
    0 6px 20px rgba(255, 255, 255, 0.4);
  background: #000;
  color: #fff;
}

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

@media (max-width: 1200px) {
  .hero-content-modern {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-right {
    order: -1;
    margin-bottom: 30px;
  }

  .hero-side-image {
    max-width: 400px;
  }

  .three-column-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .service-hero-modern {
    min-height: 80vh;
  }

  .hero-content-modern {
    padding: 40px 20px;
  }

  .service-content-modern {
    padding: 60px 15px 80px;
  }

  .service-description-modern h2 {
    font-size: 2.2rem;
  }

  .main-description {
    font-size: 1.1rem;
  }

  .three-column-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .column {
    padding: 30px;
  }

  .column h3 {
    font-size: 1.3rem;
  }

  .hero-side-image {
    max-width: 300px;
  }

  .book-service-btn-modern {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .column {
    padding: 25px;
  }

  .column h3 {
    font-size: 1.2rem;
  }

  .book-service-btn-modern {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

/* ============================================
   SERVICE CONTENT SECTION
   ============================================ */

.service-content {
  padding: 80px 20px 100px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-detail-page.loaded .service-content {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
  align-items: start;
}

/* ============================================
   SERVICE IMAGE SECTION
   ============================================ */

.service-image-section {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-main-image {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}

.service-main-image:hover {
  transform: scale(1.05);
}

/* ============================================
   SERVICE INFO SECTION
   ============================================ */

.service-info-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.service-detail-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.tagline {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.service-features {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-features h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-features h3::before {
  content: '✓';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  font-size: 1.1rem;
}

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

.features-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.features-list li:hover {
  transform: translateX(8px);
  color: #fff;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.service-benefits {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-benefits h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-benefits h3::before {
  content: '✓';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  font-size: 1.1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.benefits-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.benefits-list li:hover {
  transform: translateX(8px);
  color: #fff;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   IDEAL SECTION
   ============================================ */

.ideal-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 24px;
}

.ideal-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
}

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

.ideal-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.ideal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #888;
  font-weight: bold;
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.service-booking {
  text-align: center;
  margin-top: 60px;
}

.book-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.2),
    0 4px 15px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.book-service-btn:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.3),
    0 6px 20px rgba(255, 255, 255, 0.4);
  background: #000;
  color: #fff;
}

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

@media (max-width: 1200px) {
  .service-detail-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
  }

  .service-main-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: 60vh;
    padding: 80px 15px 40px;
  }

  .service-content {
    padding: 60px 15px 80px;
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-main-image {
    height: 250px;
  }

  .service-description h2 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .description {
    font-size: 1rem;
  }

  .service-features,
  .service-benefits {
    padding: 30px;
    margin-bottom: 30px;
  }

  .service-features h3,
  .service-benefits h3 {
    font-size: 1.3rem;
  }

  .features-list li,
  .benefits-list li {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 30px;
  }

  .book-service-btn {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
}
/* ============================================
   SAFETY CERTIFICATION SERVICE PAGE - UNIQUE CLASSES
   ============================================ */

.sc-service-page {
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Hero Section */
.sc-service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sc-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.sc-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.sc-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
}

.sc-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.sc-hero-content p {
  font-size: 1.3rem;
  margin: 0;
  opacity: 0.9;
}

/* Container */
.sc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Service Description Section */
.sc-service-description-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.sc-service-description-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sc-service-description-image {
  position: relative;
}

.sc-description-main-image {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sc-service-description-content {
  padding: 20px 0;
}

.sc-service-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.sc-service-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.sc-service-short-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.sc-service-detailed-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Three Column Content Section */
.sc-service-three-column-section {
  padding: 80px 0;
  background: #000000;
  position: relative;
}

.sc-three-column-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.sc-service-content {
  text-align: left;
  padding: 20px 0;
}

.sc-service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  text-align: left;
}

.sc-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sc-list-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.sc-list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}

/* Luxury Appointment Section */
.sc-luxury-appointment-section {
  background: #ffffff;
  color: #000000;
  padding: 80px min(6vw, 70px);
  position: relative;
  overflow: hidden;
}

.sc-luxury-appointment-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.sc-luxury-appointment-content {
  position: relative;
  z-index: 2;
}

.sc-luxury-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #000000;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: scLuxuryTitleFadeIn 1s ease forwards;
}

.sc-luxury-subtitle {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: #333333;
  margin: 0 0 40px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: scLuxurySubtitleFadeIn 1s ease 0.2s forwards;
}

.sc-luxury-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: scLuxuryButtonsFadeIn 1s ease 0.4s forwards;
}

.sc-luxury-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  border: 2px solid transparent;
}

.sc-primary-luxury-btn {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.sc-secondary-luxury-btn {
  background: transparent;
  color: #000000;
  border-color: #000000;
}

.sc-luxury-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sc-primary-luxury-btn:hover {
  background: #ffffff;
  color: #000000;
}

.sc-secondary-luxury-btn:hover {
  background: #000000;
  color: #ffffff;
}

.sc-luxury-btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sc-luxury-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.sc-luxury-btn:hover svg {
  transform: translateX(4px);
}

.sc-luxury-btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.sc-luxury-btn:hover .sc-luxury-btn-glow {
  opacity: 1;
}

/* Animations */
@keyframes scLuxuryTitleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@media (max-width: 768px) {
  .sc-service-description-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .sc-service-description-content {
    padding: 0;
  }
  
  .sc-service-title {
    font-size: 2rem;
  }
  
  .sc-three-column-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .sc-service-content {
    padding: 15px 0;
  }
  
  .sc-luxury-appointment-section {
    padding: 60px 20px;
  }
  
  .sc-luxury-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .sc-luxury-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .sc-service-description-section {
    padding: 60px 0;
  }
  
  .sc-service-three-column-section {
    padding: 60px 0;
  }
  
  .sc-luxury-appointment-section {
    padding: 50px 15px;
  }
  
  .sc-service-title {
    font-size: 1.8rem;
  }
  
  .sc-service-title {
    font-size: 1.3rem;
  }
  
  .sc-luxury-btn {
    padding: 16px 24px;
    font-size: 0.9rem;
  }
}


/* ============================================
   PREMIUM CINEMATIC CUSTOMIZATIONS SHOWCASE
   ============================================ */

.customizations-page {
  background: linear-gradient(180deg, #080808 0%, #0a0a0a 50%, #080808 100%);
  color: #fff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* ============================================
   ANIMATED BACKGROUND EFFECTS
   ============================================ */

.customizations-bg-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  animation: orbFloat 25s ease-in-out infinite;
}

.orb-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  top: -300px;
  left: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,200,200,0.08) 0%, transparent 70%);
  top: 40%;
  right: -200px;
  animation-delay: -8s;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  bottom: 20%;
  left: 20%;
  animation-delay: -16s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -30px) scale(1.1); }
  50% { transform: translate(-30px, 50px) scale(0.9); }
  75% { transform: translate(20px, 20px) scale(1.05); }
}

.bg-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 100px 100px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 100px); }
}

/* ============================================
   CINEMATIC HERO SECTION
   ============================================ */

.customizations-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  z-index: 1;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.85) 100%); */
}

.customizations-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(255,255,255,0.02) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content-wrapper {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 8px 16px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.customizations-hero.loaded .hero-badge {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #fff, #888);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-badge span:last-child {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Cinematic Title */
.hero-title-cinematic {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 24px;
}

.title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(80px) rotateX(-40deg);
  transform-origin: center bottom;
}

.customizations-hero.loaded .title-word-1 {
  animation: wordReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
}

.customizations-hero.loaded .title-word-2 {
  animation: wordReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.55s;
  background: linear-gradient(135deg, #fff 0%, #999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.customizations-hero.loaded .title-word-3 {
  animation: wordReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.7s;
}

@keyframes wordReveal {
  from {
    opacity: 0;
    transform: translateY(80px) rotateX(-40deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}



/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.customizations-hero.loaded .hero-stats {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3), transparent);
}

/* Scroll Prompt */
.scroll-prompt {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.customizations-hero.loaded .scroll-prompt {
  opacity: 1;
  transition-delay: 1.5s;
}

.mouse-icon {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 13px;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s ease-in-out infinite;
}

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

.scroll-prompt span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   TRANSFORMATION SHOWCASE SECTION
   ============================================ */

.transformation-showcase {
  position: relative;
  padding: 100px 20px;
  z-index: 1;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 1s ease;
}

.transformation-showcase.loaded {
  opacity: 1;
  transform: translateY(0);
}

.showcase-header {
  text-align: center;
  margin-bottom: 60px;
}

.showcase-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  background: linear-gradient(135deg, #fff 0%, #999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.showcase-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Split Layout */
.showcase-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}

/* ============================================
   FEATURED DISPLAY (LEFT SIDE)
   ============================================ */

.featured-display {
  position: sticky;
  top: 100px;
}

.display-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.display-frame:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 50px 100px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 60px rgba(255, 255, 255, 0.08);
}

.display-frame.transitioning .featured-image {
  opacity: 0;
  transform: scale(1.1) translateX(30px);
}

.image-container {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.4s ease;
  filter: brightness(0.9) contrast(1.05);
}

/* Shimmer Effect */
.image-shimmer-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.1) 50%,
    transparent 100%
  );
  animation: shimmerSlide 2s infinite;
  pointer-events: none;
}

@keyframes shimmerSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Overlays */
.overlay-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

.overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    rgba(0,0,0,0.8) 100%
  );
  pointer-events: none;
}

/* Transformation Badge */
.transformation-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0;
  transform: translateY(-20px);
  animation: badgeSlideIn 0.6s ease forwards;
  animation-delay: 0.3s;
}

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

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

/* Price Tag */
.price-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  text-align: right;
  z-index: 10;
  opacity: 0;
  transform: translateX(20px);
  animation: priceSlideIn 0.6s ease forwards;
  animation-delay: 0.4s;
}

@keyframes priceSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.price-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.price-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

/* Display Content Overlay */
.display-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 10;
}

.content-glass-panel {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px 20px;
  max-width: 400px;
}

.category-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.display-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.display-description {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 12px;
  max-width: 100%;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  padding: 10px 18px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
}

.cta-button svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1));
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.cta-button:hover svg {
  transform: translateX(4px);
}

/* Frame Glow */
.frame-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, 
    rgba(255,255,255,0.3) 0%, 
    transparent 30%, 
    transparent 70%, 
    rgba(255,255,255,0.2) 100%
  );
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.display-frame:hover .frame-glow {
  opacity: 1;
  animation: glowRotate 3s linear infinite;
}

@keyframes glowRotate {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

/* Display Dots */
.display-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.display-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.display-dot.active {
  background: #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.display-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.4);
}

/* ============================================
   CUSTOMIZATION LIST PANEL (RIGHT SIDE)
   ============================================ */

.customization-list-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(20px);
}

.list-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.9);
}

.list-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 6px;
}

/* Custom Scrollbar */
.list-container::-webkit-scrollbar {
  width: 4px;
}

.list-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.list-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

/* List Item */
.list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  text-align: left;
  opacity: 0;
  transform: translateX(30px);
  animation: listItemReveal 0.5s ease forwards;
  animation-delay: calc(var(--item-index) * 0.08s);
  min-height: 90px;
}

@keyframes listItemReveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.list-item:hover {
  transform: translateX(8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 25px rgba(255, 255, 255, 0.08);
}

.list-item.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 30px rgba(255, 255, 255, 0.12);
}

/* Thumbnail */
.item-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.item-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.list-item:hover .item-thumbnail img {
  transform: scale(1.15);
}

.thumbnail-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.list-item:hover .thumbnail-glow {
  opacity: 1;
}

/* Item Content */
.item-content {
  flex: 1;
  min-width: 0;
}

.item-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-description {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0;
  display: block;
  overflow: visible;
}

/* Active Indicator */
.active-indicator {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.list-item.active .active-indicator {
  opacity: 1;
  transform: scale(1);
}

.active-indicator svg {
  width: 20px;
  height: 20px;
}

.indicator-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  animation: indicatorPulse 2s ease-in-out infinite;
}

@keyframes indicatorPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0; }
}

/* Item Glow */
.item-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(255,255,255,0.1) 0%, 
    transparent 50%, 
    rgba(255,255,255,0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.list-item:hover .item-glow {
  opacity: 1;
}

/* ============================================
   AUTO-SLIDING GALLERY CAROUSEL
   ============================================ */

.gallery-carousel {
  position: relative;
  padding: 100px 20px;
  z-index: 1;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 1s ease;
}

.gallery-carousel.loaded {
  opacity: 1;
  transform: translateY(0);
}

.carousel-header-glass {
  text-align: center;
  margin-bottom: 50px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.carousel-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Track Container */
.carousel-track-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
}

.carousel-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  will-change: transform;
}

.carousel-slide-gallery {
  flex: 0 0 100%;
  padding: 20px;
}

.gallery-card {
  position: relative;
}

.gallery-image-wrap {
  position: relative;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

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

.carousel-slide-gallery.active .gallery-image-wrap img {
  animation: imageZoom 6s ease-in-out infinite;
}

@keyframes imageZoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.gallery-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.05) 50%,
    transparent 100%
  );
  animation: shimmer 2s infinite;
  pointer-events: none;
  z-index: 1;
}

/* Hover Overlay */
.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.4) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.gallery-image-wrap:hover .gallery-hover-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-hover-overlay h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.gallery-hover-overlay p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 20px;
  max-width: 500px;
}

.gallery-cta {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  padding: 10px 20px;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.gallery-cta:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
}

.carousel-arrow-prev {
  left: 20px;
}

.carousel-arrow-next {
  right: 20px;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  transform: translateY(-50%) scale(1.1);
}

/* Progress Dots */
.carousel-progress-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.progress-dot {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  transition: all 0.3s ease;
}

.dot-fill {
  display: block;
  height: 100%;
  width: 0;
  background: #fff;
  transition: width 0.3s ease;
}

.progress-dot.active .dot-fill {
  width: 100%;
  animation: dotFill 3.5s linear;
}

@keyframes dotFill {
  from { width: 0; }
  to { width: 100%; }
}

.progress-dot:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Autoplay Progress Bar */
.autoplay-progress {
  max-width: 300px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 30px auto 0;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0.5));
  border-radius: 2px;
  animation: progressFill 3.5s linear infinite;
}

@keyframes progressFill {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

/* ============================================
   FEATURE HIGHLIGHTS - WHITE SECTION - UNIQUE STYLE
   ============================================ */

.feature-highlights {
  padding: 100px 20px 120px;
  z-index: 1;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 1s ease;
  background: linear-gradient(180deg, 
    rgba(8, 8, 8, 0.95) 0%,
    rgba(8, 8, 8, 0.7) 10%,
    #ffffff 20%,
    #ffffff 80%,
    rgba(8, 8, 8, 0.7) 90%,
    rgba(8, 8, 8, 0.95) 100%
  );
  position: relative;
}

/* Wave Transitions */
.wave-transition {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.wave-top {
  top: 0;
}

.wave-bottom {
  bottom: 0;
}

.wave-transition svg {
  width: 100%;
  height: 100%;
  display: block;
}

.feature-highlights.loaded {
  opacity: 1;
  transform: translateY(0);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.highlight-card {
  text-align: center;
  padding: 0;
  background: transparent;
  border: none;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(40px);
  animation: highlightReveal 0.8s ease forwards;
  position: relative;
}

.highlight-card:nth-child(1) { animation-delay: 0.1s; }
.highlight-card:nth-child(2) { animation-delay: 0.2s; }
.highlight-card:nth-child(3) { animation-delay: 0.3s; }
.highlight-card:nth-child(4) { animation-delay: 0.4s; }

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

.highlight-card::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #000000;
  transition: width 0.5s ease;
}

.highlight-card:hover::before {
  width: 40px;
}

.highlight-card:hover {
  transform: translateY(-8px);
}

.highlight-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  color: #000000;
  transition: all 0.5s ease;
  position: relative;
}

.highlight-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.highlight-card:hover .highlight-icon::before {
  border-color: #000000;
  transform: rotate(180deg);
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.1);
}

.highlight-icon svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
}

.highlight-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: #000000;
  transition: all 0.4s ease;
}

.highlight-card:hover h4 {
  letter-spacing: 0.02em;
}

.highlight-card p {
  font-size: 0.95rem;
  color: #666666;
  margin: 0;
  line-height: 1.6;
  font-weight: 300;
  transition: all 0.4s ease;
}

.highlight-card:hover p {
  color: #000000;
}

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

@media (max-width: 1024px) {
  .showcase-layout {
    grid-template-columns: 1fr;
  }
  
  .featured-display {
    position: relative;
    top: 0;
  }
  
  .customization-list-panel {
    order: 2;
  }
  
  .list-container {
    max-height: none;
  }
  
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .gallery-image-wrap {
    height: 350px;
  }
  
  .feature-highlights {
    padding: 80px 20px 100px;
  }
  
  .wave-transition {
    height: 80px;
  }
  
  .highlight-icon {
    width: 70px;
    height: 70px;
  }
  
  .highlight-icon svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 768px) {
  .customizations-hero {
    min-height: 60vh;
    padding: 80px 20px 60px;
    text-align: center;
  }
  
  .hero-content-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-badge {
    margin-bottom: 16px;
    font-size: 0.85rem;
    padding: 8px 16px;
  }
  
  .hero-title-cinematic {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  
  .title-word {
    display: block;
    margin-bottom: 4px;
  }
  
  .hero-subtitle-cinematic {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 24px;
    opacity: 0.9;
  }
  
  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .stat-item {
    min-width: 100px;
    text-align: center;
  }
  
  .stat-number {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 4px;
  }
  
  .stat-label {
    font-size: 0.75rem;
    opacity: 0.8;
  }
  
  .stat-divider {
    display: none;
  }
  
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    padding: 0 10px;
  }
  
  .feature-highlights {
    padding: 60px 10px 80px;
  }
  
  .wave-transition {
    height: 60px;
  }
  
    
  .showcase-layout {
    gap: 24px;
    padding: 0 20px;
  }
  
  .showcase-header {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .showcase-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .showcase-subtitle {
    font-size: 0.95rem;
    opacity: 0.8;
  }
  
  .featured-display {
    margin-bottom: 24px;
  }
  
  .image-container {
    height: 280px;
    border-radius: 16px;
  }
  
  .display-content {
    padding: 6px;
    bottom: 6px;
    left: 6px;
    right: 6px;
  }
  
  .content-glass-panel {
    padding: 6px 8px;
  }
  
  .display-title {
    font-size: 0.85rem;
    margin-bottom: 2px;
  }
  
  .display-description {
    font-size: 0.7rem;
    line-height: 1.1;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .cta-button {
    padding: 5px 10px;
    font-size: 0.7rem;
    border-radius: 12px;
    width: 100%;
    justify-content: center;
  }
  
  .price-tag {
    top: 16px;
    right: 16px;
    padding: 8px 12px;
    border-radius: 8px;
  }
  
  .price-label {
    font-size: 0.75rem;
  }
  
  .price-value {
    font-size: 0.9rem;
  }
  
  .transformation-badge {
    top: 16px;
    left: 16px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
  }
  
  .gallery-arrow {
    width: 40px;
    height: 40px;
  }
  
  .gallery-arrow-prev {
    left: 10px;
  }
  
  .gallery-arrow-next {
    right: 10px;
  }
  
  .gallery-image-wrap {
    height: 300px;
  }
  
    
  /* Mobile-specific fixes for better touch experience */
  .list-item {
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 12px;
    min-height: 90px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  .list-item:active {
    transform: scale(0.98);
  }
  
  .item-thumbnail {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 10px;
  }
  
  .item-content {
    flex: 1;
    margin-left: 12px;
    text-align: left;
  }
  
  .item-title {
    font-size: 1rem;
    margin-bottom: 6px;
    line-height: 1.3;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
  }
  
  .item-description {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .active-indicator {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }
  
  .list-title {
    font-size: 1.2rem;
    margin-bottom: 16px;
    text-align: center;
  }
  
  .customization-list-panel {
    padding: 20px;
  }
  
  /* Mobile Performance Optimizations */
  .featured-image {
    will-change: transform;
    backface-visibility: hidden;
  }
  
  .image-shimmer-effect {
    animation-duration: 1.5s;
  }
  
  .item-glow {
    animation-duration: 0.3s;
  }
  
  .indicator-pulse {
    animation-duration: 2s;
  }
}

@media (max-width: 480px) {
  .image-container {
    height: 240px;
  }
  
  .list-item {
    padding: 14px;
    margin-bottom: 10px;
    border-radius: 12px;
    min-height: 80px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  .list-item:active {
    transform: scale(0.98);
  }
  
  .item-thumbnail {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 8px;
  }
  
  .item-content {
    flex: 1;
    margin-left: 12px;
    text-align: left;
  }
  
  .item-title {
    font-size: 0.95rem;
    margin-bottom: 4px;
    line-height: 1.3;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
  }
  
  .item-description {
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .active-indicator {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }
  
  .list-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
    text-align: center;
  }
  
  .customization-list-panel {
    padding: 16px;
  }
  
  .gallery-image-wrap {
    height: 220px;
  }
  
  .gallery-arrow {
    width: 36px;
    height: 36px;
  }
  
  .gallery-arrow svg {
    width: 20px;
    height: 20px;
  }
  
  .gallery-arrow-prev {
    left: 8px;
  }
  
  .gallery-arrow-next {
    right: 8px;
  }
  
  .display-content {
    padding: 8px;
    bottom: 8px;
    left: 8px;
    right: 8px;
  }
  
  .content-glass-panel {
    padding: 8px 10px;
  }
  
  .display-title {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  
  .display-description {
    font-size: 0.75rem;
    line-height: 1.2;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .cta-button {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  .price-tag {
    top: 12px;
    right: 12px;
    padding: 6px 10px;
    border-radius: 6px;
  }
  
  .price-label {
    font-size: 0.7rem;
  }
  
  .price-value {
    font-size: 0.85rem;
  }
  
  .transformation-badge {
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
  }
  
  .display-dots {
    gap: 6px;
    margin-top: 20px;
  }
  
  .display-dot {
    width: 8px;
    height: 8px;
  }
  
  /* Mobile-specific animations */
  .customizations-hero.loaded .hero-badge {
    animation: slideInUp 0.6s ease-out;
  }
  
  .customizations-hero.loaded .title-word {
    animation: slideInUp 0.8s ease-out backwards;
  }
  
  .customizations-hero.loaded .title-word-1 { animation-delay: 0.1s; }
  .customizations-hero.loaded .title-word-2 { animation-delay: 0.2s; }
  .customizations-hero.loaded .title-word-3 { animation-delay: 0.3s; }
.customizations-hero.loaded .hero-subtitle-cinematic {
    animation: slideInUp 0.6s ease-out 0.4s backwards;
  }
  
  .customizations-hero.loaded .hero-stats {
    animation: slideInUp 0.6s ease-out 0.6s backwards;
  }
  
  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Touch-friendly hover states */
  .list-item:hover,
  .list-item:focus {
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: 2px;
  }
  
  .cta-button:hover,
  .cta-button:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
  }
  
  /* Additional mobile improvements */
  .scroll-prompt {
    display: none; /* Hide on mobile for cleaner look */
  }
  
  .display-dots {
    bottom: 20px;
    gap: 8px;
  }
  
  .display-dot {
    width: 8px;
    height: 8px;
  }
  
  /* Feature highlights mobile improvements */
  .feature-highlights {
    padding: 60px 20px;
  }
  
  .highlights-grid {
    gap: 16px;
  }
  
  .highlight-card {
    padding: 24px 16px;
    text-align: center;
  }
  
  .highlight-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }
  
  .highlight-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .highlight-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
  .hero-title-cinematic {
    font-size: 2rem;
  }
  
  .showcase-title {
    font-size: 1.5rem;
  }
  
  .image-container {
    height: 240px;
  }
  
  .list-item {
    padding: 12px;
    min-height: 70px;
  }
  
  .item-thumbnail {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
  
  .item-title {
    font-size: 0.9rem;
  }
  
  .item-description {
    font-size: 0.75rem;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

/* ============================================
   CINEMATIC CUSTOMIZATION GALLERY
   ============================================ */

.customization-gallery {
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.customization-gallery.loaded {
  opacity: 1;
  transform: translateY(0);
}

.gallery-header-cinematic {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.badge-glow {
  width: 8px;
  height: 8px;
  background: linear-gradient(45deg, #fff, #888);
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

.gallery-title-cinematic {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #ccc 50%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.gallery-subtitle-cinematic {
  font-size: 1.2rem;
  color: #888;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.gallery-grid-cinematic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item-cinematic {
  opacity: 0;
  transform: translateY(40px) rotateX(-10deg);
  animation: cinematicFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: calc(var(--item-index) * 0.2s);
  perspective: 1000px;
}

.gallery-frame {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  height: 300px;
}

.gallery-item-cinematic:hover .gallery-frame {
  transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(255, 255, 255, 0.1);
}

.gallery-shimmer-wrapper {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  pointer-events: none;
}

.gallery-shimmer-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  animation: shimmerLine 3s ease-in-out infinite;
}

.gallery-shimmer-line:nth-child(2) {
  animation-delay: 0.5s;
}

.gallery-shimmer-line:nth-child(3) {
  animation-delay: 1s;
}

.gallery-image-cinematic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--image-delay, 0s);
  opacity: 0;
  transform: translateX(-50px) scale(1.1) rotateX(5deg);
  filter: blur(5px);
}

.gallery-image-cinematic.loaded {
  opacity: 1;
  transform: translateX(0) scale(1) rotateX(0deg);
  filter: blur(0);
}

.gallery-item-cinematic:hover .gallery-image-cinematic {
  transform: translateX(0) scale(1.15) rotateX(-2deg);
  filter: blur(0);
}

.gallery-overlay-cinematic {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-cinematic:hover .gallery-overlay-cinematic {
  opacity: 1;
}

.overlay-content {
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-cinematic:hover .overlay-content {
  transform: translateY(0);
}

.overlay-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.overlay-description {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.overlay-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.overlay-action svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.overlay-action:hover svg {
  transform: translate(3px, -3px);
}

.gallery-frame-border {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.gallery-item-cinematic:hover .gallery-frame-border {
  opacity: 1;
  animation: borderGlow 3s linear infinite;
}

.gallery-corner-decoration {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: all 0.6s ease;
}

.gallery-corner-tl {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.gallery-corner-tr {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
}

.gallery-corner-bl {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
}

.gallery-corner-br {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

.gallery-item-cinematic:hover .gallery-corner-decoration {
  opacity: 1;
}

.gallery-info {
  margin-top: 1.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: calc(var(--item-index) * 0.2s + 0.4s);
}

.gallery-item-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.gallery-item-description {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.5;
}

/* Gallery Content - Always Visible */
.gallery-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
  padding: 1.5rem;
  color: #fff;
  transform: translateY(0);
  opacity: 1;
  transition: all 0.3s ease;
}

.gallery-content .view-detail-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
  margin-top: 0.5rem;
}

.gallery-content .view-detail-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Gallery View Detail Button Wrapper */
.gallery-item-btn-wrapper {
  margin-top: 0.5rem;
  text-align: left;
}

.gallery-view-detail-btn {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gallery-view-detail-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  /* No transform - keeping button static */
}

/* Cinematic Animations */
@keyframes cinematicFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px) rotateX(-10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

@keyframes shimmerLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .customization-gallery {
    padding: 3rem 1rem;
  }

  .gallery-title-cinematic {
    font-size: 2rem;
  }

  .gallery-subtitle-cinematic {
    font-size: 1rem;
  }

  .gallery-grid-cinematic {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-frame {
    height: 250px;
  }

  .overlay-content {
    padding: 1rem;
  }

  .overlay-title {
    font-size: 1.2rem;
  }

  .gallery-item-title {
    font-size: 1.1rem;
  }
}

/* Tablet Responsive Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .gallery-grid-cinematic {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .gallery-frame {
    height: 280px;
  }
}

/* Large Screens */
@media (min-width: 1400px) {
  .gallery-grid-cinematic {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-frame {
    height: 320px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .bg-gradient-orb,
  .mouse-wheel,
  .progress-bar-fill,
  .gallery-shimmer,
  .image-shimmer-effect,
  .gallery-shimmer-line,
  .badge-glow {
    animation: none !important;
  }
  
  .gallery-item-cinematic {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  
  .gallery-info {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   SMALL MOBILE DEVICES (UNDER 480px)
   ============================================ */

@media (max-width: 480px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
  }
  
  .feature-highlights {
    padding: 50px 15px 70px;
  }
}

.booking-page {
  background: #070707;
  color: #fff;
  min-height: 100vh;
}

.booking-hero {
  position: relative;
  min-height: 90vh;
  padding: 120px min(6vw, 70px) 76px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050505;
}

.booking-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15)),
    url('/HomePic3.jpg') center/cover no-repeat;
}

.booking-hero__overlay {
  position: absolute;
  inset: 0;
  /* background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(206, 182, 182, 0)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2)); */
}

.booking-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1400px, 95%);
  text-align: center;
}



.booking-content {
  padding: 64px min(6vw, 70px) 92px;
  background: #070707;
}

.booking-content__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
  width: 85%;
}

/* Packages */
.package-section__head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
}

.package-section__head p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.7);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.package-card {
  width: 100%;
  text-align: left;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  padding: 16px 16px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.58);
  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    background-color 0.45s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.72),
    0 0 28px rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.075);
}

.package-card.is-active {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 36px rgba(255, 255, 255, 0.12);
}

.package-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.package-card__title {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 1.1rem;
}

.package-card__price {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.package-card__currency {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  margin-right: 6px;
}

.package-card__desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.package-card__list {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.68);
  display: grid;
  gap: 6px;
}

/* Form */
.booking-form-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.62);
  overflow: hidden;
}

.booking-form-card__head {
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(520px 240px at 30% 10%, rgba(255, 255, 255, 0.09), transparent 70%),
    rgba(0, 0, 0, 0.14);
}

.booking-form-card__head h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.booking-form-card__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.booking-form-card__package {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.booking-form {
  padding: 16px 18px 18px;
  display: grid;
  gap: 14px;
}

.booking-form__row {
  display: grid;
  gap: 12px;
}

.booking-form__row--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-form__row--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-field span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.booking-field input {
  width: 100%;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.92);
  outline: none;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.booking-field input:focus {
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.45);
}

.booking-field--fake .booking-field__status {
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.booking-alert {
  border-radius: 16px;
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  line-height: 1.5;
}

.booking-alert--error {
  background: rgba(255, 80, 80, 0.12);
  border-color: rgba(255, 80, 80, 0.24);
  color: rgba(255, 220, 220, 0.95);
}

.booking-alert--success {
  background: rgba(80, 255, 170, 0.1);
  border-color: rgba(80, 255, 170, 0.22);
  color: rgba(220, 255, 240, 0.95);
}

.booking-submit {
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #fff;
  color: #000;
  font-weight: 900;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.booking-submit:hover {
  transform: scale(1.02);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.55),
    0 0 26px rgba(255, 255, 255, 0.12);
}

.booking-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 1024px) {
  .package-grid {
    grid-template-columns: 1fr;
  }

  .booking-form__row--two,
  .booking-form__row--three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .booking-hero {
    padding: 110px 18px 60px;
    min-height: 52vh;
  }

  .booking-content {
    padding: 54px 18px 74px;
  }
}

/* Wider Booking Form Styles - New Unique Classes */

.wide-booking-container {
  padding: 2rem;
  max-width: 1600px !important;
  margin: 0 auto;
  width: 85% !important;
  min-height: 100vh;
}

.wide-booking-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #141414 100%);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: none;
}

.wide-booking-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.wide-booking-header h2 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.wide-booking-header p {
  color: #9ca3af;
  font-size: 1.1rem;
  margin: 0;
}

.wide-booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.wide-booking-row {
  display: grid;
  gap: 1.5rem;
  width: 100%;
}

.wide-booking-row--two {
  grid-template-columns: 1fr 1fr;
}

.wide-booking-row--three {
  grid-template-columns: 1fr 1fr 1fr;
}

.wide-booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.wide-booking-label {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
}

.wide-booking-input {
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.wide-booking-select {
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff !important;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

.wide-booking-input:focus,
.wide-booking-select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.wide-booking-input::placeholder {
  color: #6b7280;
}

.wide-booking-select option {
  background: #2a2a2a;
  color: #ffffff;
}

.wide-booking-select option:hover {
  background: #3a3a3a;
}

.wide-booking-status {
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #9ca3af;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wide-booking-alert {
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-weight: 500;
}

.wide-booking-alert--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.wide-booking-alert--success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.wide-booking-submit {
  padding: 1rem 2rem;
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  width: auto;
  max-width: 300px;
  margin: 1rem auto 0;
  display: block;
}

.wide-booking-submit:hover:not(:disabled) {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.wide-booking-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Responsive Design for Wider Form */
@media (max-width: 1600px) {
  .wide-booking-container {
    max-width: 1600px;
    width: 95%;
  }
}

@media (max-width: 1400px) {
  .wide-booking-container {
    max-width: 1400px;
    width: 92%;
    padding: 1.8rem;
  }
}

@media (max-width: 1200px) {
  .wide-booking-container {
    max-width: 1200px;
    width: 90%;
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .wide-booking-container {
    padding: 1rem;
    width: 95%;
    margin: 0 auto;
  }
  
  .wide-booking-card {
    padding: 2rem;
    width: 100%;
  }
  
  .wide-booking-row--two,
  .wide-booking-row--three {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .wide-booking-header h2 {
    font-size: 1.6rem;
  }
  
  .wide-booking-header p {
    font-size: 1rem;
  }
  
  .wide-booking-field {
    gap: 0.4rem;
  }
  
  .wide-booking-input,
  .wide-booking-select {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }
  
  .wide-booking-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .wide-booking-container {
    padding: 0.75rem;
    width: 98%;
  }
  
  .wide-booking-card {
    padding: 1.5rem;
    width: 100%;
    border-radius: 15px;
  }
  
  .wide-booking-input,
  .wide-booking-select {
    padding: 0.875rem;
    font-size: 0.95rem;
  }
  
  .wide-booking-label {
    font-size: 0.9rem;
  }
  
  .wide-booking-submit {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    max-width: 250px;
  }
  
  .wide-booking-header h2 {
    font-size: 1.4rem;
  }
  
  .wide-booking-header p {
    font-size: 0.95rem;
  }
}

@media (max-width: 360px) {
  .wide-booking-container {
    padding: 0.5rem;
    width: 100%;
  }
  
  .wide-booking-card {
    padding: 1rem;
  }
  
  .wide-booking-input,
  .wide-booking-select {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  
  .wide-booking-label {
    font-size: 0.85rem;
  }
  
  .wide-booking-submit {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
    max-width: 200px;
  }
  
  .wide-booking-header h2 {
    font-size: 1.3rem;
  }
}
/* FAQ Page Styles */

/* Hero Section */
.faq-hero {
  position: relative;
  height: 90vh;
  min-height: 400px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.faq-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/HeroPic2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.faq-hero__overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 100%
  ); */
  z-index: 2;
}

.faq-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

.hero-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: #fff;
  backdrop-filter: blur(10px);
}


.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: titleSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.title-line:first-child {
  animation-delay: 0.2s;
}

.title-line:last-child {
  animation-delay: 0.4s;
}

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


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

/* Category Filter Section */
.faq-categories {
  padding: 60px min(6vw, 70px);
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-categories__container {
  max-width: 1200px;
  margin: 0 auto;
}

.category-filter {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  border-color: rgba(255, 255, 255, 0.8);
}

/* FAQ Content Section */
.faq-content {
  padding: 80px min(6vw, 70px);
  background: #000;
}

.faq-content__container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.faq-category {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-category.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.category-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  backdrop-filter: blur(10px);
}

.category-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.category-questions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* FAQ Item Styles */
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.faq-item.is-open {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question__text {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  flex: 1;
}

.faq-icon {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-icon {
  color: #fff;
  transform: rotate(180deg);
}

.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-answer-wrapper {
  max-height: 300px;
}

.faq-answer {
  padding: 0 25px 20px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

/* CTA Section */
.faq-cta {
  padding: 80px min(6vw, 70px);
  background: #ffffff;
}

.faq-cta__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #000000;
  margin: 0 0 20px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.8);
  margin: 0 0 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cta-btn.primary {
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 20px rgba(0, 0, 0, 0.15);
}

.cta-btn.primary::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;
}

.cta-btn.primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.95);
}

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

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(0, 0, 0, 0.1);
}

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

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  border-color: rgba(0, 0, 0, 0.4);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(0, 0, 0, 0.15);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .faq-hero {
    height: 50vh;
    min-height: 350px;
  }

  .faq-categories,
  .faq-content,
  .faq-cta {
    padding: 50px 20px;
  }

  .category-filter {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .faq-question {
    padding: 16px 20px;
  }

  .faq-question__text {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 20px 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .faq-hero {
    height: 45vh;
    min-height: 300px;
  }

  .faq-categories,
  .faq-content,
  .faq-cta {
    padding: 40px 15px;
  }

  .hero-icon {
    width: 60px;
    height: 60px;
  }

  .category-icon {
    width: 40px;
    height: 40px;
  }

  .category-header h3 {
    font-size: 1.2rem;
  }

  .faq-question {
    padding: 14px 16px;
  }

  .faq-question__text {
    font-size: 0.95rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}
/* About Us Page Styles */

/* Hero Section */
.about-hero {
  position: relative;
  height: 90vh;
  min-height: 500px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/HeroPic2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 100%
  ); */
  z-index: 2;
}

.about-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 0 20px;
}


.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: titleSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.title-line:first-child {
  animation-delay: 0.2s;
}

.title-line:last-child {
  animation-delay: 0.4s;
}

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


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

/* About Intro Section */
.about-intro {
  padding: 100px min(6vw, 70px);
  background: #ffffff;
}

.about-intro__container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro__image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.6s ease;
}

.image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.image-wrapper img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.1) 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.about-intro__content {
  color: #000;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 30px;
  color: #000000;
}

.section-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.8);
  margin: 0 0 40px;
}

.about-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

/* Gallery Section */
.about-gallery {
  padding: 80px min(6vw, 70px);
  background: #000;
}

.about-gallery__container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/10;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  font-size: 2rem;
  color: #fff;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: scale(1.1);
}

/* Vision & Mission Section */
.about-vision-mission {
  padding: 80px min(6vw, 70px);
  background: #0a0a0a;
  position: relative;
}

.about-vision-mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.02) 0%, 
    transparent 50%, 
    rgba(255, 255, 255, 0.02) 100%
  );
  pointer-events: none;
}

.about-vision-mission__container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.vision-section, .mission-section {
  margin-bottom: 60px;
}

.section-heading {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 40px;
  color: #fff;
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #fff, transparent);
}

.vision-content {
  margin-bottom: 80px;
}

.vision-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  max-width: 900px;
}

.mission-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.mission-item {
  position: relative;
  padding-left: 40px;
}

.mission-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.mission-title {
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  margin: 0 0 15px;
  letter-spacing: -0.01em;
}

.mission-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 800px;
}

.mission-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.mission-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 15px;
  color: #fff;
}

.mission-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Service Men Slider Section */
.service-men-slider {
  padding: 100px min(6vw, 70px);
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  overflow-x: hidden;
}

.service-men__container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-men__header {
  text-align: center;
  margin-bottom: 60px;
}

.service-men__header .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 15px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-men__header .section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.service-men__slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  overflow: hidden;
  padding: 40px 20px;
}

.service-man-card {
  position: relative;
  width: 280px;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.3;
  transform: scale(0.8);
  filter: blur(2px);
}

.service-man-card.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  z-index: 2;
}

.service-man-card:hover {
  transform: scale(1.05);
  z-index: 3;
}

.service-man-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.service-man-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-man-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 30%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.1) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 30px 20px 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-man-card:hover .service-man-overlay,
.service-man-card.active .service-man-overlay {
  opacity: 1;
}

.service-man-info {
  color: #fff;
  text-align: center;
}

.service-man-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}

.service-man-info p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 10px;
  font-weight: 600;
}

.expertise {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 0.85rem;
  color: #fff;
  backdrop-filter: blur(10px);
}

.service-men__indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.service-men__indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.service-men__indicators .indicator:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.service-men__indicators .indicator.active {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.3);
}

/* Team Section */
.about-team {
  padding: 100px min(6vw, 70px);
  background: #ffffff;
}

.about-team__container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-header .section-title {
  color: #000 !important;
  margin-bottom: 15px;
}

.team-experts-title {
  color: #000 !important;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.team-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-100px) scale(0.9);
  animation: slideInFromLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px) scale(0.9);
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-expertise {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 12px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.team-info {
  padding: 25px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.3s;
}

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

.team-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 5px;
  color: #000;
}

.team-role {
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
  font-size: 0.95rem;
}

/* CTA Section */
.about-cta {
  padding: 100px min(6vw, 70px);
  background: #ffffff;
}

.about-cta__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #000000;
  margin: 0 0 20px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.8);
  margin: 0 0 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cta-btn.primary {
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 20px rgba(0, 0, 0, 0.15);
}

.cta-btn.primary::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;
}

.cta-btn.primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.95);
}

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

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(0, 0, 0, 0.1);
}

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

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  border-color: rgba(0, 0, 0, 0.4);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(0, 0, 0, 0.15);
}

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

/* Animated Cards */
.animated-card {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animated-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .service-men__slider {
    gap: 20px;
    padding: 30px 20px;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  }

  .service-man-card {
    width: 240px;
    height: 300px;
    min-width: 240px;
    scroll-snap-align: center;
  }

  .service-man-info h4 {
    font-size: 1.1rem;
  }

  .service-man-info p {
    font-size: 0.9rem;
  }

  .expertise {
    font-size: 0.75rem;
    padding: 4px 8px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 1024px) {
  .service-men__slider {
    gap: 25px;
    padding: 35px 20px;
    justify-content: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  }

  .service-man-card {
    width: 260px;
    height: 325px;
    min-width: 260px;
    scroll-snap-align: center;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 60vh;
    min-height: 400px;
  }

  .about-intro,
  .about-gallery,
  .about-vision-mission,
  .about-team,
  .about-cta {
    padding: 60px 15px;
  }

  .service-men-slider {
    padding: 50px 15px;
  }

  .service-men__slider {
    gap: 15px;
    padding: 20px 15px;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  }

  .service-man-card {
    width: 200px;
    height: 260px;
    min-width: 200px;
    scroll-snap-align: center;
  }

  .service-man-info h4 {
    font-size: 1rem;
  }

  .service-man-info p {
    font-size: 0.8rem;
  }

  .expertise {
    font-size: 0.7rem;
    padding: 3px 6px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  /* Hide indicators on mobile for better UX */
  .service-men__indicators {
    display: none;
  }
}
/* Contact Page Styles */

/* Hero Section */
.contact-hero {
  position: relative;
  height: 90vh;
  min-height: 400px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/HeroPic3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 100%
  ); */
  z-index: 2;
}

.contact-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}



/* Main Contact Section */
.contact-section {
  padding: 100px min(6vw, 70px);
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  min-height: 80vh;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info Section */
.contact-info-section {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInFromLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.2s;
}

.contact-info-header {
  margin-bottom: 40px;
}

.contact-info-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 15px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 50px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 5px;
}

.contact-info-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.contact-info-link:hover {
  color: #fff;
}

.contact-info-content span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* Business Hours */
.contact-hours {
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

.contact-hours h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item span:first-child {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.hours-item span:last-child {
  color: #fff;
  font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInFromRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.4s;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 15px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-form-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Form Rows */
.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.form-group.full-width {
  flex: 1 1 100%;
}

/* Form Labels */
.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 5px;
}

/* Form Inputs */
.form-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Select Dropdown Options Styling */
select.form-input option {
  background: #000000;
  color: #ffffff;
}

select.form-input option:hover {
  background: #1a1a1a;
}

.form-textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  min-height: 120px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 100%;
}

.form-textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Submit Button */
.submit-btn {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 18px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  align-self: flex-start;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.submit-btn.submitting {
  background: rgba(255, 255, 255, 0.7);
  cursor: not-allowed;
}

.submit-btn.submitted {
  background: rgba(16, 185, 129, 0.9);
  color: #fff;
}

.submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-top: 2px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Submit Feedback */
.submit-feedback {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  animation: slideUp 0.3s ease;
}

.submit-feedback.success {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10b981;
}

.submit-feedback.error {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

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

@keyframes slideInFromLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-section {
    animation-delay: 0.2s;
  }

  .contact-form-section {
    animation-delay: 0.4s;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px;
  }

  .contact-grid {
    gap: 30px;
  }

  .contact-form {
    padding: 30px 25px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .contact-info-item {
    padding: 20px;
    gap: 15px;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    height: 40vh;
    min-height: 300px;
  }

  .contact-section {
    padding: 40px 15px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .contact-info-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .contact-info-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .contact-hours {
    padding: 20px;
  }

  .hours-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

/* Form Error and Success Messages */
.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-weight: 500;
  text-align: center;
}

.form-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-weight: 500;
  text-align: center;
}
