/* ═══════════════════════════════════════════════════════
   VerticalPro — Modern Design System
═══════════════════════════════════════════════════════ */
:root {
  --primary: #b45309;
  --primary-light: #d97706;
  --secondary: #78350f;
  --accent: #fbbf24;
  --accent-glow: rgba(251,191,36,.35);
  --text: #0f0a00;
  --text-muted: #6b5e4e;
  --text-light: #a8967e;
  --bg: #ffffff;
  --bg-alt: #fdf8f3;
  --bg-card: #ffffff;
  --border: #ede8e0;
  --border-light: #f5f0e8;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 20px 40px rgba(0,0,0,.12), 0 8px 16px rgba(0,0,0,.06);
  --shadow-xl: 0 32px 64px rgba(0,0,0,.16);
  --shadow-glow: 0 0 40px rgba(180,83,9,.25);
  --font: 'Inter', sans-serif;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --transition-fast: all .15s cubic-bezier(.4,0,.2,1);
  --transition-slow: all .5s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── Navbar ─────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: .75rem 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(237,232,224,.6);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  padding: .5rem 0;
}
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav-logo {
  font-size: 1.4rem; font-weight: 800; color: white;
  display: flex; align-items: center; gap: .5rem;
  letter-spacing: -.02em; transition: var(--transition);
}
#navbar.scrolled .nav-logo { color: var(--primary); }
.nav-logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); display: inline-block;
}
.nav-links {
  display: flex; list-style: none; gap: .25rem; align-items: center;
}
.nav-links a {
  padding: .5rem .9rem; border-radius: 50px;
  color: rgba(255,255,255,.85); font-weight: 500; font-size: .9rem;
  transition: var(--transition); white-space: nowrap;
}
#navbar.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: white; background: rgba(255,255,255,.15); }
#navbar.scrolled .nav-links a:hover { color: var(--primary); background: rgba(180,83,9,.08); }
.nav-links a.active { color: white; background: rgba(255,255,255,.2); }
#navbar.scrolled .nav-links a.active { color: var(--primary); background: rgba(180,83,9,.1); }
.nav-links a.btn-nav-cta {
  background: var(--primary); color: white !important;
  padding: .5rem 1.25rem; font-weight: 600;
  box-shadow: 0 2px 12px rgba(180,83,9,.4);
}
.nav-links a.btn-nav-cta:hover { background: var(--secondary); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(180,83,9,.5); }
.nav-links a.btn-nav-designer {
  background: rgba(251,191,36,.12); color: var(--accent) !important;
  padding: .5rem 1.1rem; font-weight: 600;
  border: 1px solid rgba(251,191,36,.3);
}
.nav-links a.btn-nav-designer:hover { background: rgba(251,191,36,.22); transform: translateY(-1px); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px; transition: var(--transition);
}
#navbar.scrolled .nav-toggle span { background: var(--text); }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 7rem 2rem 5rem;
  position: relative; overflow: hidden;
  background: #0f0a00;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(180,83,9,.55) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(120,53,15,.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(251,191,36,.12) 0%, transparent 60%),
    linear-gradient(180deg, #0f0a00 0%, #1c0f00 50%, #0f0a00 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px; top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(180,83,9,.3) 0%, transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px; bottom: -50px; right: -50px;
  background: radial-gradient(circle, rgba(251,191,36,.15) 0%, transparent 70%);
  animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(.95); }
}
.hero-content { position: relative; z-index: 2; max-width: 860px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem 1.1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px; font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.9); margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: fadeSlideDown .8s ease both;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -.03em;
  color: white; margin-bottom: 1.75rem;
  animation: fadeSlideUp .8s .1s ease both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.7);
  margin-bottom: 3rem; max-width: 580px; margin-left: auto; margin-right: auto;
  line-height: 1.75; animation: fadeSlideUp .8s .2s ease both;
}
.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeSlideUp .8s .3s ease both;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.4); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  animation: fadeIn 1s 1s ease both;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(.5);opacity:.4} }
@keyframes fadeSlideDown { from{opacity:0;transform:translateY(-16px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeSlideUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  text-decoration: none; border: 2px solid transparent;
  transition: var(--transition); position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: rgba(255,255,255,.15); opacity: 0; transition: var(--transition-fast);
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
  color: white; box-shadow: 0 4px 20px rgba(180,83,9,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(180,83,9,.5); }
.btn-outline {
  background: transparent; color: white;
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }
.btn-solid {
  background: var(--primary); color: white;
  box-shadow: 0 4px 16px rgba(180,83,9,.3);
}
.btn-solid:hover { background: var(--secondary); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(180,83,9,.45); }
.btn-ghost {
  background: transparent; color: var(--primary);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--bg-alt); border-color: var(--primary); }

/* ── Layout ──────────────────────────────────────────── */
section { padding: 6rem 2rem; }
.section-alt { background: var(--bg-alt); }
.container { max-width: 1280px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--primary); font-weight: 700; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; flex: 1; height: 1px; width: 24px; background: var(--primary); opacity: .4;
}
.section-header h2 {
  font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800;
  letter-spacing: -.03em; color: var(--text); margin-bottom: 1.25rem; line-height: 1.15;
}
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto; line-height: 1.75; }

