/* ───────────── VARIABLES & RESET ───────────── */
:root { --navy: #0d1b2a; --navy-dark: #07111c; --gold: #b8942a; --gold-light: #e8c45c; --cream: #f8f4ec; --white: #ffffff; --gray: #6b7280; --border: rgba(184,148,42,0.25); --shadow: 0 4px 20px rgba(0,0,0,0.1); --shadow-lg: 0 16px 48px rgba(0,0,0,0.15); --nav-red: #d9534f; }
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--navy); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { font-family: 'Cormorant Garamond', serif; font-weight: 500; line-height: 1.2; color: var(--white); }
p, span, li, a { color: var(--navy); }
a { text-decoration: none; transition: color 0.25s; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; width: 100%; }

/* ───────────── TOP BAR & HEADER ───────────── */
.top-bar { background: var(--navy-dark); color: var(--white); padding: 0.4rem 0; font-size: 0.8rem; position: fixed; top: 0; left: 0; right: 0; z-index: 1001; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 60px; flex-wrap: wrap; gap: 1rem; }
.top-bar-info { display: flex; gap: 1.5rem; align-items: center; }
.top-bar-info span { display: flex; align-items: center; gap: 0.4rem; color: var(--white); }
.top-bar-info i { color: var(--gold); }
.header { background: var(--white); position: fixed; top: 32px; left: 0; right: 0; z-index: 1000; transition: all 0.4s ease; box-shadow: 0 2px 10px rgba(0,0,0,0.05); border-bottom: 1px solid #eee; }
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.header-content { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 60px; height: 90px; }
.logo img { height: 65px; width: auto; }
.nav-menu { display: flex; list-style: none; gap: 1.5rem; align-items: center; height: 100%; flex: 1; justify-content: center; }
.nav-menu a { text-decoration: none; color: var(--gray); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em; transition: color 0.25s; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; position: relative; padding: 0; }
.nav-num { font-size: 0.75rem; font-weight: 400; color: #9ca3af; margin-bottom: 2px; transition: color 0.25s; }
.nav-menu a:hover { color: var(--navy); }
.nav-menu a:hover .nav-num { color: var(--navy); }
.nav-menu a.active { color: var(--navy) !important; font-weight: 600; }
.nav-menu a.active .nav-num { color: var(--navy) !important; }
.nav-menu a.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--nav-red); }
.btn-cta { background: var(--gold); color: var(--white) !important; padding: 0.6rem 1.4rem !important; border-radius: 2px; font-weight: 600; transition: all 0.25s; display: flex; flex-direction: row !important; align-items: center !important; margin-left: 1rem; }
.btn-cta:hover { background: var(--gold-light); color: var(--navy) !important; transform: translateY(-2px); }
.header-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.language-dropdown { position: relative; }
.lang-btn { background: transparent; border: none; color: var(--white); padding: 0.3rem 0.6rem; border-radius: 4px; cursor: pointer; font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 0.6rem; transition: all 0.2s; min-height: 44px; }
.lang-btn:hover { background: rgba(255,255,255,0.1); }
.flag-icon { width: 24px; height: 16px; object-fit: cover; border-radius: 2px; box-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.lang-btn i { font-size: 0.7rem; margin-left: 0.3rem; transition: transform 0.2s; }
.lang-dropdown-content { display: none; position: absolute; top: 100%; right: 0; background: var(--white); min-width: 280px; max-height: 400px; overflow-y: auto; border-radius: 4px; box-shadow: var(--shadow-lg); z-index: 1002; border: 1px solid #e5e7eb; margin-top: 0.5rem; }
.lang-dropdown-content.show { display: block; }
.lang-option { display: flex; align-items: center; gap: 1rem; padding: 0.8rem 1.2rem; cursor: pointer; color: var(--navy); font-size: 0.9rem; transition: background 0.2s; border-bottom: 1px solid #f3f4f6; }
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: #f9fafb; }
.mobile-menu-toggle { display: none; background: none; border: 1px solid rgba(0,0,0,0.1); font-size: 1.7rem; cursor: pointer; color: var(--navy); padding: 0.4rem 0.6rem; border-radius: 2px; min-height: 44px; min-width: 44px; }
#mobileMenu { display: none; position: fixed; top: 122px; left: 0; right: 0; background: var(--white); padding: 1rem; z-index: 999; box-shadow: var(--shadow); border-bottom: 1px solid #eee; max-height: calc(100vh - 122px); overflow-y: auto; }
#mobileMenu.active { display: block; }
#mobileMenu a { display: block; padding: 1rem 0; color: var(--navy); text-decoration: none; border-bottom: 1px solid #f8f9fa; flex-direction: row !important; align-items: center !important; min-height: 44px; }
#mobileMenu a .nav-num { display: inline; margin-right: 10px; margin-bottom: 0; }

/* ───────────── HERO SECTION ───────────── */
.hero-slider { min-height: 100vh; background: url('https://arm-investments-eb5.com/AI/images/ARM-Investments-EB5-(Web Slider).webp') center/cover no-repeat; position: relative; display: flex; align-items: center; padding-top: 32px; }
.hero-slider::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.65) 60%, rgba(13,27,42,0.4) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; color: var(--white); padding: 2rem 60px; }
.hero-badge { display: inline-block; background: rgba(184,148,42,0.2); border: 1px solid var(--gold); color: var(--gold-light); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 2px; margin-bottom: 1.2rem; }
.hero-content h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; margin-bottom: 1rem; line-height: 1.1; }
.hero-content h1 em { color: var(--gold-light); font-style: normal; font-weight: 600; }
.hero-content p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 2rem; line-height: 1.7; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-hero-primary, .btn-hero-outline { background: var(--gold); color: var(--white); padding: 0.9rem 2.2rem; border-radius: 2px; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: all 0.25s; min-height: 44px; }
.btn-hero-primary:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); }
.btn-hero-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
.btn-hero-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ───────────── SECTIONS & CARDS ───────────── */
section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label { display: inline-block; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.8rem; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 400; color: var(--navy); margin-bottom: 1rem; }
.section-title em { font-style: italic; color: var(--gold); }
.section-line { width: 50px; height: 2px; background: var(--gold); margin: 0 auto 1.5rem; }
.section-subtitle { font-size: 1.05rem; color: var(--gray); max-width: 650px; margin: 0 auto; line-height: 1.7; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 3rem; }
.two-column img { width: 100%; max-width: 500px; height: auto; border-radius: 4px; box-shadow: var(--shadow-lg); object-fit: cover; }
.feature-cards, .investment-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.feature-card, .investment-card { background: var(--white); padding: 2rem; border-radius: 4px; box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; text-align: center; border-top: 3px solid var(--gold); }
.feature-card:hover, .investment-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 1.2rem; }
.feature-card h3, .investment-card h3 { color: var(--navy); margin-bottom: 0.8rem; font-size: 1.3rem; }
.feature-card p, .investment-card p { color: var(--gray); font-size: 0.93rem; }
.investment-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transition: transform 0.3s; }
.investment-card:hover::before { transform: scaleX(1); }
.investment-card img { width: 100%; height: 200px; object-fit: cover; }
.price-tag { display: inline-block; background: var(--navy); color: var(--gold-light); font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; padding: 0.4rem 1rem; border-radius: 2px; margin-top: 1rem; }

