/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-color: #b8860b;
  --black: #000;
  --white: #fff;
  --gray: #666;
  --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font-family: 'Inter', sans-serif;
  --gold: #D4AF37;
  --gold-light: #F4E5A1;
  --gold-dark: #B8941F;
  --gray-light: #F8F8F8;
  --gray-dark: #333333;
   --transition: all 0.3s ease;
    --header-font: 'Playfair Display', serif;
    --body-font: 'Inter', sans-serif;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

main {
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #b8860b;
}

/* Breadcrumb Styles */
.breadcrumb-section {
  padding: 40px 20px 20px;
  border-top: 1px solid #ddd;
  margin: 0 10px;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.breadcrumb-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--body-font);
  font-size: 1.1em;
  color: var(--gray-dark);
  line-height: 1.8;
  gap: 5px;
  letter-spacing: 0.5px;
}

.breadcrumb-link {
  text-decoration: none;
  color: var(--gray-dark);
  transition: color 0.3s;
}

.breadcrumb-link:hover {
  color: var(--gold);
}

.breadcrumb-divider {
  margin: 0 8px;
  color: #aaa;
}

.breadcrumb-current {
  font-weight: 600;
  color: var(--black);
}

.breadcrumb-title-wrap {
  animation: fadeInUp 0.6s ease-out forwards;
}

