/**
 * Khayal Luxury Theme - Main Stylesheet
 * Pixel-accurate implementation matching Image 1:
 * Alternating White & Dark Sections, Sharp Architectural Corners (4-6px), Royal Gold Accents.
 */

/* ── 1. CSS Variables & Reset ── */
:root {
  /* Premium Architectural Light & Gold Palette (Matching Reference Image Exactly) */
  --khyal-bg-body: #FFFFFF;
  --khyal-bg-white: #FFFFFF;
  --khyal-bg-light: #F8F9FA;
  --khyal-bg-gray-section: #F3F4F6;
  --khyal-bg-card-light: #FFFFFF;
  --khyal-bg-subfooter: #26211C;

  /* Authentic Architectural Champagne / Warm Gold */
  --khyal-gold: #A98034;
  --khyal-gold-light: #C5A059;
  --khyal-gold-dark: #8C6826;
  --khyal-gold-gradient: linear-gradient(135deg, #B89550 0%, #A98034 100%);
  --khyal-gold-gradient-hover: linear-gradient(135deg, #C5A059 0%, #B89550 100%);

  /* Rich High-Contrast Typography */
  --khyal-text-dark: #18181B;
  --khyal-text-heading: #111827;
  --khyal-text-body: #374151;
  --khyal-text-muted: #6B7280;
  --khyal-text-light: #9CA3AF;
  --khyal-text-white: #FFFFFF;

  /* Architectural Borders */
  --khyal-border-light: #E5E7EB;
  --khyal-border-subtle: #F3F4F6;
  --khyal-border-gold: rgba(169, 128, 52, 0.35);

  /* Sharp architectural corners */
  --khyal-radius-sharp: 4px;
  --khyal-radius-card: 6px;

  --khyal-font: 'Alexandria', 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --khyal-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Suppress any third party floating buttons (Elementor duplicate clutter / old injected buttons) */
.view-floating-contact-container,
.view-float-btn,
.view-float-whatsapp,
.view-float-phone,
.view-float-tiktok,
.e-floating-buttons,
.elementor-floating-bars,
.e-floating-bars,
[class*="e-floating-buttons"],
[id*="e-floating-buttons"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  direction: rtl;
  text-align: right;
  scroll-behavior: smooth;
  font-family: var(--khyal-font);
  background-color: #FFFFFF;
  color: var(--khyal-text-dark);
  -webkit-font-smoothing: antialiased;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body.khyal-light-theme,
body.khyal-dark-theme,
body {
  background-color: #FFFFFF;
  color: #374151;
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--khyal-transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.khyal-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.khyal-text-center {
  text-align: center;
}

/* ── 2. Sharp Buttons & Elements ── */
.khyal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--khyal-radius-sharp);
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--khyal-transition);
}

.khyal-btn-gold {
  background: linear-gradient(135deg, #B89550 0%, #A98034 100%);
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(169, 128, 52, 0.22);
}

.khyal-btn-gold:hover {
  background: linear-gradient(135deg, #C5A059 0%, #B89550 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(169, 128, 52, 0.32);
}

.khyal-btn-glass {
  background: #FFFFFF;
  border: 1.5px solid #D1D5DB;
  color: #18181B !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.khyal-btn-glass:hover {
  border-color: #25D366;
  color: #25D366 !important;
  background: #F0FDF4;
  transform: translateY(-2px);
}

.khyal-btn-sharp-outline {
  background: #FFFFFF;
  border: 1.5px solid #D1D5DB;
  color: #18181B !important;
  padding: 10px 32px;
  border-radius: var(--khyal-radius-sharp);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--khyal-transition);
}

.khyal-btn-sharp-outline:hover {
  border-color: #A98034;
  color: #A98034 !important;
  background: #FDFBF7;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(169, 128, 52, 0.15);
}

.khyal-btn-sharp-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #A98034;
  border: 1px solid #A98034;
  border-radius: var(--khyal-radius-sharp);
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF !important;
  transition: var(--khyal-transition);
  box-shadow: 0 4px 12px rgba(169, 128, 52, 0.2);
}

.khyal-btn-sharp-box:hover {
  background: #B89550;
  border-color: #B89550;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.btn-arrow svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.khyal-btn-sharp-box:hover .btn-arrow svg {
  transform: translateX(-4px);
}

.khyal-btn-icon svg {
  width: 16px;
  height: 16px;
}

/* ── 3. Sticky Global Header (Pure White Light Luxury) ── */
.khyal-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: var(--khyal-transition);
}

.khyal-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.khyal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

/* ── Brand Logo Component (Alexandria Typography & Architectural Emblem) ── */
.khyal-brand-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.25s ease;
}