/* ───────────── CTA & FOOTER ───────────── */
.pipeline-cta { background: var(--cream); padding: 4rem 0; text-align: center; }
.pipeline-cta h2 { font-family: 'Cormorant Garamond', serif; color: var(--navy); font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 400; margin-bottom: 0.8rem; }
.pipeline-cta h2 em { color: var(--gold); font-style: italic; }
.pipeline-cta p { color: var(--gray); max-width: 560px; margin: 0 auto 1.5rem; font-size: 1rem; line-height: 1.7; }
.btn-pipeline-cta { background: var(--gold); color: var(--white); border: none; padding: 0.9rem 2.2rem; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 2px; text-decoration: none; display: inline-block; transition: background 0.25s, transform 0.2s; min-height: 44px; }
.btn-pipeline-cta:hover { background: var(--navy); transform: translateY(-2px); }
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 4rem 0 2rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-section h3 { color: var(--gold); margin-bottom: 1.2rem; font-size: 1.2rem; }
.footer-section p, .footer-section a { line-height: 1.7; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-section a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; font-size: 0.85rem; color: var(--white); }
.footer-bottom a { color: var(--white); text-decoration: none; margin: 0 0.8rem; transition: color 0.25s; }
.footer-bottom p { color: var(--white); text-decoration: none; margin: 0 0.8rem; transition: color 0.25s; }


