/**
 * Components CSS
 * Reusable component styles (buttons, navigation, footer, cards, etc.)
 */

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-xl);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

/* ============================================
   Language Switcher
   ============================================ */
.lang-switcher {
  display: none;
  align-items: center;
  gap: var(--spacing-xs);
  margin-left: var(--spacing-lg);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xs) var(--spacing-sm);
  color: rgba(255, 245, 238, 0.7);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.lang-link:hover {
  color: var(--color-text-light);
  background: rgba(255, 255, 255, 0.1);
}

.lang-link.lang-active {
  color: var(--color-text-light);
  background: rgba(255, 255, 255, 0.15);
  font-weight: var(--font-weight-bold);
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-xl) var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--spacing-lg);
}

.mobile-lang-switcher .lang-link {
  font-size: var(--font-size-lg);
  padding: var(--spacing-sm) var(--spacing-lg);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-light);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-text-light);
  border-color: var(--color-text-light);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-secondary:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   Navigation
   ============================================ */
.site-header {
  position: relative;
  z-index: var(--z-sticky);
}

.main-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-lg) 0;
  transition: all var(--transition-base);
  z-index: var(--z-sticky);
}

.main-navigation.scrolled {
  background: rgba(69, 35, 71, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  padding: var(--spacing-md) 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-branding {
  z-index: var(--z-dropdown);
}

.site-logo {
  height: 50px;
  width: auto;
  transition: height var(--transition-base);
}

.main-navigation.scrolled .site-logo {
  height: 40px;
}

.site-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  color: var(--color-text-light);
  font-weight: var(--font-weight-bold);
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: var(--color-secondary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-menu a:hover,


/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: var(--font-size-2xl);
  cursor: pointer;
  padding: var(--spacing-sm);
  z-index: var(--z-dropdown);
}

.mobile-menu-toggle .close-icon {
  display: none;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon {
  display: none;
}

.mobile-menu-toggle[aria-expanded="true"] .close-icon {
  display: block;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  padding-top: 80px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  overflow-y: auto;
  height:100vh;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  padding: var(--spacing-xl);
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-menu li {
  margin-bottom: var(--spacing-md);
}

.mobile-nav-menu a {
  display: block;
  color: var(--color-text-light);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-nav-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .nav-menu-wrapper {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--color-primary);
  color: var(--color-secondary);
}

.footer-main {
  padding: var(--spacing-4xl) 0 var(--spacing-3xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-3xl);
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
}

.footer-heading {
  font-size: var(--font-size-xl);
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
}

.footer-about {
  color: rgba(255, 245, 238, 0.8);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-lg);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xl);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--color-text-light);
  color: var(--color-primary);
  transform: translateY(-3px);
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  margin-bottom: var(--spacing-sm);
}

.footer-menu a {
  color: rgba(255, 245, 238, 0.8);
  transition: color var(--transition-fast);
}

.footer-menu a:hover {
  color: var(--color-text-light);
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  color: rgba(255, 245, 238, 0.8);
}

.contact-item i {
  font-size: var(--font-size-xl);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item a {
  color: rgba(255, 245, 238, 0.8);
}

.contact-item a:hover {
  color: var(--color-text-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--spacing-xl) 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.copyright {
  color: rgba(255, 245, 238, 0.6);
  font-size: var(--font-size-sm);
  margin: 0;
}

.footer-legal-menu {
  display: flex;
  gap: var(--spacing-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal-menu a {
  color: rgba(255, 245, 238, 0.6);
  font-size: var(--font-size-sm);
}

.footer-legal-menu a:hover {
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   Cards
   ============================================ */
.card {
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: var(--spacing-lg);
}

.card-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-sm);
}

.card-description {
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-md);
}

/* ============================================
   Forms
   ============================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
  width: 100%;
  padding: var(--spacing-md);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  transition: all var(--transition-fast);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(69, 35, 71, 0.1);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

label {
  display: block;
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-dark);
}

/* ============================================
   Pagination
   ============================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-3xl);
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: var(--spacing-sm) var(--spacing-md);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-dark);
  font-weight: var(--font-weight-medium);
  transition: all var(--transition-fast);
}

.pagination a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-light);
}

.pagination .current {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-light);
}


/* ============================================================
   KING&#039;S SITE VISUAL POLISH & LAYOUT ENHANCEMENTS (V2)
   ============================================================ */

/* 1. Fix Alternating Services List Layout on Category Pages */
.services-alternating-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 48px !important;
}



@media screen and (max-width: 992px) {
    
}

/* 2. Fix Image Slider Stacking & Absolute Positioning */
.service-image-col.hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.service-image-slider {
    position: relative !important;
    width: 100% !important;
    height: 380px !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.service-image-slider .service-slider-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.4s ease, visibility 0.4s ease !important;
}

.service-image-slider .service-slider-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.service-image-slider .service-slider-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    aspect-ratio: auto !important;
}

/* 3. Contact & Service Request Form Field Borders & Styling */
.wpcf7-text,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-textarea,
.wpcf7-select,
.service-request-form input[type="text"],
.service-request-form input[type="email"],
.service-request-form input[type="tel"],
.service-request-form textarea {
    border: 1px solid rgba(69, 35, 71, 0.25) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    background-color: #ffffff !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-tel:focus,
.wpcf7-textarea:focus,
.service-request-form input:focus,
.service-request-form textarea:focus {
    border-color: #452347 !important;
    box-shadow: 0 0 0 3px rgba(69, 35, 71, 0.15) !important;
    outline: none !important;
}

/* 4. Sub-Service Tabs (Nav Pills inside Service Cards) - Legibility & Active State */
.services-nav-pills .nav-pill,
.service-card-content .nav-pill {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    color: #452347 !important;
    background-color: rgba(69, 35, 71, 0.06) !important;
    border: 1px solid rgba(69, 35, 71, 0.15) !important;
    border-radius: 12px !important;
    padding: 6px 14px !important;
    margin: 4px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.services-nav-pills .nav-pill:hover,
.service-card-content .nav-pill:hover {
    background-color: #452347 !important;
    color: #ffffff !important;
    border-color: #452347 !important;
}

.services-nav-pills .nav-pill.active,
.service-card-content .nav-pill.active {
    background-color: #452347 !important;
    color: #ffffff !important;
    border-color: #452347 !important;
    box-shadow: 0 4px 12px rgba(69, 35, 71, 0.25) !important;
}

/* 5. Button & Form Button Styling */
.btn, .btn-primary, .btn-form {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-primary:hover, .btn-form:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(69, 35, 71, 0.3) !important;
}

.wpcf7-submit, .service-request-form .wpcf7-submit {
    background: #452347 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 14px 28px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
}

.wpcf7-submit:hover, .service-request-form .wpcf7-submit:hover {
    background: #2d1730 !important;
}


/* ============================================================
   KING&#039;S SITE VISUAL POLISH & LAYOUT ENHANCEMENTS (V3)
   ============================================================ */

/* 1. Fix Alternating Services List Layout on Category Pages */
.services-alternating-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 48px !important;
}



@media screen and (max-width: 992px) {
    
}

/* 2. Fix Image Slider Stacking & Absolute Positioning */
.service-image-col.hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.service-image-slider {
    position: relative !important;
    width: 100% !important;
    height: 380px !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.service-image-slider .service-slider-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.4s ease, visibility 0.4s ease !important;
}

.service-image-slider .service-slider-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.service-image-slider .service-slider-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    aspect-ratio: auto !important;
}

/* 3. Furniture & Surface Protection Films (Service 125) Single Photo Lock */
#service-125 .service-image-col.hidden,
#service-125 .service-image-col:not(.active) {
    display: none !important;
}

#service-125 .service-slider-slide:not(:first-child) {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

#service-125 .slider-prev,
#service-125 .slider-next,
#service-125 .slider-dots {
    display: none !important;
}

/* 4. Contact & Service Request Form Field Styling */
.wpcf7-text,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-textarea,
.wpcf7-select,
.service-request-form input[type="text"],
.service-request-form input[type="email"],
.service-request-form input[type="tel"],
.service-request-form textarea {
    border: 1px solid rgba(69, 35, 71, 0.25) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    background-color: #ffffff !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-tel:focus,
.wpcf7-textarea:focus,
.service-request-form input:focus,
.service-request-form textarea:focus {
    border-color: #452347 !important;
    box-shadow: 0 0 0 3px rgba(69, 35, 71, 0.15) !important;
    outline: none !important;
}

/* 5. Sub-Service Tabs (Nav Pills) */
.services-nav-pills .nav-pill,
.service-card-content .nav-pill {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    color: #452347 !important;
    background-color: rgba(69, 35, 71, 0.06) !important;
    border: 1px solid rgba(69, 35, 71, 0.15) !important;
    border-radius: 12px !important;
    padding: 6px 14px !important;
    margin: 4px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.services-nav-pills .nav-pill:hover,
.service-card-content .nav-pill:hover {
    background-color: #452347 !important;
    color: #ffffff !important;
    border-color: #452347 !important;
}

.services-nav-pills .nav-pill.active,
.service-card-content .nav-pill.active {
    background-color: #452347 !important;
    color: #ffffff !important;
    border-color: #452347 !important;
    box-shadow: 0 4px 12px rgba(69, 35, 71, 0.25) !important;
}

/* 6. Button Styling */
.btn, .btn-primary, .btn-form {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-primary:hover, .btn-form:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(69, 35, 71, 0.3) !important;
}

.wpcf7-submit, .service-request-form .wpcf7-submit {
    background: #452347 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 14px 28px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
}

.wpcf7-submit:hover, .service-request-form .wpcf7-submit:hover {
    background: #2d1730 !important;
}


/* ============================================================
   KING&#039;S SITE VISUAL POLISH & LAYOUT ENHANCEMENTS (V4)
   ============================================================ */

/* 1. Fix Alternating Services List Layout on Category Pages */
.services-alternating-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 48px !important;
}



@media screen and (max-width: 992px) {
    
}

/* 2. FORCE ONLY ONE SINGLE PHOTO SLIDER CONTAINER PER SERVICE CARD (NO STACKED BOXES) */


.service-image-col {
    display: block !important;
    width: 100% !important;
}

/* 3. Image Slider Container & Slide Transitions */
.service-image-slider {
    position: relative !important;
    width: 100% !important;
    height: 380px !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.service-image-slider .service-slider-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.4s ease, visibility 0.4s ease !important;
}

.service-image-slider .service-slider-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.service-image-slider .service-slider-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    aspect-ratio: auto !important;
}

.service-image-slider .slider-prev,
.service-image-slider .slider-next {
    display: flex !important;
    z-index: 10 !important;
}

.service-image-slider .slider-dots {
    display: flex !important;
    z-index: 10 !important;
}

/* 4. Contact & Service Request Form Field Styling */
.wpcf7-text,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-textarea,
.wpcf7-select,
.service-request-form input[type="text"],
.service-request-form input[type="email"],
.service-request-form input[type="tel"],
.service-request-form textarea {
    border: 1px solid rgba(69, 35, 71, 0.25) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    background-color: #ffffff !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-tel:focus,
.wpcf7-textarea:focus,
.service-request-form input:focus,
.service-request-form textarea:focus {
    border-color: #452347 !important;
    box-shadow: 0 0 0 3px rgba(69, 35, 71, 0.15) !important;
    outline: none !important;
}

/* 5. Sub-Service Tabs (Nav Pills) */
.services-nav-pills .nav-pill,
.service-card-content .nav-pill {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    color: #452347 !important;
    background-color: rgba(69, 35, 71, 0.06) !important;
    border: 1px solid rgba(69, 35, 71, 0.15) !important;
    border-radius: 12px !important;
    padding: 6px 14px !important;
    margin: 4px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.services-nav-pills .nav-pill:hover,
.service-card-content .nav-pill:hover {
    background-color: #452347 !important;
    color: #ffffff !important;
    border-color: #452347 !important;
}

.services-nav-pills .nav-pill.active,
.service-card-content .nav-pill.active {
    background-color: #452347 !important;
    color: #ffffff !important;
    border-color: #452347 !important;
    box-shadow: 0 4px 12px rgba(69, 35, 71, 0.25) !important;
}

/* 6. Button Styling */
.btn, .btn-primary, .btn-form {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-primary:hover, .btn-form:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(69, 35, 71, 0.3) !important;
}

.wpcf7-submit, .service-request-form .wpcf7-submit {
    background: #452347 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 14px 28px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
}

.wpcf7-submit:hover, .service-request-form .wpcf7-submit:hover {
    background: #2d1730 !important;
}


/* ============================================================
   KING&#039;S SITE VISUAL POLISH & LAYOUT ENHANCEMENTS (V5)
   ============================================================ */

/* 1. Fix Alternating Services List Layout on Category Pages */
.services-alternating-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 48px !important;
}



@media screen and (max-width: 992px) {
    
}

/* 2. ONLY hide feature image containers that have class .hidden */
.service-image-col.hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* 3. Image Slider Container & Slide Transitions */
.service-image-slider {
    position: relative !important;
    width: 100% !important;
    height: 380px !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.service-image-slider .service-slider-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.4s ease, visibility 0.4s ease !important;
}

.service-image-slider .service-slider-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.service-image-slider .service-slider-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    aspect-ratio: auto !important;
}

