:root {
  --primary: #0A2540;
  --primary-light: #1a3a5c;
  --secondary: #00D4AA;
  --accent: #C5A572;
  --accent-light: #D4B88A;
  --text: #1a1a2e;
  --text-light: #4a5568;
  --text-muted: #718096;
  --bg: #ffffff;
  --bg-alt: #f7f9fc;
  --bg-dark: #0A2540;
  --border: #e2e8f0;
  --border-light: #edf2f7;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.logo-tagline {
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary) !important;
  color: white !important;
  padding: 12px 24px !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--primary-light) !important;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(197, 165, 114, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(10, 37, 64, 0.05) 0%, transparent 50%);
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 165, 114, 0.1) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: pulse 8s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(10, 37, 64, 0.08) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: pulse 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  animation: float 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.3; }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 170, 0.1);
  color: #00a884;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge svg {
  stroke: #00a884;
}

h1 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 24px;
}

.hero-greeting {
  display: block;
  font-size: 18px;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-name {
  display: block;
  font-size: 56px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-title {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
}

.hero-description {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(10, 37, 64, 0.25);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 37, 64, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(10, 37, 64, 0.05);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #b8956a 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(197, 165, 114, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 165, 114, 0.5);
}

.btn-chat {
  position: relative;
}

.chat-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  background: rgba(197, 165, 114, 0.3);
  animation: chat-pulse-anim 2s ease-out infinite;
  pointer-events: none;
}

@keyframes chat-pulse-anim {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

.btn-large {
  padding: 18px 32px;
  font-size: 16px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

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

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-profile-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  text-align: center;
  position: relative;
  border: 1px solid var(--border-light);
  max-width: 380px;
  margin-left: auto;
}

.profile-frame {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
}

.profile-frame-border {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 50%, var(--secondary) 100%);
  animation: rotate-border 8s linear infinite;
}

@keyframes rotate-border {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.profile-image-container {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  background: white;
  padding: 6px;
}

.profile-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #1a4670 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-initials {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: white;
  letter-spacing: -2px;
}

.profile-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 165, 114, 0.2) 0%, transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.profile-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.profile-info p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.profile-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-alt);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}

.profile-badge svg {
  stroke: var(--secondary);
}

.profile-quick-contact {
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.quick-chat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--accent) 0%, #b8956a 100%);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
}

.quick-chat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 165, 114, 0.4);
}

.quick-chat-btn svg {
  stroke: white;
}

.hero-accent-cards {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 380px;
  margin-left: auto;
}

.accent-card {
  flex: 1;
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

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

.accent-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.accent-icon svg {
  stroke: white;
}

.accent-icon.gold {
  background: linear-gradient(135deg, var(--accent) 0%, #b8956a 100%);
}

.accent-icon.gold svg {
  fill: white;
  stroke: none;
}

.accent-content {
  display: flex;
  flex-direction: column;
}

.accent-content strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.accent-content span {
  font-size: 12px;
  color: var(--text-muted);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.trust-banner {
  background: var(--bg-dark);
  padding: 40px 0;
}

.trust-text {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
}

.trust-item svg {
  opacity: 0.5;
}

.trust-item span {
  font-weight: 500;
  font-size: 14px;
}

.section {
  padding: 100px 0;
}

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

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(197, 165, 114, 0.15) 0%, rgba(197, 165, 114, 0.05) 100%);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
}

.services-section {
  background: var(--bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card.featured {
  grid-row: span 2;
  background: linear-gradient(135deg, white 0%, var(--bg-alt) 100%);
  border: 2px solid var(--accent);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  stroke: white;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 16px;
}

.service-features {
  list-style: none;
  margin-bottom: 20px;
}

.service-features li {
  padding: 8px 0;
  color: var(--text);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 10px;
  color: var(--accent);
}

.process-section {
  background: var(--bg);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.2);
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-light);
}

.uae-section {
  background: var(--bg-alt);
}

.uae-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.uae-text .section-badge {
  margin-bottom: 16px;
}

.uae-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.uae-intro {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 36px;
}

.uae-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(197, 165, 114, 0.2) 0%, rgba(197, 165, 114, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  stroke: var(--accent);
}

.benefit-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.uae-stats-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 40px;
  border-radius: var(--radius-lg);
  color: white;
  position: sticky;
  top: 120px;
}

.uae-stats-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}