/* ── Stats Banner ────────────────────────────────────── */
.stats-banner {
  background: linear-gradient(135deg, #0f0a00 0%, #1c0f00 50%, #0f0a00 100%);
  color: white; padding: 4rem 2rem; position: relative; overflow: hidden;
}
.stats-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(180,83,9,.2) 0%, transparent 70%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center; position: relative; z-index: 1;
}
.stats-grid > div {
  padding: 1.5rem; border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  transition: var(--transition);
}
.stats-grid > div:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
.stat-number {
  font-size: 2.75rem; font-weight: 900; letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.55); margin-top: .35rem; font-weight: 500; }

/* ── Services Carousel ───────────────────────────────── */
.services-carousel-wrap { position: relative; }
.services-carousel-nav {
  display: flex; align-items: center; justify-content: flex-end;
  margin-bottom: 1.5rem; gap: .5rem;
}
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-alt); border: 1.5px solid var(--border);
  color: var(--text); font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); line-height: 1;
}
.carousel-btn:hover:not(:disabled) { background: var(--primary); border-color: var(--primary); color: white; transform: scale(1.08); }
.carousel-btn:disabled { opacity: .3; cursor: not-allowed; }
.services-carousel-outer { overflow: hidden; }
.services-carousel {
  display: grid;
  grid-template-columns: repeat(var(--svc-count, 6), calc((100% - 3 * 1.5rem) / 4));
  gap: 1.5rem;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
/* on the services page (full grid, no carousel) */
.services-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .services-carousel {
    grid-template-columns: repeat(var(--svc-count, 6), calc((100% - 1 * 1.5rem) / 2));
  }
}
@media (max-width: 640px) {
  .services-carousel {
    grid-template-columns: repeat(var(--svc-count, 6), calc(100% - 0px));
  }
}
.service-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  padding: 2.25rem; border: 1px solid var(--border-light);
  transition: var(--transition); cursor: default; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(180,83,9,.04) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(180,83,9,.2); }