/* 4. Contact & Service Request Form Field Styling */
.wpcf7-text,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-textarea,
.wpcf7-select,
.service-request-form input[type="text"],
.service-request-form input[type="email"],
.service-request-form input[type="tel"],
.service-request-form textarea {
    border: 1px solid rgba(69, 35, 71, 0.25) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    background-color: #ffffff !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-tel:focus,
.wpcf7-textarea:focus,
.service-request-form input:focus,
.service-request-form textarea:focus {
    border-color: #452347 !important;
    box-shadow: 0 0 0 3px rgba(69, 35, 71, 0.15) !important;
    outline: none !important;
}

/* 5. Sub-Service Tabs (Nav Pills) */
.services-nav-pills .nav-pill,
.service-card-content .nav-pill {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    color: #452347 !important;
    background-color: rgba(69, 35, 71, 0.06) !important;
    border: 1px solid rgba(69, 35, 71, 0.15) !important;
    border-radius: 12px !important;
    padding: 6px 14px !important;
    margin: 4px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.services-nav-pills .nav-pill:hover,
.service-card-content .nav-pill:hover {
    background-color: #452347 !important;
    color: #ffffff !important;
    border-color: #452347 !important;
}

.services-nav-pills .nav-pill.active,
.service-card-content .nav-pill.active {
    background-color: #452347 !important;
    color: #ffffff !important;
    border-color: #452347 !important;
    box-shadow: 0 4px 12px rgba(69, 35, 71, 0.25) !important;
}

/* 6. Button Styling */
.btn, .btn-primary, .btn-form {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-primary:hover, .btn-form:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(69, 35, 71, 0.3) !important;
}

.wpcf7-submit, .service-request-form .wpcf7-submit {
    background: #452347 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 14px 28px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
}

.wpcf7-submit:hover, .service-request-form .wpcf7-submit:hover {
    background: #2d1730 !important;
}


/* ============================================================
   KING&#039;S SITE VISUAL POLISH & LAYOUT ENHANCEMENTS (V6)
   ============================================================ */

/* 1. Fix Alternating Services List Layout on Category Pages */
.services-alternating-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 48px !important;
}



@media screen and (max-width: 992px) {
    
}

/* 2. SINGLE BOX CONTAINER LOCK FOR ALL SERVICE CARD IMAGES (NO STACKED BOXES) */
.service-row > div:first-child {
    position: relative !important;
    width: 100% !important;
    height: 380px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    background: #f8f9fa !important;
}

.service-row > div:first-child .service-image-col {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure only active or visible image column is rendered on top */
.service-row > div:first-child .service-image-col.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.service-row > div:first-child .service-image-col.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 2 !important;
}

/* 3. Image Slider Container & Slide Transitions */
.service-image-slider {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    box-shadow: none !important;
}

.service-image-slider .service-slider-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.4s ease, visibility 0.4s ease !important;
}

.service-image-slider .service-slider-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.service-image-slider .service-slider-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    aspect-ratio: auto !important;
}

.service-image-slider .slider-prev,
.service-image-slider .slider-next {
    display: flex !important;
    z-index: 10 !important;
}

.service-image-slider .slider-dots {
    display: flex !important;
    z-index: 10 !important;
}

/* 4. Contact & Service Request Form Field Styling */
.wpcf7-text,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-textarea,
.wpcf7-select,
.service-request-form input[type="text"],
.service-request-form input[type="email"],
.service-request-form input[type="tel"],
.service-request-form textarea {
    border: 1px solid rgba(69, 35, 71, 0.25) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    background-color: #ffffff !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-tel:focus,
.wpcf7-textarea:focus,
.service-request-form input:focus,
.service-request-form textarea:focus {
    border-color: #452347 !important;
    box-shadow: 0 0 0 3px rgba(69, 35, 71, 0.15) !important;
    outline: none !important;
}

/* 5. Sub-Service Tabs (Nav Pills) */
.services-nav-pills .nav-pill,
.service-card-content .nav-pill {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    color: #452347 !important;
    background-color: rgba(69, 35, 71, 0.06) !important;
    border: 1px solid rgba(69, 35, 71, 0.15) !important;
    border-radius: 12px !important;
    padding: 6px 14px !important;
    margin: 4px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.services-nav-pills .nav-pill:hover,
.service-card-content .nav-pill:hover {
    background-color: #452347 !important;
    color: #ffffff !important;
    border-color: #452347 !important;
}

.services-nav-pills .nav-pill.active,
.service-card-content .nav-pill.active {
    background-color: #452347 !important;
    color: #ffffff !important;
    border-color: #452347 !important;
    box-shadow: 0 4px 12px rgba(69, 35, 71, 0.25) !important;
}

/* 6. Button Styling */
.btn, .btn-primary, .btn-form {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-primary:hover, .btn-form:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(69, 35, 71, 0.3) !important;
}

.wpcf7-submit, .service-request-form .wpcf7-submit {
    background: #452347 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 14px 28px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
}

.wpcf7-submit:hover, .service-request-form .wpcf7-submit:hover {
    background: #2d1730 !important;
}


/* ============================================================
   KING&#039;S SITE VISUAL POLISH & LAYOUT ENHANCEMENTS (V7)
   ============================================================ */

/* 1. Fix Alternating Services List Layout on Category Pages */
.services-alternating-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 48px !important;
}



@media screen and (max-width: 992px) {
    
}

/* 2. SINGLE BOX CONTAINER LOCK FOR ALL SERVICE CARD IMAGES */
.service-row > div:first-child {
    position: relative !important;
    width: 100% !important;
    height: 380px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    background: #f8f9fa !important;
}

.service-row > div:first-child .service-image-col {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

/* Ensure only active or visible image column is rendered on top */
.service-row > div:first-child .service-image-col.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.service-row > div:first-child .service-image-col.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 5 !important;
}

/* 3. Image Slider Container & Slide Visibility */
.service-image-slider {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    box-shadow: none !important;
}

.service-image-slider .service-slider-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.4s ease, visibility 0.4s ease !important;
}

/* FIX: Ensure active slide OR first-child inside active image column is ALWAYS VISIBLE */
.service-image-slider .service-slider-slide.active,
.service-image-col.active .service-slider-slide:first-child {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.service-image-slider .service-slider-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    aspect-ratio: auto !important;
}

.service-image-slider .slider-prev,
.service-image-slider .slider-next {
    display: flex !important;
    z-index: 10 !important;
}

.service-image-slider .slider-dots {
    display: flex !important;
    z-index: 10 !important;
}

/* 4. Contact & Service Request Form Field Styling */
.wpcf7-text,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-textarea,
.wpcf7-select,
.service-request-form input[type="text"],
.service-request-form input[type="email"],
.service-request-form input[type="tel"],
.service-request-form textarea {
    border: 1px solid rgba(69, 35, 71, 0.25) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    background-color: #ffffff !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-tel:focus,
.wpcf7-textarea:focus,
.service-request-form input:focus,
.service-request-form textarea:focus {
    border-color: #452347 !important;
    box-shadow: 0 0 0 3px rgba(69, 35, 71, 0.15) !important;
    outline: none !important;
}

/* 5. Sub-Service Tabs (Nav Pills) */
.services-nav-pills .nav-pill,
.service-card-content .nav-pill {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    color: #452347 !important;
    background-color: rgba(69, 35, 71, 0.06) !important;
    border: 1px solid rgba(69, 35, 71, 0.15) !important;
    border-radius: 12px !important;
    padding: 6px 14px !important;
    margin: 4px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.services-nav-pills .nav-pill:hover,
.service-card-content .nav-pill:hover {
    background-color: #452347 !important;
    color: #ffffff !important;
    border-color: #452347 !important;
}

.services-nav-pills .nav-pill.active,
.service-card-content .nav-pill.active {
    background-color: #452347 !important;
    color: #ffffff !important;
    border-color: #452347 !important;
    box-shadow: 0 4px 12px rgba(69, 35, 71, 0.25) !important;
}

/* 6. Button Styling */
.btn, .btn-primary, .btn-form {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-primary:hover, .btn-form:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(69, 35, 71, 0.3) !important;
}

.wpcf7-submit, .service-request-form .wpcf7-submit {
    background: #452347 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 14px 28px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
}

.wpcf7-submit:hover, .service-request-form .wpcf7-submit:hover {
    background: #2d1730 !important;
}


/* ============================================================
   KING&#039;S SITE VISUAL POLISH & LAYOUT ENHANCEMENTS (V8)
   ============================================================ */

/* 1. Fix Alternating Services List Layout on Category Pages */
.services-alternating-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 48px !important;
}



@media screen and (max-width: 992px) {
    
}

/* 2. SINGLE BOX CONTAINER LOCK FOR ALL SERVICE CARD IMAGES */
.service-row > div:first-child {
    position: relative !important;
    width: 100% !important;
    height: 380px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    background: #f8f9fa !important;
}

.service-row > div:first-child .service-image-col {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

/* Ensure only active or visible image column is rendered on top */
.service-row > div:first-child .service-image-col.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.service-row > div:first-child .service-image-col.active,
.service-row > div:first-child .service-image-col:not(.hidden) {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 10 !important;
}

/* 3. Image Slider Container & Slide Visibility */
.service-image-slider {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    box-shadow: none !important;
}

.service-image-slider .service-slider-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.4s ease, visibility 0.4s ease !important;
}

/* FIX: GUARANTEE EVERY SLIDE INSIDE AN ACTIVE/VISIBLE IMAGE CONTAINER IS VISIBLE */
.service-image-col.active .service-slider-slide,
.service-image-col.active .service-image-slider .service-slider-slide,
.service-image-col:not(.hidden) .service-slider-slide,
.service-image-slider .service-slider-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.service-image-slider .service-slider-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    aspect-ratio: auto !important;
}

.service-image-slider .slider-prev,
.service-image-slider .slider-next {
    display: flex !important;
    z-index: 10 !important;
}

.service-image-slider .slider-dots {
    display: flex !important;
    z-index: 10 !important;
}

/* 4. Contact & Service Request Form Field Styling */
.wpcf7-text,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-textarea,
.wpcf7-select,
.service-request-form input[type="text"],
.service-request-form input[type="email"],
.service-request-form input[type="tel"],
.service-request-form textarea {
    border: 1px solid rgba(69, 35, 71, 0.25) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    background-color: #ffffff !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-tel:focus,
.wpcf7-textarea:focus,
.service-request-form input:focus,
.service-request-form textarea:focus {
    border-color: #452347 !important;
    box-shadow: 0 0 0 3px rgba(69, 35, 71, 0.15) !important;
    outline: none !important;
}

/* 5. Sub-Service Tabs (Nav Pills) */
.services-nav-pills .nav-pill,
.service-card-content .nav-pill {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    color: #452347 !important;
    background-color: rgba(69, 35, 71, 0.06) !important;
    border: 1px solid rgba(69, 35, 71, 0.15) !important;
    border-radius: 12px !important;
    padding: 6px 14px !important;
    margin: 4px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.services-nav-pills .nav-pill:hover,
.service-card-content .nav-pill:hover {
    background-color: #452347 !important;
    color: #ffffff !important;
    border-color: #452347 !important;
}

.services-nav-pills .nav-pill.active,
.service-card-content .nav-pill.active {
    background-color: #452347 !important;
    color: #ffffff !important;
    border-color: #452347 !important;
    box-shadow: 0 4px 12px rgba(69, 35, 71, 0.25) !important;
}

/* 6. Button Styling */
.btn, .btn-primary, .btn-form {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-primary:hover, .btn-form:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(69, 35, 71, 0.3) !important;
}

.wpcf7-submit, .service-request-form .wpcf7-submit {
    background: #452347 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 14px 28px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
}

.wpcf7-submit:hover, .service-request-form .wpcf7-submit:hover {
    background: #2d1730 !important;
}


/* ============================================================
   KING&#039;S SITE VISUAL POLISH & LAYOUT ENHANCEMENTS (PRISTINE V9)
   ============================================================ */

/* 1. Services List Layout */
.services-alternating-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 48px !important;
}



@media screen and (max-width: 992px) {
    
}

/* 2. Image Wrapper & Container Visibility */
.service-row > div:first-child {
    position: relative !important;
    width: 100% !important;
    height: 380px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    background: #f8f9fa !important;
}

/* ============================================================
   KING&#039;S SITE ENHANCEMENTS V14 â€” PRELOADER & TAB SWITCH FIX
   ============================================================ */

/* 1. KING&#039;S HIGH-END PAGE STARTUP PRELOADER WITH LOGO */
body::before {
    content: "" !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: radial-gradient(circle at center, #2d1730 0%, #140716 100%),
                url("https://wordpress.aait.app/kings/wp-content/uploads/2026/02/logo-1.png") center 45% / 220px auto no-repeat !important;
    z-index: 9999999 !important;
    box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.8) !important;
    animation: kingsPreloaderFadeOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.6s forwards !important;
}

@keyframes kingsPreloaderFadeOut {
    0% {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    99% {
        opacity: 0;
        visibility: visible;
        pointer-events: all;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

/* 2. Services List Layout */
.services-alternating-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 48px !important;
}



@media screen and (max-width: 992px) {
    
}

/* 3. IMAGE WRAPPER */
.service-row > div:first-child {
    position: relative !important;
    width: 100% !important;
    height: 380px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    background: #f8f9fa !important;
}

/* 4. ALL image columns: stacked absolute, hidden by default */
.service-row .service-image-col {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 1 !important;
    transition: opacity 0.35s ease, visibility 0.35s ease !important;
}

/* 5. .hidden class */
.service-row .service-image-col.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

/* 6. .active class â€” MUST WIN over .hidden */
.service-row .service-image-col.service-image-col.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 10 !important;
}

/* 7. Slider container */
.service-image-slider {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
}

/* 8. Slides */
.service-image-slider .service-slider-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    visibility: hidden !important;
    display: block !important;
    z-index: 2 !important;
    transition: opacity 0.3s ease !important;
}

.service-image-slider .service-slider-slide.active,
.service-image-col.active .service-slider-slide:first-child {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 5 !important;
}

.service-image-slider .service-slider-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.service-image-slider .slider-prev,
.service-image-slider .slider-next {
    display: flex !important;
    z-index: 15 !important;
}

.service-image-slider .slider-dots {
    display: flex !important;
    z-index: 15 !important;
}

/* 9. Contact & Service Request Form Field Styling */
.wpcf7-text,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-textarea,
.wpcf7-select,
.service-request-form input[type="text"],
.service-request-form input[type="email"],
.service-request-form input[type="tel"],
.service-request-form textarea {
    border: 1px solid rgba(69, 35, 71, 0.25) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    background-color: #ffffff !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-tel:focus,
.wpcf7-textarea:focus,
.service-request-form input:focus,
.service-request-form textarea:focus {
    border-color: #452347 !important;
    box-shadow: 0 0 0 3px rgba(69, 35, 71, 0.15) !important;
    outline: none !important;
}

/* 10. Sub-Service Tabs (Nav Pills) */
.services-nav-pills .nav-pill,
.service-card-content .nav-pill {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    color: #452347 !important;
    background-color: rgba(69, 35, 71, 0.06) !important;
    border: 1px solid rgba(69, 35, 71, 0.15) !important;
    border-radius: 12px !important;
    padding: 6px 14px !important;
    margin: 4px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.services-nav-pills .nav-pill:hover,
.service-card-content .nav-pill:hover {
    background-color: #452347 !important;
    color: #ffffff !important;
    border-color: #452347 !important;
}

.services-nav-pills .nav-pill.active,
.service-card-content .nav-pill.active {
    background-color: #452347 !important;
    color: #ffffff !important;
    border-color: #452347 !important;
    box-shadow: 0 4px 12px rgba(69, 35, 71, 0.25) !important;
}

/* 11. Button Styling */
.btn, .btn-primary, .btn-form {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-primary:hover, .btn-form:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(69, 35, 71, 0.3) !important;
}

.wpcf7-submit, .service-request-form .wpcf7-submit {
    background: #452347 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 14px 28px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
}

.wpcf7-submit:hover, .service-request-form .wpcf7-submit:hover {
    background: #2d1730 !important;
}

/* ============================================================
   KING&#039;S SITE ENHANCEMENTS V15 â€” HIGH-END LOGO PRELOADER
   ============================================================ */

/* 1. KING&#039;S HIGH-END PAGE STARTUP PRELOADER (DUAL LAYER) */

/* Layer 1: Dark Purple Ambient Background Backdrop */
body::before {
    content: "" !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: radial-gradient(circle at center, #361b38 0%, #140716 100%) !important;
    z-index: 9999998 !important;
    animation: kingsPreloaderFadeOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) 2.2s forwards !important;
}

/* Layer 2: Centered King&#039;s Logo with Glow and Pulse Effect */
body::after {
    content: "" !important;
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    width: 320px !important;
    height: 140px !important;
    transform: translate(-50%, -50%) !important;
    background: url("https://wordpress.aait.app/kings/wp-content/uploads/2026/02/logo-1.png") center center / contain no-repeat !important;
    z-index: 9999999 !important;
    animation: kingsLogoPulse 1.8s ease-in-out infinite, kingsPreloaderFadeOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) 2.2s forwards !important;
}


    50% {
        transform: translate(-50%, -50%) scale(1.08);
        filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.8));
    }
}

