/**
 * Theme Name: ديكورات الرياض (Dekorat Riyadh)
 * Main Luxury Stylesheet
 */

/* ==========================================================================
   1. CSS Reset & Global Variables
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-primary: #0B0B0B;
  --bg-secondary: #121212;
  --bg-card: #181818;
  --bg-card-hover: #222222;
  --gold-primary: #C9A45C;
  --gold-bright: #E4C47A;
  --gold-dark: #8F6D32;
  --gold-glow: rgba(201, 164, 92, 0.2);
  --gold-border: rgba(201, 164, 92, 0.25);
  --gold-border-bright: rgba(228, 196, 122, 0.6);
  --text-main: #F5F1E8;
  --text-muted: #B8B3A8;
  --text-dark: #7A756C;
  --whatsapp-color: #25D366;
  --font-heading: 'Cairo', 'Tajawal', sans-serif;
  --font-body: 'Tajawal', 'Cairo', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-luxury: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 1px rgba(201, 164, 92, 0.2);
  --shadow-gold-hover: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(201, 164, 92, 0.25);
  --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --container-max: 1280px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.8;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  position: relative;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

/* Container */
.dekorat-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   2. Typography & Core UI Elements
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.35;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #FFF0D0 0%, var(--gold-bright) 40%, var(--gold-primary) 80%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Badges & Section Headers */
.section-tag-wrap {
  display: inline-block;
  margin-bottom: 12px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(201, 164, 92, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  color: var(--gold-bright);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.section-header-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-main);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.gold-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), var(--gold-dark), transparent);
  margin: 20px 0;
  position: relative;
}

.gold-divider.center {
  margin-left: auto;
  margin-right: auto;
}

.gold-divider::after {
  content: '◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold-bright);
  font-size: 8px;
  background: var(--bg-primary);
  padding: 0 4px;
}

/* ==========================================================================
   3. Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  color: #0B0B0B;
  box-shadow: 0 6px 20px rgba(201, 164, 92, 0.25);
  border: 1px solid var(--gold-bright);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #FFF2CE 0%, var(--gold-bright) 50%, var(--gold-primary) 100%);
  box-shadow: 0 8px 25px rgba(228, 196, 122, 0.4);
  transform: translateY(-2px);
  color: #000;
}

.btn-outline-gold {
  background: rgba(20, 20, 20, 0.8);
  color: var(--gold-bright);
  border: 1px solid var(--gold-primary);
  backdrop-filter: blur(8px);
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: #0B0B0B;
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 164, 92, 0.3);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ==========================================================================
   4. Header & Top Bar
   ========================================================================== */
.top-info-bar {
  background: #060606;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.top-info-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

.info-item svg {
  color: var(--gold-primary);
}

.info-item-sep {
  color: rgba(255, 255, 255, 0.2);
}

.top-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-bright);
  font-weight: 700;
  direction: ltr;
}

.top-phone-link:hover {
  color: #FFF;
}

/* Main Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-border);
  z-index: 1000;
  transition: padding 0.3s ease, background 0.3s ease;
  padding: 14px 0;
}

.site-header.is-scrolled {
  padding: 8px 0;
  background: rgba(8, 8, 8, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-branding {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-logo-img {
  height: 62px;
  max-height: 62px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, height 0.3s ease;
  display: block;
}

.site-header.is-scrolled .site-logo-img {
  height: 48px;
  max-height: 48px;
}

.footer-logo-img {
  height: 80px;
  max-height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 8px;
}

.drawer-brand .site-logo-img {
  height: 54px;
  max-height: 54px;
}

/* Desktop Navigation */
.desktop-navigation .nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu .menu-item {
  position: relative;
}

.nav-menu .menu-item a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

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

.nav-menu .menu-item:hover > a,
.nav-menu .current-menu-item > a {
  color: var(--gold-bright);
}

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

/* Mega Dropdown Menu for Services */
.menu-item-has-children:hover .sub-menu-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu-mega {
  position: absolute;
  top: 100%;
  right: -50px;
  width: 520px;
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mega-item {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 10px 14px !important;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: var(--text-main) !important;
  transition: var(--transition);
}

.mega-item:hover {
  background: #202020;
  border-color: var(--gold-primary);
  color: var(--gold-bright) !important;
  transform: translateX(-4px);
}

.mega-item .mega-bullet {
  color: var(--gold-primary);
  font-size: 9px;
}

/* Header Actions */
.header-action-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-header-cta {
  padding: 9px 20px;
  font-size: 0.9rem;
  direction: ltr;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2.5px;
  background: var(--gold-bright);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   5. Mobile Drawer
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100%;
  background: var(--bg-secondary);
  border-left: 1px solid var(--gold-border);
  z-index: 99999;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

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

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gold-border);
  margin-bottom: 24px;
}

.drawer-close {
  color: var(--gold-bright);
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu-list > li {
  margin-bottom: 14px;
}

.mobile-menu-list > li > a,
.mobile-accordion-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: right;
  cursor: pointer;
}

