:root {
  --color-bg: #000000;
  --color-bg-alt: #030306;
  --color-surface: #08080d;
  --color-surface-hover: #0d0d14;
  --color-border: rgba(0, 229, 255, 0.14);
  --color-border-strong: rgba(0, 229, 255, 0.32);
  --color-cyan: #00e5ff;
  --color-teal: #00a8b5;
  --color-accent: #00d4e8;
  --gradient: linear-gradient(135deg, #00e5ff 0%, #00c4d4 50%, #00a8b5 100%);
  --gradient-soft: linear-gradient(135deg, rgba(0, 229, 255, 0.18) 0%, rgba(0, 168, 181, 0.04) 100%);
  --gradient-radial: radial-gradient(circle at center, rgba(0, 229, 255, 0.2) 0%, transparent 70%);
  --color-text: #f4f8fc;
  --color-text-muted: #8fa3b8;
  --color-white: #ffffff;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 96px;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-glow: 0 0 80px rgba(0, 229, 255, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
}

::selection {
  background: rgba(0, 229, 255, 0.3);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 110px 0;
  position: relative;
}

/* Page background */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(0, 229, 255, 0.18);
  top: -200px;
  right: -100px;
  animation: floatGlow 14s ease-in-out infinite;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(0, 168, 181, 0.12);
  bottom: 20%;
  left: -150px;
  animation: floatGlow 12s ease-in-out infinite;
}

.glow-3 {
  width: 400px;
  height: 400px;
  background: rgba(0, 229, 255, 0.08);
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.08); }
}

.particles {
  position: absolute;
  inset: 0;
}

.particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-cyan);
  border-radius: 50%;
  opacity: 0.4;
  box-shadow: 0 0 10px var(--color-cyan);
  animation: particleFloat 15s linear infinite;
}

.particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 18s; }
.particles span:nth-child(2) { left: 25%; top: 60%; animation-delay: -3s; animation-duration: 22s; }
.particles span:nth-child(3) { left: 45%; top: 30%; animation-delay: -6s; animation-duration: 16s; }
.particles span:nth-child(4) { left: 70%; top: 75%; animation-delay: -2s; animation-duration: 20s; }
.particles span:nth-child(5) { left: 85%; top: 15%; animation-delay: -8s; animation-duration: 24s; }
.particles span:nth-child(6) { left: 55%; top: 85%; animation-delay: -5s; animation-duration: 19s; }

@keyframes particleFloat {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-120vh) scale(0.5); opacity: 0; }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

/* Section headers */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
}

body[dir="rtl"] .section-tag {
  letter-spacing: 0.05em;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  line-height: 1.15;
  background: linear-gradient(180deg, #fff 0%, rgba(0, 229, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient);
  color: #000;
  box-shadow: 0 4px 28px rgba(0, 229, 255, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 229, 255, 0.45);
}

.btn-glass {
  background: rgba(0, 229, 255, 0.06);
  color: var(--color-cyan);
  border: 1px solid var(--color-border-strong);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(0, 229, 255, 0.12);
  border-color: var(--color-cyan);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 0.88rem;
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--color-border);
  background: rgba(0, 0, 0, 0.92);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.logo-link {
  flex-shrink: 0;
  display: block;
  line-height: 0;
  min-width: 120px;
}

.logo-img {
  height: 72px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

.nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: var(--transition);
  position: relative;
}

body[dir="rtl"] .nav-links a {
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.92rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: var(--transition);
}

body[dir="rtl"] .nav-links a::after {
  left: auto;
  right: 0;
}

.nav-links a:hover {
  color: var(--color-cyan);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-nav {
  padding: 10px 22px;
  font-size: 0.78rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cyan);
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.88) 55%, #000 100%),
    linear-gradient(135deg, rgba(0, 229, 255, 0.12) 0%, transparent 45%),
    url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1920&q=80') center/cover no-repeat;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 229, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-cyan);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
  box-shadow: 0 0 12px var(--color-cyan);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 30%, rgba(0, 229, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-features {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.hero-feature:hover {
  border-color: var(--color-border-strong);
  color: var(--color-cyan);
  transform: translateY(-2px);
}

.hero-feature svg {
  width: 18px;
  height: 18px;
  color: var(--color-cyan);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Stats */
.stats {
  padding: 0;
  margin-top: -1px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: rgba(0, 229, 255, 0.02);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--color-border);
  transition: var(--transition);
}

body[dir="rtl"] .stat-card {
  border-right: none;
  border-left: 1px solid var(--color-border);
}

.stat-card:last-child {
  border-right: none;
}

body[dir="rtl"] .stat-card:last-child {
  border-left: none;
}

.stat-card:hover {
  background: rgba(0, 229, 255, 0.04);
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[dir="rtl"] .stat-label {
  letter-spacing: 0;
  text-transform: none;
}

/* Intro */
.intro {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.intro-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.intro-content p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.intro-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.intro-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: var(--transition);
}

.intro-card:hover {
  border-color: var(--color-border-strong);
  transform: translateX(4px);
}

.intro-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-cyan);
  margin-bottom: 8px;
}

.intro-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Property types */
.property-types {
  background: var(--color-bg);
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.type-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}

.type-card:hover {
  border-color: var(--color-cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.type-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 16px;
}

.type-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.type-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Values */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.value-item strong {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cyan);
}

.value-item span {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* FAQ */
.faq {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: var(--color-border-strong);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--color-cyan);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover {
  color: var(--color-cyan);
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* Services */
.services {
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: linear-gradient(160deg, rgba(0, 229, 255, 0.04) 0%, var(--color-surface) 40%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
  transition: var(--transition);
}

.service-card:hover::after {
  bottom: -20%;
  right: -20%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

body[dir="rtl"] .service-card::before {
  transform-origin: right;
}

.service-card:hover {
  border-color: var(--color-border-strong);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.featured {
  background: var(--gradient-soft);
  border-color: var(--color-border-strong);
}

.service-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 229, 255, 0.06);
  line-height: 1;
}

body[dir="rtl"] .service-num {
  right: auto;
  left: 28px;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-cyan);
  margin-bottom: 24px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.service-card > p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
  line-height: 1.75;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  padding-inline-start: 22px;
  position: relative;
}

.service-features li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--gradient);
  border-radius: 50%;
}

.service-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-cyan);
  letter-spacing: 0.04em;
  transition: var(--transition);
}