@keyframes kingsPreloaderFadeOut {
    0% {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    99% {
        opacity: 0;
        visibility: visible;
        pointer-events: all;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

/* 2. Services List Layout */
.services-alternating-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 48px !important;
}



@media screen and (max-width: 992px) {
    
}

/* 3. IMAGE WRAPPER */
.service-row > div:first-child {
    position: relative !important;
    width: 100% !important;
    height: 380px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    background: #f8f9fa !important;
}

/* 4. ALL image columns: stacked absolute, hidden by default */
.service-row .service-image-col {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 1 !important;
    transition: opacity 0.35s ease, visibility 0.35s ease !important;
}

/* 5. .hidden class */
.service-row .service-image-col.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

/* 6. .active class â€” MUST WIN over .hidden */
.service-row .service-image-col.service-image-col.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 10 !important;
}

/* 7. Slider container */
.service-image-slider {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
}

/* 8. Slides */
.service-image-slider .service-slider-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    visibility: hidden !important;
    display: block !important;
    z-index: 2 !important;
    transition: opacity 0.3s ease !important;
}

.service-image-slider .service-slider-slide.active,
.service-image-col.active .service-slider-slide:first-child {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 5 !important;
}

.service-image-slider .service-slider-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.service-image-slider .slider-prev,
.service-image-slider .slider-next {
    display: flex !important;
    z-index: 15 !important;
}

.service-image-slider .slider-dots {
    display: flex !important;
    z-index: 15 !important;
}

/* 9. Contact & Service Request Form Field Styling */
.wpcf7-text,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-textarea,
.wpcf7-select,
.service-request-form input[type="text"],
.service-request-form input[type="email"],
.service-request-form input[type="tel"],
.service-request-form textarea {
    border: 1px solid rgba(69, 35, 71, 0.25) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    background-color: #ffffff !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-tel:focus,
.wpcf7-textarea:focus,
.service-request-form input:focus,
.service-request-form textarea:focus {
    border-color: #452347 !important;
    box-shadow: 0 0 0 3px rgba(69, 35, 71, 0.15) !important;
    outline: none !important;
}

/* 10. Sub-Service Tabs (Nav Pills) */
.services-nav-pills .nav-pill,
.service-card-content .nav-pill {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    color: #452347 !important;
    background-color: rgba(69, 35, 71, 0.06) !important;
    border: 1px solid rgba(69, 35, 71, 0.15) !important;
    border-radius: 12px !important;
    padding: 6px 14px !important;
    margin: 4px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.services-nav-pills .nav-pill:hover,
.service-card-content .nav-pill:hover {
    background-color: #452347 !important;
    color: #ffffff !important;
    border-color: #452347 !important;
}

.services-nav-pills .nav-pill.active,
.service-card-content .nav-pill.active {
    background-color: #452347 !important;
    color: #ffffff !important;
    border-color: #452347 !important;
    box-shadow: 0 4px 12px rgba(69, 35, 71, 0.25) !important;
}

/* 11. Button Styling */
.btn, .btn-primary, .btn-form {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-primary:hover, .btn-form:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(69, 35, 71, 0.3) !important;
}

.wpcf7-submit, .service-request-form .wpcf7-submit {
    background: #452347 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 14px 28px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
}

.wpcf7-submit:hover, .service-request-form .wpcf7-submit:hover {
    background: #2d1730 !important;
}

/* ============================================================
   KING'S SITE ENHANCEMENTS V16 â€” MANDATORY TOP SCROLL SNAP
   ============================================================ */

/* 1. STANDARD PAGE SCROLL RESTORATION */
html {
    scroll-snap-type: none !important;
    scroll-behavior: smooth;
}

#page, #masthead, header.site-header {
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
}


/* 2. KING'S HIGH-END PAGE STARTUP PRELOADER (DUAL LAYER) */

/* Layer 1: Dark Purple Ambient Background Backdrop */
body::before {
    content: "" !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: radial-gradient(circle at center, #361b38 0%, #140716 100%) !important;
    z-index: 9999998 !important;
    animation: kingsPreloaderFadeOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) 2.2s forwards !important;
}

/* Layer 2: Centered King's Logo with Glow and Pulse Effect */
body::after {
    content: "" !important;
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    width: 320px !important;
    height: 140px !important;
    transform: translate(-50%, -50%) !important;
    background: url("https://wordpress.aait.app/kings/wp-content/uploads/2026/02/logo-1.png") center center / contain no-repeat !important;
    z-index: 9999999 !important;
    animation: kingsLogoPulse 1.8s ease-in-out infinite, kingsPreloaderFadeOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) 2.2s forwards !important;
}


    50% {
        transform: translate(-50%, -50%) scale(1.08);
        filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.8));
    }
}

@keyframes kingsPreloaderFadeOut {
    0% {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    99% {
        opacity: 0;
        visibility: visible;
        pointer-events: all;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

/* 3. Services List Layout */
.services-alternating-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 48px !important;
}



@media screen and (max-width: 992px) {
    
}

/* 4. IMAGE WRAPPER */
.service-row > div:first-child {
    position: relative !important;
    width: 100% !important;
    height: 380px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    background: #f8f9fa !important;
}

/* 5. ALL image columns: stacked absolute, hidden by default */
.service-row .service-image-col {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 1 !important;
    transition: opacity 0.35s ease, visibility 0.35s ease !important;
}

/* 6. .hidden class */
.service-row .service-image-col.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

/* 7. .active class â€” MUST WIN over .hidden */
.service-row .service-image-col.service-image-col.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 10 !important;
}

/* 8. Slider container */
.service-image-slider {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
}

/* 9. Slides */
.service-image-slider .service-slider-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    visibility: hidden !important;
    display: block !important;
    z-index: 2 !important;
    transition: opacity 0.3s ease !important;
}

.service-image-slider .service-slider-slide.active,
.service-image-col.active .service-slider-slide:first-child {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 5 !important;
}

.service-image-slider .service-slider-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.service-image-slider .slider-prev,
.service-image-slider .slider-next {
    display: flex !important;
    z-index: 15 !important;
}

.service-image-slider .slider-dots {
    display: flex !important;
    z-index: 15 !important;
}

