/* ============================================
   READY RENT CONSTRUCTION & ENVIRONMENTAL
   Light / Professional Theme - Black, Gold, Forest Green
   ============================================ */

:root {
  --black: #1a1a1a;
  --black-soft: #2d2d2d;
  --gold: #DAA520;
  --gold-light: #F0C850;
  --gold-dark: #B8860B;
  --green: #1B4D3E;
  --green-light: #2E7D5B;
  --green-pale: #e8f5e9;
  --white: #ffffff;
  --bg: #fafafa;
  --bg-alt: #f0f0f0;
  --text-dark: #1a1a1a;
  --text-body: #444444;
  --text-muted: #777777;
  --border: #e0e0e0;
  --border-gold: rgba(218, 165, 32, 0.3);
  --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', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__logo {
  text-decoration: none;
}

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

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

.nav__links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav__cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: all 0.2s !important;
}

.nav__cta:hover {
  background: var(--green-light) !important;
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  padding: 120px 0 80px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 50%, #fff8e1 100%);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 80% 20%, rgba(27, 77, 62, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(218, 165, 32, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

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


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

.hero__logo-large {
  max-width: 400px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(27, 77, 62, 0.2));
}

.hero__title {
  font-family: 'Cinzel', serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--black);
}

.hero__subtitle {
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero__description {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 650px;
}

.hero__ctas {
  display: flex;
  gap: 15px;
}

@media (max-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__image {
    order: -1;
  }

  .hero__logo-large {
    max-width: 250px;
  }

  .hero__ctas {
    justify-content: center;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  padding: 14px 30px;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--green);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(27, 77, 62, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn--secondary:hover {
  background: var(--green);
  color: var(--white);
}

.btn--large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section__title {
  font-family: 'Cinzel', serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: var(--black);
}

.section__title--left {
  text-align: left;
}

.section__subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services,
.buy-houses,
.construction,
.about,
.contact {
  padding: 100px 0;
}

.services {
  background: var(--white);
}

.buy-houses {
  background: var(--bg);
}

.construction {
  background: var(--white);
}

.about {
  background: var(--bg);
}

.contact {
  background: var(--green);
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  padding: 40px 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(218, 165, 32, 0.15);
}

.service-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
}

.service-card--buy .service-card__icon {
  background: rgba(218, 165, 32, 0.1);
  color: var(--gold-dark);
}

.service-card--build .service-card__icon {
  background: rgba(27, 77, 62, 0.1);
  color: var(--green);
}

.service-card--env .service-card__icon {
  background: rgba(46, 125, 91, 0.1);
  color: var(--green-light);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--black);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card__link {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.service-card__link:hover {
  color: var(--gold-dark);
}

.service-card__link i {
  transition: transform 0.2s;
}

.service-card__link:hover i {
  transform: translateX(4px);
}

/* ============================================
   BUY HOUSES SECTION
   ============================================ */
.buy-houses__content {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 60px;
  align-items: start;
}

.buy-houses__tagline {
  font-size: 1.2rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 20px;
}

.buy-houses__text p {
  color: var(--text-body);
  margin-bottom: 25px;
  line-height: 1.8;
}

.buy-houses__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.buy-houses__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-body);
  font-size: 0.9rem;
}

.buy-houses__list li i {
  color: var(--green);
  font-size: 0.8rem;
}

.buy-houses__steps {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.buy-houses__steps h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  margin-bottom: 30px;
  color: var(--green);
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.step:last-child {
  margin-bottom: 0;
}

.step__number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.step__content h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--black);
}

.step__content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   CONSTRUCTION GRID
   ============================================ */
.construction__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.construction-card {
  padding: 30px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.construction-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(27, 77, 62, 0.1);
}

.construction-card i {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 15px;
}

.construction-card h3 {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--black);
}

.construction-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   SMART HOMEOWNER GUIDE
   ============================================ */
.guide {
  padding: 100px 0;
  background: var(--bg);
}

.guide__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.guide-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
  position: relative;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--gold);
}

.guide-card__number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(218, 165, 32, 0.15);
  font-family: 'Cinzel', serif;
}

.guide-card h3 {
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 12px;
  padding-right: 40px;
}

.guide-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 15px;
}

.guide-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(27, 77, 62, 0.08);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.guide__cta {
  text-align: center;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.guide__cta p {
  color: var(--text-body);
  margin-bottom: 20px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .guide__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about__content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__lead {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about__highlights {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
}

.highlight i {
  color: var(--gold-dark);
  font-size: 1.2rem;
}

.highlight span {
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 500;
}

.about__logo-display {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.about__logo-display img {
  max-width: 280px;
  width: 100%;
  height: auto;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact .section__title {
  color: var(--white);
}

.contact .section__subtitle {
  color: rgba(255, 255, 255, 0.8);
}

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

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact__item i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1.2rem;
}

.contact__item h4 {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact__item a,
.contact__item p {
  color: var(--white);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.2s;
}

.contact__item a:hover {
  color: var(--gold-light);
}

.contact__cta {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}

.contact__cta h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--gold-light);
}

.contact__cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  line-height: 1.7;
}

.contact__cta .btn--primary {
  background: var(--gold);
  color: var(--black);
}

.contact__cta .btn--primary:hover {
  background: var(--gold-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 20px;
}

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

.footer__logo {
  height: 60px;
  width: auto;
  margin-bottom: 15px;
}

.footer__section p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__section h4 {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__section ul {
  list-style: none;
}

.footer__section ul li {
  margin-bottom: 10px;
}

.footer__section a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.9rem;
}

.footer__section a:hover {
  color: var(--gold);
}

.footer__bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .construction__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid var(--border);
  }

  .nav__links.active {
    display: flex;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    padding: 140px 0 80px;
    min-height: auto;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .buy-houses__content {
    grid-template-columns: 1fr;
  }

  .buy-houses__list {
    grid-template-columns: 1fr;
  }

  .construction__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__content {
    grid-template-columns: 1fr;
  }

  .about__highlights {
    flex-direction: column;
    gap: 15px;
  }

  .contact__content {
    grid-template-columns: 1fr;
  }

  .footer__content {
    grid-template-columns: 1fr;
  }

  .section__title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.8rem;
  }

  .construction__grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}
