/* ========================================
   Investor Page Styles
   Full-width images, luxury design
======================================== */

/* Hero Section */
.investor-page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.investor-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.investor-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.investor-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0,0,0, 0.45) 50%,
    rgba(0,0,0, 0.65) 100%
  );
}

.investor-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.investor-logo-wrapper {
  margin-bottom: 30px;
}

.investor-logo-large {
  max-width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.investor-hero-title {
  font-family: var(--title-font);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(82deg, #ffffff 0%, #ecd69f 63.6%, #c6803b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.investor-hero-desc {
  font-family: var(--normal-font);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 30px;
}

.investor-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.investor-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.investor-stat-item .stat-number {
  font-family: var(--title-font);
  font-size: 3rem;
  font-weight: 700;
  color: #ecd69f;
}

.investor-stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero CTA Button */
.investor-hero-cta {
  margin-top: 40px;
}

.btn-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  border: 2px solid rgba(236, 214, 159, 0.5);
  color: #ecd69f;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-scroll:hover {
  background: rgba(236, 214, 159, 0.1);
  border-color: #ecd69f;
  transform: translateY(3px);
}

.btn-hero-scroll svg {
  animation: bounceDown 1.5s infinite;
}

@keyframes bounceDown {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(5px);
  }
  60% {
    transform: translateY(3px);
  }
}

/* About Investor Section */
.investor-about-section {
  padding: 100px 0;
  background: #ffffff;
}

.investor-about-section .about-content {
  padding-right: 40px;
}

.investor-about-section .section-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: #c4956a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.investor-about-section .section-title {
  font-family: var(--normal-font);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.investor-about-section .text-gradient {
  background: linear-gradient(82deg, #653e2c 0%, #c6803b 63.6%, #ecd69f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.investor-about-section .about-desc {
  font-size: 1rem;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #f9f5f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #f5ede3;
  transform: translateX(5px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c6803b 0%, #ecd69f 100%);
  border-radius: 10px;
  flex-shrink: 0;
}

.feature-icon svg {
  color: #523829;
}

.feature-text h4 {
  font-family: var(--title-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: #523829;
  margin-bottom: 5px;
}

.feature-text p {
  font-size: 0.9rem;
  color: #666666;
  margin: 0;
  line-height: 1.5;
}

/* About Image */
.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(82, 56, 41, 0.3) 0%,
    rgba(101, 62, 44, 0.5) 100%
  );
}

.about-image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: rgba(82, 56, 41, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
}

.about-image-badge .badge-number {
  font-family: var(--title-font);
  font-size: 3rem;
  font-weight: 700;
  color: #ecd69f;
  line-height: 1;
}

.about-image-badge .badge-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

/* Projects Section */
.investor-projects-section {
  padding: 80px 0;
  background: #f9f5f0;
}

.investor-projects-section .section-header {
  margin-bottom: 50px;
  padding: 0 20px;
}

.investor-projects-section .section-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: #c4956a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.investor-projects-section .section-title {
  font-family: var(--normal-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #1a1a1a;
}

.investor-projects-section .text-gradient {
  background: linear-gradient(82deg, #653e2c 0%, #c6803b 63.6%, #ecd69f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.investor-projects-section .section-desc {
  font-size: 1rem;
  color: #666666;
  max-width: 600px;
  margin: 15px auto 0;
  line-height: 1.6;
}

/* Projects Grid */
.investor-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 0;
}

.investor-project-card {
  position: relative;
  overflow: hidden;
}

.project-card-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}

/* Full Width Project Image */
.project-card-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.investor-project-card:hover .project-card-image img {
  transform: scale(1.08);
}

.project-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 20%,
    rgba(0,0,0, 0.35) 50%,
    rgba(0,0,0, 0.95) 100%
  );
  transition: all 0.4s ease;
}

.investor-project-card:hover .project-card-overlay {
  background: linear-gradient(
    180deg,
    transparent 10%,
    rgba(101, 62, 44, 0.7) 40%,
    rgba(82, 56, 41, 0.98) 100%
  );
}

/* Status Badge */
.project-status-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
}