/* 10. Contact & Service Request Form Field Styling */
.wpcf7-text,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-textarea,
.wpcf7-select,
.service-request-form input[type="text"],
.service-request-form input[type="email"],
.service-request-form input[type="tel"],
.service-request-form textarea {
    border: 1px solid rgba(69, 35, 71, 0.25) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    background-color: #ffffff !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-tel:focus,
.wpcf7-textarea:focus,
.service-request-form input:focus,
.service-request-form textarea:focus {
    border-color: #452347 !important;
    box-shadow: 0 0 0 3px rgba(69, 35, 71, 0.15) !important;
    outline: none !important;
}

/* 11. Sub-Service Tabs (Nav Pills) */
.services-nav-pills .nav-pill,
.service-card-content .nav-pill {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    color: #452347 !important;
    background-color: rgba(69, 35, 71, 0.06) !important;
    border: 1px solid rgba(69, 35, 71, 0.15) !important;
    border-radius: 12px !important;
    padding: 6px 14px !important;
    margin: 4px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.services-nav-pills .nav-pill:hover,
.service-card-content .nav-pill:hover {
    background-color: #452347 !important;
    color: #ffffff !important;
    border-color: #452347 !important;
}

.services-nav-pills .nav-pill.active,
.service-card-content .nav-pill.active {
    background-color: #452347 !important;
    color: #ffffff !important;
    border-color: #452347 !important;
    box-shadow: 0 4px 12px rgba(69, 35, 71, 0.25) !important;
}

/* 12. Button Styling */
.btn, .btn-primary, .btn-form {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-primary:hover, .btn-form:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(69, 35, 71, 0.3) !important;
}

.wpcf7-submit, .service-request-form .wpcf7-submit {
    background: #452347 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 14px 28px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
}

.wpcf7-submit:hover, .service-request-form .wpcf7-submit:hover {
    background: #2d1730 !important;
}




/* ============================================================
   KING'S REGAL HEADER & TYPOGRAPHY ENHANCEMENTS
   ============================================================ */

/* @font-face declarations for Raxtor and Zagel Arabic */
@font-face {
    font-family: 'Raxtor';
    src: url('/assets/fonts/Raxtor-Bold.woff2') format('woff2'),
         url('/assets/fonts/Raxtor-Bold.woff') format('woff'),
         url('/assets/fonts/Raxtor-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Raxtor';
    src: url('/assets/fonts/Raxtor-Regular.woff2') format('woff2'),
         url('/assets/fonts/Raxtor-Regular.woff') format('woff'),
         url('/assets/fonts/Raxtor-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Zagel Arabic ITF';
    src: url('/assets/fonts/ZagelArabicITF-Bold.woff2') format('woff2'),
         url('/assets/fonts/ZagelArabicITF-Bold.woff') format('woff'),
         url('/assets/fonts/ZagelArabicITF-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* 1. Header Navigation Bar Layout */
.site-header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: linear-gradient(180deg, rgba(23, 9, 25, 0.85) 0%, rgba(23, 9, 25, 0) 100%) !important;
}

.main-navigation {
    position: relative !important;
    padding: 20px 0 !important;
    background: transparent !important;
}

.nav-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

.site-branding .site-logo {
    height: 48px !important;
    width: auto !important;
    object-fit: contain !important;
}

.nav-menu-wrapper {
    display: flex !important;
    align-items: center !important;
}

.nav-menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 32px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu a {
    color: #ffffff !important;
    font-family: 'Readex Pro', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    letter-spacing: 0.05em !important;
    transition: color 0.3s ease !important;
}



.lang-switcher {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.lang-switcher a,
.lang-btn {
    color: #ffffff !important;
    font-family: 'Readex Pro', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    padding: 4px 8px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    opacity: 0.65 !important;
    transition: opacity 0.2s ease !important;
}

.lang-switcher a.lang-active,
.lang-switcher a.active,
.lang-btn.active {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    opacity: 1 !important;
}

.lang-switcher a:hover,
.lang-btn:hover {
    opacity: 1 !important;
    background: transparent !important;
    border: none !important;
}

/* 2. Hero Section Typography & Button Styling */
.hero-title, h1.hero-title, .hero-content h1 {
    font-family: 'Raxtor', 'Readex Pro', sans-serif !important;
    font-weight: 700 !important;
    font-size: 3.2rem !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
}

.hero-subtitle, .hero-content p {
    font-family: 'Readex Pro', sans-serif !important;
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-top: 12px !important;
}

/* Hero CTA Buttons */
.hero-buttons {
    display: flex !important;
    gap: 16px !important;
    justify-content: center !important;
    margin-top: 28px !important;
}

.btn-primary, a.btn-primary {
    background: #fdfaf6 !important;
    color: #361b38 !important;
    font-family: 'Readex Pro', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    padding: 14px 32px !important;
    border-radius: 30px !important;
    border: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
    transition: all 0.3s ease !important;
}

.btn-secondary, a.btn-secondary, .btn-outline, a.btn-outline {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    font-family: 'Readex Pro', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    padding: 14px 32px !important;
    border-radius: 30px !important;
    border: 1.5px solid rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(8px) !important;
    transition: all 0.3s ease !important;
}




/* ============================================================
   KING'S REGAL SECTIONS & FEATURE CARDS STYLING
   ============================================================ */

/* 1. About Section Background & Typography */
.about-section {
    background: #f8f9fa !important;
    padding: 96px 0 !important;
}

.about-section .section-title, h2.section-title {
    font-family: 'Raxtor', 'Readex Pro', sans-serif !important;
    font-weight: 700 !important;
    font-size: 2.8rem !important;
    color: #452347 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    margin-bottom: 24px !important;
    letter-spacing: 0.05em !important;
}

.about-description p {
    font-family: 'Readex Pro', sans-serif !important;
    font-size: 1.1rem !important;
    color: rgba(69, 35, 71, 0.85) !important;
    line-height: 1.8 !important;
    text-align: center !important;
    max-width: 900px !important;
    margin: 0 auto 16px auto !important;
}

/* 2. Feature Cards Grid (3 White Cards with Purple Badges) */
.features-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
    margin-top: 48px !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media screen and (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr !important;
    }
}

.feature-item {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 40px 32px !important;
    text-align: center !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(69, 35, 71, 0.08) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.feature-item:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 40px rgba(69, 35, 71, 0.12) !important;
}

.feature-icon {
    width: 72px !important;
    height: 72px !important;
    margin: 0 auto 20px auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #452347 !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    font-size: 2rem !important;
    box-shadow: 0 6px 16px rgba(69, 35, 71, 0.25) !important;
}

.feature-title {
    font-family: 'Raxtor', 'Readex Pro', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.35rem !important;
    color: #452347 !important;
    text-transform: uppercase !important;
    margin-bottom: 12px !important;
    letter-spacing: 0.04em !important;
}

.feature-description {
    font-family: 'Readex Pro', sans-serif !important;
    font-size: 0.95rem !important;
    color: rgba(69, 35, 71, 0.75) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* 3. Services Section (Dark Purple Section Background) */
.services-section {
    background: #452347 !important;
    padding: 96px 0 !important;
}

.services-section .section-title {
    font-family: 'Raxtor', 'Readex Pro', sans-serif !important;
    font-weight: 700 !important;
    font-size: 2.8rem !important;
    color: #ffffff !important;
    text-align: center !important;
    text-transform: uppercase !important;
    margin-bottom: 12px !important;
    letter-spacing: 0.05em !important;
}

.services-section .section-subtitle {
    font-family: 'Readex Pro', sans-serif !important;
    font-size: 1.15rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    text-align: center !important;
    margin-bottom: 48px !important;
}

/* Service Category Cards in Services Section */
.service-card {
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15) !important;
    text-decoration: none !important;
    margin-bottom: 32px !important;
    transition: transform 0.3s ease !important;
}

.service-card:hover {
    transform: translateY(-6px) !important;
}

.service-card .service-image {
    width: 100% !important;
    height: 360px !important;
    overflow: hidden !important;
}

.service-card .service-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.service-card .service-content {
    padding: 32px !important;
    background: #ffffff !important;
}

.service-card .service-title {
    font-family: 'Raxtor', 'Readex Pro', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.6rem !important;
    color: #452347 !important;
    margin-bottom: 12px !important;
}

.service-card .service-description {
    font-family: 'Readex Pro', sans-serif !important;
    font-size: 1rem !important;
    color: rgba(69, 35, 71, 0.8) !important;
    line-height: 1.6 !important;
}

.service-card .service-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-family: 'Readex Pro', sans-serif !important;
    font-weight: 700 !important;
    color: #452347 !important;
    margin-top: 16px !important;
}




/* ============================================================
   KING'S FIXED STICKY HEADER & FLOATING WHATSAPP WIDGET
   ============================================================ */

/* Fixed Dark Purple Sticky Header across ALL pages & scroll positions */
.site-header, header.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
    background: #452347 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
}

.main-navigation {
    position: relative !important;
    padding: 14px 0 !important;
    background: transparent !important;
}

/* Compensate body padding top for fixed header */
body { padding-top: 0 !important; }

/* Floating WhatsApp Widget (Bottom Right) */


.kings-floating-whatsapp 

.kings-floating-whatsapp 

.kings-floating-whatsapp:hover {
    transform: translateY(-3px) !important;
}




/* ============================================================
   KING'S DESIGN SYSTEM MASTER - UI/UX ENHANCEMENTS
   ============================================================ */

/* 1. Reset & Global Layout Rules */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    scroll-behavior: smooth !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* 2. Responsive Clamp Typography & Visual Hierarchy */
h1, .hero-title, .hero-content h1 {
    font-family: 'Raxtor', 'Readex Pro', sans-serif !important;
    font-size: clamp(2.2rem, 5vw, 3.6rem) !important;
    line-height: 1.15 !important;
    letter-spacing: 0.06em !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
}

h2, .section-title {
    font-family: 'Raxtor', 'Readex Pro', sans-serif !important;
    font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
    line-height: 1.25 !important;
    letter-spacing: 0.05em !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

h3, .feature-title, .service-title, .subservice-title {
    font-family: 'Raxtor', 'Readex Pro', sans-serif !important;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem) !important;
    line-height: 1.3 !important;
    letter-spacing: 0.04em !important;
    font-weight: 700 !important;
}

p, body, .about-description p, .service-description, .feature-description {
    font-family: 'Readex Pro', sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.75 !important;
}

/* 3. Preloader Screen Polish */
#preloader, body::before, body::after {
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out !important;
}

body.loaded::before, body.loaded::after {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* 4. Sub-Service Tab Bar & CLS Prevention */
.service-tabs-wrapper, .tabs-container {
    display: flex !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    padding: 8px 4px 16px 4px !important;
    gap: 12px !important;
}

.service-tabs-wrapper::-webkit-scrollbar, .tabs-container::-webkit-scrollbar {
    display: none !important;
}

.tab-btn, .service-tab {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 24px !important;
    border-radius: 30px !important;
    font-family: 'Readex Pro', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    background: rgba(69, 35, 71, 0.08) !important;
    color: #452347 !important;
    border: 1.5px solid rgba(69, 35, 71, 0.15) !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    user-select: none !important;
}

.tab-btn:hover, .service-tab:hover {
    background: rgba(69, 35, 71, 0.15) !important;
    transform: translateY(-2px) !important;
}

.tab-btn.active, .service-tab.active {
    background: #452347 !important;
    color: #ffffff !important;
    border-color: #d4af37 !important;
    box-shadow: 0 6px 20px rgba(69, 35, 71, 0.25) !important;
}

/* Prevent Cumulative Layout Shift (CLS) on Tab Image Switch */
.service-image-col, .service-image-container {
    min-height: 400px !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 12px !important;
}

.service-image-col img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    aspect-ratio: 4 / 3 !important;
    border-radius: 12px !important;
    transition: opacity 0.3s ease, transform 0.4s ease !important;
}

/* 5. Modern Interactive Form Controls */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    width: 100% !important;
    background: #ffffff !important;
    border: 1.5px solid rgba(69, 35, 71, 0.2) !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-family: 'Readex Pro', sans-serif !important;
    font-size: 0.95rem !important;
    color: #361b38 !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
    outline: none !important;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus, select:focus {
    border-color: #452347 !important;
    box-shadow: 0 0 0 4px rgba(69, 35, 71, 0.15) !important;
}

button[type="submit"], input[type="submit"] {
    background: linear-gradient(135deg, #452347 0%, #5e3160 100%) !important;
    color: #ffffff !important;
    font-family: 'Readex Pro', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    padding: 16px 36px !important;
    border-radius: 30px !important;
    border: 1px solid #d4af37 !important;
    cursor: pointer !important;
    box-shadow: 0 8px 24px rgba(69, 35, 71, 0.3) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

button[type="submit"]:hover, input[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 32px rgba(69, 35, 71, 0.4) !important;
}

/* 6. Mobile Navigation Drawer Enhancements */
@media screen and (max-width: 991px) {
    .nav-menu-wrapper {
        display: none !important;
    }
    
    .mobile-menu-toggle,
    #mobile-menu-toggle,
    button#mobile-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
        color: #ffffff !important;
        font-size: 1.6rem !important;
        cursor: pointer !important;
        transition: opacity 0.2s ease !important;
    }

    .mobile-menu-toggle:hover,
    #mobile-menu-toggle:hover {
        opacity: 0.8 !important;
    }
    
    .mobile-menu.active {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 76px !important;
        left: 0 !important;
        width: 100% !important;
        height: calc(100vh - 76px) !important;
        background: rgba(23, 9, 25, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        padding: 32px 24px !important;
        z-index: 99999 !important;
    }
    
    .mobile-nav-menu {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .mobile-nav-menu a {
        color: #ffffff !important;
        font-family: 'Readex Pro', sans-serif !important;
        font-size: 1.25rem !important;
        font-weight: 600 !important;
        text-decoration: none !important;
    }
}




/* ============================================================
   KING'S ABSOLUTE SCROLLING FIX & PRELOADER DISPLAY CLEANUP
   ============================================================ */

html {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    scroll-behavior: smooth !important;
    height: auto !important;
}

body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    width: 100% !important;
    height: auto !important;
    position: relative !important;
}

/* Remove viewport-blocking pseudo-elements after animation */
body::before, body::after {
    display: none !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

/* Preloader container with automatic DOM removal */







/* ============================================================
   KING'S ULTIMATE DESIGN & LUXURY AUDIT FIXES (POINTS 1 TO 13)
   ============================================================ */

/* 1. LOADING LOGO PERFECT CENTERING */




body::before, body::after {
    display: none !important;
    content: none !important;
}

/* 2. HERO SUBHEADLINE CENTERING */
.hero-headline, .hero-subheadline, .hero-inner {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    display: block !important;
}

/* 3. ABOUT KING'S SECTION CENTERING */
.about-content, .about-description, .about-description p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 850px !important;
}

/* 4. SMOOTH IMAGE HOVER TRANSITIONS (NO ABRUPT INSTANT ZOOM) */
.service-image img, .portfolio-image img, .service-card img, .category-hero img, .service-slider-slide img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease !important;
}

.service-card:hover img, .portfolio-item:hover img {
    transform: scale(1.03) !important;
}

/* 5 & 12. CONTACT & REQUEST A SERVICE OVERHAUL & POSITIONING */
#contact, .contact-section, #service_request_form, .service-request-section, .contact-form-column {
    background: #170b1d !important;
    color: #ffffff !important;
}

.contact-section .section-title, .contact-section .section-subtitle,
.service-request-section .section-title, .service-request-section .section-subtitle,
.category-hero-title, .category-hero-description {
    text-align: center !important;
    color: #ffffff !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.contact-grid {
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 40px !important;
    max-width: 1100px !important;
    margin: 40px auto 0 auto !important;
    align-items: start !important;
}

@media (max-width: 850px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
}

.contact-info-column {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 35px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.contact-info-title, .contact-details h4 {
    color: #ffffff !important;
    font-size: 1.3rem !important;
    margin-bottom: 12px !important;
}

.contact-details p, .contact-details a, .business-hours p {
    color: #d0c0da !important;
    font-size: 0.98rem !important;
    line-height: 1.6 !important;
}

/* FORM FIELD LUXURY OVERHAUL */
input[type="text"], input[type="email"], input[type="tel"], textarea, select, .wpcf7-form-control {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    outline: none !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus, select:focus {
    border-color: #a886cd !important;
    background: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 0 0 3px rgba(168, 134, 205, 0.25) !important;
}

select option {
    background-color: #170b1d !important;
    color: #ffffff !important;
}

.wpcf7 p, form label {
    color: #ffffff !important;
    font-weight: 500 !important;
    margin-bottom: 15px !important;
    display: block !important;
}

/* 6 & 13. FOOTER CONTRAST & VISIBILITY FIX */
.site-footer, footer {
    background: #0d040e !important;
    color: #ffffff !important;
    padding: 60px 20px 30px 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.site-footer h3, .site-footer h4, .site-footer .footer-title, .site-footer .footer-heading {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    margin-bottom: 16px !important;
}

.site-footer a, .site-footer p, .site-footer span, .site-footer li, .site-footer .footer-about {
    color: #d0c0da !important;
    opacity: 1 !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
}

.site-footer a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

/* 7 & 8. CATEGORY HERO TEXT CLEARNESS & CENTERING */
.taxonomy-hero, .page-hero {
    position: relative !important;
    background-color: #140716 !important;
    min-height: 380px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.page-hero-background::after, .taxonomy-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0; left: 0; right: 0; bottom: 0 !important;
    background: linear-gradient(180deg, rgba(20, 7, 22, 0.65) 0%, rgba(20, 7, 22, 0.92) 100%) !important;
    z-index: 1 !important;
}

.page-hero-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    max-width: 850px !important;
    margin: 0 auto !important;
}

.page-title, .category-hero-title {
    color: #ffffff !important;
    text-align: center !important;
    font-weight: 800 !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6) !important;
}

.page-subtitle, .category-hero-description {
    color: #ffffff !important;
    text-align: center !important;
    font-size: 1.15rem !important;
    line-height: 1.6 !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9) !important;
    margin: 15px auto 0 auto !important;
    max-width: 800px !important;
    opacity: 0.95 !important;
}

/* 9. HIDE OUR SERVICES SHORTCUT TABS BAR */
.services-grid-section > .section-header > .services-nav-pills,
.services-navigation, .services-tabs-wrapper, #our-services-tabs {
    display: none !important;
}