.khyal-brand-logo:hover {
  opacity: 0.92;
}

.khyal-logo-container {
  display: flex;
  align-items: center;
  gap: 14px;
}

.khyal-logo-text-box {
  display: flex;
  flex-direction: column;
  text-align: right;
  line-height: 1.15;
}

.khyal-logo-main {
  font-family: var(--khyal-font);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #18181B;
  background: none;
  -webkit-text-fill-color: #18181B;
  display: inline-block;
}

.khyal-logo-sub {
  font-family: var(--khyal-font);
  font-size: 11.5px;
  font-weight: 600;
  color: #6B7280;
  letter-spacing: 0.8px;
  margin-top: 3px;
}

.khyal-logo-emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.khyal-logo-emblem svg {
  display: block;
  filter: drop-shadow(0 2px 6px rgba(169, 128, 52, 0.2));
}

.khyal-logo-footer .khyal-logo-main {
  font-size: 24px;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

.khyal-logo-footer .khyal-logo-sub {
  font-size: 11px;
  color: #DFBE7A !important;
  -webkit-text-fill-color: #DFBE7A !important;
}

.khyal-logo-img {
  max-height: 54px;
  width: auto;
}

/* Desktop Nav Menu */
.khyal-desktop-nav .khyal-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 26px;
}

.khyal-nav-list li a {
  font-size: 15px;
  font-weight: 600;
  color: #27272A;
  position: relative;
  padding: 6px 0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.khyal-nav-list li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2.5px;
  background: #A98034;
  border-radius: 1px;
  transition: width 0.3s ease;
}

.khyal-nav-list li a:hover,
.khyal-nav-list li.current-menu-item a {
  color: #A98034;
}

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

.khyal-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.khyal-mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.khyal-mobile-menu-toggle .khyal-bar {
  width: 22px;
  height: 2px;
  background-color: #18181B;
  border-radius: 1px;
}

/* ── 4. Mobile Drawer ── */
.khyal-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  visibility: hidden;
  transition: visibility 0.35s ease;
}

.khyal-mobile-drawer.is-open {
  visibility: visible;
}

.khyal-mobile-drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.khyal-mobile-drawer.is-open .khyal-mobile-drawer-overlay {
  opacity: 1;
}

.khyal-mobile-drawer-content {
  position: absolute;
  top: 0;
  right: -320px;
  width: 290px;
  height: 100%;
  background: #FFFFFF;
  border-left: 1px solid #E5E7EB;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.khyal-mobile-drawer.is-open .khyal-mobile-drawer-content {
  right: 0;
}

.khyal-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 14px;
}

.khyal-drawer-title {
  font-size: 19px;
  font-weight: 800;
  color: #18181B;
}

.khyal-drawer-sub {
  font-size: 10px;
  color: #6B7280;
  display: block;
}

.khyal-drawer-close {
  background: transparent;
  border: none;
  font-size: 30px;
  color: #18181B;
  cursor: pointer;
}

.khyal-mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 26px;
}

.khyal-mobile-nav-list a {
  font-size: 15px;
  font-weight: 600;
  color: #27272A;
  display: block;
  text-decoration: none;
}

.khyal-mobile-nav-list a:hover {
  color: #A98034;
}

.khyal-drawer-contact {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.khyal-drawer-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--khyal-radius-sharp);
  font-size: 13px;
  font-weight: 600;
  background: #F4F4F5;
  border: 1px solid #E4E4E7;
  color: #18181B;
  text-decoration: none;
}

.khyal-drawer-btn svg {
  width: 16px;
  height: 16px;
  color: #A98034;
}

