/* AALKC.com - Amanat Al-Kalima Company - Scrap Trading, Dammam, Saudi Arabia */

:root {
  --primary: #b8922a;
  --primary-dark: #9a7720;
  --primary-light: #fdf5e4;
  --secondary: #0f2240;
  --accent: #f59e0b;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 8px 10px rgba(0,0,0,0.06);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.6;
  font-size: 16px;
}

html[lang="ar"] body {
  font-family: 'Cairo', 'Tahoma', 'Arial', sans-serif;
}

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

a:hover {
  color: var(--primary-dark);
}

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

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

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--gray-200);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--gray-700);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--primary-light);
  color: var(--primary);
}

.nav-links .nav-cta {
  background: var(--primary);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius);
  margin-left: 0.5rem;
}

.nav-links .nav-cta:hover {
  background: var(--primary-dark);
  color: var(--white);
}

/* Language toggle button */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  margin-left: 0.75rem;
  white-space: nowrap;
  font-family: inherit;
}

.lang-toggle:hover {
  background: var(--primary);
  color: var(--white);
}

html[lang="ar"] .lang-toggle {
  margin-left: 0;
  margin-right: 0.75rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--radius);
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--secondary) 0%, #0d1f2e 50%, var(--gray-900) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217,119,6,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: #fcd34d;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fcd34d;
  border-radius: 50%;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero-content h1 span {
  color: #fbbf24;
}

.hero-content p {
  font-size: 1.1rem;
  color: #d1d5db;
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 380px;
  backdrop-filter: blur(10px);
}

.hero-card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
}

.hero-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.hero-card p {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

/* Hero info (replaces fake stats) */
.hero-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #d1d5db;
}

.hero-info-item a {
  color: #fbbf24;
  text-decoration: none;
}

.hero-info-item a:hover {
  color: var(--white);
}

.hero-info-icon {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(184,146,42,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: #1a3560;
  border-color: #1a3560;
  color: var(--white);
  transform: translateY(-1px);
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== FEATURES / HIGHLIGHTS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition);
}

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

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== SERVICES OVERVIEW ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.service-icon {
  width: 46px;
  height: 46px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}

.service-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.4rem;
}

.service-info p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== CTA BAND ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  color: #fde68a;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--gray-900) 100%);
  padding: 120px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.1rem;
  color: #fde68a;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.about-section {
  padding: 80px 0;
}

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

.about-visual {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-light) 0%, #dbeafe 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 2px solid var(--gray-200);
}

.about-img-placeholder svg {
  width: 72px;
  height: 72px;
  stroke: var(--primary);
  opacity: 0.6;
}

