﻿:root{
  --gold:#c9a15d;
  --dark:#0b0f1a;
  --light:#f8f8f8;
}


/* GLOBAL */
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.investment-hero {
  position: relative;
  min-height: 120vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden; 
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
}

/* PREMIUM OVERLAY */
.investment-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(5, 10, 20, 0.95) 35%,
    rgba(5, 10, 20, 0.75) 55%,
    rgba(5, 10, 20, 0.3) 75%,
    rgba(5, 10, 20, 0.1) 100%
  );
}

.hero-content {
  position: relative;
  max-width: 600px;
  z-index: 2;
}

/* TEXT */
.hero-tag {
  letter-spacing: 2px;
  font-size: 12px;
  color: #c9a15d;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 500;
}

.hero-title span {
  color: #c9a15d;
}

.hero-desc {
  margin-top: 20px;
  color: #ccc;
  line-height: 1.6;
  font-size: 15px;
  max-width: 520px;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  border: 1px solid #c9a15d;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #c9a15d;
  color: #000;
}

/* ========================= */
/* 📱 TABLET RESPONSIVE */
/* ========================= */
@media (max-width: 992px) {

  .investment-hero {
    min-height: 80vh;
    padding: 60px 0;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-desc {
    font-size: 14px;
  }
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 576px) {

  .investment-hero {
    min-height: 75vh;
    align-items: flex-end;
    padding: 40px 0;
  }

  /* overlay stronger for readability */
  .investment-hero::before {
    background: linear-gradient(
      180deg,
      rgba(5,10,20,0.2) 0%,
      rgba(5,10,20,0.8) 60%,
      rgba(5,10,20,0.95) 100%
    );
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-tag {
    font-size: 11px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-desc {
    font-size: 13px;
    margin-top: 15px;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .investment-hero {
    padding-top: 100px;
  }

  .hero-content {
    margin-top: 20px;
  }
}



/* SECTION */
.why-invest {
  background: #f9f9f9;
  padding: 70px 0;
}

/* HEADER */
.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 16px;
  letter-spacing: 2px;
  color: #222;
}

.section-header .line {
  width: 50px;
  height: 1px;
  background: #c9a15d;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid #eee;
}

.icon {
  width: 42px;
  height: 42px;
  stroke: #c9a15d;
  margin-bottom: 15px;

  color: #c9a15d;
}

/* PREMIUM HOVER EFFECT */
.why-card {
  transition: all 0.3s ease;
}

.why-card:hover {
  background: #c9a15d;
  color: #000;
}

.why-card:hover .icon {
  stroke: #000;
}

/* CARD */
.why-card {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid #eee;
}

.why-card:last-child {
  border-right: none;
}

.why-card img {
 width: 40px;
  margin-bottom: 15px;
  filter: sepia(1) hue-rotate(20deg) saturate(4);
}

.why-card h4 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #111;
}

.why-card p {
  font-size: 12px;
  color: #000;
  line-height: 1.5;
}

/* HOVER (Premium Feel) */
.why-card:hover {
  background: #fff;
  transform: translateY(-5px);
  transition: 0.3s ease;
}

/* ================= */
/* 📱 TABLET */
/* ================= */
@media (max-width: 992px) {

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-card {
    border-bottom: 1px solid #eee;
  }
}

/* ================= */
/* 📱 MOBILE */
/* ================= */
@media (max-width: 576px) {

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

  .section-header {
    flex-direction: column;
    gap: 8px;
  }

  .section-header .line {
    width: 30px;
  }
}



/* SECTION */
.why-invest {
  background: #f5f3ef;
  padding: 70px 0;
}

/* HEADER */
.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
}

.section-header .line {
  width: 60px;
  height: 1px;
  background: #c9a15d;
}

/* WRAPPER (MAIN BOX) */
.why-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid #e4d8c3;
  border-radius: 6px;
  overflow: hidden;
}

/* ITEM */
.why-item {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid #e4d8c3;
}

.why-item:last-child {
  border-right: none;
}