/* ── 5. Hero Section (Light Luxury Architectural) ── */
.khyal-hero-section {
  position: relative;
  min-height: 620px;
  padding: 100px 0 75px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #F8F9FA;
}

.khyal-hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url('../images/hero-villa.jpg') center center / cover no-repeat;
}

.khyal-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 38%, rgba(255, 255, 255, 0.5) 72%, rgba(255, 255, 255, 0.15) 100%);
}

.khyal-hero-glow {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(169, 128, 52, 0.1) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.khyal-hero-container {
  position: relative;
  z-index: 2;
}

.khyal-hero-content {
  max-width: 660px;
}

.khyal-hero-tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.khyal-hero-tagline-badge::before,
.khyal-hero-tagline-badge::after {
  content: '◇';
  color: #A98034;
  font-size: 11px;
}

.khyal-hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.khyal-title-white {
  color: #18181B;
}

.khyal-title-gold {
  color: #A98034;
}

.khyal-hero-desc {
  font-size: 17.5px;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 500;
}

/* Feature Badges (Sharp) */
.khyal-hero-features-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 32px;
}

.khyal-feature-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: #27272A;
}

.feat-icon svg {
  width: 17px;
  height: 17px;
  color: #A98034;
}

.khyal-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Floating Glass Card (Bottom Left as in Image 1) */
.khyal-hero-floating-card {
  position: absolute;
  bottom: 35px;
  left: 40px;
  z-index: 5;
  background: rgba(24, 24, 27, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--khyal-radius-sharp);
  padding: 16px 20px;
  color: #FFFFFF;
  max-width: 290px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.khyal-floating-card-title {
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.khyal-floating-card-sub {
  font-size: 11px;
  color: #D4D4D8;
  line-height: 1.4;
  margin-bottom: 8px;
}

.khyal-floating-card-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}

.khyal-floating-card-dots span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.khyal-floating-card-dots span.active {
  background: #FFFFFF;
  width: 14px;
  border-radius: 3px;
}

@media (max-width: 991px) {
  .khyal-hero-floating-card {
    display: none;
  }
}

.khyal-hero-slider-arrows {
  position: absolute;
  bottom: 25px;
  left: 30px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.khyal-arrow-box {
  width: 40px;
  height: 40px;
  border-radius: var(--khyal-radius-sharp);
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  color: #18181B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--khyal-transition);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.khyal-arrow-box:hover {
  background: #A98034;
  border-color: #A98034;
  color: #FFFFFF;
}

.khyal-arrow-box svg {
  width: 16px;
  height: 16px;
}

/* ── 6. Stats Section (Pure White Strip) ── */
.khyal-stats-section {
  background: #FFFFFF;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  padding: 34px 0;
}

.khyal-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.khyal-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.khyal-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: #E5E7EB;
}

.khyal-stat-icon {
  width: 32px;
  height: 32px;
  color: #A98034;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.khyal-stat-icon svg {
  width: 28px;
  height: 28px;
}

.khyal-stat-number-wrap {
  font-size: 38px;
  font-weight: 900;
  color: #18181B;
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-family: var(--khyal-font);
}

.khyal-stat-plus {
  color: #A98034;
  font-size: 30px;
  margin-right: 2px;
}

.khyal-stat-label {
  font-size: 14.5px;
  font-weight: 600;
  color: #6B7280;
}

/* ── 7. Section Whites vs Grays ── */
.khyal-section {
  padding: 85px 0;
  position: relative;
}

.khyal-section-white {
  background-color: #FFFFFF !important;
  color: #18181B !important;
}

.khyal-section-gray {
  background-color: #F7F3EB !important;
  color: #18181B !important;
}

.khyal-section-dark {
  background-color: #F7F3EB !important;
  color: #18181B !important;
}

.khyal-section-title-dark {
  font-size: 32px;
  font-weight: 800;
  color: #18181B;
  margin-bottom: 8px;
}

.khyal-section-subtitle-dark {
  font-size: 15.5px;
  color: #6B7280;
  line-height: 1.6;
}

.khyal-section-title-white {
  font-size: 32px;
  font-weight: 800;
  color: #18181B;
  margin-bottom: 8px;
}

.khyal-section-subtitle-white {
  font-size: 15.5px;
  color: #6B7280;
  line-height: 1.6;
}

/* ── 8. Services Grid (White Cards with Top Photo on White Background) ── */
.khyal-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.khyal-service-card {
  position: relative;
  height: auto;
  min-height: 245px;
  border-radius: var(--khyal-radius-card);
  overflow: hidden;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 0;
  background-color: #FFFFFF !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: var(--khyal-transition);
  text-decoration: none;
}

.khyal-service-card-bg {
  position: relative;
  width: 100%;
  height: 135px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
  z-index: 1;
}

.khyal-service-card-overlay {
  display: none;
}

.khyal-aurora-glow-layer {
  display: none;
}

.khyal-service-card-content {
  position: relative;
  z-index: 2;
  padding: 16px 14px 20px 14px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.khyal-service-icon-wrap {
  width: 36px;
  height: 36px;
  margin: -30px auto 10px auto;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(169, 128, 52, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: #A98034;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--khyal-transition);
  z-index: 3;
}

.khyal-service-icon-wrap svg {
  width: 18px;
  height: 18px;
}

.khyal-service-title {
  font-size: 16px;
  font-weight: 800;
  color: #18181B;
  margin-bottom: 6px;
  line-height: 1.3;
}

.khyal-service-desc {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.5;
  margin: 0;
}

.khyal-service-card:hover {
  border-color: #A98034;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(169, 128, 52, 0.12);
}

.khyal-service-card:hover .khyal-service-card-bg {
  transform: scale(1.05);
}

.khyal-service-card:hover .khyal-service-icon-wrap {
  background: #A98034;
  color: #FFFFFF;
  border-color: #A98034;
}

.khyal-section-bottom-btn {
  margin-top: 36px;
}

/* ── 9. Projects Section (Warm Architectural Luxury Beige & Live Horizontal Slider) ── */
.khyal-projects-section {
  background-color: #F7F3EB !important;
  position: relative;
  overflow: hidden;
}

.khyal-projects-header-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 20px;
}

.khyal-projects-top-action {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Prominent Architectural Slider Controls */
.khyal-slider-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.khyal-slider-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--khyal-radius-sharp);
  background: #FFFFFF;
  border: 1px solid #E6DDCF;
  color: #18181B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--khyal-transition);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.khyal-slider-btn:hover {
  background: #A98034;
  color: #FFFFFF;
  border-color: #A98034;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(169, 128, 52, 0.25);
}

.khyal-slider-btn:active {
  transform: translateY(0);
}

.khyal-slider-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.khyal-slider-btn.prev-btn:hover svg {
  transform: translateX(2px);
}

.khyal-slider-btn.next-btn:hover svg {
  transform: translateX(-2px);
}

/* Filter Navigation */
.khyal-projects-filter-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.khyal-tab-btn {
  padding: 7px 20px;
  border-radius: var(--khyal-radius-sharp);
  background: #FFFFFF;
  border: 1px solid #E6DDCF;
  color: #4B5563;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--khyal-transition);
}

.khyal-tab-btn:hover {
  border-color: #A98034;
  color: #A98034;
}

.khyal-tab-btn.active {
  background: #A98034;
  color: #FFFFFF;
  border-color: #A98034;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(169, 128, 52, 0.25);
}

/* Horizontal Live Slider Track */
.khyal-projects-slider-container {
  position: relative;
  overflow: hidden;
}

.khyal-projects-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 6px 4px 20px 4px;
  cursor: grab;
}

