/* ═══════════════════════════════════════════════
   LANDING PAGE STYLES
   ═══════════════════════════════════════════════ */
/* ── Dynamic Tab Views ── */
.landing-views-container {
  width: 100%;
  overflow-x: hidden;
}

.landing-view {
  display: none;
  animation: fadeInView 0.5s ease-out;
  padding-top: 100px;
  /* Account for fixed navbar */
  padding-bottom: 60px;
}

.landing-view.active {
  display: block;
}

@keyframes fadeInView {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* ── Navbar Options ── */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1000;
  padding: 12px 24px;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
  background: rgba(15, 15, 20, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  will-change: padding, background, transform, box-shadow;
}

.navbar.scrolled {
  background: rgba(8, 8, 12, 0.95);
  /* Deep dark background */
  border: 1px solid var(--bg-glass-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transform: translateX(-50%) translateY(-5px);
  padding: 10px 24px;
}

/* ── Light Theme Navbar ── */
[data-theme="light"] .navbar {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .nav-links {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .nav-links a {
  color: #1e293b !important;
}
[data-theme="light"] .nav-links a:hover {
  color: var(--accent-primary) !important;
  text-shadow: none;
}
[data-theme="light"] .nav-toggle {
  color: #1e293b !important;
}
[data-theme="light"] #themeToggle {
  color: #1e293b !important;
}
[data-theme="light"] .mobile-menu {
  background: rgba(255, 255, 255, 0.98);
}
[data-theme="light"] .mobile-menu a {
  color: #1e293b;
}
[data-theme="light"] .mobile-menu .close-btn {
  color: #1e293b;
}

/* ── Light Theme: Navbar Sign-In Button ── */
[data-theme="light"] .nav-actions .btn-outline {
  color: #1e293b !important;
  border-color: rgba(30, 41, 59, 0.35) !important;
  background: transparent !important;
}
[data-theme="light"] .nav-actions .btn-outline:hover {
  color: #1e293b !important;
  border-color: #1e293b !important;
  background: rgba(30, 41, 59, 0.06) !important;
}

/* ── Light Theme: Hero ── */
[data-theme="light"] .hero-badge {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.1);
}

/* ── Light Theme: About ── */
[data-theme="light"] .about-feature {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .about-feature span {
  color: #1e293b;
}

/* ── Light Theme: Service Cards ── */
[data-theme="light"] .service-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .service-card:hover {
  border-color: rgba(184, 134, 11, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .service-card-body h3 {
  color: #1e293b;
}

/* ── Light Theme: Exhibition Cards ── */
[data-theme="light"] .exhibition-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .exhibition-card h3 {
  color: #1e293b;
}

/* ── Light Theme: Portfolio Cards ── */
[data-theme="light"] .portfolio-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .portfolio-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(184, 134, 11, 0.3);
}
[data-theme="light"] .portfolio-card-body h3 {
  color: #1e293b;
}
[data-theme="light"] .portfolio-lightbox-content {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .portfolio-lightbox-gallery {
  background: #f1f5f9;
}
[data-theme="light"] .portfolio-lightbox-body h2 {
  color: #1e293b;
}

/* ── Light Theme: Property Cards ── */
[data-theme="light"] .property-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .property-card-image {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}
[data-theme="light"] .property-card-body h3 {
  color: #1e293b;
}

/* ── Light Theme: Contact Form ── */
[data-theme="light"] .contact-form {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .contact-info-item h3,
[data-theme="light"] .contact-info-item h4 {
  color: #1e293b;
}

/* ── Light Theme: Footer ── */
[data-theme="light"] .footer {
  background: #f8f9fa;
  border-top-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .footer h4 {
  color: #1e293b;
}
[data-theme="light"] .footer-social a {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  color: #475569;
}
[data-theme="light"] .footer-bottom {
  border-top-color: rgba(0, 0, 0, 0.06);
}

/* ── Light Theme: Glass Modal (Service Detail) ── */
[data-theme="light"] .glass-modal-content {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
[data-theme="light"] .glass-modal-close {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
  color: #1e293b;
}
[data-theme="light"] .glass-modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .glass-modal-body h2 {
  color: #1e293b;
}
[data-theme="light"] .glass-modal-desc {
  color: #475569;
}
[data-theme="light"] .glass-modal-price {
  background: rgba(184, 134, 11, 0.06);
  border-color: rgba(184, 134, 11, 0.15);
}

/* ── Light Theme: Pro Cards ── */
[data-theme="light"] .pro-card-body h3 {
  color: #1e293b;
}

/* ── Light Theme: Filter Buttons ── */
[data-theme="light"] .filter-btn {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  color: #475569;
}
[data-theme="light"] .filter-btn:hover {
  background: rgba(184, 134, 11, 0.06);
  color: var(--accent-primary);
}
[data-theme="light"] .filter-btn.active {
  color: #fff;
}

/* ── Light Theme: Location Map ── */
[data-theme="light"] .location-map-frame {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ── Light Theme: Floating Contact ── */
[data-theme="light"] .contact-item {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  color: #1e293b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  /* Ensure it doesn't overflow */
  padding: 0;
  /* Remove default container padding as navbar has padding */
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-logo-emblem {
  height: 3rem;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.25));
  transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-emblem {
  transform: scale(1.05);
}

.nav-logo-divider {
  display: none;
}

.nav-logo-text {
  height: 1.6rem;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── Footer logo group ── */
.footer-logo-group {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: opacity 0.3s ease;
}

.footer-logo-group:hover {
  opacity: 0.85;
}

.footer-logo-emblem {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(212, 175, 55, 0.3));
}

.footer-logo-divider {
  width: 2px;
  height: 45px;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.5), transparent);
  flex-shrink: 0;
}

.footer-logo-text {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  /* Use Royal Gold */
  transition: var(--transition);
  box-shadow: 0 0 10px var(--accent-primary);
}

.nav-links a:hover {
  color: #ffffff !important;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.nav-links a:hover::after {
  width: 20px;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff !important;
  font-size: 1.5rem;
  cursor: pointer;
}

#themeToggle {
  color: #ffffff !important;
}



/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 12, 0.98);
  /* Deep dark background */
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  backdrop-filter: blur(20px);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 500;
}

.mobile-menu .close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
}

/* ── Mobile Navbar Media Queries ── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

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

  .nav-actions a.btn-primary,
  .nav-actions a.btn-outline {
    display: none;
    /* Hide primary buttons from navbar top, they move to mobile menu */
  }

  .nav-toggle {
    display: block;
    /* Show hamburger menu */
  }

  .navbar {
    width: 95%;
    padding: 10px 16px;
  }

  .nav-logo-emblem {
    height: 2.4rem !important;
  }

  .nav-logo-text {
    height: 1.2rem !important;
  }

  .nav-logo-divider {
    height: 22px;
  }
}

/* ── Hero Section ── */
.landing-view#home {
  display: none;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  padding-top: 0;
}

