.hero {
  position: relative;
  height: 65vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-slider {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 6s linear;
  transform: scale(1.05);
  z-index: 0;
}

.hero-bg.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 650px;
}

.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 35px;
  opacity: 0.9;
  font-weight: 300;
}

.hero-cards {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 25px;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.h-card {
  background: rgba(45, 106, 79, 0.95);
  color: white;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.h-card:hover {
  transform: translateY(-8px);
  background: var(--primary-color);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.h-card img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.h-card h3 {
  font-size: 1.1rem;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.h-card p {
  font-size: 0.85rem;
  opacity: 0.85;
  line-height: 1.4;
}


.section-title {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  letter-spacing: -0.5px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.section {
  padding: 100px 0;
}


.categories-section {
  background: linear-gradient(135deg, #1B4332 0%, #081C15 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.categories-section::before {
  content: '';
  position: absolute;
  top: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(64,145,108,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.categories-section::after {
  content: '';
  position: absolute;
  bottom: -200px; right: 5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(82,183,136,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.categories-section .section-title {
  color: var(--white);
  text-align: center;
  display: block;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.categories-section .section-title::after {
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
}

.category-grid {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cat-box {
  background: var(--white);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  flex: 1;
  min-width: 160px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.03);
}

.cat-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-bottom: 5px solid var(--secondary-color);
}

.cat-box img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.cat-box h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
}


.featured-section {
  background: linear-gradient(to bottom, #F4F6F4 0%, #E8F0EA 100%);
  padding: 100px 0;
  position: relative;
}

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

.featured-header h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.featured-header p {
  color: var(--text-dark);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
}

.premium-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 40px;
}

.premium-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(45, 106, 79, 0.05);
  display: flex;
  flex-direction: column;
}

.premium-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(45, 106, 79, 0.15);
}

.premium-card-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.premium-card:hover .premium-card-img {
  transform: scale(1.08);
}

.premium-card-body {
  padding: 30px 25px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--white);
  position: relative;
  z-index: 2;
}

.premium-card-body h4 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.premium-card-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.premium-card-body .btn {
  margin-top: auto;
  padding: 12px 20px;
  font-size: 1.05rem;
}


.showcase-wrapper {
  background: var(--white);
}

.showcase-section {
  padding: 120px 0;
  display: flex;
  align-items: center;
  gap: 80px;
}

.showcase-content {
  flex: 1;
}

.showcase-content h2 {
  font-size: 3rem;
  margin-bottom: 25px;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.showcase-content p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: #555;
  line-height: 1.8;
}

.showcase-image {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.showcase-image::after {
  content: '';
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: inset 0 0 20px rgba(0,0,0,0.1);
  pointer-events: none;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.showcase-image:hover img {
  transform: scale(1.03);
}

.showcase-reverse {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--text-dark) 100%);
  color: var(--white);
  padding: 120px 0;
}

.showcase-reverse .showcase-section {
  flex-direction: row-reverse;
  padding: 0;
}

.showcase-reverse .showcase-content h2 {
  color: var(--accent-color);
}

.showcase-reverse .showcase-content p {
  color: rgba(255,255,255,0.85);
}

@media (max-width: 900px) {
  .showcase-section, .showcase-reverse .showcase-section {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 80px 20px;
  }
}

/* Farming Dreams Section */
.farming-dreams-section {
    background-color: #FDF8F0;
    padding: 80px 0;
}

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

.fd-header {
    text-align: center;
    margin-bottom: 50px;
}

.fd-header h2 {
    color: #D39D35;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.fd-header p {
    color: #5A5A5A;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.fd-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.fd-left {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fd-feature {
    display: flex;
    align-items: flex-start;
    background: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #EAEAEA;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fd-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.fd-icon {
    background: #F8F1E4;
    color: #8C7558;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.fd-text h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #333;
}

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

.fd-actions {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.btn.fd-btn-primary {
    background-color: #E6B335;
    color: #1A1A1A;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 30px;
    border: none;
    transition: background-color 0.3s ease;
}

.btn.fd-btn-primary:hover {
    background-color: #D3A125;
}

.btn.fd-btn-outline {
    background-color: transparent;
    color: #333;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 30px;
    border: 1px solid #CCC;
    transition: all 0.3s ease;
}

.btn.fd-btn-outline:hover {
    background-color: #FFF;
    border-color: #AAA;
}

.fd-right {
    flex: 1;
    min-width: 300px;
}

.fd-image-container {
    position: relative;
    border-radius: 15px;
    padding: 5px;
    background: #E8DDBF;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.fd-image-container img {
    width: 100%;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    height: 350px;
}

.fd-stats {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    display: flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    width: 90%;
    justify-content: space-around;
}

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

.fd-stat-number {
    color: #2D6A4F;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.fd-stat-label {
    color: #777;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fd-stat-divider {
    width: 1px;
    height: 40px;
    background: #EEE;
}

.fd-properties {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.fd-property-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    border: 1px solid #EAEAEA;
    transition: transform 0.3s ease;
}

.fd-property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.fd-prop-header {
    margin-bottom: 15px;
}

.fd-prop-location {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.fd-prop-location i {
    color: #777;
    margin-right: 5px;
    font-size: 0.9rem;
}

.fd-prop-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

.fd-prop-details span i {
    color: #D39D35;
    margin-right: 5px;
}

.fd-prop-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fd-prop-price {
    font-weight: bold;
    color: #2D6A4F;
    font-size: 1.1rem;
}

.btn.fd-btn-sm {
    background: transparent;
    border: 1px solid #CCC;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #333;
    transition: all 0.3s ease;
}

.btn.fd-btn-sm:hover {
    background: #2D6A4F;
    color: #FFF;
    border-color: #2D6A4F;
}

@media (max-width: 900px) {
    .fd-content {
        flex-direction: column;
    }
    .fd-left, .fd-right {
        width: 100%;
    }
    .fd-stats {
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
        width: 100%;
        margin-top: 20px;
    }
}

/* Invest in Future Yields Section */
.future-yields-section {
    background-color: #F0F6F4;
    padding: 80px 0;
    font-family: inherit;
}

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

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

.fy-header h2 {
    color: #1B4332;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.fy-header p {
    color: #555;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Steps */
.fy-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.fy-step {
    background: #FFFFFF;
    flex: 1;
    min-width: 220px;
    border-radius: 12px;
    padding: 30px 20px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #EAEAEA;
    transition: transform 0.3s ease;
}

.fy-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.fy-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #1B4332;
    color: #FFF;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(27, 67, 50, 0.3);
}

.fy-step-icon {
    font-size: 1.8rem;
    color: #2D6A4F;
    margin-bottom: 15px;
    margin-top: 10px;
}

.fy-step h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.fy-step p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* Main Split */
.fy-main {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.fy-image-wrapper {
    flex: 1;
    min-width: 350px;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.fy-image-wrapper img {
    width: 100%;
    border-radius: 16px;
    display: block;
    height: 350px;
    object-fit: cover;
}

.fy-bid-overlay {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFF;
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    gap: 15px;
}

.fy-bid-info {
    display: flex;
    flex-direction: column;
}

.fy-overlay-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.fy-overlay-value {
    font-size: 1.3rem;
    font-weight: 800;
}

.text-green { color: #1B4332 !important; }
.text-red { color: #D9534F !important; }

.fy-btn-solid {
    background-color: #1B4332;
    color: #FFF !important;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fy-btn-solid:hover {
    background-color: #081C15;
    transform: translateY(-2px);
}

.fy-btn-outline {
    background-color: transparent;
    color: #1B4332 !important;
    border: 1px solid #1B4332;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fy-btn-outline:hover {
    background-color: #1B4332;
    color: #FFF !important;
}

.fy-benefits {
    flex: 1;
    min-width: 350px;
}

.fy-benefits h3 {
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 25px;
}

.fy-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.fy-benefit-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.fy-benefit-list li i {
    font-size: 1.2rem;
    margin-top: 3px;
    margin-right: 15px;
}

.fy-benefit-list li strong {
    display: block;
    color: #1B4332;
    margin-bottom: 3px;
    font-size: 1.05rem;
}

.fy-benefit-list li p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.fy-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Cards */
.fy-cards {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.fy-card {
    background: #FFF;
    border-radius: 12px;
    padding: 20px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #EAEAEA;
    transition: transform 0.3s ease;
}

.fy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.fy-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.fy-card-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.fy-badge {
    background: #E6F7F5;
    color: #0D9488;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.fy-card-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #EEE;
}

.fy-card-details span i {
    color: #A0522D;
    margin-right: 5px;
}

.fy-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fy-card-price small {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
}

.fy-card-price {
    color: #1B4332;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.2;
}

@media (max-width: 900px) {
    .fy-main {
        flex-direction: column;
    }
    .fy-bid-overlay {
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
        width: 100%;
        margin-top: 20px;
    }
    .fy-steps {
        flex-direction: column;
        gap: 25px;
    }
}