/* ICON */
.icon {
  width: 42px;
  height: 42px;
  stroke: #c9a15d;
  margin-bottom: 15px;
}

/* TITLE */
.why-item h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

/* TEXT */
.why-item p {
  font-size: 12px;
  color: #000;
  line-height: 1.5;
}

/* ================= */
/* 📱 TABLET */
/* ================= */
@media (max-width: 992px) {

  .why-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-item {
    border-bottom: 1px solid #e4d8c3;
  }
}

/* ================= */
/* 📱 MOBILE */
/* ================= */
@media (max-width: 576px) {

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

  .section-header {
    flex-direction: column;
    gap: 8px;
  }

  .section-header .line {
    width: 30px;
  }
}


/* SECTION */
.growth-section {
   background: linear-gradient(90deg, #070b14 30%, #0d1525 100%);
  color: #fff;

  padding: 100px 0;   /* increase from 80px → 100px */
  margin-top: 20px;   /* 👈 THIS FIXES YOUR ISSUE */
}

/* GRID */
.growth-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.tag-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.tag-line span {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c9a15d;
}

.tag-line .line {
  width: 60px;
  height: 1px;
  background: #c9a15d;
}

.growth-left h2 {
  font-size: 34px;
  line-height: 1.3;
}

.growth-left p {
  margin-top: 20px;
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
}

.growth-left small {
  display: block;
  margin-top: 15px;
  color: #c9a15d;
  font-size: 11px;
}

/* RIGHT CHART */
.chart {
  position: relative;
  height: 250px;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* GRID LABELS */
.grid-lines {
  position: absolute;
  left: -40px;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 11px;
  color: #888;
}

/* BARS */
.bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  padding-left: 20px;
}

.bar {
  width: 40px;
  background: linear-gradient(to top, #c9a15d, #e0b97a);
  position: relative;
}

.bar span {
  position: absolute;
  top: -20px;
  font-size: 12px;
}

.bar p {
  position: absolute;
  bottom: -25px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #aaa;
}

/* CURVE */
.curve {
  position: absolute;
  top: 0;
  left: 20px;
  width: 100%;
  height: 100%;
}

.curve path {
  fill: none;
  stroke: #c9a15d;
  stroke-width: 2;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* ================= */
/* 📱 TABLET */
/* ================= */
@media (max-width: 992px) {
  .growth-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .growth-right {
    margin-top: 40px;
  }

  .grid-lines {
    display: none;
  }
}

/* ================= */
/* 📱 MOBILE */
/* ================= */
@media (max-width: 576px) {
    .growth-section {
    padding: 70px 0;
    margin-top: 20px;
  }
  .growth-left h2 {
    font-size: 24px;
  }

  .bar {
    width: 25px;
  }

  .chart {
    height: 200px;
  }
}



/* SECTION */
.rental-section {
   background: #f5f3ef;
  padding: 90px 0;

  color: #222; /* 👈 FIX */
}

/* GRID */
.rental-grid {
   display: grid;
  grid-template-columns: 1.1fr 1.3fr 0.9fr;
  gap: 30px;

  align-items: stretch; /* 👈 IMPORTANT */
}
.rental-image img {
  transition: transform 0.4s ease;
}

.rental-image:hover img {
  transform: scale(1.05);
}
/* TAG */
.tag-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.tag-line span {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c9a15d;
}

.tag-line .line {
  width: 50px;
  height: 1px;
  background: #c9a15d;
}

/* LEFT */
.rental-left h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.rental-desc {
  color: #0f1720;
  font-size: 14px;
  line-height: 1.6;
}

/* LIST (GOLD CIRCLE STYLE) */
.rental-list {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.rental-list li {
  margin-bottom: 12px;
  font-size: 14px;
  padding-left: 28px;
  position: relative;
}

.rental-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1.5px solid #c9a15d;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 4px;
}

/* IMAGE */
.rental-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* CARD */
.rental-card {
  background: linear-gradient(180deg, #0c1220, #070b14);
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
}

.card-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c9a15d;
  margin-bottom: 10px;
}

.upto {
  font-size: 13px;
  color: #aaa;
}

.rental-card h1 {
  font-size: 42px;
  color: #c9a15d;
  margin: 10px 0;
}

.per {
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.card-desc {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 10px;
}

.rental-card small {
  font-size: 11px;
  color: #888;
}

/* ================= */
/* 📱 TABLET */
/* ================= */
@media (max-width: 992px) {

  .rental-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rental-left,
  .rental-card {
    text-align: center;
  }

  .tag-line {
    justify-content: center;
  }
}

/* ================= */
/* 📱 MOBILE */
/* ================= */
@media (max-width: 576px) {

  .rental-left h2 {
    font-size: 24px;
  }

  .rental-card h1 {
    font-size: 32px;
  }

  .rental-list li {
    padding-left: 22px;
  }
}


/* SECTION */
.highlights-section {
  background: linear-gradient(90deg, #05080f, #0b1322);
  color: #fff;
  padding: 70px 0 60px; /* 👈 matches image spacing */
  border-bottom: 1px solid #c9a15d; /* 👈 gold bottom line */
}

/* HEADER */
.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 14px;
  letter-spacing: 2px;
  color: #E7692A;
}

.section-header .line {
  width: 60px;
  height: 1px;
  background: #c9a15d;
}

/* GRID */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}

/* ITEM */
.highlight-item {
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.highlight-item:last-child {
  border-right: none;
}

/* ICON */
.icon {
  width: 42px;
  height: 42px;
  stroke: #c9a15d;
  margin-bottom: 15px;
}

/* TITLE */
.highlight-item h4 {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* TEXT */
.highlight-item p {
  font-size: 12px;
  color: #bbb;
  line-height: 1.5;
}

/* ================= */
/* 📱 TABLET */
/* ================= */
@media (max-width: 992px) {

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .highlight-item {
    border: none;
  }
}

/* ================= */
/* 📱 MOBILE */
/* ================= */
@media (max-width: 576px) {

  .highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 👈 2 columns */
    gap: 25px;
  }

  .highlight-item {
    border: none; /* remove vertical lines */
    padding: 10px;
  }
  .highlight-item:last-child {
    grid-column: span 2;
    text-align: center;
  }

}



/* SECTION */
.cta-section {
  position: relative;
  padding: 30px 0;
  background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470') center/cover no-repeat;
}

/* OVERLAY (STRONG CINEMATIC) */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5,10,20,0.4) 0%,
    rgba(5,10,20,0.85) 60%,
    rgba(5,10,20,0.95) 100%
  );
}

/* CONTENT */
.cta-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 700px;
  margin: auto;
}