.breadcrumb-title {
  font-family: var(--header-font);
  font-size: 4rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  text-align: right;
  letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.content-section {
  margin-top: 40px;
  margin-bottom: 80px;
  text-align: center;
}

.invest-header {
  text-align: center;
  margin-bottom: 60px;
}

.intro-text {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 300;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
  border-radius: 20px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step {
  text-align: center;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100px;
  opacity: 0.3;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.step p {
  color: #666;
  font-size: 0.95rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: #f8f9ff;
  border-radius: 15px;
  border-left: 4px solid #b8860b;
}

.benefits-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #8b6508 0%, #b8860b 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.benefit-content h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.benefit-content p {
  color: #666;
  font-size: 0.95rem;
}

.download-section {
  background: linear-gradient(135deg, #111 0%, #333 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content {
  padding: 50px;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #A1773D 0%, #F5E6A3 50%, #A1773D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(161, 119, 61, 0.4);
  border: 2px solid transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
  border-color: #ffffff;
}

.back-to-top::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4d03f, #d4af37);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.back-to-top:hover::before {
  opacity: 1;
}

.back-to-top-icon {
  font-size: 1.5em;
  color: #1a1a1a;
  font-weight: bold;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.back-to-top:hover .back-to-top-icon {
  color: #000;
}

/* Pulse animation for first appearance */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .step::before {
    display: none;
  }

  .content {
    padding: 30px;
  }

  .back-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top-icon {
    font-size: 1.2em;
  }
}

@media screen and (min-width: 769px) {
  .breadcrumb-section {
    padding: 40px 32px 20px;
    margin: 0 20px;
  }

  .breadcrumb-wrapper {
    flex-wrap: nowrap;
    gap: 0;
  }

  .breadcrumb-links {
    font-size: 20px;
  }

  .breadcrumb-title {
    font-size: 3.5rem;
    text-align: right;
  }
}

.market-overview {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.market-overview p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #34495e;
  margin-bottom: 30px;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.location-item {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #b8860b;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.location-item h4 {
  color: #2c3e50;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.location-item p {
  color: #7f8c8d;
  font-size: 0.95em;
}

.table-container {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin: 40px 0;
}

.table-header {
  background: linear-gradient(135deg, #ffd700 0%, #daa520 50%, #b8860b 100%);
  color: white;
  padding: 25px;
  text-align: center;
  font-size: 1.5em;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.location-icon {
  font-size: 1.2em;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1em;
}

th {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 20px;
  text-align: left;
  font-weight: 600;
  color: #2c3e50;
  border-bottom: 2px solid #daa520;
}

td {
  padding: 20px;
  border-bottom: 1px solid #e9ecef;
  color: #34495e;
  transition: background-color 0.3s ease;
}

tr:hover td {
  background-color: rgba(103, 126, 234, 0.05);
}

tr:nth-child(even) {
  background-color: rgba(248, 249, 250, 0.5);
}

.types-section {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-top: 40px;
}

.property-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.property-type {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #daa520;
}

.property-type:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.property-type h3 {
  color: #2c3e50;
  font-size: 1.4em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.property-type p {
  color: #7f8c8d;
  line-height: 1.6;
  font-size: 0.95em;
}

.property-icon {
  font-size: 1.5em;
  color: #b8860b;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, #111 0%, #333 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.download-section .cta-button {
    background: var(--white);
    color: var(--black);
}

.download-section .cta-button:hover {
    background: var(--gold);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--black);
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--black);
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

.section-black .cta-button {
    background: var(--white);
    color: var(--black);
}

.section-black .cta-button:hover {
    background: var(--gold);
}

.section {
  padding: 80px 0;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.section-white {
  background: var(--white);
  color: var(--black);
}

.section-black {
  background: var(--black);
  color: var(--white);
}

.section-gold {
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
  color: var(--black);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.content-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-white .content-card {
  background: var(--gray-light);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-black .content-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gold);
}

.section-white .card-title {
  color: var(--black);
}

.card-content {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.highlight-list {
  list-style: none;
  margin-top: 15px;
}

.highlight-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  padding-left: 25px;
  font-size: 0.9rem;
}

.highlight-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1rem;
}

.chart-container {
  margin: 30px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-white .chart-container {
  background: var(--gray-light);
}

.chart-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.section-white .chart-title {
  color: var(--black);
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 200px;
  margin: 20px 0;
  gap: 5px;
}

.bar {
  flex: 1;
  background: linear-gradient(to top, var(--gold), var(--gold-light));
  border-radius: 3px 3px 0 0;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 0;
}

.bar:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.bar-label {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

.bar-value {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.section-white .bar-value {
  color: var(--black);
}

.gdp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
}

.gdp-table th,
.gdp-table td {
  padding: 12px 8px;
  text-align: left;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.gdp-table th {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  font-size: 0.95rem;
}

.gdp-table td {
  transition: background 0.3s ease;
}

.gdp-table tbody tr:hover td {
  background: rgba(212, 175, 55, 0.1);
}

.section-white .gdp-table {
  background: var(--white);
}

.section-white .gdp-table td {
  color: var(--black);
}

.investment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.investment-card {
  background: rgba(212, 175, 55, 0.1);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.investment-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.investment-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.investment-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.investment-description {
  font-size: 0.9rem;
  line-height: 1.6;
}

.yield-highlight {
  background: var(--gold);
  color: var(--black);
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
}

.download-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.download-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}


/* Tablet Styles */
@media screen and (min-width: 481px) and (max-width: 768px) {
  
  .breadcrumb-title {
    font-size: 3rem;
  }
  
  .hero-image {
    height: 400px;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }
  
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
  
  .investment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .cta-button {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
}

/* Desktop Styles */
@media screen and (min-width: 769px) {
  
  .hero-image {
    height: 500px;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 3rem;
    margin-bottom: 60px;
  }
  
  .section-title::after {
    width: 100px;
  }
  
  .intro-text {
    font-size: 1.2rem;
    margin-bottom: 60px;
  }
  
  .content-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
  }
  
  .content-card {
    padding: 40px;
  }
  
  .content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
  }
  
  .card-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .highlight-list li {
    padding: 10px 0;
    padding-left: 30px;
    font-size: 1rem;
  }
  
  .highlight-list li::before {
    font-size: 1.2rem;
  }
  
  .chart-container {
    margin: 40px 0;
    padding: 30px;
  }
  
  .chart-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .bar-chart {
    height: 300px;
    gap: 10px;
  }
  
  .bar-label,
  .bar-value {
    font-size: 0.9rem;
  }
  
  .bar-label {
    bottom: -30px;
  }
  
  .bar-value {
    top: -30px;
  }
  
  .bar:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
  }
  
  .gdp-table {
    margin: 40px 0;
    font-size: 1rem;
  }
  
  .gdp-table th,
  .gdp-table td {
    padding: 20px;
  }
  
  .gdp-table th {
    font-size: 1.1rem;
  }
  
  .investment-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .investment-card {
    padding: 30px;
  }
  
  .investment-card:hover {
    transform: translateY(-5px);
  }
  
  .investment-icon {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .investment-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .investment-description {
    font-size: 0.95rem;
  }
  
  .yield-highlight {
    padding: 20px;
    margin: 30px 0;
    font-size: 1.1rem;
  }
  
  .download-section {
    padding: 80px 0;
  }
  
  .download-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .download-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
  
  .download-button {
    gap: 15px;
    padding: 18px 35px;
    font-size: 1.1rem;
  }
  
  .download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }
  
  .back-to-top {
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
  }
  
  .back-to-top-icon {
    font-size: 1.5em;
  }
  
  .back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
  }
}

/* Large Desktop Styles */
@media screen and (min-width: 1200px) {
  .top-bar {
    gap: 80px;
  }
  
  .navbar {
    gap: 50px;
  }
  
  .breadcrumb-title {
    font-size: 4rem;
  }
}

@media (max-width: 480px) {
    .breadcrumb-section {
    padding: 20px 15px 15px;
    margin: 0 5px;
    }

    .breadcrumb-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    }

    .breadcrumb-title {
    font-size: 1.8rem;
    text-align: left;
    }

    .breadcrumb-links {
    font-size: 14px;
    }
    .section-header h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }
    .cta-button {
        padding: 16px 30px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 1rem;
    }
}