.project-status-badge.status-selling {
  background: linear-gradient(135deg, #c6803b 0%, #ecd69f 100%);
  color: #523829;
}

.project-status-badge.status-completed {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.project-status-badge.status-upcoming {
  background: #523829;
  color: #ecd69f;
}

/* Card Content */
.project-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.investor-project-card:hover .project-card-content {
  transform: translateY(0);
}

.project-card-title {
  font-family: var(--title-font);
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-card-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.project-card-location svg {
  flex-shrink: 0;
}

.project-card-info {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.project-card-info .info-item {
  display: flex;
  flex-direction: column;
}

.project-card-info .info-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.project-card-info .info-value {
  font-size: 1rem;
  font-weight: 600;
  color: #ecd69f;
}

.project-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #c6803b 0%, #ecd69f 100%);
  color: #523829;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.investor-project-card:hover .project-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.project-card-cta:hover {
  background: linear-gradient(135deg, #ecd69f 0%, #c6803b 100%);
}

/* Other Investors Section */
.other-investors-section {
  padding: 80px 0;
  background: #ffffff;
}

.other-investors-section .section-header {
  margin-bottom: 40px;
}

.other-investors-section .section-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: #c4956a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.other-investors-section .section-title {
  font-family: var(--normal-font);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #1a1a1a;
}

.other-investors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.other-investor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  background: #f9f5f0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.other-investor-card:hover {
  background: #ffffff;
  border-color: #c6803b;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(82, 56, 41, 0.1);
}

.other-investor-logo {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.other-investor-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.other-investor-card:hover .other-investor-logo img {
  filter: grayscale(0%);
  opacity: 1;
}

.other-investor-name {
  font-family: var(--title-font);
  font-size: 1rem;
  font-weight: 600;
  color: #523829;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.other-investor-count {
  font-size: 0.85rem;
  color: #888888;
}

/* CTA Section */
.investor-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #523829 0%, #3d2a1f 100%);
}

.investor-cta-section .cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.investor-cta-section .cta-title {
  font-family: var(--normal-font);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.investor-cta-section .cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.6;
}

.investor-cta-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #c6803b 0%, #ecd69f 100%);
  color: #523829;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  background: linear-gradient(135deg, #ecd69f 0%, #c6803b 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(198, 128, 59, 0.3);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Responsive Styles
======================================== */
@media (max-width: 991px) {
  .investor-page-hero {
    min-height: 60vh;
  }

  .investor-hero-content {
    padding: 100px 20px 60px;
  }

  .investor-logo-large {
    max-width: 150px;
  }

  .investor-stats {
    gap: 25px;
  }

  .investor-stat-item .stat-number {
    font-size: 2.5rem;
  }

  /* About Section Responsive */
  .investor-about-section {
    padding: 80px 0;
  }

  .investor-about-section .about-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .about-image {
    height: 400px;
  }

  .investor-projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card-image {
    height: 400px;
  }

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

@media (max-width: 768px) {
  .investor-page-hero {
    min-height: 50vh;
  }

  .investor-hero-content {
    padding: 90px 15px 50px;
  }

  .investor-logo-large {
    max-width: 120px;
  }

  .investor-hero-desc {
    font-size: 1rem;
  }

  .investor-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .investor-stat-item .stat-number {
    font-size: 2rem;
  }

  .investor-stat-item .stat-label {
    font-size: 0.8rem;
  }

  /* About Section */
  .investor-about-section {
    padding: 60px 0;
  }

  .investor-about-section .section-title {
    font-size: 1.8rem;
  }

  .feature-item {
    padding: 15px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
  }

  .feature-text h4 {
    font-size: 1rem;
  }

  .about-image {
    height: 350px;
  }

  .about-image-badge {
    padding: 15px 20px;
    bottom: 20px;
    left: 20px;
  }

  .about-image-badge .badge-number {
    font-size: 2.5rem;
  }

  .investor-projects-section {
    padding: 60px 0;
  }

  .project-card-image {
    height: 350px;
  }

  .project-card-title {
    font-size: 1.5rem;
  }

  .project-card-content {
    padding: 20px;
  }

  .project-card-info {
    gap: 20px;
  }

  .project-card-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .other-investors-section {
    padding: 60px 0;
  }

  .other-investors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .other-investor-card {
    padding: 20px 15px;
  }

  .other-investor-logo {
    width: 60px;
    height: 60px;
  }

  .investor-cta-section {
    padding: 60px 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .investor-hero-content {
    padding: 80px 15px 40px;
  }

  .investor-logo-large {
    max-width: 100px;
  }

  .investor-hero-title {
    letter-spacing: 2px;
  }

  .investor-hero-desc {
    font-size: 0.95rem;
  }

  .investor-stats {
    gap: 15px;
  }

  .investor-stat-item .stat-number {
    font-size: 1.8rem;
  }

  .investor-stat-item .stat-label {
    font-size: 0.7rem;
  }

  .investor-hero-cta {
    margin-top: 30px;
  }

  .btn-hero-scroll {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  /* About Section */
  .investor-about-section {
    padding: 50px 0;
  }

  .investor-about-section .section-title {
    font-size: 1.5rem;
  }

  .investor-about-section .about-desc {
    font-size: 0.95rem;
  }

  .about-features {
    gap: 15px;
  }

  .feature-item {
    padding: 12px;
    gap: 12px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .feature-icon svg {
    width: 18px;
    height: 18px;
  }

  .feature-text h4 {
    font-size: 0.95rem;
  }

  .feature-text p {
    font-size: 0.85rem;
  }

  .about-image {
    height: 300px;
  }

  .about-image-badge {
    padding: 12px 15px;
    bottom: 15px;
    left: 15px;
    gap: 10px;
  }

  .about-image-badge .badge-number {
    font-size: 2rem;
  }

  .about-image-badge .badge-text {
    font-size: 0.75rem;
  }

  .investor-projects-section {
    padding: 50px 0;
  }

  .investor-projects-section .section-header {
    margin-bottom: 30px;
  }

  .investor-projects-section .section-desc {
    font-size: 0.9rem;
  }

  .project-card-image {
    height: 320px;
  }

  .project-card-title {
    font-size: 1.3rem;
  }

  .project-card-location {
    font-size: 0.85rem;
  }

  .project-card-info {
    flex-direction: column;
    gap: 10px;
  }

  .project-card-cta {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .other-investors-section {
    padding: 50px 0;
  }

  .other-investors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .other-investor-card {
    padding: 15px 10px;
  }

  .other-investor-logo {
    width: 50px;
    height: 50px;
  }

  .other-investor-name {
    font-size: 0.85rem;
  }

  .other-investor-count {
    font-size: 0.75rem;
  }

  .investor-cta-section {
    padding: 50px 0;
  }

  .investor-cta-section .cta-title {
    font-size: 1.5rem;
  }

  .investor-cta-section .cta-desc {
    font-size: 0.9rem;
  }
}