/* 10 & 11. START ORDER BUTTON & NUMBERING FIX */
.btn-primary, .btn-start-order, .start-order-btn {
    background: linear-gradient(135deg, #32163b, #532357) !important;
    color: #ffffff !important;
    border-radius: 30px !important;
    padding: 13px 30px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.btn-primary:hover, .btn-start-order:hover, .start-order-btn:hover {
    transform: translateY(-2px) !important;
    background: linear-gradient(135deg, #421e4e, #682e6d) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
}

/* Sub-services pills row order */
.services-nav-pills {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    direction: ltr !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
}

.services-nav-pills .nav-pill {
    direction: ltr !important;
}


/* ============================================================
   EQUAL TILE SIZING FIX FOR ABOUT FEATURE CARDS
   ============================================================ */

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
    align-items: stretch !important;
    max-width: 1200px !important;
    margin: 48px auto 0 auto !important;
}

@media screen and (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr !important;
    }
}

.feature-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    height: 100% !important;
    min-height: 300px !important;
    padding: 40px 32px !important;
    box-sizing: border-box !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(69, 35, 71, 0.08) !important;
}

.feature-icon {
    flex-shrink: 0 !important;
}

.feature-title {
    flex-shrink: 0 !important;
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 0 12px 0 !important;
    text-align: center !important;
}

.feature-description {
    flex: 1 1 auto !important;
    display: flex !important;
    align-items: flex-start !alignment;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 !important;
}


/* ============================================================
   EXACT 1:1 SERVICE CARD DESIGN MATCHING USER SPECIFICATION
   ============================================================ */

/* 1. SERVICE ROW CARD CONTAINER */


/* Right Image Column */
.service-row > div:first-child {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    height: 100% !important;
}

/* Left Content Column */
.service-card-content {
    grid-column: 1 !important;
    grid-row: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

@media (max-width: 992px) {
    
    .service-row > div:first-child {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }
    .service-card-content {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }
}

/* 2. ICON & TITLE TOP ROW */
.service-content-col {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
    width: 100% !important;
}

.service-icon-large {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border-radius: 50% !important;
    background: #f2edf4 !important;
    border: 1px solid rgba(69, 35, 71, 0.12) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #36193a !important;
    font-size: 1.3rem !important;
}

.service-title-large {
    font-size: 1.7rem !important;
    font-weight: 900 !important;
    color: #120516 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    line-height: 1.15 !important;
    margin: 0 !important;
    text-align: left !important;
}

/* 3. SUB-SERVICE NAV PILLS */
.services-nav-pills {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-bottom: 24px !important;
    direction: ltr !important;
    justify-content: flex-start !important;
    width: 100% !important;
}

.service-card-content .nav-pill, .services-nav-pills .nav-pill {
    background: #f4eff6 !important;
    color: #36193a !important;
    border: 1px solid rgba(69, 35, 71, 0.08) !important;
    border-radius: 12px !important;
    padding: 8px 18px !important;
    font-weight: 700 !important;
    font-size: 0.82rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    box-shadow: none !important;
}

.service-card-content .nav-pill:hover, .services-nav-pills .nav-pill:hover {
    background: #e5dae7 !important;
    color: #36193a !important;
}

.service-card-content .nav-pill.active, .services-nav-pills .nav-pill.active {
    background: #36193a !important;
    color: #ffffff !important;
    border-color: #36193a !important;
}

/* 4. DESCRIPTION TEXT */
.service-description-large {
    color: #4a3e4e !important;
    font-size: 0.98rem !important;
    line-height: 1.65 !important;
    margin-bottom: 28px !important;
    text-align: left !important;
}

/* 5. EXACT START ORDER BUTTON */
.service-card-content .btn-primary, .service-card-content .btn, .service-card-content a[href*="service_request_form"] {
    background: #36193a !important;
    color: #ffffff !important;
    border-radius: 2px !important;
    padding: 14px 28px !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(54, 25, 58, 0.2) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.service-card-content .btn-primary:hover, .service-card-content .btn:hover {
    background: #4e2454 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(54, 25, 58, 0.35) !important;
}

.service-card-content .btn-primary i, .service-card-content .btn i {
    font-size: 1.1rem !important;
    color: #ffffff !important;
}

/* 6. RIGHT SIDE IMAGE SLIDER */
.service-image-col, .service-slider-slide img {
    border-radius: 18px !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 100% !important;
    max-height: 380px !important;
    object-fit: cover !important;
}


/* ============================================================
   PERFECT CENTERING FOR PRELOADER & SECTIONS ALIGNMENT
   ============================================================ */

/* 1. PIXEL-PERFECT MATHEMATICAL CENTERING FOR PRELOADER LOGO */




/* 2. UNIFIED SECTION CONTAINERS ALIGNMENT */
.container, .container-wide {
    width: 100% !important;
    max-width: 1280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    box-sizing: border-box !important;
}

/* Ensure full section background coverage */
.about-section {
    width: 100% !important;
    background: #f8f6fb !important;
    padding: 80px 0 !important;
    box-sizing: border-box !important;
}

.services-section {
    width: 100% !important;
    background: #452347 !important;
    padding: 80px 0 !important;
    box-sizing: border-box !important;
}

.about-content {
    max-width: 900px !important;
    margin: 0 auto 40px auto !important;
    text-align: center !important;
}


/* ============================================================
   OUR WORK (PORTFOLIO) REDESIGN & TEXT ZOOM TRANSITION
   ============================================================ */

/* 1. SOFT CREAM/BEIGE BACKGROUND FOR PORTFOLIO SECTION */
.portfolio-section, #project {
    background: #fbf8f5 !important;
    padding: 96px 0 !important;
}

.portfolio-section .section-title {
    color: #36193a !important;
    font-size: 2.6rem !important;
    text-align: center !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
}

.portfolio-section .section-subtitle {
    color: #6a5a70 !important;
    text-align: center !important;
    font-size: 1.05rem !important;
    margin-bottom: 48px !important;
}

/* 2. GRID & ITEM CORNER CUT (TOP-LEFT LARGER RADIUS) */
.portfolio-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px !important;
    max-width: 1240px !important;
    margin: 0 auto !important;
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr !important;
    }
}

.portfolio-item {
    position: relative !important;
    border-radius: 28px 18px 18px 18px !important;
    overflow: hidden !important;
    cursor: pointer !important;
    aspect-ratio: 4/3 !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06) !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.portfolio-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 14px 35px rgba(54, 25, 58, 0.15) !important;
}

.portfolio-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.04) !important;
}

/* 3. ALWAYS-VISIBLE GRADIENT OVERLAY & SMOOTH TEXT ZOOM ON HOVER */
.portfolio-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to top, rgba(30, 10, 33, 0.88) 0%, rgba(30, 10, 33, 0.3) 50%, transparent 80%) !important;
    opacity: 1 !important;
    display: flex !important;
    align-items: flex-end !important;
    padding: 24px 28px !important;
    pointer-events: none !important;
}

.portfolio-info {
    transform: scale(1) translateY(0) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transform-origin: bottom left !important;
}

.portfolio-item:hover .portfolio-info {
    transform: scale(1.08) translateY(-4px) !important;
}

.portfolio-category {
    font-size: 0.8rem !important;
    color: #e5d8ec !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 6px !important;
    display: block !important;
}

.portfolio-title {
    font-size: 1.25rem !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    line-height: 1.2 !important;
    margin: 0 !important;
}


/* ============================================================
   UNIFIED #FFF9F3 LIGHT THEME & GET IN TOUCH 1:1 REDESIGN
   ============================================================ */

/* 1. GLOBAL LIGHT BACKGROUND UNIFICATION (#FFF9F3) */
.about-section, .portfolio-section, #project {
    background: #FFF9F3 !important;
}

/* 2. GET IN TOUCH SECTION 1:1 MATCH */
#contact, .contact-section {
    background: #FFF9F3 !important;
    color: #452347 !important;
    padding: 80px 20px !important;
}

#contact .section-title {
    color: #452347 !important;
    font-size: 2.6rem !important;
    text-align: center !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

#contact .section-subtitle {
    color: #6e5a72 !important;
    text-align: center !important;
    font-size: 1.05rem !important;
    margin-bottom: 48px !important;
}

.contact-grid {
    display: grid !important;
    grid-template-columns: 0.9fr 1.1fr !important;
    gap: 60px !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    align-items: start !important;
    direction: ltr !important;
}

@media (max-width: 850px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

/* CONTACT INFO COLUMN (LEFT) */
.contact-info-column {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.contact-info-title {
    color: #452347 !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    margin-bottom: 32px !important;
}

.contact-info-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
}

.contact-info-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 18px !important;
}

.contact-info-item .contact-icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 50% !important;
    background: #452347 !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
}

.contact-info-item .contact-details h4 {
    color: #452347 !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    margin: 0 0 4px 0 !important;
}

.contact-info-item .contact-details p,
.contact-info-item .contact-details a,
.business-hours p {
    color: #6e5a72 !important;
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    text-decoration: none !important;
    margin: 0 !important;
}

/* FORM COLUMN (RIGHT) */
.contact-form-column {
    background: transparent !important;
}

.contact-form-column label,
.contact-form-column p,
.wpcf7 p {
    color: #452347 !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    margin-bottom: 18px !important;
    display: block !important;
}

.contact-form-column input[type="text"],
.contact-form-column input[type="email"],
.contact-form-column input[type="tel"],
.contact-form-column textarea,
.contact-form-column select,
.wpcf7-form-control:not([type="submit"]) {
    background: #ffffff !important;
    border: 1px solid #e2d5e5 !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    color: #452347 !important;
    font-size: 0.98rem !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.3s ease !important;
}

.contact-form-column input[type="text"]:focus,
.contact-form-column input[type="email"]:focus,
.contact-form-column input[type="tel"]:focus,
.contact-form-column textarea:focus,
.contact-form-column select:focus {
    border-color: #452347 !important;
    box-shadow: 0 0 0 3px rgba(69, 35, 71, 0.1) !important;
}

.contact-form-column select option {
    background-color: #ffffff !important;
    color: #452347 !important;
}

/* SUBMIT BUTTON (SEND MESSAGE) */
.contact-form-column input[type="submit"],
.contact-form-column .btn-primary,
.wpcf7-submit {
    background: #452347 !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 13px 28px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
    box-shadow: 0 4px 12px rgba(69, 35, 71, 0.25) !important;
    margin-top: 8px !important;
}

.contact-form-column input[type="submit"]:hover,
.contact-form-column .btn-primary:hover,
.wpcf7-submit:hover {
    background: #5a2e5d !important;
    transform: translateY(-2px) !important;
}


/* ============================================================
   EXACT 1:1 FOOTER DESIGN MATCHING USER SPECIFICATION
   ============================================================ */

.site-footer, footer {
    background: #452347 !important;
    color: #ffffff !important;
    padding: 0 !important;
    border-top: none !important;
    font-family: 'Readex Pro', sans-serif !important;
}

.footer-main {
    padding: 64px 0 48px 0 !important;
    background: #452347 !important;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: 1.2fr 1fr 1.2fr 1.2fr !important;
    gap: 40px !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    box-sizing: border-box !important;
    direction: ltr !important;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
}

.footer-column {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
}

.footer-title, .footer-heading {
    font-family: 'Raxtor', 'Readex Pro', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.25rem !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 22px !important;
    display: block !important;
}

.footer-about {
    color: #e0d2e5 !important;
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    margin-bottom: 24px !important;
    max-width: 280px !important;
}

/* SOCIAL LINKS CIRCLES */
.social-links {
    display: flex !important;
    gap: 10px !important;
}

.social-link {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.social-link:hover {
    background: #ffffff !important;
    color: #452347 !important;
    transform: translateY(-2px) !important;
}

/* FOOTER MENUS */
.footer-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.footer-menu li {
    margin: 0 !important;
    padding: 0 !important;
}

.footer-menu a {
    color: #e0d2e5 !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.footer-menu a:hover {
    color: #ffffff !important;
}

/* CONTACT COLUMN ITEMS */
.footer-contact {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.footer-contact .contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    color: #e0d2e5 !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
}

.footer-contact .contact-item i {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    margin-top: 2px !important;
    flex-shrink: 0 !important;
}

.footer-contact .contact-item a {
    color: #e0d2e5 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.footer-contact .contact-item a:hover {
    color: #ffffff !important;
}

/* FOOTER BOTTOM BAR */
.footer-bottom {
    background: #36193a !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 22px 0 !important;
}

.footer-bottom-content {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

.footer-bottom .copyright {
    color: #c9b5d0 !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
}


/* ============================================================
   GET IN TOUCH 1:1 POSITIONING & LINK UNDERLINE FIX
   ============================================================ */

/* 1. HIDE ALL HIDDEN INPUTS AND FIELDSETS (REMOVES UPPER EMPTY BOX) */
.hidden-fields-container,
fieldset.hidden-fields-container,
.contact-form-column input[type="hidden"],
.wpcf7 input[type="hidden"],
.screen-reader-response {
    display: none !important;
    height: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* 2. CONTACT ITEMS & ICONS PERFECT ALIGNMENT */
.contact-info-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
}

.contact-info-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

.contact-info-item .contact-icon {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border-radius: 50% !important;
    background: #452347 !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.25rem !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}

.contact-details {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
}

.contact-details h4 {
    font-family: 'Raxtor', 'Readex Pro', sans-serif !important;
    color: #452347 !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    margin: 0 0 6px 0 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.5px !important;
}

.contact-details p,
.contact-details a,
.contact-info-item a,
.business-hours p {
    color: #6e5a72 !important;
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    text-decoration: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
    margin: 0 !important;
}

.contact-details a:hover,
.contact-info-item a:hover {
    color: #452347 !important;
    text-decoration: none !important;
}

/* 3. FORM SPACING & ALIGNMENT */
.contact-form-column form,
.wpcf7-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.contact-form-column form > div,
.wpcf7-form > div {
    margin: 0 !important;
}

.contact-form-column p,
.wpcf7 p {
    margin: 0 !important;
}


/* ============================================================
   PERMANENT PRELOADER REMOVAL
   ============================================================ */
  .preloader, #preloader, body::before, body::after {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
}

html, body {
    overflow: auto !important;
    overflow-y: auto !important;
}


/* ============================================================
   RESTORED CENTERED PRELOADER OVERLAY & ANIMATION FOR FIREBASE
   ============================================================ */







    50% { transform: translate(-50%, -50%) scale(1.06); opacity: 1; }
}


/* ============================================================
   KING'S LUXURY PRELOADER - 1:1 EXACT MATCH TO USER DESIGN
   ============================================================ */




.kings-preloader-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}