.khyal-projects-slider-track:active {
  cursor: grabbing;
}

.khyal-projects-slider-track::-webkit-scrollbar {
  display: none;
}

.khyal-project-card {
  flex: 0 0 calc((100% - (3 * 20px)) / 4);
  scroll-snap-align: start;
  min-width: 275px;
  border-radius: var(--khyal-radius-card);
  overflow: hidden;
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E8E2D8;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.25s ease;
  box-shadow: 0 4px 16px rgba(169, 128, 52, 0.05);
}

@media (max-width: 1200px) {
  .khyal-project-card {
    flex: 0 0 calc((100% - (2 * 18px)) / 3);
  }
}

@media (max-width: 900px) {
  .khyal-project-card {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}

@media (max-width: 600px) {
  .khyal-project-card {
    flex: 0 0 85%;
  }
}

.khyal-project-thumb-box {
  position: relative;
  height: 320px;
  overflow: hidden;
  cursor: pointer;
}

.khyal-project-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.khyal-project-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(to top, rgba(15, 20, 30, 0.94) 0%, rgba(15, 20, 30, 0.5) 50%, transparent 100%);
  z-index: 2;
  transition: all 0.3s ease;
}

.khyal-project-card:hover .khyal-project-gradient-overlay {
  background: linear-gradient(to top, rgba(15, 20, 30, 0.98) 0%, rgba(15, 20, 30, 0.65) 60%, transparent 100%);
}

