/* =============================================
   PropNXT Home Page — Main Stylesheet
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --color-primary: #0A1D33;
  --color-text: #2F2F2F;
  --color-white: #FFFFFF;
  --color-bg-light: #FAF8F4;
  --color-gold: #C89A4B;
  --color-border: #E8E8E8;
  --color-input-border: #D9D9D9;

  --font-heading: 'Grader DEMO', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Poppins', sans-serif;

  --radius-card: 18px;
  --radius-input: 10px;
  --radius-pill: 50px;

  --shadow-card: 0 12px 35px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 18px 45px rgba(0, 0, 0, 0.12);

  --transition: 0.3s ease-in-out;
  --container-max: 1200px;
  --header-height: 80px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-bg {
  background-color: var(--color-bg-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title--center {
  text-align: center;
}

.section-title--white {
  color: var(--color-white);
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--pill {
  border-radius: var(--radius-pill);
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--secondary {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn--white:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.btn--gold {
  background-color: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn--gold:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* ---------- Form Elements ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  position: relative;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  height: 50px;
  padding: 0 18px;
  border: 1px solid var(--color-input-border);
  border-radius: var(--radius-input);
  background-color: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group textarea {
  height: auto;
  padding: 14px 18px;
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232F2F2F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(10, 29, 51, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-white);
  transition: box-shadow var(--transition), padding var(--transition);
  padding: 16px 0;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header__logo img {
  height: 38px;
  width: auto;
}

.header__nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width var(--transition);
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__phone {
  font-size: 13px;
  padding: 12px 22px;
}

.header__phone-icon {
  flex-shrink: 0;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1002;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header__overlay {
  display: none;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 40px;
  overflow: hidden;
  background-color: var(--color-white);
}

/* Full-width background image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.92) 35%,
    rgba(255, 255, 255, 0.45) 55%,
    rgba(255, 255, 255, 0.05) 75%,
    transparent 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 600px;
  padding-bottom: 60px;
}

.hero__content {
  max-width: 520px;
}

.hero__visual {
  /* Blank column — background image shows through */
  min-height: 1px;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-gold);
  background-color: var(--color-white);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-pill);
  padding: 7px 20px;
  margin-bottom: 24px;
  letter-spacing: 0.2px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.5vw, 54px);
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 32px;
  max-width: 460px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero .btn--secondary {
  background-color: var(--color-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* =============================================
   STATS & TRUST SECTION
   ============================================= */
.stats-trust {
  position: relative;
  z-index: 2;
  background-color: var(--color-white);
  padding: 0 0 40px;
  margin-top: -50px;
}

.stats-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.stats-trust__card {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stats-trust__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stats-trust__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.stats-trust__label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.88;
  line-height: 1.45;
}

.stats-trust__indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
}

.stats-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
}

.stats-trust__icon {
  flex-shrink: 0;
}

/* =============================================
   LEAD FORM
   ============================================= */
.lead-form {
  padding: 0 0 80px;
  background-color: var(--color-white);
}

.lead-form__box {
  background-color: var(--color-primary);
  border-radius: var(--radius-card);
  padding: 48px 48px 40px;
  box-shadow: var(--shadow-card);
}

.lead-form__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 8px;
}

.lead-form__subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  margin-bottom: 32px;
}

.lead-form__form {
  max-width: 900px;
  margin: 0 auto;
}

.lead-form__submit {
  display: block;
  margin: 24px auto 0;
  min-width: 280px;
}

/* =============================================
   WHY CHOOSE
   ============================================= */
.why-choose {
  padding: 80px 0;
}

.why-choose__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why-choose__subtitle {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.why-choose__text {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.why-choose__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-choose__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-choose__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.why-choose__item strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.why-choose__item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text);
}

.why-choose__image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.why-choose__image img {
  width: 100%;
  transition: transform 0.6s ease;
}

.why-choose__image:hover img {
  transform: scale(1.03);
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 80px 0;
  background-color: var(--color-white);
}

.services .section-title {
  margin-bottom: 48px;
}

.services__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.services__image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
  transition: transform 0.6s ease;
}

.services__image:hover img {
  transform: scale(1.03);
}

.services__card {
  background-color: var(--color-primary);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services__card-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 28px;
  line-height: 1.25;
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  transition: transform var(--transition), color var(--transition);
}

.services__list li:hover {
  transform: translateX(6px);
  color: var(--color-white);
}

.services__list li svg {
  flex-shrink: 0;
}

/* =============================================
   FEATURED PROJECTS
   ============================================= */
.featured-projects {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.featured-projects__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.featured-projects__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-projects__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(7, 7, 7, 0) 100%);
}