.stat-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-section {
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

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

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-rating svg {
  fill: #fbbf24;
  stroke: none;
}

.testimonial-text {
  font-size: 16px;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 16px;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--primary);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

.about-section {
  background: var(--bg-alt);
}

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

.about-image {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: white;
  padding: 24px 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.exp-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
}

.exp-text {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text .section-badge {
  margin-bottom: 16px;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.about-subtitle {
  font-size: 18px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
}

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

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.highlight-item svg {
  stroke: var(--secondary);
  flex-shrink: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0d2d4d 100%);
  padding: 100px 0;
}

.cta-card {
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.cta-feature svg {
  stroke: var(--secondary);
}

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

.cta-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.decoration-circle:nth-child(1) {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
}

.decoration-circle:nth-child(2) {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -50px;
}

.decoration-circle:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 10%;
  border: 1px solid rgba(197, 165, 114, 0.1);
}

.footer {
  background: #030f1d;
  padding: 80px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.footer-logo .logo-name {
  color: white;
}

.footer-logo .logo-tagline {
  color: var(--accent);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  color: white;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: var(--transition);
}

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

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .hero-profile-card {
    max-width: 340px;
    margin: 0 auto;
    padding: 32px;
  }
  
  .hero-accent-cards {
    max-width: 340px;
    margin: 0 auto;
  }
  
  .profile-frame {
    width: 150px;
    height: 150px;
  }
  
  .profile-initials {
    font-size: 48px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-card.featured {
    grid-row: auto;
  }
  
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .uae-content {
    grid-template-columns: 1fr;
  }
  
  .uae-stats-card {
    position: static;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image-placeholder {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-light);
    z-index: 999;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
  }
  
  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }
  
  .mobile-menu-btn {
    display: flex;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero {
    padding: 100px 0 40px;
    overflow-x: hidden;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .hero-text {
    text-align: center;
    order: 2;
  }
  
  .hero-badge {
    margin: 0 auto 20px;
  }
  
  .hero-name {
    font-size: 36px;
  }
  
  .hero-title {
    font-size: 16px;
  }
  
  .hero-description {
    font-size: 15px;
    margin: 0 auto 24px;
    max-width: 100%;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .stat {
    text-align: center;
    min-width: 90px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-label {
    font-size: 11px;
  }
  
  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
    min-height: 50px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  .hero-visual {
    order: 1;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-profile-card {
    max-width: 320px;
    width: 100%;
    padding: 24px;
    margin: 0 auto;
  }
  
  .profile-frame {
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
  }
  
  .profile-initials {
    font-size: 36px;
  }
  
  .profile-info h3 {
    font-size: 22px;
  }
  
  .profile-info p {
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  .profile-badges {
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .profile-badge {
    font-size: 11px;
    padding: 5px 10px;
  }
  
  .profile-quick-contact {
    padding-top: 16px;
  }
  
  .quick-chat-btn {
    padding: 14px 20px;
    font-size: 14px;
    min-height: 50px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
  }
  
  .hero-accent-cards {
    flex-direction: row;
    gap: 10px;
    max-width: 320px;
    width: 100%;
    margin-top: 16px;
  }
  
  .accent-card {
    padding: 12px;
    flex: 1;
  }
  
  .accent-icon {
    width: 36px;
    height: 36px;
  }
  
  .accent-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .accent-content strong {
    font-size: 13px;
  }
  
  .accent-content span {
    font-size: 10px;
  }
  
  .trust-banner {
    padding: 30px 0;
  }
  
  .trust-text {
    font-size: 12px;
    margin-bottom: 16px;
  }
  
  .trust-logos {
    gap: 16px;
  }
  
  .trust-item {
    flex-direction: column;
    gap: 4px;
  }
  
  .trust-item svg {
    width: 20px;
    height: 20px;
  }
  
  .trust-item span {
    font-size: 11px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .section-header p {
    font-size: 15px;
  }
  
  .section-badge {
    font-size: 11px;
    padding: 6px 14px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .service-card {
    padding: 24px;
  }
  
  .service-card h3 {
    font-size: 18px;
  }
  
  .service-card p {
    font-size: 14px;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
  }
  
  .service-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .step-number {
    width: 56px;
    height: 56px;
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .step-content h3 {
    font-size: 16px;
  }
  
  .step-content p {
    font-size: 13px;
  }
  
  .uae-text h2 {
    font-size: 28px;
  }
  
  .uae-intro {
    font-size: 15px;
  }
  
  .benefit-item {
    gap: 14px;
  }
  
  .benefit-icon {
    width: 44px;
    height: 44px;
  }
  
  .benefit-item h4 {
    font-size: 15px;
  }
  
  .benefit-item p {
    font-size: 13px;
  }
  
  .uae-stats-card {
    padding: 28px;
  }
  
  .uae-stats-card h3 {
    font-size: 20px;
  }
  
  .stat-value {
    font-size: 26px;
  }
  
  .testimonials-grid {
    gap: 16px;
  }
  
  .testimonial-card {
    padding: 24px;
  }
  
  .testimonial-text {
    font-size: 14px;
  }
  
  .about-highlights {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
  
  .cta-content p {
    font-size: 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-chat {
    min-height: 50px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  .chat-pulse {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 90px 0 30px;
  }
  
  .hero-name {
    font-size: 30px;
  }
  
  .hero-title {
    font-size: 14px;
  }
  
  .hero-description {
    font-size: 14px;
  }
  
  .section-header h2 {
    font-size: 24px;
  }
  
  .profile-frame {
    width: 90px;
    height: 90px;
  }
  
  .profile-initials {
    font-size: 32px;
  }
  
  .profile-info h3 {
    font-size: 20px;
  }
  
  .hero-accent-cards {
    flex-direction: column;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .stat-label {
    font-size: 10px;
  }
}