.about-img-placeholder span {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.about-badge .big {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge .small {
  font-size: 0.8rem;
  opacity: 0.85;
}

.about-text .section-label {
  text-align: left;
}

.about-text .section-title {
  text-align: left;
  max-width: none;
  margin-bottom: 0;
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-text .btn {
  margin-top: 1rem;
}

.values-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.values-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b8922a' stroke-width='3'%3E%3Cpolyline points='20,6 9,17 4,12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.team-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}

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

.team-avatar {
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar svg {
  width: 40px;
  height: 40px;
  stroke: var(--primary);
}

.team-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.team-card .role {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== SERVICES PAGE ===== */
.services-section {
  padding: 80px 0;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-detail-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(26,86,219,0.15);
}

.service-detail-card .featured-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 0 var(--radius-lg) 0 var(--radius);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.service-detail-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-detail-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--primary);
}

.service-detail-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.service-detail-card .service-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.service-features li {
  font-size: 0.875rem;
  color: var(--gray-700);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b8922a' stroke-width='2.5'%3E%3Cpolyline points='20,6 9,17 4,12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.process-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-steps::before {
  display: none;
}

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

.step-number {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.process-step h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.825rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
}

.contact-item-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-900);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-item-text span {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.75rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  color: var(--gray-900);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(184,146,42,0.12);
  background: var(--white);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-submit {
  margin-top: 0.5rem;
}

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

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #166534;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-brand .logo span {
  color: #fbbf24;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 260px;
  color: var(--gray-400);
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom p {
  color: var(--gray-400);
}

.footer-bottom a {
  color: var(--gray-400);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-fade-up {
  animation: fadeInUp 0.65s ease both;
}

.animate-fade-up-delay-1 { animation-delay: 0.1s; }
.animate-fade-up-delay-2 { animation-delay: 0.2s; }
.animate-fade-up-delay-3 { animation-delay: 0.3s; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .services-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem 24px;
    gap: 0.25rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-200);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-badge {
    position: static;
    display: inline-block;
    margin-top: 1rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .services-detail-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 11px 20px;
    font-size: 0.9rem;
  }
}

/* ===== BILINGUAL / RTL SUPPORT ===== */

/* Company name bilingual display in hero */
.company-name-en {
  display: block;
}
.company-name-ar {
  display: block;
  font-size: 0.75em;
  color: #fbbf24;
  letter-spacing: 0;
  margin-top: 0.25rem;
}

/* RTL layout fixes */
html[dir="rtl"] .nav-content {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-links .nav-cta {
  margin-left: 0;
  margin-right: 0.5rem;
}

html[dir="rtl"] .hero-inner {
  direction: rtl;
}

html[dir="rtl"] .hero-content p {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .hero-actions {
  direction: rtl;
  justify-content: flex-start;
}

html[dir="rtl"] .hero-badge {
  direction: rtl;
}

html[dir="rtl"] .section-header {
  direction: rtl;
}

html[dir="rtl"] .section-label,
html[dir="rtl"] .section-title,
html[dir="rtl"] .section-subtitle {
  text-align: center;
}

html[dir="rtl"] .feature-card,
html[dir="rtl"] .service-card,
html[dir="rtl"] .service-detail-card {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .service-features {
  text-align: right;
  padding-right: 0;
}

html[dir="rtl"] .service-features li {
  flex-direction: row-reverse;
}

html[dir="rtl"] .service-features li::before {
  margin-left: 0;
  /* flip checkmark for RTL */
  transform: scaleX(-1);
}

html[dir="rtl"] .contact-item {
  flex-direction: row-reverse;
  text-align: right;
}

html[dir="rtl"] .contact-item-text strong,
html[dir="rtl"] .contact-item-text span {
  text-align: right;
}

html[dir="rtl"] .about-grid {
  direction: rtl;
}

html[dir="rtl"] .about-badge {
  right: auto;
  left: -20px;
}

html[dir="rtl"] .about-text .section-label,
html[dir="rtl"] .about-text .section-title {
  text-align: right;
}

html[dir="rtl"] .values-list li {
  flex-direction: row-reverse;
}

html[dir="rtl"] .values-list li::before {
  transform: scaleX(-1);
}

html[dir="rtl"] .process-step {
  direction: rtl;
}

html[dir="rtl"] .footer-grid {
  direction: rtl;
}

html[dir="rtl"] .footer-bottom {
  direction: rtl;
  flex-direction: row-reverse;
}

html[dir="rtl"] .footer-brand p {
  text-align: right;
}

html[dir="rtl"] .footer-col h4 {
  text-align: right;
}

html[dir="rtl"] .footer-col ul li a {
  text-align: right;
  display: block;
}

html[dir="rtl"] .hero-info {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .hero-info-item {
  flex-direction: row-reverse;
}

html[dir="rtl"] .form-group label {
  text-align: right;
}

html[dir="rtl"] .form-group input,
html[dir="rtl"] .form-group select,
html[dir="rtl"] .form-group textarea {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .contact-form-card h3 {
  text-align: right;
}

html[dir="rtl"] .contact-info h2,
html[dir="rtl"] .contact-info > p {
  text-align: right;
}

html[dir="rtl"] .page-header h1,
html[dir="rtl"] .page-header p {
  direction: rtl;
}

html[dir="rtl"] .cta-section h2,
html[dir="rtl"] .cta-section p {
  direction: rtl;
}



/* ===== COMPANY INFO SECTION ===== */
.company-info-section {
  padding: 60px 0;
  background: var(--secondary);
  color: var(--white);
}

.company-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.company-info-item h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.company-info-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.company-info-item a {
  color: #fbbf24;
  text-decoration: none;
}

.company-info-item a:hover {
  color: var(--primary);
}

/* Override colors for company info section on dark background */
.company-info-section .company-info-item p {
  color: rgba(255,255,255,0.85);
}

.company-info-section .company-info-item a {
  color: #fbbf24;
}

.company-info-section .company-info-item a:hover {
  color: var(--white);
}

/* ===== WHATSAPP BUTTON ===== */
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
}

/* ===== GOOGLE MAPS PLACEHOLDER ===== */
.map-placeholder {
  width: 100%;
  height: 320px;
  background: var(--gray-100);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--gray-600);
  margin-top: 2rem;
}

.map-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: var(--primary);
  opacity: 0.5;
}

.map-placeholder p {
  font-size: 0.9rem;
  color: var(--gray-600);
  text-align: center;
}

.map-placeholder a {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
}

/* ===== CONTACT QUICK-ACTIONS ===== */
.contact-quick-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-quick-actions .btn {
  justify-content: center;
  width: 100%;
}

/* ===== VALUES CARDS ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-3px);
}

.value-card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: block;
}

.value-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .company-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .company-info-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  html[dir="rtl"] .company-info-grid {
    text-align: right;
  }
  html[dir="rtl"] .nav-links {
    left: auto;
    right: 0;
    transform: translateX(100%);
  }
  html[dir="rtl"] .nav-links.active {
    transform: translateX(0);
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lang-toggle {
    padding: 5px 10px;
    font-size: 0.8rem;
  }
}

/* ===== CTA ACTIONS ROW ===== */
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== ARABIC TYPOGRAPHY OVERRIDES ===== */
html[lang="ar"] .company-info-item h4 {
  text-transform: none;
  letter-spacing: 0;
}

/* ===== PREMIUM ENHANCEMENTS ===== */

/* --- Enhanced CSS Variables --- */
:root {
  --primary-gradient: linear-gradient(135deg, #c9a23a 0%, #b8922a 50%, #9a7720 100%);
  --gold-sheen: #d4af5a;
  --shadow-glow: 0 0 30px rgba(184,146,42,0.18);
  --shadow-glow-lg: 0 0 50px rgba(184,146,42,0.22);
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius-xl: 18px;
  --radius-2xl: 24px;
}

/* --- Premium Body & Typography --- */
body {
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Premium Scrollbar --- */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* --- Premium Navbar --- */
.navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(184,146,42,0.12);
  transition: box-shadow var(--transition-smooth), background var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1), 0 1px 0 rgba(184,146,42,0.15);
}

.logo {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.55rem;
  letter-spacing: -0.75px;
}

.logo span {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a3a6e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand .logo,
.footer-brand .logo span {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.footer-brand .logo {
  color: var(--primary);
}

.footer-brand .logo span {
  color: #fbbf24;
}

.nav-links a {
  position: relative;
  transition: color var(--transition-smooth);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: 2px;
  transition: left var(--transition-smooth), right var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  left: 8%;
  right: 8%;
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-links .nav-cta {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(184,146,42,0.35);
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth), background var(--transition-smooth);
}

.nav-links .nav-cta:hover {
  box-shadow: 0 4px 20px rgba(184,146,42,0.5);
  transform: translateY(-1px);
  background: var(--primary-dark);
}

.lang-toggle {
  border-radius: 50px;
  letter-spacing: 0.3px;
  transition: all var(--transition-smooth);
}

.lang-toggle:hover {
  background: var(--primary-gradient);
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(184,146,42,0.35);
}

/* --- Premium Hero --- */
.hero {
  background: linear-gradient(135deg, #0a1a2e 0%, #0f2240 40%, #152d4a 70%, #0d1f2e 100%);
}

.hero::before {
  background: radial-gradient(ellipse at center, rgba(212,175,90,0.22) 0%, rgba(245,158,11,0.08) 40%, transparent 70%);
  width: 700px;
  height: 700px;
  top: -30%;
  right: -15%;
}

.hero::after {
  background: radial-gradient(ellipse at center, rgba(184,146,42,0.12) 0%, transparent 70%);
  width: 500px;
  height: 500px;
}

/* Gold shimmer accent line above hero */
.hero-inner::before {
  display: none;
}

.hero-badge {
  background: linear-gradient(135deg, rgba(212,175,90,0.18) 0%, rgba(245,158,11,0.08) 100%);
  border: 1px solid rgba(212,175,90,0.35);
  color: #fde68a;
  padding: 7px 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.hero-badge::before {
  background: radial-gradient(circle, #fde68a 0%, #fbbf24 100%);
  box-shadow: 0 0 6px rgba(251,191,36,0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251,191,36,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(251,191,36,0); }
}

.hero-content h1 {
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(212,175,90,0.22);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), var(--shadow-glow), inset 0 1px 0 rgba(255,255,255,0.1);
}

.hero-card-icon {
  background: var(--primary-gradient);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(184,146,42,0.4);
}

.hero-info {
  border-top: 1px solid rgba(212,175,90,0.2);
}

/* --- Premium Buttons --- */
.btn {
  transition: all var(--transition-smooth);
  font-weight: 600;
  letter-spacing: 0.15px;
}

.btn-primary {
  background: var(--primary-gradient);
  border: none;
  box-shadow: 0 2px 10px rgba(184,146,42,0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d4af5a 0%, #c9a23a 50%, #b8922a 100%);
  box-shadow: 0 6px 20px rgba(184,146,42,0.5);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline {
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

.btn-outline-primary {
  position: relative;
  overflow: hidden;
}

.btn-outline-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 4px 14px rgba(184,146,42,0.2);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
  box-shadow: 0 2px 10px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2de070 0%, #1da851 100%);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transform: translateY(-2px);
}

/* --- Premium Section Headers --- */
.section-label {
  position: relative;
  padding-bottom: 6px;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

html[dir="rtl"] .section-label::after {
  left: 50%;
  transform: translateX(-50%);
}

.about-text .section-label::after {
  left: 0;
  transform: none;
}

html[dir="rtl"] .about-text .section-label::after {
  left: auto;
  right: 0;
  transform: none;
}

.section-title {
  letter-spacing: -0.75px;
}

/* --- Premium Feature Cards --- */
.feature-card {
  border-radius: var(--radius-xl);
  transition: all var(--transition-smooth);
  background: linear-gradient(160deg, var(--white) 0%, var(--gray-50) 100%);
}

.feature-card::before {
  height: 3px;
  background: var(--primary-gradient);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  transition: opacity var(--transition-smooth);
}

.feature-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.1), var(--shadow-glow);
  transform: translateY(-6px);
  border-color: rgba(184,146,42,0.18);
}

.feature-icon {
  background: linear-gradient(135deg, var(--primary-light) 0%, #fef9ec 100%);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 2px 4px rgba(184,146,42,0.12);
  transition: all var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  background: var(--primary-gradient);
  box-shadow: 0 4px 16px rgba(184,146,42,0.35);
}

.feature-card:hover .feature-icon svg {
  stroke: var(--white);
}

/* --- Premium Value Cards --- */
.value-card {
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--white) 0%, var(--gray-50) 100%);
  transition: all var(--transition-smooth);
  border: 1px solid var(--gray-200);
}

.value-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.09), var(--shadow-glow);
  transform: translateY(-4px);
  border-color: rgba(184,146,42,0.2);
}

/* --- Premium Service Cards --- */
.service-card {
  border-radius: var(--radius-xl);
  transition: all var(--transition-smooth);
}

.service-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.09), var(--shadow-glow);
  transform: translateY(-3px);
  border-color: rgba(184,146,42,0.2);
}

/* --- Premium Service Detail Cards --- */
.service-detail-card {
  border-radius: var(--radius-xl);
  transition: all var(--transition-smooth);
}

.service-detail-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.1), var(--shadow-glow);
  transform: translateY(-8px);
}

.service-detail-card.featured {
  border-color: var(--primary);
  background: linear-gradient(160deg, #fffcf2 0%, var(--white) 100%);
  box-shadow: var(--shadow-glow);
}

/* --- Premium About Placeholder --- */
.about-img-placeholder {
  background: linear-gradient(135deg, #fff8e7 0%, #f0f9ff 50%, #fdf5e4 100%);
  border: 2px solid rgba(184,146,42,0.2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
}

.about-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(212,175,90,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.about-img-placeholder svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(184,146,42,0.3));
}

/* --- Premium CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, #c9a23a 0%, var(--primary) 35%, #0f2240 65%, #0a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2,
.cta-section p {
  position: relative;
  z-index: 1;
}

.cta-section .cta-actions {
  position: relative;
  z-index: 1;
}

/* --- Premium Page Header --- */
.page-header {
  background: linear-gradient(135deg, #0a1a2e 0%, #0f2240 40%, #152d4a 70%, #0d1f2e 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(212,175,90,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.page-header h1,
.page-header p {
  position: relative;
  z-index: 1;
}

.page-header p {
  color: rgba(253,230,138,0.9);
}

/* --- Premium Company Info Strip --- */
.company-info-section {
  background: linear-gradient(135deg, #0a1a2e 0%, #0f2240 50%, #0a1a2e 100%);
  border-top: 1px solid rgba(212,175,90,0.15);
  border-bottom: 1px solid rgba(212,175,90,0.15);
  position: relative;
  overflow: hidden;
}

.company-info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-gradient);
}

.company-info-item h4 {
  color: var(--gold-sheen);
  font-size: 0.78rem;
  letter-spacing: 2px;
}

/* --- Premium Footer --- */
.footer {
  background: linear-gradient(180deg, #0d1520 0%, #0a1018 100%);
  border-top: 1px solid rgba(184,146,42,0.12);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--primary-gradient);
  opacity: 0.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-col h4 {
  color: var(--white);
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.footer-col ul li a:hover {
  color: #fbbf24;
}

/* --- Premium Contact Form Card --- */
.contact-form-card {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(184,146,42,0.06);
  background: linear-gradient(160deg, var(--white) 0%, #fffdf8 100%);
  transition: box-shadow var(--transition-smooth);
}

.contact-form-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.1), var(--shadow-glow);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(184,146,42,0.15), 0 1px 4px rgba(184,146,42,0.1);
  border-color: var(--primary);
}

/* --- Premium Map Placeholder --- */
.map-placeholder {
  background: linear-gradient(135deg, var(--gray-50) 0%, #f9f7f2 100%);
  border: 2px dashed rgba(184,146,42,0.25);
  border-radius: var(--radius-xl);
  transition: border-color var(--transition-smooth);
}

.map-placeholder:hover {
  border-color: rgba(184,146,42,0.45);
}

/* --- Premium Process Steps --- */
.step-number {
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
  border: 2px solid var(--primary);
  box-shadow: 0 2px 10px rgba(184,146,42,0.2), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: all var(--transition-smooth);
}

.process-step:hover .step-number {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(184,146,42,0.4);
}

/* --- Subtle section-alt enhancement --- */
.section-alt {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

/* --- Enhanced Reveal Animation --- */
.reveal {
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Focus accessibility --- */
.btn:focus-visible,
.lang-toggle:focus-visible,
.nav-links a:focus-visible {
  outline: 3px solid rgba(184,146,42,0.6);
  outline-offset: 3px;
}