.landing-view#home.active {
  display: block;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  text-align: center;
  min-height: 100vh;
  width: 100%;
}

.floating-contact {
  position: fixed;
  bottom: 30px;
  left: 30px;
  /* Move to LEFT side to avoid chatbot overlap */
  z-index: 990;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 12px;
}

[dir="rtl"] .floating-contact {
  left: auto;
  right: 30px;
  /* Switch to RIGHT for RTL */
}

.contact-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-gradient);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.contact-toggle:hover {
  transform: scale(1.1);
}

.contact-menu {
  display: flex;
  flex-direction: column-reverse;
  /* Icons appear upwards */
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  bottom: 70px;
  /* Position above toggle */
  padding-bottom: 10px;
}

.floating-contact:hover .contact-menu,
.floating-contact.active .contact-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

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

.contact-item.whatsapp:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.contact-item.email:hover {
  background: #EA4335;
  color: #fff;
  border-color: #EA4335;
}

.contact-item.phone:hover {
  background: var(--accent-primary);
  color: #fff;
  border-color: var(--accent-primary);
}

/* Background Slideshow */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slideshow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(2, 2, 2, 0.7), rgba(2, 2, 2, 0.85));
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 8s ease-in-out;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-5vh);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  color: var(--accent-primary);
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease-out;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

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

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

