/* ============================================
   PHOENIX PROPERTIES GROUP - PREMIUM $6500 BUILD
   Light luxurious base, Black + Red HIGHLIGHTS
   Gradient hero, smooth animations, premium feel
   ============================================ */

:root {
  --black: #0A0A0A;
  --dark: #1a1a1a;
  --red: #B22222;
  --red-dark: #8B1A1A;
  --red-light: #D43333;
  --white: #FFFFFF;
  --cream: #FDFCFA;
  --warm-white: #F8F6F3;
  --warm-gray: #F2EFEB;
  --text-dark: #1a1a1a;
  --text-body: #444444;
  --text-muted: #6a6a6a;
  --border: #E8E4DF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 25px rgba(0,0,0,0.06);
  --shadow-lg: 0 15px 50px rgba(0,0,0,0.08);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--cream);
  overflow-x: hidden;
}

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

/* ANIMATIONS */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253, 252, 250, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 228, 223, 0.6);
  padding: 14px 0;
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav__logo-img {
  height: 50px;
  width: auto;
}

.nav__logo-text {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav__links a:hover { color: var(--red); }

.nav__cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 11px 22px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s var(--ease-out) !important;
}

.nav__cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(178, 34, 34, 0.25);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--black); }

/* HERO - GRADIENT */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #FDFCFA 0%, #F8F4F0 25%, #F2EFEB 50%, #EDE8E3 75%, #F5F2EE 100%);
}

.hero__bg::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(178, 34, 34, 0.03) 0%, transparent 60%);
}

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

.hero__badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(178, 34, 34, 0.06);
  border: 1px solid rgba(178, 34, 34, 0.15);
  border-radius: 4px;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  line-height: 1.12;
  color: var(--black);
  margin-bottom: 18px;
}

.hero__title span { color: var(--red); }

.hero__tagline {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.hero__description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 35px;
}

.hero__trust {
  display: flex;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-body);
}

.hero__trust-item i { color: var(--red); font-size: 0.85rem; }

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

.hero__logo-img {
  width: 100%;
  max-width: 420px; border-radius: 16px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(10, 10, 10, 0.12));
}

/* BUTTONS */
.btn {
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(178, 34, 34, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn--large { padding: 16px 34px; font-size: 0.95rem; }

/* STATS BAR */
.stats {
  padding: 40px 0;
  background: var(--black);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stats__number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 4px;
}

.stats__label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 55px; }

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  margin-bottom: 10px;
  color: var(--black);
}
.section__title--light { color: var(--white); }
.section__title--left { text-align: left; }

.section__subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.section__subtitle--light { color: rgba(255,255,255,0.6); }

/* PROCESS */
.process {
  padding: 110px 0;
  background: var(--white);
}

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

.process__step {
  padding: 45px 30px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.process__step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}

.process__step:hover::before { transform: scaleX(1); }

.process__step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.process__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(178, 34, 34, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.process__icon i { font-size: 1.3rem; color: var(--red); }

.process__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--red);
  opacity: 0.5;
  margin-bottom: 12px;
}

.process__step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
}

.process__step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* SITUATIONS - Dark section */
.situations {
  padding: 110px 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 50%, #111 100%);
  position: relative;
}

.situations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.situation-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: all 0.3s var(--ease-out);
}

.situation-item:hover {
  border-color: var(--red);
  color: var(--white);
  background: rgba(178, 34, 34, 0.08);
}

.situation-item i { color: var(--red); font-size: 0.8rem; }

.situations__cta { text-align: center; }

/* WHY US */
.why-us {
  padding: 110px 0;
  background: var(--warm-gray);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-us__card {
  padding: 35px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.4s var(--ease-out);
}

.why-us__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(178, 34, 34, 0.2);
}

.why-us__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(178, 34, 34, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-us__icon i { font-size: 1.2rem; color: var(--red); }

.why-us__card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.why-us__card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ABOUT */
.about {
  padding: 110px 0;
  background: var(--white);
}

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

.about__line {
  width: 50px;
  height: 3px;
  background: var(--red);
  margin: 18px 0;
}

.about__lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 15px;
}

.about__text p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 15px;
}

.about__info-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 35px;
}

.about__info-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--black);
}

.about__detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 14px;
}

.about__detail i { color: var(--red); width: 18px; }

.about__detail a {
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s;
}
.about__detail a:hover { color: var(--red); }

/* CTA */
.cta {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--red-light) 100%);
  text-align: center;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
}

.cta__content {
  position: relative;
  z-index: 2;
}

.cta__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.cta__content p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 30px;
}

.cta .btn--primary {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
}
.cta .btn--primary:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* FOOTER */
.footer {
  padding: 60px 0 25px;
  background: var(--black);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo-img {
  height: 55px;
  width: auto;
  margin-bottom: 12px;
}

.footer__brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.footer__nav h4,
.footer__contact h4 {
  color: var(--red);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer__nav a {
  display: block;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 8px;
  transition: all 0.3s;
}
.footer__nav a:hover { color: var(--white); transform: translateX(3px); }

.footer__contact a,
.footer__contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--white); }
.footer__contact i { color: var(--red); width: 16px; }

.footer__bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer__bottom p {
  color: rgba(255,255,255,0.25);
  font-size: 0.72rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { margin-top: 40px; }
  .hero__logo-img { max-width: 280px; margin: 0 auto; display: block; }
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(253, 252, 250, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid var(--border);
  }
  .nav__links.active { display: flex; }
  .nav__toggle { display: flex; }
  .hero { padding: 130px 0 70px; }
  .hero__title { font-size: 2.5rem; }
  .hero__ctas { flex-direction: column; }
  .hero__trust { flex-direction: column; gap: 10px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .process__grid { grid-template-columns: 1fr; }
  .situations__grid { grid-template-columns: 1fr; }
  .why-us__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .section__title { font-size: 2rem; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__contact a, .footer__contact span { justify-content: center; }
}