/* TAG */
.cta-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c9a15d;
  margin-bottom: 15px;
}

/* TITLE */
.cta-content h2 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 400;
}

/* SUBTEXT */
.cta-sub {
  margin-top: 20px;
  font-size: 16px;
  color: #ccc;
}

/* ACTIONS */
.cta-actions {
  margin-top: 40px;
}

/* BUTTON (PREMIUM GLOW) */
.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #c9a15d;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;

  box-shadow: 0 10px 30px rgba(201,161,93,0.3);
}

.cta-btn:hover {
  transform: translateY(-3px);
  background: #b8924f;
}

/* PHONE */
.cta-phone {
  display: block;
  margin-top: 20px;
  font-size: 15px;
  color: #ddd;
  text-decoration: none;
}

/* ================= */
/* 📱 MOBILE (ULTRA IMPORTANT) */
/* ================= */
@media (max-width: 576px) {

  .cta-section {
    padding: 90px 20px;
  }

  .cta-content h2 {
    font-size: 32px; /* 👈 BIG readable */
  }

  .cta-sub {
    font-size: 14px;
  }

  .cta-btn {
    width: 100%; /* 👈 FULL WIDTH */
    text-align: center;
    padding: 14px;
  }

  .cta-phone {
    font-size: 14px;
  }
}