/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2D5A27;
    --secondary-green: #4A7C59;
    --accent-green: #6BAF8A;
    --light-green: #A8D5BA;
    --teal: #2C5F5D;
    --dark-teal: #1E4A47;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --dark-gray: #343A40;
    --black: #000000;
    
    --font-primary: 'Montserrat', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    --shadow-xl: 0 16px 32px rgba(0,0,0,0.25);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(45, 90, 39, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

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

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    animation: logoGlow 3s ease-in-out infinite;
    transition: var(--transition);
}

.logo:hover .logo-image {
    transform: rotate(5deg);
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-green);
    letter-spacing: 2px;
    animation: textGlow 3s ease-in-out infinite;
}

/* Navigation Styles */
.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-green);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 50%, var(--accent-green) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.terrestrial-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('../images/land.webp') center center / cover no-repeat,
        linear-gradient(45deg, 
            rgba(45, 90, 39, 0.2) 0%, 
            rgba(106, 175, 138, 0.15) 25%, 
            rgba(168, 213, 186, 0.15) 50%, 
            rgba(45, 90, 39, 0.2) 75%, 
            rgba(44, 95, 93, 0.2) 100%
        );
    background-blend-mode: overlay;
    animation: terrestrialShift 20s ease-in-out infinite;
    opacity: 0.6;
}

.terrestrial-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(45, 90, 39, 0.05) 3px,
            rgba(45, 90, 39, 0.05) 6px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(106, 175, 138, 0.05) 3px,
            rgba(106, 175, 138, 0.05) 6px
        );
    animation: gridMove 15s linear infinite;
    opacity: 0.6;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.coin {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: var(--shadow-lg);
}

.coin::before {
    content: '₹';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
}

.coin-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.coin-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.coin-3 {
    top: 40%;
    left: 5%;
    animation-delay: 4s;
}

.coin-4 {
    top: 80%;
    right: 25%;
    animation-delay: 1s;
}

.crop {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: cropGrow 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
}

.crop::before {
    content: '🌾';
    animation: cropSway 3s ease-in-out infinite;
}

.crop-1 {
    top: 30%;
    right: 10%;
    animation-delay: 1s;
}

.crop-1::before {
    content: '🌾';
}

.crop-2 {
    top: 70%;
    left: 20%;
    animation-delay: 2.5s;
}

.crop-2::before {
    content: '🌽';
}


.crop-4 {
    top: 60%;
    right: 30%;
    animation-delay: 3.2s;
}

.crop-4::before {
    content: '🍅';
}

.crop-5 {
    top: 80%;
    left: 60%;
    animation-delay: 1.8s;
}

.crop-5::before {
    content: '🥬';
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color:#fff;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 
        2px 2px 0px #2D5A27,
        -2px -2px 0px #2D5A27,
        2px -2px 0px #2D5A27,
        -2px 2px 0px #2D5A27,
        0px 2px 0px #2D5A27,
        0px -2px 0px #2D5A27,
        2px 0px 0px #2D5A27,
        -2px 0px 0px #2D5A27,
        3px 3px 6px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    animation: slideInRight 1s ease-out 0.6s both;
    text-shadow: 
        1px 1px 0px #000000,
        -1px -1px 0px #000000,
        1px -1px 0px #000000,
        -1px 1px 0px #000000,
        0px 1px 0px #000000,
        0px -1px 0px #000000,
        1px 0px 0px #000000,
        -1px 0px 0px #000000,
        2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.9s both;
    text-shadow: 
        1px 1px 0px #000000,
        -1px -1px 0px #000000,
        1px -1px 0px #000000,
        -1px 1px 0px #000000,
        0px 1px 0px #000000,
        0px -1px 0px #000000,
        1px 0px 0px #000000,
        -1px 0px 0px #000000,
        2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    animation: countUp 2s ease-out;
}

.stat-label {
    font-size: 0.9rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        1px 1px 0px #000000,
        -1px -1px 0px #000000,
        1px -1px 0px #000000,
        -1px 1px 0px #000000,
        0px 1px 0px #000000,
        0px -1px 0px #000000,
        1px 0px 0px #000000,
        -1px 0px 0px #000000,
        1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--dark-teal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--primary-green);
    border-bottom: 2px solid var(--primary-green);
    transform: rotate(45deg);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.features {
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-top: 0.5rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.floating-card span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.floating-card small {
    color: var(--gray);
    font-size: 0.9rem;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 30%;
    animation-delay: 2s;
}

/* Investment Section */
.investment {
    background: var(--white);
}

.investment-content {
    display: flex;
    justify-content: center;
}

.investment-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 500px;
    transition: var(--transition);
}

.investment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-green), var(--teal));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
}

.card-body {
    padding: 2rem;
}

.investment-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.detail-item i {
    color: var(--primary-green);
    font-size: 1.2rem;
    width: 20px;
}