.service-card:hover::before { opacity: 1; }
.service-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(180,83,9,.12), rgba(251,191,36,.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.5rem;
  border: 1px solid rgba(180,83,9,.15);
}
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .75rem; letter-spacing: -.01em; }
.service-card p { color: var(--text-muted); font-size: .93rem; line-height: 1.7; }
.service-price {
  display: inline-block; margin-top: 1.25rem; padding: .3rem .9rem;
  background: rgba(180,83,9,.08); color: var(--primary);
  border-radius: 50px; font-weight: 700; font-size: .85rem;
  border: 1px solid rgba(180,83,9,.15);
}
.service-arrow {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: 1.25rem; color: var(--primary); font-size: .85rem; font-weight: 600;
  opacity: 0; transform: translateX(-8px); transition: var(--transition);
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ── About ───────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; }
.about-image-main {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 60%, #0f0a00 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; box-shadow: var(--shadow-xl);
  position: relative; overflow: hidden;
}
.about-image-main::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(251,191,36,.1) 0%, transparent 60%);
}
.about-image-main img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: white; border-radius: var(--radius); padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border-light);
  display: flex; align-items: center; gap: .75rem;
}
.about-badge-icon { font-size: 1.75rem; }
.about-badge-text strong { display: block; font-weight: 800; font-size: 1.25rem; color: var(--primary); }
.about-badge-text span { font-size: .8rem; color: var(--text-muted); }
.about-content .section-eyebrow { justify-content: flex-start; }
.about-content .section-eyebrow::after { display: none; }
.about-content h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: 1.5rem; line-height: 1.15; }
.about-content p { color: var(--text-muted); margin-bottom: 1.1rem; font-size: 1rem; line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2.5rem 0; }
.about-stat {
  padding: 1.25rem; background: var(--bg-alt); border-radius: var(--radius);
  border: 1px solid var(--border-light); text-align: center;
  transition: var(--transition);
}
.about-stat:hover { border-color: rgba(180,83,9,.25); background: rgba(180,83,9,.04); }
.about-stat .stat-number { font-size: 1.75rem; font-weight: 900; color: var(--primary); background: none; -webkit-text-fill-color: var(--primary); }
.about-stat .stat-label { font-size: .78rem; color: var(--text-light); margin-top: .2rem; }

