:root {
  --green-dark: #0D2B1F;
  --green-main: #1A3C2E;
  --green-light: #2D5A44;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --white: #FFFFFF;
  --cream: #FFFDF7;
  --gray-light: #F5F5F5;
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
  --section-pad: 80px 0;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(26,60,46,0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 15px 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

.navbar.scrolled .logo-sub {
  color: var(--green-main);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.navbar.scrolled .nav-link {
  color: var(--text-primary);
}

.nav-link:hover {
  color: var(--gold);
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--green-main);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 15px;
}

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

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

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

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

.hero {
  height: 100vh;
  background: linear-gradient(135deg, rgba(13,43,31,0.9) 0%, rgba(26,60,46,0.85) 100%), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1920') center/cover;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.9);
}

.search-bar {
  display: flex;
  gap: 15px;
  background: var(--white);
  padding: 10px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.search-bar select,
.search-bar input {
  flex: 1;
  padding: 15px 20px;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
}

.search-bar .btn {
  white-space: nowrap;
}

.scroll-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 24px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-20px); }
  60% { transform: translateX(-50%) translateY(-10px); }
}

section {
  padding: var(--section-pad);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--green-dark);
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.stats {
  background: var(--green-main);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.property-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.property-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.property-card:hover .property-image img {
  transform: scale(1.1);
}

.property-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: var(--green-dark);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.property-content {
  padding: 25px;
}

.property-title {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.property-location {
  color: var(--text-secondary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.property-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 15px;
}

.property-meta {
  display: flex;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--gray-light);
  margin-bottom: 20px;
}

.property-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-secondary);
  font-size: 14px;
}

.about-section {
  background: var(--white);
}

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

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-images img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.about-images img:first-child {
  grid-column: 1 / -1;
  height: 300px;
}

.about-images img:not(:first-child) {
  height: 200px;
}

.about-content h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.checkpoints {
  margin: 25px 0;
}

.checkpoint {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.checkpoint i {
  color: var(--gold);
  font-size: 20px;
}

.categories {
  background: var(--gray-light);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

.category-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.category-card i {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 15px;
}

.category-card h4 {
  font-size: 16px;
  color: var(--green-dark);
  margin-bottom: 5px;
}

.category-card span {
  color: var(--text-secondary);
  font-size: 14px;
}

.how-it-works {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--green-main);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 25px;
}

.step-item h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.step-item p {
  color: var(--text-secondary);
}

.eseva {
  background: var(--green-main);
}

.eseva .section-label {
  color: var(--gold-light);
}

.eseva .section-header h2 {
  color: var(--white);
}

.eseva .section-header p {
  color: rgba(255,255,255,0.8);
}

.eseva-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.eseva-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.eseva-card:hover {
  transform: translateY(-5px);
}

.eseva-card i {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 15px;
}

.eseva-card h4 {
  color: var(--green-dark);
  font-size: 16px;
}

.testimonials {
  background: var(--cream);
}

.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial {
  padding: 40px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--green-dark);
  line-height: 1.6;
  margin-bottom: 25px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--green-main);
}

.testimonial-location {
  color: var(--text-secondary);
  font-size: 14px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--gold);
}

.contact-section {
  padding: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-info-col {
  background: var(--green-main);
  padding: 80px 60px;
  color: var(--white);
}

.contact-info-col h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-details i {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.map-embed {
  width: 100%;
  height: 200px;
  border-radius: var(--radius);
  border: none;
  margin-top: 20px;
}

.contact-form-col {
  padding: 80px 60px;
}

.contact-form-col h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--green-dark);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}

.footer-col p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 25px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.7);
}

.contact-info i {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

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