@keyframes kingsPreloaderGlowPulse {
    0% {
        transform: scale(0.97);
        opacity: 0.85;
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.25)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.15));
    }
    100% {
        transform: scale(1.03);
        opacity: 1;
        filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.65)) drop-shadow(0 0 55px rgba(220, 180, 240, 0.4));
    }
}


/* ============================================================
   KING'S LUXURY PRELOADER - 1:1 EXACT MATCH TO USER DESIGN
   ============================================================ */




.kings-preloader-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}



@keyframes kingsPreloaderGlowPulse {
    0% {
        transform: scale(0.97);
        opacity: 0.85;
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.25)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.15));
    }
    100% {
        transform: scale(1.03);
        opacity: 1;
        filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.65)) drop-shadow(0 0 55px rgba(220, 180, 240, 0.4));
    }
}


/* ============================================================
   KING'S LUXURY PRELOADER - 1:1 EXACT MATCH TO USER DESIGN
   ============================================================ */
 {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: radial-gradient(circle at 50% 50%, #29102c 0%, #170919 60%, #0d040e 100%) !important;
    z-index: 9999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    pointer-events: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.fade-out {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.kings-preloader-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

 {
    width: 260px !important;
    max-width: 75vw !important;
    height: auto !important;
    object-fit: contain !important;
    animation: kingsPreloaderGlowPulse 2.2s ease-in-out infinite alternate !important;
}

@keyframes kingsPreloaderGlowPulse {
    0% {
        transform: scale(0.97);
        opacity: 0.85;
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.25)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.15));
    }
    100% {
        transform: scale(1.03);
        opacity: 1;
        filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.65)) drop-shadow(0 0 55px rgba(220, 180, 240, 0.4));
    }
}



/* ============================================================
   KING'S LUXURY PRELOADER - 1:1 EXACT MATCH TO USER DESIGN
   ============================================================ */
 {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: radial-gradient(circle at 50% 50%, #29102c 0%, #170919 60%, #0d040e 100%) !important;
    z-index: 9999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
    pointer-events: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.fade-out {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.kings-preloader-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

 {
    width: 280px !important;
    max-width: 80vw !important;
    height: auto !important;
    object-fit: contain !important;
    animation: kingsPreloaderGlowPulse 2s ease-in-out infinite alternate !important;
}

@keyframes kingsPreloaderGlowPulse {
    0% {
        transform: scale(0.96);
        opacity: 0.85;
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.25)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.15));
    }
    100% {
        transform: scale(1.04);
        opacity: 1;
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 60px rgba(220, 180, 240, 0.45));
    }
}



/* ============================================================
   KING'S LUXURY PRELOADER - 1:1 EXACT MATCH TO USER DESIGN
   ============================================================ */
#kings-preloader-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: radial-gradient(circle at 50% 50%, #29102c 0%, #170919 60%, #0d040e 100%) !important;
    z-index: 9999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
    pointer-events: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#kings-preloader-overlay.fade-out {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.kings-preloader-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

#kings-preloader-logo {
    width: 280px !important;
    max-width: 80vw !important;
    height: auto !important;
    object-fit: contain !important;
    animation: kingsPreloaderGlowPulse 2s ease-in-out infinite alternate !important;
}

@keyframes kingsPreloaderGlowPulse {
    0% {
        transform: scale(0.96);
        opacity: 0.85;
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.25)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.15));
    }
    100% {
        transform: scale(1.04);
        opacity: 1;
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 60px rgba(220, 180, 240, 0.45));
    }
}



/* ============================================================
   TRANSPARENT HEADER ON TOP & STICKY PURPLE BAR ON SCROLL
   ============================================================ */

header.site-header,
.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
    background: transparent !important;
    box-shadow: none !important;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease !important;
}

header.site-header.scrolled,
.site-header.scrolled,
.main-navigation.scrolled {
    background: #452347 !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.35) !important;
}



/* ============================================================
   TRANSPARENT FLOATING HEADER OVER HERO SECTION (NO TOP PADDING GAP)
   ============================================================ */

body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

#page, .site {
    padding-top: 0 !important;
    margin-top: 0 !important;
    background: transparent !important;
}

header.site-header,
.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
    background: linear-gradient(180deg, rgba(20, 8, 22, 0.75) 0%, rgba(20, 8, 22, 0) 100%) !important;
    box-shadow: none !important;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

header.site-header.scrolled,
.site-header.scrolled,
.main-navigation.scrolled {
    background: #452347 !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.35) !important;
}

.hero-section, .hero, .site-hero {
    margin-top: 0 !important;
    padding-top: 100px !important;
}



/* ============================================================
   ULTRA-LUXURY MODERN NAVIGATION MENU HIGHLIGHT SYSTEM
   ============================================================ */

.nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu a {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 18px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: 'Readex Pro', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    letter-spacing: 0.04em !important;
    border-radius: 12px !important;
    border: 1px solid transparent !important;
    background: transparent !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-menu li.current-menu-item > a,
.nav-menu li.active > a {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.16) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.35) !important;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.45) !important;
    transform: translateY(-1px) !important;
}



/* ============================================================
   PRINCIPAL DESIGN SYSTEM & MOBILE RESPONSIVENESS REFACTOR
   ============================================================ */

/* Zero Horizontal Overflow */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    margin: 0 !important;
}

#page, .site, .container, section {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Fluid Typography System */
h1, .hero-title, .category-hero-title, .page-title {
    font-size: clamp(2.0rem, 5vw, 3.4rem) !important;
    line-height: 1.15 !important;
    letter-spacing: 0.05em !important;
    text-align: center !important;
}

h2, .section-title, .about-section .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
    line-height: 1.25 !important;
    letter-spacing: 0.04em !important;
    text-align: center !important;
}

h3, .card-title, .feature-title, .service-title {
    font-size: clamp(1.15rem, 2.5vw, 1.45rem) !important;
    line-height: 1.35 !important;
}

.subtitle, .section-subtitle, .hero-subtitle, .category-hero-description, .page-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem) !important;
    line-height: 1.6 !important;
    text-align: center !important;
}

p, .description, .feature-description, .service-card-text, .about-description p {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem) !important;
    line-height: 1.7 !important;
    text-align: start !important;
}

/* Touch Targets Enforcement (>= 48px) */
a.btn, button, input[type="submit"], .btn-start-order, .lang-btn, .nav-menu a, .service-tab-btn, .mobile-menu-toggle {
    min-height: 48px !important;
    min-width: 48px !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    min-height: 48px !important;
    font-size: 1rem !important;
    padding: 12px 16px !important;
    box-sizing: border-box !important;
}

/* Mobile Responsive Grid System (< 768px -> 2 Columns, < 480px -> 1 Column) */
@media (max-width: 768px) {
    .services-grid, .feature-grid, .features-grid, .our-work-grid, .portfolio-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .service-card-2col, .service-item-row {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .nav-menu-wrapper {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: inline-flex !important;
        background: transparent !important;
        border: none !important;
        color: #ffffff !important;
        font-size: 1.8rem !important;
        cursor: pointer !important;
        padding: 8px !important;
    }
}

@media (max-width: 480px) {
    .services-grid, .feature-grid, .features-grid, .our-work-grid, .portfolio-grid, .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* Slide-Out Mobile Navigation Drawer */
.mobile-nav-drawer {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 280px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    background: #36193a !important;
    z-index: 999999 !important;
    padding: 30px 24px !important;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.4) !important;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    pointer-events: none !important;
}

html[dir="rtl"] .mobile-nav-drawer {
    right: auto !important;
    left: -100% !important;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.mobile-nav-drawer.open {
    right: 0 !important;
    pointer-events: auto !important;
}

html[dir="rtl"] .mobile-nav-drawer.open {
    left: 0 !important;
}

.mobile-drawer-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(4px) !important;
    z-index: 999998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

.mobile-drawer-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.mobile-drawer-close {
    align-self: flex-end !important;
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 1.8rem !important;
    cursor: pointer !important;
    padding: 8px !important;
}

.mobile-drawer-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.mobile-drawer-menu a {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-family: 'Readex Pro', sans-serif !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    padding: 10px 16px !important;
    border-radius: 12px !important;
    display: block !important;
    transition: background 0.3s ease !important;
}

.mobile-drawer-menu a:hover,
.mobile-drawer-menu a.active {
    background: rgba(255, 255, 255, 0.15) !important;
}



/* ============================================================
   SOFT OPENING & DEVELOPMENT ANNOUNCEMENT BANNER
   ============================================================ */

.soft-opening-banner {
    position: relative !important;
    z-index: 100001 !important;
    width: 100% !important;
    background: linear-gradient(90deg, #1d091e 0%, #3a1a3e 50%, #1d091e 100%) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.4) !important;
    color: #ffffff !important;
    font-family: 'Readex Pro', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    padding: 8px 16px !important;
    text-align: center !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.4s ease !important;
}

.soft-opening-banner.dismissed {
    display: none !important;
}

.soft-opening-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: rgba(212, 175, 55, 0.18) !important;
    color: #f1d37b !important;
    border: 1px solid rgba(212, 175, 55, 0.45) !important;
    padding: 3px 12px !important;
    border-radius: 12px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
}

.soft-opening-text {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.02em !important;
}

.soft-opening-close {
    background: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1.2rem !important;
    cursor: pointer !important;
    padding: 0 8px !important;
    margin-left: auto !important;
    transition: color 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

html[dir="rtl"] .soft-opening-close {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.soft-opening-close:hover {
    color: #ffffff !important;
}

/* Adjust fixed site-header top position when banner is visible */
body.has-banner 

@media (max-width: 576px) {
    .soft-opening-banner {
        font-size: 0.78rem !important;
        padding: 6px 12px !important;
        flex-wrap: wrap !important;
    }
    .soft-opening-text {
        font-size: 0.78rem !important;
    }
    body.has-banner 
}



/* ============================================================
   CENTERED HOMEPAGE SOFT OPENING POPUP MODAL
   ============================================================ */

.homepage-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(12, 4, 13, 0.78) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    z-index: 9999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 20px !important;
    box-sizing: border-box !important;
}

.homepage-modal-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.homepage-modal-card {
    position: relative !important;
    width: 100% !important;
    max-width: 500px !important;
    background: radial-gradient(circle at 50% 0%, #36193a 0%, #1c0a1f 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    border-radius: 24px !important;
    padding: 40px 32px 32px 32px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 35px rgba(212, 175, 55, 0.15) !important;
    text-align: center !important;
    transform: scale(0.92) translateY(10px) !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-sizing: border-box !important;
}

.homepage-modal-overlay.active .homepage-modal-card {
    transform: scale(1) translateY(0) !important;
}

.modal-close-icon {
    position: absolute !important;
    top: 16px !important;
    right: 20px !important;
    background: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 1.6rem !important;
    cursor: pointer !important;
    padding: 4px 8px !important;
    transition: color 0.3s ease, transform 0.3s ease !important;
}

html[dir="rtl"] .modal-close-icon {
    right: auto !important;
    left: 20px !important;
}

.modal-close-icon:hover {
    color: #ffffff !important;
    transform: scale(1.1) !important;
}

.modal-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: rgba(212, 175, 55, 0.18) !important;
    color: #f1d37b !important;
    border: 1px solid rgba(212, 175, 55, 0.45) !important;
    padding: 6px 16px !important;
    border-radius: 12px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    margin-bottom: 18px !important;
}

.modal-title {
    font-family: 'Raxtor', 'Readex Pro', sans-serif !important;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 14px 0 !important;
    letter-spacing: 0.04em !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.modal-body-text {
    font-family: 'Readex Pro', sans-serif !important;
    font-size: clamp(0.9rem, 1.8vw, 1.02rem) !important;
    color: rgba(255, 255, 255, 0.88) !important;
    line-height: 1.65 !important;
    margin: 0 0 28px 0 !important;
}

.modal-btn-confirm {
    width: 100% !important;
    min-height: 50px !important;
    background: linear-gradient(135deg, #d4af37 0%, #b89228 100%) !important;
    color: #1a081c !important;
    font-family: 'Readex Pro', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.98rem !important;
    letter-spacing: 0.04em !important;
    border: none !important;
    border-radius: 14px !important;
    cursor: pointer !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35) !important;
    transition: all 0.3s ease !important;
}

.modal-btn-confirm:hover {
    background: linear-gradient(135deg, #e5c158 0%, #cb9f32 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5) !important;
}



/* ============================================================
   PERFECTED HOMEPAGE SOFT OPENING POPUP MODAL WITH LOGO & #FFF9F3 BUTTON
   ============================================================ */

.homepage-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(12, 4, 13, 0.82) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    z-index: 9999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 20px !important;
    box-sizing: border-box !important;
}

.homepage-modal-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.homepage-modal-card {
    position: relative !important;
    width: 100% !important;
    max-width: 480px !important;
    background: radial-gradient(circle at 50% 0%, #36193a 0%, #1c0a1f 100%) !important;
    border: 1px solid rgba(255, 245, 238, 0.3) !important;
    border-radius: 24px !important;
    padding: 40px 32px 32px 32px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(255, 245, 238, 0.1) !important;
    text-align: center !important;
    transform: scale(0.92) translateY(10px) !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-sizing: border-box !important;
}

.homepage-modal-overlay.active .homepage-modal-card {
    transform: scale(1) translateY(0) !important;
}

.modal-close-icon {
    position: absolute !important;
    top: 16px !important;
    right: 20px !important;
    background: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 1.6rem !important;
    cursor: pointer !important;
    padding: 4px 8px !important;
    transition: color 0.3s ease, transform 0.3s ease !important;
}

html[dir="rtl"] .modal-close-icon {
    right: auto !important;
    left: 20px !important;
}

.modal-close-icon:hover {
    color: #ffffff !important;
    transform: scale(1.1) !important;
}

.modal-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: rgba(255, 245, 238, 0.12) !important;
    color: #FFF9F3 !important;
    border: 1px solid rgba(255, 245, 238, 0.3) !important;
    padding: 6px 16px !important;
    border-radius: 12px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    margin-bottom: 18px !important;
}

.modal-title {
    font-family: 'Raxtor', 'Readex Pro', sans-serif !important;
    font-size: clamp(1.4rem, 3vw, 1.8rem) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 10px 0 !important;
    letter-spacing: 0.06em !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
    text-transform: uppercase !important;
}

.modal-logo-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 6px 0 22px 0 !important;
}

.modal-logo-img {
    width: 220px !important;
    max-width: 65vw !important;
    height: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.35)) !important;
}

.modal-body-text {
    font-family: 'Readex Pro', sans-serif !important;
    font-size: clamp(0.9rem, 1.8vw, 1.02rem) !important;
    color: rgba(255, 255, 255, 0.88) !important;
    line-height: 1.65 !important;
    margin: 0 0 28px 0 !important;
}

.modal-btn-confirm {
    width: 100% !important;
    min-height: 50px !important;
    background: #FFF9F3 !important;
    color: #36193a !important;
    font-family: 'Readex Pro', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.98rem !important;
    letter-spacing: 0.04em !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 14px !important;
    cursor: pointer !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.modal-btn-confirm:hover {
    background: #ffffff !important;
    color: #230d25 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.35) !important;
}



/* ============================================================
   HEADER LOGO LEFT & CONTROLS RIGHT FLEX LAYOUT
   ============================================================ */

.nav-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    box-sizing: border-box !important;
}

.site-branding {
    order: 1 !important;
    display: flex !important;
    align-items: center !important;
}

.site-branding .site-logo {
    height: 44px !important;
    width: auto !important;
    object-fit: contain !important;
}

.nav-menu-wrapper {
    order: 2 !important;
}

.header-right-controls {
    order: 3 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

@media (max-width: 768px) {
    .nav-wrapper {
        padding: 0 16px !important;
    }
    
    .site-branding .site-logo {
        height: 38px !important;
    }
}



/* ============================================================
   PERFECT MOBILE HEADER & HERO CENTERING ENFORCEMENT
   ============================================================ */

.site-header .nav-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

.site-branding {
    order: 1 !important;
    display: flex !important;
    align-items: center !important;
    margin-right: auto !important;
}

.nav-menu-wrapper {
    order: 2 !important;
}

.header-right-controls {
    order: 3 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-left: auto !important;
}

/* RTL overrides for Header */
html[dir="rtl"] .site-branding {
    order: 3 !important;
    margin-right: 0 !important;
    margin-left: auto !important;
}

html[dir="rtl"] .header-right-controls {
    order: 1 !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* HERO SECTION PERFECT CENTERING ON MOBILE & DESKTOP */
.hero-section, .hero-content, .hero-inner, .hero {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
}

.hero-headline, .hero-title, .hero-subheadline, .hero-subtitle, .hero-description, .hero-content h1, .hero-content p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    max-width: 840px !important;
}

.hero-buttons, .hero-cta, .hero-content .btn-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 12px !important;
    margin: 24px auto 0 auto !important;
}

@media (min-width: 769px) {
    .hero-buttons, .hero-cta, .hero-content .btn-group {
        flex-direction: row !important;
    }
}

.hero-buttons a, .hero-buttons .btn, .hero-content .btn {
    width: 100% !important;
    max-width: 320px !important;
    text-align: center !important;
    justify-content: center !important;
}



/* ============================================================
   HEADER LOGO ENHANCED PROMINENT SIZING
   ============================================================ */

.site-branding .site-logo {
    height: 56px !important;
    max-height: 58px !important;
    width: auto !important;
    object-fit: contain !important;
    transition: height 0.3s ease !important;
}

@media (max-width: 768px) {
    .site-branding .site-logo {
        height: 48px !important;
        max-height: 50px !important;
    }
}

@media (max-width: 480px) {
    .site-branding .site-logo {
        height: 44px !important;
        max-height: 46px !important;
    }
}



/* ============================================================
   SERVICE CARD ZERO-GAP VERTICAL FLEX REFACTOR
   ============================================================ */

.services-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    .services-list {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

.service-card {
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    text-decoration: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.service-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.22) !important;
}

.service-card .service-image {
    width: 100% !important;
    height: 260px !important;
    overflow: hidden !important;
    position: relative !important;
}

@media (max-width: 480px) {
    .service-card .service-image {
        height: 200px !important;
    }
}

.service-card .service-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
}