.khyal-project-top-meta {
  position: absolute;
  top: 14px;
  right: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.khyal-project-zoom-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--khyal-radius-sharp);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: #18181B;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.khyal-project-thumb-box:hover .khyal-project-zoom-btn {
  background: #A98034;
  color: #FFFFFF;
  border-color: #A98034;
}

.khyal-project-zoom-btn svg {
  width: 15px;
  height: 15px;
}

.khyal-project-bottom-meta {
  position: absolute;
  bottom: 16px;
  right: 16px;
  left: 16px;
  z-index: 3;
}

.khyal-project-name {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
  margin-bottom: 6px;
}

.khyal-project-loc-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #D4D4D8;
  margin-bottom: 12px;
}

.khyal-project-loc-tag .loc-pin svg {
  width: 13px;
  height: 13px;
  color: #DFBE7A;
}

.khyal-project-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--khyal-radius-sharp);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.khyal-project-details-btn:hover {
  background: #A98034;
  color: #FFFFFF;
  border-color: #A98034;
}

.khyal-project-details-btn .btn-arr svg {
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
}

.khyal-project-details-btn:hover .btn-arr svg {
  transform: translateX(-3px);
}

.khyal-project-card:hover {
  transform: translateY(-4px);
  border-color: #A98034;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

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

/* ── 10. Why Us Section (Pure White Background - 5 Adjacent Pillars on Desktop) ── */
.khyal-why-pillars-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 40px;
  text-align: center;
}

.khyal-why-pillar-item {
  padding: 28px 14px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: var(--khyal-radius-card);
  transition: var(--khyal-transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.khyal-why-pillar-item:hover {
  border-color: #A98034;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(169, 128, 52, 0.12);
}

.khyal-pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px auto;
  border-radius: 50%;
  background: rgba(169, 128, 52, 0.08);
  border: 1px solid rgba(169, 128, 52, 0.25);
  color: #A98034;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.khyal-pillar-icon svg {
  width: 28px;
  height: 28px;
}

.khyal-pillar-title {
  font-size: 17px;
  font-weight: 800;
  color: #18181B;
  margin-bottom: 8px;
}

.khyal-pillar-desc {
  font-size: 13.5px;
  color: #6B7280;
  line-height: 1.6;
}

.khyal-why-pillar-item:hover .khyal-pillar-icon {
  background: #A98034;
  color: #FFFFFF;
  border-color: #A98034;
  transform: translateY(-2px);
}

/* ── 11. CTA Banner Section (Luxury Villa with Warm Overlay & Dual Dark Dials) ── */
.khyal-cta-banner-section {
  padding: 30px 0 70px 0;
  background-color: #FFFFFF;
}

.khyal-cta-banner-wrapper {
  background: url('../images/hero-villa.jpg') center center / cover no-repeat;
  border-radius: var(--khyal-radius-card);
  border: 1px solid #E5E7EB;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.khyal-cta-banner-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 55%, rgba(255, 255, 255, 0.65) 100%);
}

.khyal-cta-split-grid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 46px 54px;
  gap: 30px;
}

.khyal-cta-direct-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 260px;
}

