﻿/* ========================================
   CSS Variables - Forest Green + Gold Theme
   ======================================== */
:root {
    --primary-green: #059669;
    --primary-dark: #047857;
    --dark-green: #064E3B;
    --dark-green-light: #065F46;
    --accent-gold: #F59E0B;
    --accent-gold-light: #FCD34D;
    --light-bg: #F0FDF4;
    --card-bg: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --border-light: #E5E7EB;
    --border-medium: #D1D5DB;
    --success-green: #10B981;
    --warning-amber: #F59E0B;
}

/* ========================================
   Global Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: var(--light-bg);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   Modern Navbar Styles
   ======================================== */
.modern-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

    .modern-navbar.scrolled {
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
        background: rgba(255, 255, 255, 0.98);
    }

.navbar-brand-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

    .navbar-brand-modern:hover {
        color: var(--primary-green);
    }

    .navbar-brand-modern i {
        font-size: 1.75rem;
        color: var(--accent-gold);
    }

.nav-link-modern {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
    text-decoration: none;
    position: relative;
}

    .nav-link-modern:hover {
        color: var(--text-dark);
    }

    .nav-link-modern::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--primary-green);
        transition: width 0.3s ease;
    }

    .nav-link-modern:hover::after {
        width: 60%;
    }

.btn-primary-modern {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

    .btn-primary-modern:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
        color: white;
    }

.btn-outline-modern {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border-light);
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

    .btn-outline-modern:hover {
        border-color: var(--primary-green);
        color: var(--primary-green);
        background: rgba(5, 150, 105, 0.05);
    }

.navbar-toggler-modern {
    border: none;
    padding: 0.5rem;
    background: transparent;
}

    .navbar-toggler-modern:focus {
        box-shadow: none;
    }

/* ========================================
   Main Content Area
   ======================================== */
.gm-shell {
    min-height: calc(100vh - 80px);
    padding-top: 80px;
}

.gm-content {
    width: 100%;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, #F0FDF4 0%, #D1FAE5 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
        border-radius: 50%;
    }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
    animation: fadeInUp 0.6s ease;
}

    .hero-badge i {
        color: var(--accent-gold);
    }

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 540px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.btn-hero-primary {
    background: var(--primary-green);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
}

    .btn-hero-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
        color: white;
    }

.btn-hero-secondary {
    background: white;
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 1.5px solid var(--border-light);
}

    .btn-hero-secondary:hover {
        border-color: var(--primary-green);
        color: var(--primary-green);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

.hero-trust {
    margin-top: 2rem;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.trust-text {
    font-size: 0.875rem;
    color: var(--text-gray);
    display: block;
    margin-bottom: 1rem;
}

.logo-group {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.company-logo {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 600;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

    .company-logo:hover {
        opacity: 1;
    }

/* Hero Visual Dashboard Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.dashboard-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
    animation: fadeInRight 0.8s ease;
}

.mockup-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.primary-card {
    z-index: 2;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.header-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.header-line {
    flex: 1;
    height: 8px;
    background: var(--light-bg);
    border-radius: 4px;
}

.stat-item {
    margin-bottom: 1rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-change {
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

    .stat-change.positive {
        color: var(--success-green);
    }

.mini-chart {
    height: 80px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    border-radius: 8px;
    margin-top: 1rem;
}

.secondary-card {
    position: absolute;
    top: 50px;
    right: -20px;
    background: var(--dark-green);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    z-index: 3;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.8s ease 0.2s both;
}

.notification-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 0.875rem;
}

    .notification-item i {
        color: var(--accent-gold);
        animation: bounce 2s ease-in-out infinite;
    }

.floating-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 4;
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    bottom: 60px;
    left: -30px;
    color: var(--primary-green);
    animation-delay: 0s;
}

    .badge-1 i {
        color: var(--primary-green);
    }

.badge-2 {
    top: 100px;
    right: -40px;
    color: var(--accent-gold);
    animation-delay: 1s;
}

    .badge-2 i {
        color: var(--accent-gold);
    }

/* ========================================
   Stats Section
   ======================================== */
.stats-section {
    background: white;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-light);
}

.stat-block {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-green);
    background: rgba(5, 150, 105, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
    padding: 6rem 0;
    background: white;
}

.features-grid {
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        border-color: var(--primary-green);
    }

.feature-icon-wrapper {
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon.green {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
}

.feature-icon.dark {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green-light) 100%);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.steps-grid {
    margin-top: 3rem;
}

.step-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    position: relative;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

    .step-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    }

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(5, 150, 105, 0.15);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   Use Cases Section
   ======================================== */
.use-cases-section {
    padding: 6rem 0;
    background: white;
}

.use-case-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

    .use-case-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        border-color: var(--primary-green);
    }

.use-case-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
}

