/* ============================================
   FUTURE ELEGANT DECORATION LEADERS
   Premium Luxury Website Stylesheet
   ============================================ */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --primary: #111111;
  --secondary: #1c1c1c;
  --accent: #D4AF37;
  --accent-light: #e8c84a;
  --accent-dark: #b8952e;
  --bg: #ffffff;
  --bg-alt: #f8f6f1;
  --text: #222222;
  --text-light: #666666;
  --text-muted: #999999;
  --border: rgba(212, 175, 55, 0.2);
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.18);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.25);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 80px;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
em { font-family: var(--font-serif); font-style: italic; color: var(--accent); font-weight: 400; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ---- SELECTION ---- */
::selection { background: var(--accent); color: var(--primary); }

/* ============================================
   LOADING SCREEN
   ============================================ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.3rem;
  margin-bottom: 2rem;
}
.loader-logo span {
  display: inline-block;
  color: var(--accent);
  animation: loaderPop 0.6s ease both;
}
.loader-f { animation-delay: 0s; }
.loader-e { animation-delay: 0.1s; }
.loader-d { animation-delay: 0.2s; }
.loader-l { animation-delay: 0.3s; }

@keyframes loaderPop {
  0% { opacity: 0; transform: translateY(20px) scale(0.8); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.loader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 0 auto 1rem;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--accent);
  animation: loaderProgress 2s ease forwards;
}
@keyframes loaderProgress {
  0% { width: 0; }
  100% { width: 100%; }
}
.loader-text {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  font-family: var(--font-display);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: white;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1) rotate(-5deg); box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6); }
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--primary);
  color: white;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-family: var(--font-display);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: var(--transition);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--primary);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

.back-to-top {
  position: fixed;
  bottom: 100px; right: 30px;
  width: 48px; height: 48px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  z-index: 999;
  opacity: 0; pointer-events: none;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-light); transform: translateY(-3px); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 900;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}
.navbar.scrolled {
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  height: 68px;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-weight: 600;
  margin-top: 2px;
}
.logo-accent { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: var(--accent);
  color: var(--primary) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,17,17,0.92) 0%,
    rgba(17,17,17,0.65) 50%,
    rgba(17,17,17,0.78) 100%
  );
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  color: white;
  margin-bottom: 1.4rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-title em {
  color: var(--accent);
  display: block;
}

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--primary);
  padding: 16px 36px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: white;
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-primary:hover::before { opacity: 0.1; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-primary i { transition: transform var(--transition); }
.btn-primary:hover i { transform: translateX(5px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: 15px 36px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

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

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 20px 40px;
  max-width: 500px;
  margin: 0 auto;
}
.hero-stat { text-align: center; padding: 0 28px; }
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  display: block;
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 35px; left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}
.scroll-indicator {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  margin: 0 auto 8px;
  position: relative;
  overflow: hidden;
}
.scroll-indicator span {
  display: block;
  width: 4px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown {
  0% { top: 6px; opacity: 1; }
  80% { top: 22px; opacity: 0; }
  100% { top: 6px; opacity: 0; }
}
.hero-scroll p {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section { padding: 100px 0; }
.section-dark { background: var(--primary); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header { text-align: center; margin-bottom: 70px; }

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  position: relative;
}
.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin: 0 10px;
}

.section-title { margin-bottom: 18px; }
.section-title.light { color: white; }
.section-desc { max-width: 560px; margin: 0 auto; color: var(--text-light); font-size: 1.05rem; }
.section-desc.light { color: rgba(255,255,255,0.55); }

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--bg-alt); }

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

.about-images {
  position: relative;
  height: 580px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%;
  height: 88%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.about-img-main:hover img { transform: scale(1.04); }
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid white;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-float {
  position: absolute;
  top: 50%; left: -28px;
  transform: translateY(-50%);
  background: var(--accent);
  color: var(--primary);
  text-align: center;
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
}
.about-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.about-badge-text {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-content { padding-right: 20px; }
.about-intro {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.about-text {
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.9;
}

.about-mvv { display: flex; flex-direction: column; gap: 20px; }
.mvv-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: white;
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.mvv-item:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.mvv-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}
.mvv-item h4 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--primary);
}
.mvv-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(180deg, rgba(212,175,55,0.08) 0%, transparent 100%);
  transition: height 0.4s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover {
  border-color: rgba(212,175,55,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.service-icon {
  width: 58px; height: 58px;
  background: rgba(212,175,55,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.05);
}

.service-card h3 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 12px;
  font-weight: 600;
}
.service-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.8;
}

.service-hover-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.4s ease;
}
.service-card:hover .service-hover-line { width: 100%; }

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.filter-btn {
  padding: 10px 24px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid #e0e0e0;
  border-radius: 100px;
  background: transparent;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  box-shadow: var(--shadow-gold);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.portfolio-item { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.portfolio-wide { grid-column: span 2; }
.portfolio-tall { grid-row: span 2; }
.portfolio-item.hidden { display: none; }

.portfolio-img-wrap {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
}
.portfolio-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.portfolio-item:hover .portfolio-img-wrap img { transform: scale(1.08); }

.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(17,17,17,0.92) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-info { color: white; }
.portfolio-cat {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.portfolio-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.portfolio-info p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

.portfolio-zoom {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  align-self: flex-end;
  transition: var(--transition);
}
.portfolio-zoom:hover { background: white; transform: scale(1.1); }

.portfolio-cta {
  text-align: center;
  margin-top: 50px;
}

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox[hidden] { display: none; }
.lightbox-bg {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: pointer;
}
.lightbox-inner {
  position: relative; z-index: 1;
  max-width: 1100px;
  max-height: 90vh;
  text-align: center;
}
.lightbox-inner img {
  max-height: 80vh;
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
#lightboxTitle {
  color: white;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-top: 16px;
  opacity: 0.7;
}
.lightbox-close {
  position: absolute;
  top: -50px; right: 0;
  width: 40px; height: 40px;
  color: white;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--accent); color: var(--primary); }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  position: relative;
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover { border-color: rgba(212,175,55,0.25); transform: translateY(-5px); }

.why-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(212,175,55,0.1);
  line-height: 1;
  margin-bottom: 16px;
  position: absolute;
  top: 20px; right: 24px;
}
.why-icon {
  width: 52px; height: 52px;
  background: rgba(212,175,55,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--accent); color: var(--primary); }
.why-card h3 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 12px;
  font-weight: 600;
}
.why-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.8;
}

/* ============================================
   STATISTICS
   ============================================ */
.stats {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.stats-bg {
  position: absolute; inset: 0;
}
.stats-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.stats-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.96), rgba(28,28,28,0.94));
}