.khyal-direct-dial-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #181F2C;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 20px;
  border-radius: var(--khyal-radius-sharp);
  text-decoration: none;
  transition: var(--khyal-transition);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.khyal-direct-dial-row:hover {
  background: #232C3E;
  border-color: #A98034;
  transform: translateY(-2px);
}

.dial-icon svg {
  width: 22px;
  height: 22px;
  color: #DFBE7A;
}

.dial-info {
  display: flex;
  flex-direction: column;
}

.dial-label {
  font-size: 11px;
  color: #A1A1AA;
}

.dial-number {
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
}

.khyal-cta-action-content {
  text-align: right;
}

.khyal-cta-main-title {
  font-size: 32px;
  font-weight: 800;
  color: #18181B;
  margin-bottom: 8px;
}

.khyal-cta-sub-title {
  font-size: 16px;
  color: #4B5563;
  margin-bottom: 22px;
}

/* ── 12. Testimonials Section (Pure White Background) ── */
.khyal-reviews-slider-box {
  position: relative;
  margin-top: 35px;
}

.khyal-reviews-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.khyal-review-white-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: var(--khyal-radius-card);
  padding: 28px 22px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--khyal-transition);
}

.khyal-review-white-card:hover {
  border-color: #A98034;
  box-shadow: 0 8px 24px rgba(169, 128, 52, 0.12);
  transform: translateY(-3px);
}

.khyal-review-stars-gold {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.star-gold svg {
  width: 16px;
  height: 16px;
  color: #A98034;
  fill: #A98034;
}

.khyal-review-body {
  font-size: 14px;
  color: #374151;
  line-height: 1.65;
  margin-bottom: 20px;
}

.khyal-review-client-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.khyal-client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F4F4F5;
  color: #A98034;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E5E7EB;
  overflow: hidden;
}

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

.khyal-client-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #18181B;
}

.khyal-client-location {
  font-size: 12px;
  color: #A98034;
  font-weight: 600;
}

.khyal-rev-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: var(--khyal-radius-sharp);
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  color: #18181B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: var(--khyal-transition);
}

.khyal-rev-arrow.prev-rev {
  right: -19px;
}

.khyal-rev-arrow.next-rev {
  left: -19px;
}

.khyal-rev-arrow:hover {
  background: #A98034;
  color: #FFFFFF;
  border-color: #A98034;
}

.khyal-rev-arrow svg {
  width: 14px;
  height: 14px;
}

.khyal-slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 26px;
}

.khyal-slider-dots .dot-item {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D1D5DB;
  cursor: pointer;
  transition: all 0.25s ease;
}

.khyal-slider-dots .dot-item.active {
  background: #A98034;
  width: 20px;
  border-radius: 4px;
}

/* ── 13. Brands Section (Pure White Background) ── */
.khyal-brands-strip-section {
  padding: 40px 0;
  background: #FFFFFF;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

.khyal-brands-heading {
  font-size: 14px;
  font-weight: 700;
  color: #6B7280;
  margin-bottom: 24px;
  text-align: center;
}

.khyal-brands-logos-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.khyal-brand-tag {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #374151;
  opacity: 0.75;
  transition: opacity 0.25s, color 0.25s;
}

.khyal-brand-tag:hover {
  opacity: 1;
  color: #A98034;
}

/* ── 14. Global Footer (Ideal Dark Blue Architectural Palette) ── */
.khyal-footer {
  background: #0B1326 !important;
  border-top: 1px solid rgba(169, 128, 52, 0.35);
  padding: 65px 0 0 0 !important;
  margin-top: auto;
  margin-bottom: 0 !important;
}

.khyal-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.khyal-footer-desc {
  font-size: 13.5px;
  color: #A1A1AA;
  line-height: 1.7;
  margin: 16px 0 20px 0;
  max-width: 320px;
}

.khyal-footer-socials {
  display: flex;
  gap: 10px;
}

.khyal-social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--khyal-radius-sharp);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #DFBE7A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--khyal-transition);
}

.khyal-social-btn svg {
  width: 16px;
  height: 16px;
}

.khyal-social-btn:hover {
  background: var(--khyal-gold-gradient);
  color: #070E1E;
  border-color: #C5A059;
}

.khyal-footer-heading {
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 6px;
}