.mobile-accordion-btn svg {
  transition: transform 0.3s ease;
}

.mobile-accordion-btn.is-active svg {
  transform: rotate(180deg);
}

.mobile-sub-list {
  display: none;
  padding: 10px 14px 10px 14px;
  background: #141414;
  border-radius: var(--radius-sm);
  margin-top: 6px;
}

.mobile-sub-list.is-open {
  display: block;
}

.mobile-sub-list li a {
  display: block;
  padding: 8px 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mobile-sub-list li a:hover {
  color: var(--gold-bright);
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 30px;
}

/* ==========================================================================
   6. Cinematic Hero Section
   ========================================================================== */
.hero-cinematic {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.85) 0%, rgba(11, 11, 11, 0.94) 70%, #0B0B0B 100%);
}

.hero-gold-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -20%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(201, 164, 92, 0.15) 0%, rgba(11, 11, 11, 0) 70%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  background: rgba(201, 164, 92, 0.1);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  color: var(--gold-bright);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.badge-icon-diamond {
  color: var(--gold-primary);
  font-size: 10px;
}

.hero-main-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 24px;
  color: #FFFFFF;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero-description {
  font-size: 1.3rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 164, 92, 0.2);
}

.hero-stat-card {
  padding: 16px;
  background: rgba(24, 24, 24, 0.4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.mouse-wheel {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid var(--gold-border);
  border-radius: 12px;
  position: relative;
}

.mouse-wheel::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 6px;
  background: var(--gold-bright);
  border-radius: 2px;
  animation: scrollWheel 1.6s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* ==========================================================================
   7. About Section
   ========================================================================== */
.section-about {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

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

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: visible;
}

.about-main-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-luxury);
}

.image-gold-border {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.6;
}

.about-floating-badge {
  position: absolute;
  bottom: -25px;
  left: 20px;
  background: var(--bg-card);
  border: 1px solid var(--gold-bright);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-gold-hover);
}

.about-floating-badge .badge-icon {
  font-size: 28px;
}

.about-floating-badge .badge-texts strong {
  display: block;
  color: var(--gold-bright);
  font-size: 1.1rem;
}

.about-floating-badge .badge-texts span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-text-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 30px;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.pillar-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.pillar-card:hover {
  border-color: var(--gold-border-bright);
  transform: translateY(-3px);
}

.pillar-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(201, 164, 92, 0.1);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
}

.pillar-content h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-main);
}

.pillar-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   8. Services Grid (14 Services)
   ========================================================================== */
.section-services {
  padding: 110px 0;
  background: var(--bg-primary);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border-bright);
  box-shadow: var(--shadow-gold-hover);
}

.service-media-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.service-media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(24, 24, 24, 0.95) 100%);
}

.service-badge-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(11, 11, 11, 0.8);
  border: 1px solid var(--gold-border);
  color: var(--gold-bright);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.service-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-title a {
  color: var(--text-main);
}

.service-title a:hover {
  color: var(--gold-bright);
}

.service-summary {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: auto;
}

.service-link-cta:hover {
  color: #FFF;
}

.card-gold-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .card-gold-accent {
  opacity: 1;
}

/* ==========================================================================
   9. Process Section
   ========================================================================== */
.section-process {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step-card {
  background: var(--bg-card);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  transition: var(--transition);
}

.process-step-card:hover {
  border-color: var(--gold-border-bright);
  transform: translateY(-5px);
}

.step-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-primary);
  opacity: 0.5;
  margin-bottom: 12px;
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ==========================================================================
   10. Homepage 80-Image Dynamic Gallery
   ========================================================================== */
.section-home-gallery {
  padding: 110px 0;
  background: var(--bg-primary);
}

.gallery-filters-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 45px;
}

.filter-tab {
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--gold-primary);
  color: #0B0B0B;
  border-color: var(--gold-bright);
  box-shadow: 0 4px 15px rgba(201, 164, 92, 0.3);
}

.luxury-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-thumb-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(11, 11, 11, 0.92) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-overlay-content {
  width: 100%;
}

.gallery-cat-badge {
  display: inline-block;
  background: rgba(201, 164, 92, 0.2);
  border: 1px solid var(--gold-border);
  color: var(--gold-bright);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.gallery-item-title {
  font-size: 1rem;
  color: #FFF;
  margin-bottom: 10px;
}

.gallery-zoom-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--gold-primary);
  color: #000;
  border-radius: 50%;
}

/* ==========================================================================
   11. Conversion CTA Section
   ========================================================================== */
.section-luxury-cta {
  padding: 60px 0 100px;
  background: var(--bg-primary);
}

.cta-banner-card {
  position: relative;
  background: linear-gradient(135deg, #181818 0%, #121212 100%);
  border: 1px solid var(--gold-border-bright);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-gold-hover);
}

.cta-glow-effect {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201, 164, 92, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.cta-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.cta-buttons-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   12. Dedicated Single Service Page Layout
   ========================================================================== */
.service-hero-header {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.page-header-compact {
  min-height: 280px;
}

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.85) 0%, rgba(11, 11, 11, 0.96) 100%);
}