/* ── Team ────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.team-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center; border: 1px solid var(--border-light);
  transition: var(--transition); position: relative; overflow: hidden;
}
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card:hover::before { transform: scaleX(1); }
.team-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; margin: 0 auto 1.25rem; overflow: hidden;
  box-shadow: 0 4px 16px rgba(180,83,9,.3);
  border: 3px solid white; outline: 2px solid rgba(180,83,9,.2);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-weight: 700; margin-bottom: .3rem; font-size: 1.05rem; }
.team-card .role { color: var(--primary); font-size: .82rem; font-weight: 700; margin-bottom: .9rem; letter-spacing: .04em; text-transform: uppercase; }
.team-card p { color: var(--text-muted); font-size: .88rem; line-height: 1.65; }

/* ── Testimonials ────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  padding: 2.25rem; border: 1px solid var(--border-light);
  position: relative; transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(180,83,9,.15); }
.testimonial-quote {
  font-size: 3.5rem; line-height: 1; color: var(--accent); opacity: .3;
  font-family: Georgia, serif; margin-bottom: .5rem; display: block;
}
.stars { color: var(--accent); margin-bottom: 1rem; font-size: 1rem; letter-spacing: .1em; }
.testimonial-card > p { color: var(--text-muted); font-size: .95rem; line-height: 1.8; margin-bottom: 1.75rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .9rem; padding-top: 1.25rem; border-top: 1px solid var(--border-light); }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: .9rem; overflow: hidden; flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info strong { display: block; font-weight: 700; font-size: .95rem; }
.author-info span { font-size: .82rem; color: var(--text-light); }

/* ── Blog ────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.blog-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); overflow: hidden; transition: var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-image {
  height: 220px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 60%, #0f0a00 100%);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
  overflow: hidden; position: relative;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.06); }
.blog-card-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--primary); color: white;
  padding: .25rem .75rem; border-radius: 50px; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.blog-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: .78rem; color: var(--text-light); margin-bottom: .75rem; display: flex; align-items: center; gap: .5rem; }
.blog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-light); }
.blog-card h3 { font-weight: 700; margin-bottom: .75rem; font-size: 1.1rem; line-height: 1.4; letter-spacing: -.01em; }
.blog-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin-bottom: 1.25rem; flex: 1; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--primary); font-weight: 700; font-size: .88rem;
  transition: var(--transition);
}
.blog-read-more:hover { gap: .7rem; }

/* ── Contact ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3.5rem; align-items: start; }
.contact-info h3 { font-size: 1.75rem; font-weight: 800; margin-bottom: .75rem; letter-spacing: -.02em; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.75; }
.contact-item {
  display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start;
  padding: 1.25rem; border-radius: var(--radius); background: var(--bg-alt);
  border: 1px solid var(--border-light); transition: var(--transition);
}
.contact-item:hover { border-color: rgba(180,83,9,.2); background: rgba(180,83,9,.03); }
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(180,83,9,.12), rgba(251,191,36,.1));
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  border: 1px solid rgba(180,83,9,.15);
}
.contact-item strong { display: block; font-weight: 700; font-size: .9rem; margin-bottom: .2rem; }
.contact-item p { color: var(--text-muted); font-size: .9rem; }
.contact-form-wrap {
  background: white; padding: 2.75rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border-light);
}
.contact-form-wrap h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 1.75rem; letter-spacing: -.02em; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: .45rem; color: var(--text); }
input, textarea, select {
  width: 100%; padding: .8rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font); font-size: .93rem;
  transition: var(--transition); background: var(--bg); color: var(--text);
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(180,83,9,.1);
}
textarea { resize: vertical; min-height: 130px; }
.form-success {
  background: #d1fae5; color: #065f46; padding: 1rem 1.25rem;
  border-radius: var(--radius-sm); margin-top: 1rem; display: none;
  font-weight: 600; font-size: .9rem;
}

/* ── Page Hero ───────────────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, #0f0a00 0%, #1c0f00 50%, #2d1200 100%);
  color: white; padding: 9rem 2rem 5rem; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(180,83,9,.4) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 900; letter-spacing: -.03em; margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.page-breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: 1.5rem;
}
.page-breadcrumb a { color: rgba(255,255,255,.6); transition: var(--transition); }
.page-breadcrumb a:hover { color: var(--accent); }

.page-body { max-width: 900px; margin: 0 auto; padding: 5rem 2rem; }
.page-body h2 { font-size: 1.85rem; font-weight: 800; margin: 2.5rem 0 1rem; letter-spacing: -.02em; }
.page-body h3 { font-size: 1.35rem; font-weight: 700; margin: 2rem 0 .75rem; }
.page-body p { color: var(--text-muted); margin-bottom: 1.25rem; font-size: 1.05rem; line-height: 1.85; }
.page-body ul, .page-body ol { color: var(--text-muted); padding-left: 1.5rem; margin-bottom: 1.25rem; }
.page-body li { margin-bottom: .5rem; line-height: 1.75; }

/* ── Blog Post ───────────────────────────────────────── */
.blog-post-hero {
  background: linear-gradient(160deg, #0f0a00 0%, #1c0f00 50%, #2d1200 100%);
  color: white; padding: 9rem 2rem 5rem; text-align: center; position: relative; overflow: hidden;
}
.blog-post-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(180,83,9,.4) 0%, transparent 70%);
}
.blog-post-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.blog-post-hero h1 { font-size: clamp(1.9rem, 4.5vw, 3.25rem); font-weight: 900; letter-spacing: -.03em; margin-bottom: 1rem; line-height: 1.15; }
.blog-post-meta { display: flex; align-items: center; justify-content: center; gap: .75rem; color: rgba(255,255,255,.55); font-size: .88rem; flex-wrap: wrap; }
.blog-post-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.3); }
.blog-post-body { max-width: 780px; margin: 0 auto; padding: 4.5rem 2rem; }
.blog-post-body p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.05rem; line-height: 1.9; }
.blog-post-body h2 { font-size: 1.6rem; font-weight: 800; margin: 2.5rem 0 1rem; letter-spacing: -.02em; }
.blog-post-body h3 { font-size: 1.25rem; font-weight: 700; margin: 2rem 0 .75rem; }
.blog-post-body strong { color: var(--text); }