.khyal-footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 26px;
  height: 2px;
  background: #A98034;
}

.khyal-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.khyal-footer-links a {
  font-size: 13.5px;
  color: #C4C9D6;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.khyal-footer-links a:hover {
  color: #DFBE7A;
  transform: translateX(-4px);
  display: inline-block;
}

.khyal-footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.khyal-footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #D4D4D8;
}

.khyal-footer-contact-list li a {
  color: #D4D4D8;
  text-decoration: none;
  transition: color 0.2s;
}

.khyal-footer-contact-list li a:hover {
  color: #DFBE7A;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  color: #DFBE7A;
}

/* WhatsApp QR Card in Footer */
.khyal-footer-qr-card,
.khyal-qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #FFFFFF;
  border: 1px solid rgba(169, 128, 52, 0.35);
  border-radius: var(--khyal-radius-sharp);
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.khyal-qr-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.khyal-footer-qr-code,
.khyal-qr-box {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  margin-bottom: 8px;
  color: #18181B;
}

.khyal-footer-qr-code svg,
.khyal-qr-box svg {
  width: 72px;
  height: 72px;
}

.khyal-footer-qr-label,
.khyal-qr-label {
  font-size: 11.5px;
  font-weight: 800;
  color: #18181B;
  display: flex;
  align-items: center;
  gap: 5px;
}

.qr-wa-icon svg {
  width: 15px;
  height: 15px;
  color: #25D366;
}

/* Subfooter Full-Width Dark Architectural Bar */
.khyal-subfooter-bar {
  background: #050A14 !important;
  color: #8C92A4;
  padding: 16px 0 !important;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0 !important;
}

.khyal-subfooter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.khyal-subfooter-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #94A3B8;
  font-size: 12.5px;
}

.khyal-developer-link {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  padding: 3px 8px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  line-height: 1;
}

.khyal-developer-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.khyal-developer-logo {
  height: 20px;
  width: auto;
  display: block;
  object-fit: contain;
}

.khyal-subfooter-copy,
.khyal-subfooter-copyright {
  color: #8C92A4;
}

.khyal-subfooter-links,
.khyal-subfooter-policies {
  display: flex;
  align-items: center;
  gap: 16px;
}

.khyal-subfooter-links a,
.khyal-subfooter-policies a {
  color: #8C92A4;
  text-decoration: none;
  font-size: 12.5px;
  transition: color 0.2s;
}

.khyal-subfooter-links a:hover,
.khyal-subfooter-policies a:hover {
  color: #DFBE7A;
}

#wpfooter {
  display: none !important;
}

/* ── 15. Floating WhatsApp Button ── */
.khyal-floating-whatsapp {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 998;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
}

.khyal-floating-whatsapp:hover {
  transform: scale(1.1);
  color: #FFFFFF;
}

.khyal-wa-icon svg {
  width: 28px;
  height: 28px;
}

.khyal-wa-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s infinite ease-out;
  pointer-events: none;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ── 16. Modal Dialog (Light Architectural) ── */
.khyal-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.khyal-modal.is-active {
  display: flex;
}

.khyal-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
}

.khyal-modal-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  0% {
    transform: scale(0.94) translateY(15px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.khyal-modal-content {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: var(--khyal-radius-card);
  padding: 32px 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
}

.khyal-modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  background: transparent;
  border: none;
  font-size: 26px;
  color: #6B7280;
  cursor: pointer;
}

.khyal-modal-close:hover {
  color: #18181B;
}

.khyal-modal-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
  background: rgba(169, 128, 52, 0.12);
  color: #A98034;
  margin-bottom: 8px;
}

.khyal-modal-title {
  font-size: 22px;
  font-weight: 800;
  color: #18181B;
  margin-bottom: 6px;
}

.khyal-modal-desc {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 20px;
}

.khyal-form-group {
  margin-bottom: 14px;
  text-align: right;
}

.khyal-form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 5px;
}

.khyal-form-group input,
.khyal-form-group select,
.khyal-form-group textarea {
  width: 100%;
  background: #F9FAFB;
  border: 1px solid #D1D5DB;
  border-radius: var(--khyal-radius-sharp);
  padding: 9px 12px;
  color: #18181B;
  font-size: 13.5px;
}