body[dir="rtl"] .service-link {
  letter-spacing: 0;
}

.service-link:hover {
  color: var(--color-white);
}

/* Gallery */
.gallery {
  padding: 0 0 110px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 16px;
}

.gallery-item {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-border);
  transition: transform 0.5s ease, border-color var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--color-cyan);
  box-shadow: 0 24px 64px rgba(0, 229, 255, 0.18);
}

.gallery-large {
  grid-row: span 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  z-index: 1;
}

.gallery-overlay span {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cyan);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

/* Why */
.why {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: linear-gradient(145deg, rgba(0, 229, 255, 0.05) 0%, var(--color-surface) 50%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

body[dir="rtl"] .why-card::before {
  transform-origin: right;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  border-color: var(--color-border-strong);
  background: var(--color-surface-hover);
  transform: translateY(-4px);
}

.why-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.08);
  border-radius: var(--radius);
  color: var(--color-cyan);
  margin-bottom: 20px;
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Process */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 0 12px;
}

.step-num {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: var(--color-surface);
  border: 2px solid var(--color-border-strong);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-cyan);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
  transition: var(--transition);
}

.process-step:hover .step-num {
  background: var(--gradient);
  color: #000;
  border-color: transparent;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.4);
  transform: scale(1.08);
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Areas */
.areas {
  padding: 80px 0;
}

.areas-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: var(--gradient-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 56px;
}

.areas-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  margin: 12px 0 16px;
}

.areas-content p {
  color: var(--color-text-muted);
}

.areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

body[dir="rtl"] .areas-tags {
  justify-content: flex-start;
}

.area-tag {
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-cyan);
  transition: var(--transition);
}

.area-tag:hover {
  background: rgba(0, 229, 255, 0.1);
  border-color: var(--color-cyan);
}

/* About */
.about {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-content > p {
  color: var(--color-text-muted);
  margin-bottom: 14px;
  line-height: 1.8;
}

.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--color-border);
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cyan);
}

body[dir="rtl"] .detail-label {
  letter-spacing: 0;
  text-transform: none;
}

.detail-value {
  font-size: 0.92rem;
}

.about-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.about-logo-wrap {
  margin: 0 auto 32px;
  line-height: 0;
}

.about-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.about-card-inner {
  position: relative;
}

.about-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-cyan);
  display: block;
  margin-bottom: 12px;
}

.about-card-inner h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-card-inner p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* CTA */
.cta {
  padding: 100px 0;
}

.cta-inner {
  position: relative;
  text-align: center;
  padding: 80px 48px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
}

.cta-inner p {
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Contact */
.contact {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 20px;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-cyan);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-item h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 8px;
}

body[dir="rtl"] .contact-item h4 {
  letter-spacing: 0;
  text-transform: none;
}

.contact-item p {
  color: var(--color-text-muted);
  line-height: 1.7;
  white-space: pre-line;
}

.contact-item a:hover {
  color: var(--color-cyan);
}

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

body[dir="rtl"] .form-group label {
  letter-spacing: 0;
  text-transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #4a5568;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300e5ff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

body[dir="rtl"] .form-group select {
  background-position: left 16px center;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  margin-top: 16px;
  font-size: 0.85rem;
  text-align: center;
  min-height: 20px;
}

.form-note.success {
  color: #4ade80;
}

/* Footer */
.footer {
  background: #000;
  border-top: 1px solid var(--color-border);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo-wrap {
  margin-bottom: 18px;
  line-height: 0;
}

.footer-logo {
  height: 68px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 20px;
}

body[dir="rtl"] .footer-links h4,
body[dir="rtl"] .footer-contact h4 {
  letter-spacing: 0;
  text-transform: none;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-cyan);
}

.footer-contact p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.footer-contact a:hover {
  color: var(--color-cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

body[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 28px;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-large {
    grid-row: span 1;
    grid-column: span 2;
    min-height: 280px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .areas-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .areas-tags {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    padding: 32px;
    gap: 24px;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(2) {
    border-right: none;
  }

  body[dir="rtl"] .stat-card:nth-child(2) {
    border-left: none;
  }

  .stat-card {
    border-bottom: 1px solid var(--color-border);
  }

  .stat-card:nth-child(3),
  .stat-card:nth-child(4) {
    border-bottom: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .about-details {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero-scroll {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-large {
    grid-column: span 1;
  }

  .gallery-item {
    min-height: 200px;
  }

  .cta-inner {
    padding: 56px 24px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 58px;
    max-width: 170px;
  }

  .about-logo {
    height: 80px;
  }

  .service-card {
    padding: 28px;
  }

  .contact-form {
    padding: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .btn-nav {
    display: none;
  }

  .types-grid {
    grid-template-columns: 1fr;
  }
}