.stats-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 40px 30px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.7;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  color: white;
  line-height: 1;
  display: inline;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: inline;
  vertical-align: middle;
}
.stat-item p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-top: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--bg-alt); }

.testi-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.testi-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testi-card {
  min-width: 100%;
  padding: 50px 60px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}
.testi-quote {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0.6;
}
.testi-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 32px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-author img {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}
.testi-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}
.testi-author span {
  font-size: 0.82rem;
  color: var(--text-light);
}
.testi-stars { color: var(--accent); font-size: 0.75rem; margin-top: 4px; }
.testi-stars i { margin-right: 1px; }

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.testi-prev, .testi-next {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.testi-prev:hover, .testi-next:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e0e0e0;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.testi-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ============================================
   PROCESS
   ============================================ */
.process-timeline { max-width: 780px; margin: 0 auto; position: relative; }
.process-timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50px;
  width: 1px;
  background: rgba(212,175,55,0.2);
}

.process-step {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  margin-bottom: 50px;
  position: relative;
}
.process-step:last-child { margin-bottom: 0; }

.process-num {
  flex-shrink: 0;
  width: 100px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(212,175,55,0.2);
  line-height: 1;
  padding-top: 8px;
  text-align: center;
  position: relative;
}
.process-num::after {
  content: '';
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.2);
}

.process-content {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  transition: var(--transition);
}
.process-content:hover {
  border-color: rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.04);
}

