/* ==========================================================
   INVEST GEORGIA UAE - WHITE THEME 
   ========================================================== */

:root {
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-darker: #f1f5f9;
  --text: #0f172b;
  --text-muted: #64748b;
  --primary: #e3000f; /* Red */
  --green: #10b981;
  --gold: #c9a84c; 
  
  --sans: 'Inter', -apple-system, sans-serif;
  --shadow: 0 4px 20px rgba(15, 23, 43, 0.05);
  --shadow-hover: 0 10px 40px rgba(15, 23, 43, 0.1);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

/* image logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  transition: opacity 0.2s;
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }

/* ================= NAV ================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,23,43,0.05);
  z-index: 100;
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 5%;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); transition: color 0.2s; }
.nav-links a.btn-nav {
  background: var(--text);
  color: #fff;
  padding: 10px 20px;
  border-radius: 40px;
  margin-left: 8px;
  transition: var(--transition);
}
.nav-links a.btn-nav:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }

/* ================= HERO & FORM ================= */
.hero {
  padding-top: 130px;
  padding-bottom: 80px;
  background: linear-gradient(to bottom, var(--bg-alt) 0%, var(--bg) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1.1fr 420px;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: rgba(227,0,15, 0.1);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 24px;
}
.hero-h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-h1 .highlight {
  color: var(--primary);
}
.hero-callout {
  font-size: 1.2rem;
  color: var(--text);
  background: rgba(227,0,15, 0.08);
  border-left: 4px solid var(--primary);
  padding: 18px 20px;
  margin-bottom: 24px;
  border-radius: 0 8px 8px 0;
  line-height: 1.5;
}
.hero-callout strong { font-weight: 800; color: var(--text); }
.hero-p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}
.hero-p strong {
  color: var(--text);
  font-weight: 700;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(15,23,43,0.1);
  padding-top: 30px;
}
.hs-val {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hs-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* FORM CARD */
.form-card {
  background: var(--bg);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(15,23,43,0.05);
}
.fc-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.fc-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(15,23,43,0.15);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}
.phone-row { display: flex; gap: 8px; }
.cc-wrap { position: relative; width: 105px; flex-shrink: 0; }
.cc-wrap select {
  width: 100%; height: 100%;
  appearance: none; -webkit-appearance: none;
  background: #fff;
  border: 1px solid rgba(15,23,43,0.15);
  border-radius: 8px;
  padding: 14px 24px 14px 12px;
  font-family: inherit; font-size: 0.95rem; font-weight: 600;
  color: var(--text); cursor: pointer;
  transition: var(--transition);
}
.cc-wrap select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(227,0,15, 0.2); }
.cc-wrap .chevron {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%); width: 10px; height: 6px; pointer-events: none; opacity: 0.5;
}
.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(227,0,15, 0.2);
}
.btn-submit {
  width: 100%;
  background: var(--text);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-submit:hover {
  background: #000;
  transform: translateY(-2px);
}
.otp-actions { display: flex; gap: 12px; align-items: center; }
.btn-text {
  background: none; border: none; font-size: 0.85rem; font-weight: 600; color: var(--primary); cursor: pointer;
}

/* ================= DEAL SECTION ================= */
.deal-sec {
  padding: 80px 0;
  background: var(--bg-darker);
  border-top: 1px solid rgba(15,23,43,0.05);
  border-bottom: 1px solid rgba(15,23,43,0.05);
}
.deal-inner {
  display: flex; justify-content: center; text-align: center;
}
.deal-content { max-width: 800px; }
.deal-h2 {
  font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 24px;
}
.deal-sec .body-text {
  font-size: 1.1rem; color: var(--text-muted); margin-bottom: 16px;
}
.deal-sec .body-text strong { color: var(--text); }

/* ================= PORTFOLIO ================= */
.props-sec {
  padding: 100px 0;
}
.sec-head {
  text-align: center; margin-bottom: 60px;
}
.sec-head h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.sec-head p { font-size: 1.1rem; color: var(--text-muted); }

.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.prop-card {
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,23,43,0.05);
  transition: var(--transition);
}
.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.prop-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  background: var(--bg-darker);
}
.prop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prop-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.9);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  backdrop-filter: blur(4px);
}
.prop-badge.highlight { color: var(--primary); }
.prop-badge.green { color: var(--green); }

.prop-info {
  padding: 24px;
}
.prop-dev { font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; margin-bottom: 4px; }
.prop-name { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.prop-loc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }

.prop-specs {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(15,23,43,0.05);
}
.spec span { display: block; font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; margin-bottom: 4px; }
.spec strong { font-size: 1.2rem; font-weight: 800; }
.spec strong.green { color: var(--green); }

.prop-plan { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }

/* ================= WHY GEORGIA ================= */
.why-sec {
  padding: 80px 0 100px;
  background: var(--bg-alt);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  padding: 32px;
  background: var(--bg);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.why-card h4 { font-size: 1.15rem; font-weight: 800; margin-bottom: 12px; }
.why-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }


/* ================= FOOTER ================= */
.footer {
  padding: 60px 0;
  background: #000;
  color: #fff;
  font-size: 0.9rem;
}
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-logo-img { height: 42px; width: auto; opacity: 0.9; }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.footer-contact {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}
.footer-contact strong { color: #fff; }
.footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 32px;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 40px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-stats { justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero-h1 { font-size: 2.2rem; }
  .hero-form-wrapper { width: 100%; }
  .form-card { padding: 32px 24px; }
  .deal-h2 { font-size: 1.8rem; }
  .hero-stats { flex-direction: column; gap: 20px; text-align: center; }
}