.benefits h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.benefits ul {
    list-style: none;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.benefits i {
    color: var(--accent-green);
    font-size: 0.9rem;
}

.card-footer {
    padding: 2rem;
    background: var(--light-gray);
    text-align: center;
}

/* Metro Cities Section */
.cities {
    background: var(--light-gray);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.city-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.city-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.city-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.city-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.mumbai-bg {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://holytreetravel.com/blog/IMAGE/Gateway-of-India.jpg') center center / cover no-repeat;
}

.pune-bg {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://images.wanderon.in/blogs/new/2024/11/shaniwar-wada-palace.jpg') center center / cover no-repeat;
}

.kolhapur-bg {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://upload.wikimedia.org/wikipedia/commons/3/33/Kolhapur_New_Palace.jpg') center center / cover no-repeat;
}

.city-card:hover .city-bg {
    transform: scale(1.1);
}

.city-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.city-overlay h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.city-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

.city-content {
    padding: 2rem;
}

.city-content h4 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.city-content .investment-details {
    margin-bottom: 2rem;
}

.city-content .detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.city-content .detail i {
    color: var(--primary-green);
    font-size: 1.2rem;
    width: 20px;
}

.city-benefits {
    margin-bottom: 2rem;
}

.city-benefits h5 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.city-benefits ul {
    list-style: none;
}

.city-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.city-benefits i {
    color: var(--accent-green);
    font-size: 0.9rem;
}

/* Rental Section */
.rental {
    background: linear-gradient(135deg, var(--light-green), var(--white));
}

.rental-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rental-highlight {
    text-align: center;
    margin-bottom: 2rem;
}

.rental-highlight h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.rent-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
}

.rental-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.feature i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.rental-description {
    color: var(--gray);
    font-size: 1.1rem;
}

.payout-options h3 {
    color: var(--primary-green);
    margin-bottom: 2rem;
    text-align: center;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.option-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.option-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.option-item i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

/* Referral Section */
.referral {
    background: var(--white);
}

.referral-content {
    display: flex;
    justify-content: center;
}

.referral-card {
    background: linear-gradient(135deg, var(--primary-green), var(--teal));
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    box-shadow: var(--shadow-xl);
}

.referral-amount {
    margin-bottom: 2rem;
}

.referral-amount .currency {
    font-size: 2rem;
    font-weight: 600;
}

.referral-amount .amount {
    font-size: 4rem;
    font-weight: 800;
    display: block;
}

.referral-amount .per {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.referral-details {
    margin-bottom: 2rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.detail i {
    font-size: 1.2rem;
}

.referral-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-green);
    width: 40px;
}

.contact-item h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.contact-form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.success-message {
    background: var(--accent-green);
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
}

.error-message {
    background: #dc3545;
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-logo p {
    color: var(--light-green);
    margin-top: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--light-green);
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--light-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
}

/* Animations */
@keyframes logoGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(45, 90, 39, 0.3); }
    50% { box-shadow: 0 0 30px rgba(45, 90, 39, 0.6); }
}

@keyframes leafGrow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes fieldGrow {
    0%, 100% { width: 15px; }
    50% { width: 20px; }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(45, 90, 39, 0.3); }
    50% { text-shadow: 0 0 20px rgba(45, 90, 39, 0.6); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes cropGrow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes cropSway {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

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

@keyframes terrestrialShift {
    0%, 100% {
        background-position: 0% 50%, 0% 0%, 100% 100%, 0% 0%;
    }
    25% {
        background-position: 100% 50%, 25% 25%, 75% 75%, 25% 25%;
    }
    50% {
        background-position: 100% 100%, 50% 50%, 50% 50%, 50% 50%;
    }
    75% {
        background-position: 0% 100%, 75% 75%, 25% 25%, 75% 75%;
    }
}

@keyframes gridMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(20px) translateY(20px);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Scroll-triggered animations */
.feature-item,
.city-card,
.option-item,
.contact-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.feature-item.animate,
.city-card.animate,
.option-item.animate,
.contact-item.animate {
    opacity: 1;
    transform: translateY(0);
    animation: slideInUp 0.6s ease-out forwards;
}

.investment-card,
.referral-card {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease-out;
}

.investment-card.animate,
.referral-card.animate {
    opacity: 1;
    transform: scale(1);
    animation: scaleIn 0.8s ease-out forwards;
}

.section-header {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s ease-out;
}

.section-header.animate {
    opacity: 1;
    transform: translateY(0);
    animation: slideInUp 0.6s ease-out forwards;
}

.floating-card {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.7s ease-out;
}

.floating-card.animate {
    opacity: 1;
    transform: translateX(0);
    animation: slideInLeft 0.7s ease-out forwards;
}

.floating-card:nth-child(even).animate {
    animation: slideInRight 0.7s ease-out forwards;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-list {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content,
    .rental-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .floating-card {
        position: static;
        margin-bottom: 1rem;
    }
    
    .image-container {
        height: auto;
    }
    
    /* Hide extra floating elements on mobile */
    .coin-3,
    .coin-4,
    .crop-4,
    .crop-5 {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .investment-card,
    .referral-card {
        margin: 0 1rem;
    }
}