/* ── CTA Section ─────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0f0a00 0%, #1c0f00 40%, #2d1200 70%, #0f0a00 100%);
  color: white; text-align: center; padding: 6rem 2rem; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(180,83,9,.3) 0%, transparent 70%);
}
.cta-section-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-section h2 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 900; letter-spacing: -.03em; margin-bottom: 1.25rem; line-height: 1.1; }
.cta-section p { color: rgba(255,255,255,.7); font-size: 1.1rem; margin-bottom: 2.5rem; line-height: 1.75; }
.cta-section .btn-primary { font-size: 1rem; padding: 1rem 2.5rem; }

/* ── Footer ──────────────────────────────────────────── */
#footer {
  background: #080500; color: rgba(255,255,255,.45);
  padding: 5rem 2rem 2rem; position: relative; overflow: hidden;
}
#footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180,83,9,.5), rgba(251,191,36,.3), rgba(180,83,9,.5), transparent);
}
.footer-container { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2.5fr 1fr 1.5fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand-logo { font-size: 1.5rem; font-weight: 900; color: white; letter-spacing: -.03em; margin-bottom: 1rem; display: flex; align-items: center; gap: .4rem; }
.footer-brand p { font-size: .9rem; line-height: 1.75; max-width: 320px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.5rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); text-decoration: none; font-size: .85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-2px); }
.footer-links h4, .footer-contact h4 { color: white; font-weight: 700; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: rgba(255,255,255,.45); text-decoration: none; font-size: .9rem; transition: var(--transition); }
.footer-links a:hover { color: white; padding-left: .25rem; }
.footer-contact p { font-size: .9rem; margin-bottom: .6rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .82rem; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── Scroll to top ───────────────────────────────────── */
#scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: white; border: none;
  font-size: 1.1rem; cursor: pointer;
  box-shadow: 0 4px 20px rgba(180,83,9,.5);
  opacity: 0; transition: var(--transition); pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { background: var(--secondary); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(180,83,9,.6); }

/* ── Spinner ─────────────────────────────────────────── */
.spinner {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Animations ──────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Lang Switcher ───────────────────────────────────── */
.lang-switcher {
  background: rgba(255,255,255,.12); color: white;
  border: 1px solid rgba(255,255,255,.2); border-radius: 50px;
  padding: .4rem 1rem; font-size: .82rem; font-weight: 700;
  cursor: pointer; transition: var(--transition); flex-shrink: 0;
  font-family: var(--font); backdrop-filter: blur(10px);
}
.lang-switcher:hover { background: rgba(255,255,255,.2); }
#navbar.scrolled .lang-switcher { background: rgba(180,83,9,.1); color: var(--primary); border-color: rgba(180,83,9,.25); }
#navbar.scrolled .lang-switcher:hover { background: rgba(180,83,9,.18); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { right: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  section { padding: 4rem 1.25rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
    flex-direction: column; padding: 1rem; gap: .25rem;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text-muted) !important; }
  .nav-links a:hover { color: var(--primary) !important; }
  .lang-switcher { background: rgba(180,83,9,.1); color: var(--primary); border-color: rgba(180,83,9,.2); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .about-badge { position: static; margin-top: 1.5rem; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 1.75rem; }
}