.khyal-form-group input:focus,
.khyal-form-group select:focus,
.khyal-form-group textarea:focus {
  outline: none;
  border-color: #A98034;
  background: #FFFFFF;
}

.khyal-form-status {
  margin-top: 12px;
  font-size: 13px;
  text-align: center;
}

/* ── 17. Responsive Breakpoints ── */
@media (max-width: 1100px) {
  .khyal-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .khyal-why-pillars-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .khyal-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .khyal-desktop-nav,
  .khyal-header-actions .khyal-btn {
    display: none;
  }
  .khyal-mobile-menu-toggle {
    display: flex;
  }
  .khyal-hero-title {
    font-size: 38px;
  }
  .khyal-reviews-cards-row {
    grid-template-columns: 1fr;
  }
  .khyal-cta-split-grid {
    flex-direction: column-reverse;
    text-align: center;
    padding: 30px 20px;
  }
  .khyal-cta-action-content {
    text-align: center;
  }
  .khyal-subfooter-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .khyal-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .khyal-stat-item:not(:last-child)::after {
    display: none;
  }
  .khyal-services-grid {
    grid-template-columns: 1fr;
  }
  .khyal-why-pillars-row {
    grid-template-columns: 1fr;
  }
  .khyal-footer-grid {
    grid-template-columns: 1fr;
  }
  .khyal-hero-title {
    font-size: 30px;
  }
}

/* ── 18. Work Gallery Lightbox Modal ── */
.khyal-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.khyal-lightbox-modal.is-active {
  display: flex;
}

.khyal-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 30, 0.85);
  backdrop-filter: blur(8px);
}

.khyal-lightbox-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: var(--khyal-radius-card);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.khyal-lightbox-close {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 36px;
  height: 36px;
  border-radius: var(--khyal-radius-sharp);
  color: #FFFFFF;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.khyal-lightbox-close:hover {
  background: #A98034;
  color: #FFFFFF;
}

.khyal-lightbox-image-wrap {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  background: #18181B;
  display: flex;
  align-items: center;
  justify-content: center;
}

.khyal-lightbox-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.khyal-lightbox-meta {
  padding: 18px 24px;
  background: #FFFFFF;
  border-top: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.khyal-lightbox-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.khyal-lightbox-cat {
  font-size: 11.5px;
  font-weight: 700;
  color: #A98034;
  background: rgba(169, 128, 52, 0.12);
  padding: 2px 8px;
  border-radius: 2px;
  display: inline-block;
  align-self: flex-start;
}

.khyal-lightbox-title {
  font-size: 17px;
  font-weight: 800;
  color: #18181B;
}

.khyal-lightbox-loc {
  font-size: 13px;
  color: #6B7280;
}

.khyal-lightbox-details-btn {
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.khyal-lightbox-details-btn .btn-arr svg {
  width: 12px;
  height: 12px;
}

/* ── 19. Global Architectural Sidebar Cards (White Light) ── */
.khyal-sidebar-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: var(--khyal-radius-card);
  padding: 28px 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.khyal-sidebar-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--khyal-gold-gradient);
}

.sidebar-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--khyal-radius-sharp);
  background: rgba(169, 128, 52, 0.1);
  border: 1px solid rgba(169, 128, 52, 0.3);
  color: #A98034;
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 14px;
}

.sidebar-card-title {
  font-size: 19px;
  font-weight: 800;
  color: #18181B;
  margin-bottom: 10px;
  line-height: 1.4;
}

.sidebar-card-desc {
  font-size: 13.5px;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.sidebar-call-box {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #6B7280;
}

.sidebar-call-box a {
  color: #18181B;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.sidebar-call-box a:hover {
  color: #A98034;
}

.sidebar-specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #E5E7EB;
  font-size: 13.5px;
}

.sidebar-spec-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-spec-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6B7280;
}

.sidebar-spec-label svg {
  width: 16px;
  height: 16px;
  color: #A98034;
}

.sidebar-spec-val {
  color: #18181B;
  font-weight: 700;
}