.service-hero-inner {
  position: relative;
  z-index: 2;
}

.service-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-bright);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: #FFF;
  margin-bottom: 16px;
}

.service-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.service-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Breadcrumbs */
.dekorat-breadcrumbs {
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb-list a {
  color: var(--gold-bright);
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

.breadcrumb-list .sep {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-list .active {
  color: var(--text-muted);
}

/* Service Main Body Layout */
.section-service-body {
  padding: 80px 0;
  background: var(--bg-primary);
}

.service-layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: flex-start;
}

.content-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 40px;
  margin-bottom: 40px;
}

.content-heading {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.service-rich-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 30px;
}

.service-benefits-section {
  background: #141414;
  border-radius: var(--radius-sm);
  border-right: 4px solid var(--gold-primary);
  padding: 24px;
  margin-bottom: 30px;
}

.benefits-title {
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: var(--gold-bright);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.benefit-check-icon {
  flex-shrink: 0;
  color: var(--gold-bright);
  margin-top: 4px;
}

.benefit-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
}

.service-warranty-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(201, 164, 92, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--text-main);
}

.service-warranty-banner .warranty-icon {
  font-size: 26px;
}

/* Dedicated Service Gallery Grid */
.service-gallery-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 40px;
}

.service-gallery-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 20px;
}

.service-dedicated-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.service-thumb-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.service-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

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

.zoom-badge {
  width: 44px;
  height: 44px;
  background: var(--gold-primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 24px;
}

.contact-card {
  border-color: var(--gold-border);
  background: linear-gradient(180deg, #1A1A1A 0%, #141414 100%);
}

.card-tag {
  display: inline-block;
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.sidebar-heading {
  font-size: 1.15rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-services-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition);
}

.sidebar-services-list li a:hover {
  background: rgba(201, 164, 92, 0.1);
  color: var(--gold-bright);
  transform: translateX(-4px);
}

/* Default Page Layout */
.page-main-container {
  padding: 60px 20px;
}

.page-content-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 40px;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-muted);
}

/* 404 Page */
.section-404 {
  padding: 120px 0;
  text-align: center;
}

.error-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 60px 30px;
}

.error-code {
  font-size: 6rem;
  font-weight: 900;
  color: var(--gold-primary);
  font-family: var(--font-heading);
  line-height: 1;
}

.error-title {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.error-desc {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

/* ==========================================================================
   13. Footer
   ========================================================================== */
.site-footer {
  background: #070707;
  border-top: 1px solid rgba(201, 164, 92, 0.2);
}

.footer-top {
  padding: 80px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
}

.footer-logo-wrap {
  margin-bottom: 20px;
}

.footer-about-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-bright);
  font-size: 0.88rem;
}

.footer-title {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: #FFF;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-menu-list li {
  margin-bottom: 10px;
}

.footer-menu-list li a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-menu-list li a:hover {
  color: var(--gold-bright);
  padding-right: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-contact-item:hover {
  border-color: var(--gold-primary);
  transform: translateX(-4px);
}

.footer-contact-item .icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 164, 92, 0.15);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-item .icon-circle.icon-wa {
  background: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp-color);
}

.footer-contact-item small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-contact-item strong {
  color: var(--text-main);
  direction: ltr;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   14. Mandatory Floating Action Buttons (Fixed Bottom Left)
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999999;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}

.float-phone {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  color: #0B0B0B;
  border: 1px solid var(--gold-bright);
}

.float-phone:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 164, 92, 0.5);
}

.float-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.float-whatsapp:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.btn-ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.6;
  animation: pulseRipple 2s infinite cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

@keyframes pulseRipple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.btn-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--gold-border);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  box-shadow: var(--shadow-luxury);
  direction: ltr;
}

.float-btn:hover .btn-tooltip {
  opacity: 1;
}

/* ==========================================================================
   15. Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1200px) {
  .luxury-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .desktop-navigation,
  .btn-header-cta {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-main-title {
    font-size: 2.8rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-layout-grid {
    grid-template-columns: 1fr;
  }
  .service-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .top-info-bar {
    display: none;
  }
  .hero-main-title {
    font-size: 2.2rem;
  }
  .hero-description {
    font-size: 1.05rem;
  }
  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  /* Requirement: Tablet 2 cols, Mobile 2 cols */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .service-media-wrap {
    height: 150px;
  }
  .service-content {
    padding: 14px;
  }
  .service-title {
    font-size: 1rem;
  }
  .service-summary {
    font-size: 0.82rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .luxury-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gallery-thumb-wrap {
    height: 180px;
  }
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .service-dedicated-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-banner-card {
    padding: 40px 20px;
  }
  .cta-title {
    font-size: 1.8rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-logo-img {
    height: 46px;
    max-height: 46px;
  }
  .float-btn {
    width: 48px;
    height: 48px;
  }
}
