
:root {
    --primary-green: #2d5016;
    --primary-green-light: #3d6b1f;
    --primary-green-dark: #1f3a0f;
    --accent-gold: #c9a961;
    --accent-gold-light: #d4b876;
    --accent-gold-dark: #b89442;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --border-light: #e0e0e0;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-green: rgba(45, 80, 22, 0.85);
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;
    --container-width: 1200px;
    --section-padding: 100px 0;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* === UTILITIES === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-normal);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-green-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--primary-green);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* === NAVIGATION === */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(30, 94, 30, 0.592);
    transition: var(--transition-normal);
}

.header.scrolled {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.header.scrolled .nav {
    padding: 12px 20px;
}

.nav-logo .logo-img {
    height: 50px;
}

.header.scrolled .nav-logo .logo-img {
    height: 40px;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-white);
    position: relative;
    padding: 8px 0;
}

.header.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.toggle-bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 2px;
}

.header.scrolled .toggle-bar {
    background-color: var(--primary-green);
}

.nav-close {
    display: none;
}

/* === HERO === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 3s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--overlay-green) 0%, var(--overlay-dark) 100%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
    padding-top: 80px;
    align-items: center;
}

.hero-title-main {
    display: block;
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.hero-title-sub {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent-gold-light);
    align-items: center;
    justify-content: center;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 24px 0 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-icon::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 20px;
        opacity: 0.3;
    }
}

.hero-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-normal);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-control:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 20;
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-normal);
}

.hero-dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.hero-dot.active {
    background-color: var(--accent-gold);
    width: 32px;
    border-radius: 6px;
}

/* === STATS === */
.stats {
    padding: 80px 0;
    background-color: var(--primary-green);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: var(--text-white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    color: var(--accent-gold);
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-left: 4px;
}

.stat-label {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.9);
}

/* === WHY INVEST === */
.why-invest {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.why-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.why-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-card {
    background-color: var(--bg-white);
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    transition: var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(45, 80, 22, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon img {
    width: 28px;
    height: 28px;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.benefit-description {
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.why-visual {
    height: 600px;
}

.visual-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gallery-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.gallery-img.active {
    opacity: 1;
}

/* === INVESTMENTS === */
.investments {
    padding: var(--section-padding);
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.investment-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

.investment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.investment-card.featured {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--accent-gold);
    color: var(--text-white);
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    padding: 32px 24px;
    text-align: center;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.card-land {
    font-size: 0.9375rem;
    color: var(--accent-gold-light);
}

.card-body {
    padding: 32px 24px;
}

.card-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 24px;
    font-family: var(--font-secondary);
}

.card-features {
    margin-bottom: 28px;
}

.card-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: 700;
    margin-right: 12px;
}

/* === CALCULATOR === */
.calculator {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.calculator-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 16px;
}

.calculator-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.calculator-highlights {
    display: flex;
    gap: 40px;
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: var(--font-secondary);
}

.highlight-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.calculator-tool {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.input-group {
    margin-bottom: 28px;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
}

.input-group input[type="number"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.input-group input[type="range"] {
    width: 100%;
    height: 6px;
    background-color: var(--border-light);
    border-radius: 3px;
    -webkit-appearance: none;
}

.input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background-color: var(--primary-green);
    border-radius: 50%;
    cursor: pointer;
}

.input-group input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background-color: var(--primary-green);
    border-radius: 50%;
    border: none;
}

.range-value {
    display: block;
    margin-top: 8px;
    font-weight: 600;
    color: var(--primary-green);
}

.calculator-results {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.result-item:last-child {
    border-bottom: none;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-secondary);
}

.result-value.profit {
    color: var(--accent-gold-dark);
}

/* === HOW IT WORKS === */
.how-it-works {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    grid-column: span 2;
    background-color: var(--bg-white);
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: var(--transition-normal);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(45, 80, 22, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 36px;
    height: 36px;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.step-description {
    font-size: 0.9375rem;
    color: var(--text-medium);
}

.step-connector {
    grid-column: span 1;
    height: 2px;
    background: linear-gradient(to right, var(--primary-green), var(--accent-gold));
    position: relative;
    align-self: center;
}

.step-connector::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    font-size: 1.5rem;
}

/* === GALLERY === */
.gallery {
    padding: var(--section-padding);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 12px 28px;
    background-color: transparent;
    border: 2px solid var(--border-light);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-medium);
    transition: var(--transition-normal);
}

.gallery-tab:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.gallery-tab.active {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--text-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--text-white);
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

/* === TESTIMONIALS === */
.testimonials {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: var(--text-white);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto 40px;
    min-height: 300px;
    position: relative;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 48px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
    pointer-events: all;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    padding-left: 40px;
    margin-bottom: 32px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--accent-gold);
    font-family: var(--font-secondary);
}

.testimonial-author {
    display: flex;
    gap: 20px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
}

.author-title {
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.control-btn:hover {
    background-color: var(--accent-gold);
}

.testimonials-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-normal);
}

.dot.active {
    background-color: var(--accent-gold);
    width: 32px;
    border-radius: 6px;
}

/* === CTA === */
.cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    text-align: center;
}

.cta-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* === CONTACT === */
.contact {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.contact-description {
    color: var(--text-medium);
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 4px;
}

.contact-text p {
    color: var(--text-medium);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.social-link {
    width: 44px;
    height: 44px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-link:hover {
    background-color: var(--accent-gold);
    transform: translateY(-4px);
}

.social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* === FOOTER === */
.footer {
    background-color: var(--primary-green-dark);
    color: var(--text-white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-powered {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 8px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

/* === FLOAT BUTTONS === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--accent-gold);
    transform: translateY(-4px);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-title-main {
        font-size: 3rem;
        align-items: center;
    }
    
    .hero-title-sub {
        font-size: 1rem;
        align-items: center;
    }
    
    .why-content {
        grid-template-columns: 1fr;
    }
    
    .why-visual {
        height: 400px;
    }
    
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        grid-column: span 1;
    }
    
    .step-connector {
        display: none;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-white);
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-normal);
        z-index: 1001;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
    
    .nav-link {
        color: var(--text-dark);
        font-size: 1.125rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        color: var(--text-dark);
        cursor: pointer;
    }
    
    .hero {
        min-height: 500px;
    }

    .hero-content{
        align-items: center;
        text-align: center;
    }
    
    .hero-title-main {
        font-size: 2.25rem;
        align-items: center;
    }
    
    .hero-title-sub {
        font-size: 1.5rem;
        align-items: center;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-large {
        width: 100%;
        text-align: center;
    }
    
    .hero-control {
        width: 25px;
        height: 25px;
        font-size: 1.25rem;
    }
    
    .hero-prev {
        left: 15px;
    }
    
    .hero-next {
        right: 15px;
    }
    
    .hero-indicators {
        bottom: 20px;
        right: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .investment-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-title,
    .cta-title,
    .contact-title {
        font-size: 2rem;
    }
    
    .calculator-highlights {
        flex-direction: column;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .testimonial-text {
        font-size: 1.125rem;
        padding-left: 30px;
    }
    
    .testimonial-text::before {
        font-size: 3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: 1.875rem;
        align-items: center;
    }
    
    .hero-title-sub {
        font-size: 1.25rem;
        align-items: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
    }
    
    .calculator-tool,
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}