.use-case-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.use-case-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.testimonials-grid {
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

    .testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    }

.testimonial-rating {
    margin-bottom: 1.5rem;
}

    .testimonial-rating i {
        color: var(--accent-gold);
        font-size: 1rem;
        margin-right: 0.25rem;
    }

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin: 0;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-section {
    padding: 6rem 0;
    background: white;
}

.pricing-grid {
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid var(--border-light);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .pricing-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
    }

    .pricing-card.featured {
        border-color: var(--primary-green);
        border-width: 3px;
        transform: scale(1.05);
        box-shadow: 0 20px 60px rgba(5, 150, 105, 0.15);
    }

        .pricing-card.featured:hover {
            transform: translateY(-6px) scale(1.05);
        }

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-gray);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--text-gray);
    margin-left: 0.25rem;
}

.pricing-description {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    flex: 1;
}

    .pricing-features li {
        padding: 0.75rem 0;
        font-size: 0.95rem;
        color: var(--text-dark);
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
    }

        .pricing-features li i {
            color: var(--primary-green);
            font-size: 1.1rem;
            margin-top: 0.1rem;
        }

.btn-pricing {
    background: var(--primary-green);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

    .btn-pricing:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
        color: white;
    }

.pricing-card.featured .btn-pricing {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
}

.pricing-note {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

    .faq-item:hover {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

.faq-question {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.faq-answer {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 6rem 0;
    background: white;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    color: var(--text-dark);
    background: white;
    border: 1.5px solid var(--border-light);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

    .form-control:focus {
        outline: none;
        border-color: var(--primary-green);
        box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
    }

    .form-control::placeholder {
        color: var(--text-light);
    }

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-contact-submit {
    background: var(--primary-green);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

    .btn-contact-submit:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
    }

.contact-success {
    text-align: center;
    padding: 3rem 2rem;
}

    .contact-success i {
        font-size: 4rem;
        color: var(--success-green);
        margin-bottom: 1.5rem;
    }

    .contact-success h4 {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.75rem;
    }

    .contact-success p {
        font-size: 1.05rem;
        color: var(--text-gray);
        margin: 0;
    }

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

    .contact-info-card:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
    }

.contact-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.25rem;
}

.contact-info-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-info-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.contact-info-subtext {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin: 0;
}

/* ========================================
   CTA Final Section
   ======================================== */
.cta-final-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.cta-content-box {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green-light) 100%);
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-final-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-final-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 0;
}

.btn-cta-final {
    background: white;
    color: var(--dark-green);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
}

    .btn-cta-final:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        color: var(--dark-green);
    }

/* ========================================
   Modern Footer
   ======================================== */
.modern-footer {
    background: var(--dark-green);
    color: #FFFFFF;
    padding: 4rem 0 2rem;
    margin-top: 0;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .footer-brand i {
        color: var(--accent-gold);
    }

.footer-description {
    color: #B0B8C1;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.footer-link {
    color: #B0B8C1;
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

    .footer-link:hover {
        color: var(--accent-gold);
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #B0B8C1;
    font-size: 0.875rem;
}

.social-links a {
    color: #B0B8C1;
    font-size: 1.25rem;
    margin-left: 1.5rem;
    transition: color 0.2s ease;
    text-decoration: none;
}

    .social-links a:hover {
        color: var(--accent-gold);
    }

/* ========================================
   Smooth Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}