.hero h1 {
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: #ffffff !important;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero .text-gradient {
  background: linear-gradient(135deg, #d4af37, #f3e5ab, #d4af37) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.hero p {
  font-size: 1.15rem;
  max-width: 550px;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

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

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  /* Center horizontally */
  align-items: center;
  flex-wrap: wrap;
  /* Allow wrapping on smaller screens */
  gap: 48px;
  margin-top: 32px;
  /* Reduced from 64px to move stats up */
  animation: fadeInUp 0.8s ease-out 0.8s both;
  width: 100%;
  /* Ensure container takes full width */
  max-width: 1000px;
  /* Prevent it from stretching too wide on huge screens */
  margin-left: auto;
  margin-right: auto;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-stat .number {
  font-size: 2.8rem;
  /* Increase size for centered layout */
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── About Section ── */
.about {
  padding: var(--section-padding);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-frame {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  background: var(--accent-gradient);
  padding: 2px;
}

.about-image-frame .inner {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--accent-primary);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.about-feature .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.about-feature span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── Services Section ── */
.services-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-gradient);
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--card-radius);
  z-index: 0;
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-glow);
}

.service-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-image .placeholder-icon {
  font-size: 3rem;
  color: var(--accent-primary);
  opacity: 0.5;
}

.service-card-body {
  padding: 24px;
  position: relative;
  z-index: 1;
}

.service-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.service-price span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ── Exhibitions Section ── */
.exhibitions-section {
  padding: var(--section-padding);
}

.exhibitions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.exhibition-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--card-radius);
  padding: 28px;
  transition: var(--transition);
}

.exhibition-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.3);
}

.exhibition-card .emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.exhibition-card h3 {
  margin-bottom: 10px;
}

.exhibition-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.exhibition-card .meta {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Portfolio Filter Buttons ── */
.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px 0 32px;
}

.filter-btn {
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.02em;
}

.filter-btn:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--accent-primary);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: var(--accent-gradient);
  border-color: var(--accent-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
  font-weight: 600;
}

/* ── Portfolio Grid ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 12px;
}

/* ── Portfolio Card ── */
.portfolio-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.portfolio-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
  z-index: 0;
  pointer-events: none;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 40px rgba(212, 175, 55, 0.08);
}

.portfolio-card:hover::before {
  opacity: 0.04;
}

/* Card Image */
.portfolio-card-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

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

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

/* Gradient overlay on image */
.portfolio-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Category badge on image */
.portfolio-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(212, 175, 55, 0.9);
  color: #111;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

[dir="rtl"] .portfolio-card-badge {
  right: auto;
  left: 14px;
}

/* View overlay icon */
.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
}

.portfolio-card-overlay i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.9);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transform: scale(0.8);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-card-overlay i {
  transform: scale(1);
}

/* Card Body */
.portfolio-card-body {
  padding: 22px 24px 24px;
  position: relative;
  z-index: 1;
}

.portfolio-card-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--text-primary);
}

.portfolio-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}

.portfolio-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.portfolio-card-meta .portfolio-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.portfolio-card-meta .portfolio-date i {
  color: var(--accent-primary);
  font-size: 0.75rem;
}

.portfolio-card-meta .portfolio-images-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.portfolio-card-meta .portfolio-images-count i {
  color: var(--accent-primary);
  font-size: 0.78rem;
}

/* ── Portfolio Lightbox ── */
.portfolio-lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.portfolio-lightbox-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.portfolio-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}