.service-card:hover .service-image img {
    transform: scale(1.05) !important;
}

.service-card .service-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 28px 24px !important;
    gap: 12px !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.service-card .service-icon-wrapper {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 4px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(54, 25, 58, 0.06) !important;
    border-radius: 12px !important;
    padding: 8px !important;
}

.service-card .service-icon-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    filter: none !important;
}

.service-card .service-info {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: start !important;
    margin: 0 !important;
    padding: 0 !important;
}

.service-card .service-title {
    font-family: 'Raxtor', 'Readex Pro', sans-serif !important;
    font-weight: 700 !important;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem) !important;
    color: #36193a !important;
    margin: 0 0 10px 0 !important;
    text-align: start !important;
    line-height: 1.3 !important;
}

.service-card .service-description {
    font-family: 'Readex Pro', sans-serif !important;
    font-size: clamp(0.9rem, 1.5vw, 0.98rem) !important;
    color: #5a425e !important;
    line-height: 1.65 !important;
    margin: 0 0 18px 0 !important;
    text-align: start !important;
}

.service-card .service-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-family: 'Readex Pro', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    color: #36193a !important;
    margin-top: auto !important;
    transition: gap 0.3s ease !important;
}

.service-card:hover .service-link {
    gap: 14px !important;
}



/* ============================================================
   SMOOTH BILINGUAL (EN | AR) TRANSITIONS & ARABIC TYPOGRAPHY
   ============================================================ */

html {
    transition: direction 0.3s ease !important;
}

body {
    transition: font-family 0.3s ease, background-color 0.3s ease !important;
}

html[lang="ar"] body,
html[dir="rtl"] body {
    font-family: 'Readex Pro', 'Zagel Arabic ITF', sans-serif !important;
    direction: rtl !important;
    text-align: right !important;
}

/* Arrow Icon Mirroring in RTL */
html[dir="rtl"] .ri-arrow-right-line::before {
    content: "\ea60" !important; /* Left Arrow in RemixIcon */
}

/* Smooth active button highlight for language switcher */
.lang-switcher {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    backdrop-filter: none !important;
}

.lang-btn {
    padding: 4px 8px !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #ffffff !important;
    font-family: 'Readex Pro', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    opacity: 0.65 !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease !important;
    min-height: 36px !important;
    min-width: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.lang-btn.active {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    opacity: 1 !important;
}

.lang-btn:hover {
    color: #ffffff !important;
    background: transparent !important;
    border: none !important;
    opacity: 1 !important;
}



/* ============================================================
   LOCK HEADER & FLOATING BUTTONS LAYOUT IN LTR & RTL
   ============================================================ */

/* Always lock Logo on LEFT and Controls on RIGHT */
html .nav-wrapper,
html[dir="rtl"] .nav-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    direction: ltr !important; /* Lock flex direction LTR for header row */
}

html .site-branding,
html[dir="rtl"] .site-branding {
    order: 1 !important;
    display: flex !important;
    align-items: center !important;
    margin-right: auto !important;
    margin-left: 0 !important;
}

html .nav-menu-wrapper,
html[dir="rtl"] .nav-menu-wrapper {
    order: 2 !important;
}

html .header-right-controls,
html[dir="rtl"] .header-right-controls {
    order: 3 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* Floating Action Buttons Lock (Bottom Right) */
.floating-widgets-wrapper,
.floating-contact-btn,
.whatsapp-float-wrapper {
    position: fixed !important;
    bottom: 24px !important;
    right: 20px !important;
    left: auto !important;
    z-index: 999999 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
}

html[dir="rtl"] .floating-widgets-wrapper,
html[dir="rtl"] .floating-contact-btn,
html[dir="rtl"] .whatsapp-float-wrapper {
    right: 20px !important;
    left: auto !important;
    flex-direction: row !important;
}



/* ============================================================
   SWIPER & HERO BACKGROUND DIRECTION LOCK FOR RTL PREVENTION
   ============================================================ */

/* Keep Swiper Slider images strictly LTR to prevent black background breakage in RTL */
.swiper, .hero-bg-swiper, .swiper-wrapper, .swiper-slide {
    direction: ltr !important;
}

.hero-section {
    direction: ltr !important;
    position: relative !important;
    background: #170919 !important; /* Fallback luxury dark background */
}

/* Allow text inside hero content to adjust alignment naturally */
.hero-content, .hero-inner {
    direction: ltr !important;
    text-align: center !important;
}

html[dir="rtl"] .hero-headline,
html[dir="rtl"] .hero-title,
html[dir="rtl"] .hero-subheadline,
html[dir="rtl"] .hero-subtitle {
    text-align: center !important;
}



/* ============================================================
   BURGER BUTTON VISIBILITY & RTL FORM LABELS ALIGNMENT
   ============================================================ */

/* Hide mobile burger button on desktop screens (>=992px) */
@media (min-width: 992px) {
    .mobile-menu-toggle,
    #mobile-menu-toggle,
    button#mobile-menu-toggle {
        display: none !important;
    }
}

/* Show burger button only on mobile screens (<992px) */
@media (max-width: 991px) {
    .mobile-menu-toggle,
    #mobile-menu-toggle,
    button#mobile-menu-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        color: #FFFFFF !important;
        font-size: 26px !important;
        cursor: pointer !important;
        outline: none !important;
        padding: 0 !important;
        transition: opacity 0.2s ease !important;
    }

    .mobile-menu-toggle:hover,
    #mobile-menu-toggle:hover {
        opacity: 0.8 !important;
    }
}

/* RTL Form Labels Right Alignment */
html[dir="rtl"] .wpcf7-form p,
html[dir="rtl"] .wpcf7-form label,
html[dir="rtl"] .wpcf7-form span,
html[dir="rtl"] .contact-form-column form p,
html[dir="rtl"] .contact-form-column div {
    text-align: right !important;
    direction: rtl !important;
    display: block !important;
    width: 100% !important;
}

html[dir="rtl"] .wpcf7-form input[type="text"],
html[dir="rtl"] .wpcf7-form input[type="email"],
html[dir="rtl"] .wpcf7-form input[type="tel"],
html[dir="rtl"] .wpcf7-form select,
html[dir="rtl"] .wpcf7-form textarea {
    text-align: right !important;
    direction: rtl !important;
}

/* Mobile Drawer Overlay & Drawer Animation */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #170919;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    z-index: 999999;
    padding: 60px 24px 30px;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

html[dir="rtl"] .mobile-nav-drawer {
    right: auto;
    left: -320px;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.active,
.mobile-nav-drawer.open {
    right: 0 !important;
    pointer-events: auto !important;
}

html[dir="rtl"] .mobile-nav-drawer.active,
html[dir="rtl"] .mobile-nav-drawer.open {
    left: 0 !important;
    right: auto !important;
}

.mobile-drawer-overlay.active,
.mobile-drawer-overlay.open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.mobile-drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #FFF9F3;
    font-size: 32px;
    cursor: pointer;
}

html[dir="rtl"] .mobile-drawer-close {
    right: auto;
    left: 20px;
}

.mobile-drawer-menu {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-drawer-menu a {
    color: #FFF9F3;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-drawer-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}



/* ============================================================
   HERO SLIDER LTR LOCK & HERO CONTENT RTL SUPPORT
   ============================================================ */

/* Swiper Slider Images stay LTR to prevent black background breakage */
.swiper, .hero-bg-swiper, .swiper-wrapper, .swiper-slide {
    direction: ltr !important;
}

.hero-section {
    position: relative !important;
    background: #170919 !important;
}

/* Hero Content Direction & Alignment */
html[dir="ltr"] .hero-content-overlay,
html[dir="ltr"] .hero-inner {
    direction: ltr !important;
    text-align: center !important;
}

html[dir="rtl"] .hero-content-overlay,
html[dir="rtl"] .hero-inner {
    direction: rtl !important;
    text-align: center !important;
}

html[dir="rtl"] .hero-headline,
html[dir="rtl"] .hero-subheadline {
    direction: rtl !important;
    text-align: center !important;
}



/* ============================================================
   FLOATING WIDGETS SINGLE CLEAN BUTTON STYLING
   ============================================================ */

.floating-widgets-wrapper {
    position: fixed !important;
    bottom: 24px !important;
    right: 20px !important;
    left: auto !important;
    z-index: 999999 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
}

html[dir="rtl"] .floating-widgets-wrapper {
    right: 20px !important;
    left: auto !important;
    flex-direction: row !important;
}

.whatsapp-float-btn {
    width: 48px !important;
    height: 48px !important;
    background: #25D366 !important;
    color: #FFFFFF !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 26px !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
    text-decoration: none !important;
    transition: transform 0.2s ease !important;
}

.whatsapp-float-btn:hover {
    transform: scale(1.08) !important;
}

.floating-contact-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 20px !important;
    background: #FFFFFF !important;
    color: #452347 !important;
    font-family: 'Readex Pro', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.2 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.floating-contact-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25) !important;
}