.featured-projects__content {
  position: relative;
  z-index: 1;
}

.featured-projects__header {
  margin-bottom: 40px;
}

.featured-projects__subtitle {
  font-size: 15px;
  color: #2F2F2F;
}

.featured-projects__slider {
  overflow: hidden;
}

.featured-projects__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.project-card {
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.project-card__image {
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-card__image img {
  transform: scale(1.06);
}

.project-card__body {
  padding: 20px 18px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-card__name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.project-card__location,
.project-card__config {
  font-size: 13px;
  color: var(--color-text);
  margin-bottom: 2px;
}

.project-card__price {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  margin: 8px 0 16px;
}

.project-card__btn {
  margin-top: auto;
  width: 100%;
  font-size: 13px;
  padding: 12px 20px;
}

/* =============================================
   INVESTMENT ADVISORY
   ============================================= */
.investment {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.investment__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.investment__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.investment__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Lighter, right-side fade so content uses dark text on a soft overlay (matches design) */
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.65) 45%,
    rgba(255, 255, 255, 0.92) 100%
  );
}

.investment__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.investment__spacer {
  min-height: 1px;
}

.investment__content {
  padding: 20px 0;
}

.investment__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 32px;
  max-width: 520px;
}

.investment__blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.investment__block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}


.investment__block-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
  box-shadow: 0 6px 18px rgba(10, 29, 51, 0.12);
}

.investment__block:hover .investment__block-icon {
  transform: translateY(-4px);
  background-color: #0c2742;
  box-shadow: 0 12px 30px rgba(10, 29, 51, 0.16);
}


.investment__block h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.investment__block p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-text);
}

/* Ensure the section title (which uses the white modifier in HTML) appears dark here */
.investment .section-title--white {
  color: var(--color-primary);
}

/* =============================================
   PROCESS
   ============================================= */
.process {
  padding: 80px 0;
  background-color: var(--color-white);
}

.process__header {
  text-align: center;
  margin-bottom: 48px;
}

.process__subtitle {
  font-size: 15px;
  color: var(--color-text);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.process__card {
  background-color: #001D3E;
  color: var(--color-white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.process__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  background-color: #0d2440;
}

.process__card--center {
  grid-column: 2 / 3;
}

.process__step {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.process__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.25;
}

.process__text {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 80px 0;
  background-color: var(--color-bg-light);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials__lead-quote {
  max-width: 920px;
  margin: 12px auto 0;
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.7;
  text-align: center;
}

.testimonials__label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.testimonials__slider {
  overflow: hidden;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}


.testimonial-card {
  background-color: #041a33;
  color: var(--color-white);
  border-radius: 8px 64px 8px 8px;
  padding: 44px 28px 28px;
  box-shadow: 0 18px 40px rgba(4, 26, 51, 0.18);
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
  text-align: center;
}


.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(4, 26, 51, 0.22);
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.96);
  margin: 0 0 18px;
}

.testimonial__author {
  display: block;
  margin-top: 6px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.98);
}

/* =============================================
   FOOTER CTA
   ============================================= */
.footer-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.footer-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
95deg, rgb(10 29 51 / 23%) 0%, rgb(10 29 51 / 11%) 100% 100% );
}

.footer-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.footer-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.footer-cta__desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  max-width: 440px;
}

/* Glassmorphism Form */
.glass-form {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-card);
  padding: 32px 28px;
}

.glass-form .form-group input,
.glass-form .form-group select,
.glass-form .form-group textarea {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
}

.glass-form .form-group input:focus,
.glass-form .form-group select:focus,
.glass-form .form-group textarea:focus {
  border-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

.footer-cta__submit {
  display: block;
  width: 100%;
  margin-top: 8px;
}

/* =============================================
   SITE FOOTER
   ============================================= */
.site-footer {
  background-color: var(--color-bg-light);
  padding: 24px 0;
  text-align: center;
}

.site-footer p {
  font-size: 13px;
  color: var(--color-text);
  letter-spacing: 0.3px;
}

/* =============================================
   PROJECT MODAL
   ============================================= */
.project-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.project-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.project-modal__content {
  position: relative;
  z-index: 1;
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  max-width: 520px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.project-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  transition: color var(--transition);
  z-index: 10;
}

.project-modal__close:hover {
  color: var(--color-primary);
}

.project-modal__inner {
  padding: 44px 32px 36px;
}

.project-modal__header {
  text-align: center;
  margin-bottom: 28px;
}

.project-modal__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 8px;
}

.project-modal__title span {
  color: var(--color-gold);
}

.project-modal__subtitle {
  font-size: 14px;
  color: var(--color-text);
}

.project-modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