.portfolio-lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  width: 92%;
  max-height: 90vh;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow-y: auto;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.portfolio-lightbox-overlay.show .portfolio-lightbox-content {
  transform: scale(1) translateY(0);
}

.portfolio-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

[dir="rtl"] .portfolio-lightbox-close {
  right: auto;
  left: 16px;
}

.portfolio-lightbox-close:hover {
  background: var(--accent-primary);
  color: #111;
  transform: rotate(90deg);
}

.portfolio-lightbox-gallery {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #0a0a0a;
}

.portfolio-lightbox-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.portfolio-lightbox-gallery .gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.portfolio-lightbox-gallery .gallery-nav:hover {
  background: var(--accent-primary);
  color: #111;
}

.portfolio-lightbox-gallery .gallery-prev {
  left: 14px;
}

.portfolio-lightbox-gallery .gallery-next {
  right: 14px;
}

[dir="rtl"] .portfolio-lightbox-gallery .gallery-prev {
  left: auto;
  right: 14px;
}

[dir="rtl"] .portfolio-lightbox-gallery .gallery-next {
  right: auto;
  left: 14px;
}

.portfolio-lightbox-gallery .gallery-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.portfolio-lightbox-gallery .gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio-lightbox-gallery .gallery-dot.active {
  background: var(--accent-primary);
  transform: scale(1.3);
}

.portfolio-lightbox-body {
  padding: 28px 32px 32px;
}

.portfolio-lightbox-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.portfolio-lightbox-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.portfolio-lightbox-body .lightbox-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.portfolio-lightbox-body .lightbox-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.portfolio-lightbox-body .lightbox-meta i {
  color: var(--accent-primary);
}

/* ── Portfolio Empty State ── */
.portfolio-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.portfolio-empty i {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.3;
  color: var(--accent-primary);
}

.portfolio-empty p {
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

/* ── Properties Section ── */
.properties-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.property-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: var(--transition);
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.property-card-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #161616 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.property-card-image .badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.property-card-body {
  padding: 24px;
}

.property-card-body h3 {
  margin-bottom: 8px;
}

.property-card-body .location {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.property-specs {
  display: flex;
  gap: 20px;
  padding: 12px 0;
  border-top: 1px solid var(--border-light);
}

.property-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.property-spec strong {
  color: var(--text-primary);
}

.property-card .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.property-card .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-primary);
}

/* ── Contact Section ── */
.contact-section {
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-top: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.9rem;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  padding: 36px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── Company Location Section ── */
.location-map-wrapper {
  margin-top: 48px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.location-map-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.location-map-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.4s ease;
}

.location-map-frame:hover iframe {
  filter: grayscale(0%) contrast(1);
}

.location-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.location-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
}

.location-btn i {
  font-size: 1.1rem;
}

/* ── Footer ── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 300px;
}

/* Removed .footer-brand .logo as it's replaced by img */
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h4 {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-primary);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-location i {
  color: var(--accent-primary);
  font-size: 1.05rem;
}

.footer-location a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-location a:hover {
  color: var(--accent-primary);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-copyright-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}