.process-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.process-content h3 {
  color: white;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.process-content p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.8;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-info-item:last-of-type { border-bottom: none; margin-bottom: 32px; padding-bottom: 0; }
.contact-info-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: rgba(212,175,55,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
}
.contact-info-item h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.contact-info-item a, .contact-info-item p, .contact-info-item span {
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}
.contact-info-item a:hover { color: var(--accent); }

.contact-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--accent); color: var(--primary); transform: translateY(-3px); }

/* ---- FORM ---- */
.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 50px 48px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 22px;
  position: relative;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e8e8e8;
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.form-group input.error,
.form-group textarea.error { border-color: #e53935; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error {
  display: block;
  font-size: 0.75rem;
  color: #e53935;
  margin-top: 5px;
  min-height: 16px;
}
.form-success {
  text-align: center;
  padding: 24px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius);
  margin-top: 20px;
}
.form-success i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.form-success p {
  color: var(--text);
  font-size: 0.9rem;
}

/* ============================================
   MAP
   ============================================ */
.map-section { position: relative; height: 500px; }
.map-container { width: 100%; height: 100%; position: relative; }
.map-container iframe {
  width: 100%; height: 100%;
  filter: grayscale(0.3) contrast(1.02);
}
.map-overlay-text {
  position: absolute;
  top: 50%; left: 60px;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(17,17,17,0.92);
  border: 1px solid rgba(212,175,55,0.3);
  backdrop-filter: blur(16px);
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  max-width: 340px;
}
.map-overlay-text h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.map-overlay-text p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-top {
  background: var(--primary);
  padding: 80px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 1.9;
  margin-bottom: 24px;
  max-width: 320px;
}
.footer-social {
  display: flex; gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--primary); }

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.footer-links ul li {
  margin-bottom: 12px;
}
.footer-links ul a {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links ul a::before {
  content: '›';
  color: var(--accent);
  font-size: 1rem;
}
.footer-links ul a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
}
.footer-contact-item i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  background: #0a0a0a;
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}
.footer-arabic {
  font-family: 'Noto Sans Arabic', 'Arial', sans-serif;
  font-size: 0.82rem !important;
  color: rgba(212,175,55,0.4) !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .container { padding: 0 30px; }
  .about-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; display: flex; gap: 40px; align-items: flex-start; }
  .footer-brand p { margin-bottom: 0; }
}

@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .portfolio-wide, .portfolio-tall { grid-column: auto; grid-row: auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 30px; }
  .contact-info-item { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
  .contact-social { grid-column: 1 / -1; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .section { padding: 70px 0; }
  .container { padding: 0 20px; }

  /* Navbar mobile */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(17,17,17,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px 30px 40px;
    gap: 0;
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link {
    padding: 14px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
  }
  .nav-link::after { display: none; }
  .nav-cta { margin-top: 16px; justify-content: center; }

  /* Hero */
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
  .hero-stat-divider { width: 60px; height: 1px; }
  .hero-badge { font-size: 0.65rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 320px; justify-content: center; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-content { padding-right: 0; }
  .about-images { height: 380px; }
  .about-badge-float { left: 0; top: auto; bottom: -20px; transform: none; }

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

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

  /* Testimonials */
  .testi-card { padding: 36px 28px; }

  /* Process */
  .process-timeline::before { left: 40px; }
  .process-num { width: 80px; font-size: 2rem; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 36px 28px; }
  .contact-info { grid-template-columns: 1fr; }

  /* Map */
  .map-section { height: 700px; flex-direction: column; display: flex; }
  .map-container { flex: 1; position: relative; height: 100%; }
  .map-overlay-text {
    position: relative;
    top: auto; left: auto;
    transform: none;
    max-width: 100%;
    border-radius: 0;
    text-align: center;
  }
  .map-overlay-text .btn-primary { margin: 0 auto; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { flex-direction: column; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* Float */
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .back-to-top { bottom: 86px; right: 20px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-bottom: none; }
  .portfolio-filters { gap: 6px; }
  .filter-btn { padding: 8px 16px; font-size: 0.72rem; }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .navbar, .whatsapp-float, .back-to-top, #loader, .hero-scroll { display: none !important; }
  .hero { height: auto; padding: 60px 0; }
  .section { padding: 40px 0; }
  * { box-shadow: none !important; }
}