/* ============================================================
   FLOATING WIDGETS PERFECT POSITIONING & OVERLAP PROTECTION
   ============================================================ */

html .floating-widgets-wrapper,
html[dir="rtl"] .floating-widgets-wrapper {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    left: auto !important;
    z-index: 999999 !important;
    display: flex !important;
    flex-direction: row-reverse !important; /* WhatsApp icon far right, Contact pill left of WhatsApp */
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    pointer-events: auto !important;
}

html .whatsapp-float-btn,
html[dir="rtl"] .whatsapp-float-btn {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    background: #25D366 !important;
    color: #FFFFFF !important;
    border-radius: 50% !important;
    font-size: 26px !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
    text-decoration: none !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    transition: transform 0.2s ease !important;
}

html .whatsapp-float-btn:hover,
html[dir="rtl"] .whatsapp-float-btn:hover {
    transform: scale(1.08) !important;
}

html .floating-contact-btn,
html[dir="rtl"] .floating-contact-btn {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 20px !important;
    height: 42px !important;
    background: #FFFFFF !important;
    color: #452347 !important;
    font-family: 'Readex Pro', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

html .floating-contact-btn:hover,
html[dir="rtl"] .floating-contact-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25) !important;
}

/* ============================================================
   MOBILE SERVICE PAGE FIXES â€” TEXT CLIPPING & LAYOUT PARITY
   ============================================================ */

/* Service description text should never clip */
.service-description-large {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Ensure service row inner divs have proper mobile padding */
@media (max-width: 768px) {
    .service-row > div {
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box !important;
    }

    

    .services-nav-pills {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    .services-nav-pills .nav-pill,
    .service-card-content .nav-pill {
        font-size: 0.82rem !important;
        padding: 8px 14px !important;
        white-space: normal !important;
        text-align: left !important;
    }

    .service-description-large {
        padding: 0 4px !important;
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }
}

@media (max-width: 480px) {
    .services-nav-pills .nav-pill,
    .service-card-content .nav-pill {
        width: 100% !important;
        text-align: center !important;
    }
}

/* ============================================================
   MOBILE HERO SECTION OPTIMIZATION (UPWARD SHIFT & SPACING)
   ============================================================ */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh !important;
        min-height: 560px !important;
        max-height: 820px !important;
        overflow: hidden !important;
    }

    .hero-content-overlay {
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        padding-top: clamp(75px, 14vh, 105px) !important;
        padding-bottom: 70px !important;
        box-sizing: border-box !important;
    }

    .hero-inner {
        max-width: 100% !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
    }

    .hero-headline {
        font-size: clamp(1.55rem, 6.5vw, 2.1rem) !important;
        line-height: 1.15 !important;
        margin-bottom: 10px !important;
        letter-spacing: 0.04em !important;
    }

    .hero-subheadline {
        font-size: clamp(0.85rem, 3.5vw, 1.02rem) !important;
        line-height: 1.45 !important;
        margin-bottom: 18px !important;
        opacity: 0.9 !important;
    }

    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }

    .hero-buttons .btn,
    .hero-buttons a.btn {
        width: 100% !important;
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
        min-height: 42px !important;
        border-radius: 30px !important;
        box-sizing: border-box !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .hero-buttons .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 0.88rem !important;
        font-weight: 600 !important;
        text-decoration: underline !important;
        padding: 4px 12px !important;
        margin: 2px 0 !important;
        transition: color 0.2s ease !important;
    }

    .scroll-indicator {
        bottom: 12px !important;
        font-size: 18px !important;
    }
}

/* ============================================================
   PREMIUM "PORTAL" BUTTON STYLING (NAVBAR, HERO, & MOBILE DRAWER)
   ============================================================ */

/* 1. Header Navbar Portal Button */
.btn-nav-portal {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 6px 16px !important;
    background: linear-gradient(135deg, rgba(255, 245, 238, 0.15), rgba(69, 35, 71, 0.5)) !important;
    border: 1px solid rgba(255, 245, 238, 0.4) !important;
    border-radius: 12px !important;
    color: #FFF9F3 !important;
    font-family: 'Readex Pro', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin-left: 8px !important;
}

html[dir="rtl"] .btn-nav-portal {
    margin-left: 0 !important;
    margin-right: 8px !important;
}

.btn-nav-portal:hover {
    background: linear-gradient(135deg, rgba(255, 245, 238, 0.3), rgba(69, 35, 71, 0.75)) !important;
    border-color: #FFFFFF !important;
    color: #FFFFFF !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35) !important;
}

.btn-nav-portal i {
    font-size: 1rem !important;
    color: #FFF9F3 !important;
}

/* 2. Hero Section Portal Button */
.btn-portal {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 14px 28px !important;
    background: linear-gradient(135deg, #452347 0%, #2a122c 100%) !important;
    border: 1px solid rgba(255, 245, 238, 0.4) !important;
    border-radius: 30px !important;
    color: #FFF9F3 !important;
    font-family: 'Readex Pro', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(69, 35, 71, 0.4) !important;
    transition: all 0.3s ease !important;
}

.btn-portal:hover {
    background: linear-gradient(135deg, #5c2d5f 0%, #3a193d 100%) !important;
    border-color: #FFF9F3 !important;
    color: #FFFFFF !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(69, 35, 71, 0.6) !important;
}

.btn-portal i {
    font-size: 1.1rem !important;
}

/* 3. Mobile Navigation Drawer Portal Button */
.mobile-portal-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 20px !important;
    margin-top: 12px !important;
    background: linear-gradient(135deg, #452347 0%, #2a122c 100%) !important;
    border: 1px solid rgba(255, 245, 238, 0.4) !important;
    border-radius: 14px !important;
    color: #FFF9F3 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.mobile-portal-btn:hover {
    background: linear-gradient(135deg, #5c2d5f 0%, #3a193d 100%) !important;
    color: #FFFFFF !important;
}

/* Hide hero slider dots and scroll indicator down arrow */
.hero-slider-controls,
.scroll-indicator,
.hero-section .swiper-pagination {
    display: none !important;
}

/* ============================================================
   KING'S LOADING SCREEN PRELOADER FADE-IN / FADE-OUT TRANSLATION ANIMATION
   ============================================================ */

.kings-lang-preloader-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: radial-gradient(circle at 50% 50%, #29102c 0%, #170919 60%, #0d040e 100%) !important;
    z-index: 99999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.45s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.kings-lang-preloader-overlay.fade-in {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.kings-lang-preloader-overlay.fade-out {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}


/* ============================================================
   SMOOTH LOGO ZOOM & FADE-OUT PRELOADER ANIMATION
   ============================================================ */

#kings-preloader-overlay,
.kings-lang-preloader-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: radial-gradient(circle at 50% 50%, #29102c 0%, #170919 60%, #0d040e 100%) !important;
    z-index: 99999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.85s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.kings-lang-preloader-overlay {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.kings-lang-preloader-overlay.fade-in {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

#kings-preloader-overlay.fade-out,
.kings-lang-preloader-overlay.fade-out {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.kings-preloader-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    transform: scale(1) !important;
    filter: blur(0px) brightness(1) !important;
    transition: transform 0.85s cubic-bezier(0.25, 1, 0.5, 1), filter 0.85s ease !important;
}

#kings-preloader-logo {
    width: 280px !important;
    max-width: 80vw !important;
    height: auto !important;
    object-fit: contain !important;
    animation: kingsPreloaderGlowPulse 2s ease-in-out infinite alternate !important;
}

/* ZOOM & FADE EFFECT ON FADE-OUT */
#kings-preloader-overlay.fade-out .kings-preloader-content,
.kings-lang-preloader-overlay.fade-out .kings-preloader-content {
    transform: scale(1.6) !important;
    filter: blur(8px) brightness(1.3) !important;
}

@keyframes kingsPreloaderGlowPulse {
    0% {
        filter: drop-shadow(0 0 15px rgba(139, 90, 142, 0.4)) brightness(0.95);
        transform: scale(0.98);
    }
    100% {
        filter: drop-shadow(0 0 35px rgba(212, 163, 89, 0.8)) brightness(1.08);
        transform: scale(1.02);
    }
}

/* ============================================================
   SMOOTH LOGO ZOOM & FADE-OUT PRELOADER ANIMATION
   ============================================================ */
#kings-preloader-overlay,
.kings-lang-preloader-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: radial-gradient(circle at 50% 50%, #29102c 0%, #170919 60%, #0d040e 100%) !important;
    z-index: 99999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.85s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.kings-lang-preloader-overlay {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.kings-lang-preloader-overlay.fade-in {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

#kings-preloader-overlay.fade-out,
.kings-lang-preloader-overlay.fade-out {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.kings-preloader-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    transform: scale(1) !important;
    filter: blur(0px) brightness(1) !important;
    transition: transform 0.85s cubic-bezier(0.25, 1, 0.5, 1), filter 0.85s ease !important;
}

#kings-preloader-logo {
    width: 280px !important;
    max-width: 80vw !important;
    height: auto !important;
    object-fit: contain !important;
    animation: kingsPreloaderGlowPulse 2s ease-in-out infinite alternate !important;
}

#kings-preloader-overlay.fade-out .kings-preloader-content,
.kings-lang-preloader-overlay.fade-out .kings-preloader-content {
    transform: scale(1.6) !important;
    filter: blur(8px) brightness(1.3) !important;
}

@keyframes kingsPreloaderGlowPulse {
    0% {
        filter: drop-shadow(0 0 15px rgba(139, 90, 142, 0.4)) brightness(0.95);
        transform: scale(0.98);
    }
    100% {
        filter: drop-shadow(0 0 35px rgba(212, 163, 89, 0.8)) brightness(1.08);
        transform: scale(1.02);
    }
}

/* ============================================================
   TARGETED BUTTON STYLING (#452347 & 12px ROUNDED CORNERS)
   NO BORDERS ADDED TO HOMEPAGE CARDS OR NAV
   ============================================================ */
.btn-primary,
.btn-portal,
.btn-form,
.btn-login-submit,
.btn-start-order,
.start-order-btn,
.wpcf7-submit {
    border-radius: 12px !important;
    background-color: #452347 !important;
    color: #ffffff !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover,
.btn-portal:hover,
.btn-form:hover,
.btn-login-submit:hover,
.btn-start-order:hover,
.start-order-btn:hover,
.wpcf7-submit:hover {
    background-color: #5b2e5d !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

/* Marketing Page Cards layout refinement - clean & no harsh borders */
.services-page .service-row {
    max-width: 1000px !important;
    margin: 0 auto 40px auto !important;
    border-radius: 16px !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}


/* ============================================================
   MODERN LUXURY DESIGN SYSTEM COMPONENTS
   ============================================================ */

/* Primary Action Buttons */
.btn-primary,
.btn-portal,
.btn-form,
.btn-login-submit,
.btn-start-order,
.start-order-btn,
.wpcf7-submit {
    border-radius: 12px !important;
    background-color: #452347 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 26px !important;
    font-weight: 600 !important;
    font-family: var(--font-body, 'Readex Pro', sans-serif) !important;
    box-shadow: 0 4px 14px rgba(69, 35, 71, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-primary:hover,
.btn-portal:hover,
.btn-form:hover,
.btn-login-submit:hover,
.btn-start-order:hover,
.start-order-btn:hover,
.wpcf7-submit:hover {
    background-color: #5b2e5d !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 22px rgba(69, 35, 71, 0.3) !important;
}

/* Secondary Buttons */
.btn-secondary {
    border-radius: 12px !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    padding: 12px 26px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

/* Header Navigation Links */
.nav-menu a {
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-menu li.current-menu-item > a,
.nav-menu li.active > a {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.16) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

/* Marketing Service Cards */
.service-row {
    max-width: 1080px !important;
    margin: 0 auto 36px auto !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(69, 35, 71, 0.07) !important;
    border: none !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.service-row:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 18px 40px rgba(69, 35, 71, 0.12) !important;
}

.service-row .service-title-large {
    color: #452347 !important;
    font-weight: 700 !important;
}

.service-row .service-description-large {
    color: #555555 !important;
}


/* ============================================================
   PERFECT EDGE-TO-EDGE LAYOUT (NO WHITE GAPS OR BORDERS AT TOP/BOTTOM/SIDES)
   ============================================================ */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    background-color: #170919 !important; /* Seamless luxury dark backdrop */
    overflow-x: hidden !important;
    width: 100% !important;
}

#page, .site {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    background-color: transparent !important;
}

.site-header {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
}

.site-footer, footer {
    margin-bottom: 0 !important;
    padding-bottom: 50px !important;
    background: #452347 !important;
}

.footer-bottom {
    background: #36193a !important;
    margin: 0 !important;
}


/* ============================================================
   ABOUT SECTION 100% FULL-WIDTH LIGHT CANVAS (NO DARK SIDES)
   ============================================================ */
.about-section {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    background-color: #FFF9F3 !important;
    background: #FFF9F3 !important;
    padding: 80px 0 !important;
    box-sizing: border-box !important;
}

.about-section .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}