/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .navbar {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    padding: 16px 20px;
  }

  .navbar.scrolled {
    transform: none;
    padding: 12px 20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-content {
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    margin: 0 auto 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 32px;
  }

  .hero-stat .number {
    font-size: 1.6rem;
  }

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

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

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

  .about-features {
    grid-template-columns: 1fr;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .location-map-frame {
    border-radius: 12px;
  }

  .location-btn {
    font-size: 0.9rem;
    padding: 12px 24px;
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 140px;
    /* Adjust for mobile navbar */
  }

  .floating-contact {
    bottom: 16px;
    left: 16px;
  }

  [dir="rtl"] .floating-contact {
    left: auto;
    right: 16px;
  }

  .contact-toggle {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .contact-item {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  /* Chatbot FAB — smaller on mobile */
  #chatbot-fab {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.1rem !important;
    bottom: 80px !important;
  }

  /* Portfolio section — single column on mobile */
  .portfolio-grid,
  .portfolio-section .grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Section headers — scale down */
  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }
}

/* ── Ultra-Small Screens (< 480px) ── */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem !important;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.95rem;
    padding: 0 12px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-stat .number {
    font-size: 1.3rem;
  }

  .hero-stat .label {
    font-size: 0.75rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  /* Floating contact — even more compact */
  .floating-contact {
    bottom: 12px;
    left: 12px;
  }

  [dir="rtl"] .floating-contact {
    left: auto;
    right: 12px;
  }

  .contact-toggle {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.3);
  }

  .contact-item {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  /* Footer — fully centered on mobile */
  .footer {
    padding: 40px 16px 24px;
  }

  .footer-bottom {
    padding-top: 16px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  /* Service cards — full width image */
  .service-card-image {
    height: 160px;
  }

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

/* ═══════════════════════════════════════════════
   PROFESSIONAL SERVICE CARDS — Hover Zoom + Price Badge
   ═══════════════════════════════════════════════ */
.pro-card {
  position: relative;
  overflow: hidden;
}

.pro-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.pro-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.pro-card:hover .pro-card-image img {
  transform: scale(1.1);
}

.pro-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.pro-card:hover .pro-card-overlay {
  opacity: 1;
}

.pro-price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 3;
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.4);
}

.pro-card-body {
  padding: 24px;
  position: relative;
  z-index: 1;
}

.pro-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.pro-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
  margin-bottom: 16px;
  line-height: 1.6;
}

.pro-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pro-category {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: capitalize;
}

.pro-category i {
  color: var(--accent-primary);
  margin-right: 4px;
}

/* ═══════════════════════════════════════════════
   GLASSMORPHISM SERVICE DETAIL MODAL
   ═══════════════════════════════════════════════ */
.glass-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.glass-modal-overlay.show {
  opacity: 1;
}

.glass-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.glass-modal-content {
  position: relative;
  max-width: 560px;
  width: 100%;
  background: rgba(20, 20, 28, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 175, 55, 0.08);
  transform: scale(0.9) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.glass-modal-overlay.show .glass-modal-content {
  transform: scale(1) translateY(0);
}

.glass-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.glass-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

.glass-modal-image {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.glass-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glass-modal-category {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  color: var(--accent-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-transform: capitalize;
}

.glass-modal-body {
  padding: 28px 32px 32px;
}

.glass-modal-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.glass-modal-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.glass-modal-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.glass-modal-price .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.glass-modal-price .value {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-modal-actions {
  display: flex;
  gap: 12px;
}

.glass-modal-actions .btn-primary {
  flex: 1;
}

@media (max-width: 600px) {
  .glass-modal-image {
    height: 200px;
  }

  .glass-modal-body {
    padding: 20px 24px 28px;
  }
}

/* ── Small Phones (≤ 480px) ── */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.55rem;
    letter-spacing: -0.5px;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat .number {
    font-size: 1.3rem;
  }

  .hero-stat .label {
    font-size: 0.72rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 16px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .section-label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
  }

  .section-desc {
    font-size: 0.92rem;
  }

  .service-card-body,
  .pro-card-body {
    padding: 16px;
  }

  .exhibition-card {
    padding: 20px;
  }

  .contact-form {
    padding: 20px;
  }

  .floating-contact {
    bottom: 16px;
    left: 16px;
  }

  .contact-toggle {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .contact-item {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .glass-modal-content {
    border-radius: 16px;
  }

  .glass-modal-image {
    height: 170px;
  }

  .glass-modal-body {
    padding: 16px 20px 24px;
  }

  .glass-modal-body h2 {
    font-size: 1.2rem;
  }

  .glass-modal-price {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 14px;
  }

  .glass-modal-price .value {
    font-size: 1.3rem;
  }

  .glass-modal-actions {
    flex-direction: column;
  }

  .footer-brand {
    max-width: 100%;
  }

  .mobile-menu a {
    font-size: 1.1rem;
  }
}