/* ───────────── UTILITIES & RESPONSIVE ───────────── */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-3 { margin-top: 3rem; }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 992px) { .container, .top-bar-content, .header-content { padding: 0 40px; } .two-column { grid-template-columns: 1fr; gap: 2.5rem; } }
/* ───────────── HERO IMAGE RESPONSIVE ───────────── */
.hero-slider { background-size: cover; background-position: center center; }

@media (max-width: 992px) {
  .hero-slider { min-height: 85vh; }
}

@media (max-width: 768px) {
  .hero-slider { 
    min-height: 70vh; 
    padding-top: 0; /* Removes gap since top bar is hidden on mobile */
    background-position: center 25%; /* Shifts focal point slightly up */
  }
}

@media (max-width: 480px) {
  .hero-slider { 
    min-height: 60vh; 
    background-position: center top; /* Prevents excessive bottom cropping */
  }
}

@media (max-width: 768px) {
  .top-bar { display: none !important; } .header { top: 0 !important; } .header-content { height: 70px; padding: 0 20px; } .logo img { height: 50px; }
  .nav-menu { display: none; } .mobile-menu-toggle { display: flex; } #mobileMenu { top: 70px !important; max-height: calc(100vh - 70px) !important; }
  .hero-content { padding: 2rem 20px; } .hero-content h1 { font-size: 2rem; } .hero-slider { min-height: 90vh; }
  .lang-dropdown-content { right: -100px; min-width: 240px; }
}
@media (max-width: 480px) { .hero-buttons { flex-direction: column; } .btn-hero-primary, .btn-hero-outline { width: 100%; text-align: center; } .lang-btn span { display: none; } .header { top: 28px; } #mobileMenu { top: 70px; } }

/* ───────────── FOOTER SOCIAL ICONS ───────────── */
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.2rem; }
.footer-social a { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  width: 38px; 
  height: 38px; 
  border-radius: 50%; 
  background: rgba(255,255,255,0.1); 
  color: rgba(255,255,255,0.8); 
  transition: all 0.25s ease; 
}
.footer-social a:hover { 
  background: var(--gold); 
  color: var(--navy-dark) !important; 
  transform: translateY(-2px); 
}
.footer-social i { font-size: 1rem; }

/* ───────────── HERO IMAGE WIDTH RESPONSIVE FIX ───────────── */
.hero-slider { 
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 1200px) {
  .hero-slider {
    background-size: cover;
    background-position: center 30%;
  }
}

@media (max-width: 992px) {
  .hero-slider { 
    min-height: 85vh;
    background-size: cover;
    background-position: center 25%;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    min-height: 70vh;
    padding-top: 0;
    background-size: cover;
    background-position: center 20%;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    min-height: 60vh;
    background-size: cover;
    background-position: center top;
  }
}

/* Ensure hero slider container is full width */
.hero-slider, .hero-slider::before {
  left: 0;
  right: 0;
  width: 100%;
}

/* ───────────── FOOTER MOBILE STACK ───────────── */
@media (max-width: 768px) {
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding-top: 1rem;
  }
  .footer-bottom p {
    margin: 0;
    width: 100%;
  }
  .footer-bottom a {
    display: block;
    margin: 0.2rem 0;
  }
}

/* ───────────── TOP BAR CENTER ALIGN FIX ───────────── */
.top-bar-content {
    justify-content: center !important;
    text-align: center !important;
}