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

body {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    line-height: 1.6;
    color: #333333;
    background: #FFFADC;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    color: #FFFFFF;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    color: #B6F500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
}

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #B6F500;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.language-selector i {
    color: #FFFFFF;
    font-size: 1rem;
}

.language-dropdown {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: #FFFFFF;
    padding: 0.4rem 0.8rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    min-width: 60px;
}

.language-dropdown:hover {
    border-color: #B6F500;
    background: rgba(182, 245, 0, 0.1);
}

.language-dropdown:focus {
    border-color: #B6F500;
    background: rgba(182, 245, 0, 0.1);
}

.language-dropdown option {
    background: #434C53;
    color: #FFFFFF;
    padding: 0.5rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn-primary {
    background: #efefeb;
    color: #333333;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #FFC107;
    color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fbf4f4;
    border: 2px solid #A4DD00;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #A4DD00;
    color: #FFFADC;
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #666666;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #666666;
    color: #FFFFFF;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0;
    position: relative;
    overflow: hidden;
    background: #434C53;
}

.hero::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

.hero-content {
    flex: 0 0 50%;
    z-index: 2;
    padding-right: 4rem;
    margin-left: -2rem;
}

.hero-visual {
    position: absolute;
    right: -450px;
    top: 0;
    width: 80vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    padding-right: -100px;
    background-image: url('../images/hero.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}

.hero-content h1 {
    font-size: 4rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #FFFFFF;
}

.highlight {
    color: #B5FF5E;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.hero-content p {
    font-size: 1.2rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    color: #CCCCCC;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #99DB7C, #B5FF5E);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: rgba(153, 219, 124, 0.5);
    box-shadow: 0 10px 30px rgba(153, 219, 124, 0.2);
}

.stat:hover::before {
    opacity: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFFFFF, #B5FF5E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    color: #CCCCCC;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}





/* Features Section */
.features {
    padding: 6rem 0;
    background: #A4DD00;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    margin-bottom: 3rem;
    color: #333333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 250, 220, 0.8);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(182, 245, 0, 0.5);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #B6F500;
    box-shadow: 0 20px 40px rgba(182, 245, 0, 0.4);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #B6F500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(182, 245, 0, 0.6);
}

.feature-icon i {
    font-size: 2rem;
    color: #333333;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #333333;
}

.feature-card p {
    color: rgba(51, 51, 51, 0.8);
    line-height: 1.6;
}

/* Calculator Section */
.calculator {
    padding: 6rem 0;
    background: #FFFADC;
}

.calculator h2 {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    margin-bottom: 3rem;
    color: #333333;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-form {
    background: rgba(164, 221, 0, 0.1);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #B6F500;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    color: #333333;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #A4DD00;
    border-radius: 8px;
    background: #FFFADC;
    color: #333333;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
}

.form-group input:focus {
    outline: none;
    border-color: #B6F500;
    box-shadow: 0 0 0 3px rgba(182, 245, 0, 0.2);
}

.calculator-results {
    background: rgba(164, 221, 0, 0.1);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #B6F500;
}

.calculator-results h3 {
    font-size: 1.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #333333;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item:last-child {
    border-bottom: none;
}

.result-item span:last-child {
    font-weight: 600;
    color: #B6F500;
}

/* Investment Section */
.investment {
    padding: 6rem 0;
    background: #98CD00;
}

.investment h2 {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    margin-bottom: 3rem;
    color: #333333;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.investment-card {
    background: rgba(255, 250, 220, 0.8);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(182, 245, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.investment-card.featured {
    border-color: #B6F500;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(182, 245, 0, 0.4);
}

.investment-card:hover {
    transform: translateY(-5px);
    border-color: #B6F500;
    box-shadow: 0 20px 40px rgba(182, 245, 0, 0.4);
}

.investment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.investment-header h3 {
    font-size: 1.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    color: #333333;
}

.investment-badge {
    background: #B6F500;
    color: #333333;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
}

.investment-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.investment-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgba(51, 51, 51, 0.8);
}

.investment-features i {
    color: #B6F500;
    margin-right: 0.5rem;
}

.investment-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #B6F500;
}

.period {
    color: rgba(51, 51, 51, 0.7);
    font-size: 1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #FFFADC;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #333333;
}

.about-text p {
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.about-stat .stat-number {
    color: #B6F500;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 300px;
    height: 300px;
    background: #B6F500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(182, 245, 0, 0.6);
}

.about-image i {
    font-size: 6rem;
    color: #333333;
}

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

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #A4DD00;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    margin-bottom: 3rem;
    color: #333333;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #B6F500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333333;
    box-shadow: 0 0 15px rgba(182, 245, 0, 0.6);
}

.contact-item h4 {
    font-size: 1.1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #333333;
}

.contact-item p {
    color: #333333;
}

.contact-form {
    background: rgba(255, 250, 220, 0.8);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #B6F500;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #A4DD00;
    border-radius: 8px;
    background: #FFFADC;
    color: #333333;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #B6F500;
    box-shadow: 0 0 0 3px rgba(182, 245, 0, 0.2);
}

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

/* Footer */
.footer {
    background: #333333;
    padding: 3rem 0 1rem;
    border-top: 2px solid #B6F500;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    color: #FFFADC;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    color: #B6F500;
}

.footer-section p {
    color: #FFFADC;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #98CD00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #B6F500;
    color: #333333;
    box-shadow: 0 0 15px rgba(182, 245, 0, 0.6);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #FFFADC;
}

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

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

.footer-section ul li a {
    color: #FFFADC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #B6F500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #B6F500;
}

.footer-bottom p {
    color: #FFFADC;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #FFFADC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #B6F500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-image {
        width: 500px;
        height: 375px;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    

    
    .calculator-container {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}
