/* ============================================
   Home Page (Landing) Styles
   ============================================ */
:root {
  --gold: #d4a84b;
  --gold-light: #e8c87a;
  --navy: #1a2332;
  --navy-dark: #0f1521;
}

/* Phone number LTR fix for RTL pages */
.phone-ltr,
a[href^="tel:"],
.footer-contact .phone-num {
  direction: ltr;
  unicode-bidi: embed;
  display: inline-block;
  text-align: left;
  letter-spacing: 0.5px;
}

/* Reset body for public pages */
body.public-page {
  direction: rtl;
  background: #fff;
  color: #1a2332;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  transition: all 0.3s;
  padding: 0 24px;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-logo-icon {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.header-logo h1 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  transition: color 0.3s;
}
.header-logo p {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
  transition: color 0.3s;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
}
.header-nav a:hover {
  color: var(--gold);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-cta .phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.header-cta .btn-chat {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--gold), #c4903a);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* When not scrolled: white text */
.site-header:not(.scrolled) .header-logo h1,
.site-header:not(.scrolled) .header-logo p,
.site-header:not(.scrolled) .header-nav a,
.site-header:not(.scrolled) .phone-link {
  color: #fff;
}
/* When scrolled: dark text */
.site-header.scrolled .header-logo h1 {
  color: var(--navy);
}
.site-header.scrolled .header-logo p {
  color: #64748b;
}
.site-header.scrolled .header-nav a {
  color: var(--navy);
}
.site-header.scrolled .phone-link {
  color: var(--navy);
}

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  font-size: 28px;
}
.mobile-menu {
  display: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  margin-top: 8px;
  padding: 16px;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 12px;
  color: var(--navy);
  font-weight: 500;
  border-radius: 8px;
}
.mobile-menu a:hover {
  background: #f8fafc;
  color: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a2332 0%, #0f1521 50%, #1a2332 100%);
  overflow: hidden;
  padding: 80px 24px 40px;
}
.hero-deco1 {
  position: absolute;
  top: 80px;
  left: 40px;
  width: 300px;
  height: 300px;
  background: rgba(212, 168, 75, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}
.hero-deco2 {
  position: absolute;
  bottom: 80px;
  right: 40px;
  width: 400px;
  height: 400px;
  background: rgba(212, 168, 75, 0.05);
  border-radius: 50%;
  filter: blur(80px);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  padding: 8px 20px;
  margin-bottom: 32px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.hero-badge span {
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 500;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero h1 .gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .subtitle {
  font-size: clamp(18px, 3vw, 26px);
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.hero .desc {
  font-size: clamp(16px, 2vw, 20px);
  color: #94a3b8;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}
.hero-btns .btn-gold {
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold), #c4903a);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(212, 168, 75, 0.4);
  transition: transform 0.2s;
}
.hero-btns .btn-gold:hover {
  transform: translateY(-2px);
}
.hero-btns .btn-outline {
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}
.hero-btns .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 600px;
  margin: 0 auto;
}
.hero-stats .stat-num {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: var(--gold);
}
.hero-stats .stat-text {
  color: #94a3b8;
  font-size: 14px;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}
.scroll-dot {
  width: 6px;
  height: 12px;
  background: var(--gold);
  border-radius: 4px;
  animation: pulse 2s infinite;
}

/* Services */
.services {
  padding: 100px 24px;
  background: #f8fafc;
}
.section-tag {
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
  text-align: center;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 16px;
}
.section-desc {
  color: #64748b;
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fef9e7, #fde68a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-features {
  list-style: none;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-size: 14px;
  margin-bottom: 8px;
}
.service-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-link {
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

/* About */
.about {
  padding: 100px 24px;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.about-visual {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy), #0f1521);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-visual .logo {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin-bottom: 32px;
  box-shadow: none;
}
.about-visual h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.about-visual .role {
  color: #fff;
  font-size: 18px;
  margin-bottom: 32px;
}
.about-visual .mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  max-width: 240px;
}
.about-visual .mini-stat .num {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}
.about-visual .mini-stat .txt {
  color: #94a3b8;
  font-size: 13px;
}
.about-text .section-tag {
  text-align: right;
}
.about-text h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.3;
}
.about-text h2 .gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-text p {
  color: #64748b;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  gap: 14px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: #fef9e7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.feature-item h4 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 15px;
}
.feature-item p {
  color: #64748b;
  font-size: 13px;
}

/* Contact */
.contact {
  padding: 100px 24px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
}
.contact-info-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 168, 75, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.contact-info-item h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-info-item p,
.contact-info-item a {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}
.contact-info-item a:hover {
  color: var(--gold);
}
.social-proof {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  margin-top: 20px;
}
.social-proof .stars {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.social-proof p {
  color: #94a3b8;
  font-size: 13px;
}
.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form label {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}
.contact-form .form-group {
  margin-bottom: 16px;
}
.contact-form .submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), #c4903a);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(212, 168, 75, 0.3);
  transition: transform 0.2s;
}
.contact-form .submit-btn:hover {
  transform: translateY(-1px);
}
.contact-form .submit-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  box-shadow: none;
}
.success-msg {
  text-align: center;
  padding: 48px 0;
}
.success-msg .check {
  width: 80px;
  height: 80px;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 40px;
}
.success-msg h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.success-msg p {
  color: #64748b;
  font-size: 15px;
}

/* Footer */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 64px 24px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer-brand h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-brand .role {
  color: #fff;
  font-size: 14px;
  margin-bottom: 20px;
}
.footer-brand p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s;
}
.footer-social a:hover {
  background: var(--gold);
}
.footer-links h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  color: #94a3b8;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 12px;
}
.footer-contact li .fi {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  color: #64748b;
  font-size: 13px;
}
.footer-bottom a {
  color: #64748b;
  font-size: 13px;
  margin-right: 24px;
}
.footer-bottom a:hover {
  color: var(--gold);
}

@media (max-width: 1024px) {
  .header-nav,
  .header-cta .phone-link {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