/* ── RTL Support ─────────────────────────────────────── */
[dir="rtl"] body { font-family: 'Cairo', sans-serif; }
[dir="rtl"] .nav-container { flex-direction: row-reverse; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .nav-links.open { flex-direction: column; }
[dir="rtl"] .section-eyebrow { flex-direction: row-reverse; }
[dir="rtl"] .section-eyebrow::before { display: none; }
[dir="rtl"] .section-eyebrow::after { display: block; }
[dir="rtl"] .about-content .section-eyebrow { flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .about-grid, [dir="rtl"] .contact-grid, [dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .hero-content, [dir="rtl"] .section-header { direction: rtl; }
[dir="rtl"] .service-card, [dir="rtl"] .team-card, [dir="rtl"] .testimonial-card { direction: rtl; text-align: right; }
[dir="rtl"] .testimonial-author { flex-direction: row-reverse; }
[dir="rtl"] .contact-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .blog-card-body { direction: rtl; text-align: right; }
[dir="rtl"] .page-body, [dir="rtl"] .blog-post-body { direction: rtl; text-align: right; }
[dir="rtl"] .about-content { direction: rtl; text-align: right; }
[dir="rtl"] .footer-brand, [dir="rtl"] .footer-links, [dir="rtl"] .footer-contact { text-align: right; }
[dir="rtl"] .footer-links a:hover { padding-left: 0; padding-right: .25rem; }
[dir="rtl"] .hero-buttons { flex-direction: row-reverse; }
[dir="rtl"] .lang-switcher { margin-left: 0; margin-right: .75rem; }
[dir="rtl"] .blog-meta { flex-direction: row-reverse; }
[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
[dir="rtl"] .footer-social { flex-direction: row-reverse; }
[dir="rtl"] .service-arrow { flex-direction: row-reverse; }
[dir="rtl"] input, [dir="rtl"] textarea, [dir="rtl"] select { text-align: right; direction: rtl; }

/* ── Project Gallery ─────────────────────────────────── */
.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.project-gallery-item {
  aspect-ratio: 4/3; border-radius: var(--radius);
  overflow: hidden; cursor: pointer; position: relative;
  background: var(--bg-alt);
}
.project-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.project-gallery-item:hover img { transform: scale(1.07); }
.project-gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 60%);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: .85rem; opacity: 0; transition: var(--transition);
}
.project-gallery-item:hover .project-gallery-overlay { opacity: 1; }
.project-gallery-overlay p { color: white; font-size: .85rem; font-weight: 600; }
.project-gallery-overlay span { font-size: 1.2rem; }

/* ── Lightbox ────────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.95); align-items: center; justify-content: center;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  flex-direction: column;
}
.lightbox.open { display: flex; }

.lightbox-img-wrap {
  position: relative; display: flex; align-items: center; justify-content: center;
  flex: 1; width: 100%; overflow: hidden; cursor: zoom-in;
}
.lightbox-img-wrap.zoomed { cursor: zoom-out; }

#lightbox-img {
  max-width: 88vw; max-height: 80vh;
  border-radius: var(--radius); box-shadow: 0 32px 80px rgba(0,0,0,.6);
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s ease;
  transform-origin: center center;
  user-select: none; -webkit-user-drag: none;
}
#lightbox-img.lb-entering { animation: lbIn .28s ease both; }
#lightbox-img.lb-leaving-left { animation: lbOutLeft .22s ease both; }
#lightbox-img.lb-leaving-right { animation: lbOutRight .22s ease both; }
@keyframes lbIn { from{opacity:0;transform:scale(.93) translateY(12px)} to{opacity:1;transform:scale(1) translateY(0)} }
@keyframes lbOutLeft { to{opacity:0;transform:translateX(-60px) scale(.95)} }
@keyframes lbOutRight { to{opacity:0;transform:translateX(60px) scale(.95)} }

/* Nav arrows */
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: white; font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); backdrop-filter: blur(10px); z-index: 2;
  user-select: none;
}
.lightbox-arrow:hover { background: rgba(255,255,255,.25); transform: translateY(-50%) scale(1.08); }
.lightbox-arrow.prev { left: 1.25rem; }
.lightbox-arrow.next { right: 1.25rem; }
.lightbox-arrow:disabled { opacity: .25; pointer-events: none; }

/* Top bar */
.lightbox-topbar {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; z-index: 3;
  background: linear-gradient(to bottom, rgba(0,0,0,.6), transparent);
}
.lightbox-counter { color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 600; letter-spacing: .05em; }
.lightbox-title { color: white; font-size: .95rem; font-weight: 600; flex: 1; text-align: center; padding: 0 1rem; }
.lightbox-actions { display: flex; gap: .5rem; }
.lightbox-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  color: white; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); backdrop-filter: blur(10px);
}
.lightbox-btn:hover { background: rgba(255,255,255,.25); }

/* Thumbnails strip */
.lightbox-thumbs {
  display: flex; gap: .5rem; padding: 1rem 1.5rem;
  overflow-x: auto; max-width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  scrollbar-width: none;
}
.lightbox-thumbs::-webkit-scrollbar { display: none; }
.lightbox-thumb {
  width: 60px; height: 45px; border-radius: 6px; overflow: hidden;
  cursor: pointer; flex-shrink: 0; opacity: .5;
  border: 2px solid transparent; transition: var(--transition);
}
.lightbox-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lightbox-thumb.active { opacity: 1; border-color: var(--accent); transform: scale(1.08); }
.lightbox-thumb:hover { opacity: .85; }
