/* ===== CSS Variables ===== */
:root {
    --color-primary: #0d6640;
    --color-primary-dark: #094d30;
    --color-primary-light: #1a8a56;
    --color-primary-bg: #eaf5ef;
    --color-stats-bg: #c8e6d4;
    --color-white: #ffffff;
    --color-black: #1a1a1a;
    --color-text: #333333;
    --color-text-light: #6b7280;
    --color-border: #e5e7eb;
    --color-bg-light: #f5f7f5;
    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.07);
    --shadow-card-hover: 0 6px 24px rgba(0, 0, 0, 0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.25s ease;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Header ===== */
.header {
    background: var(--color-white);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-icon-box {
    width: 34px;
    height: 34px;
    background: #22c55e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-black);
    letter-spacing: 0.3px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    color: #555;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: color var(--transition);
}

.nav-link:hover {
    color: var(--color-black);
}

.nav-link.active {
    color: var(--color-black);
    font-weight: 700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #22c55e;
    border-radius: 2px;
}

.header-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--color-black);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    z-index: 1000;
    padding: 80px 24px 24px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.mobile-nav-link {
    color: var(--color-black);
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    transition: color var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--color-primary);
    font-weight: 700;
}

.mobile-header-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.mobile-header-btns .btn-store {
    width: 100%;
    justify-content: center;
}

/* Store Buttons */
.btn-store {
    background: transparent;
    border: none;
    padding: 0;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition), transform var(--transition);
    cursor: pointer;
    font-family: inherit;
}

.btn-store:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.store-icon-img {
    width: 120px;
    height: 34px;
    object-fit: contain;
    display: block;
}

/* ===== Buttons ===== */
.btn {
    /* padding: 9px 22px; */
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
    background: #1a1a2e;
    color: var(--color-white);
    border: none;
}

.btn-dark:hover {
    background: #2d2d44;
}

.btn-outline-dark {
    background: transparent;
    color: #1a1a2e;
    border: 1.5px solid #1a1a2e;
}

.btn-outline-dark:hover {
    background: #1a1a2e;
    color: var(--color-white);
}

.btn-primary {
    background: #22c55e;
    color: var(--color-white);
    border: none;
}

.btn-primary:hover {
    background: #16a34a;
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px 12px 12px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

/* ===== Hero Section ===== */
.hero {

    background-image: url('../images/home1/background@2x.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 52%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.35;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 72px 24px 96px;
}

.hero-content {
    max-width: 520px;
}

.hero-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.hero-title .text-green {
    color: #5dd88a;
}

.hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 460px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    align-items: center;
}

.hero-btns .btn img {
    width: 20px;
    height: 20px;
    margin-left: 20px;
}

.hero-btns .btn {
    padding: 12px 28px;
    font-size: 15px;
}

/* ===== Stats Bar ===== */
.stats-bar {
    background: #fff;
    padding: 28px 0;
    position: relative;
    z-index: 3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 0 28px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100px;
    background: rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.1;
    letter-spacing: -0.3px;
    text-align: center;
}

.stat-label {
    font-size: 12px;
    color: #4b7060;
    margin-top: 2px;
    line-height: 1.3;
}

/* ===== Section Common ===== */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.3px;
}

.section-desc {
    font-size: 15px;
    color: var(--color-text-light);
    text-align: center;
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.65;
}

.section-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
}

.section-btns .btn {
    padding: 12px 32px;
    font-size: 15px;
}

.btn-app-store {
    background: #1a1a2e;
    color: var(--color-white);
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background var(--transition);
    cursor: pointer;
    font-family: inherit;
}

.btn-app-store:hover {
    background: #2d2d44;
}

.app-store-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-white);
}

.btn-app-store {
    background: #1a1a2e;
    color: var(--color-white);
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background var(--transition);
    cursor: pointer;
    font-family: inherit;
}

.btn-app-store:hover {
    background: #2d2d44;
}

.app-store-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-white);
}

/* ===== Why Choose HappyFund ===== */
.why-choose {
    background: #F9FAFB;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
    min-height: 140px;
}

.feature-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-1px);
}

.feature-body {
    flex: 1;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary-light);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.feature-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 10px;
    letter-spacing: -0.1px;
}

.feature-desc {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.65;
    max-width: 560px;
}

.feature-icon-wrap {
    width: 280px;
    min-width: 280px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);

    flex-shrink: 0;
}

.feature-icon-wrap img {
    width: 280px;
    height: 100%;
    max-height: 256px;
    object-fit: contain;
}



/* ===== How to Get a Loan ===== */
.how-to-loan {
    background: var(--color-white);
}

.loan-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
    margin-bottom: 40px;
    padding: 0 20px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
    min-width: 180px;
    max-width: 220px;
}

.step-icon {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.step-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-white);
    z-index: 3;
    border: 2px solid var(--color-white);
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.step-number {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-item:not(.step-active) .step-number {
    color: #9ca3af;
}

.step-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-black);
    text-align: center;
    line-height: 1.3;
    margin: 0;
}

.step-desc {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    line-height: 1.5;
    margin: 0;
    max-width: 180px;
}

.step-connector {
    flex: 1;
    min-width: 40px;
    max-width: 100px;
    height: 0;
    border-top: 2px solid var(--color-primary);
    background: none;
    margin-top: 65px;
    position: relative;
    z-index: 1;
    align-self: flex-start;
}

/* ===== Testimonials ===== */
.testimonials {
    background: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: #FFFFFF;
    box-shadow: 0px 2px 16px 0px rgba(0,0,0,0.06);
    border-radius: 16px 16px 16px 16px;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 24px;

    border: none;
    transition: box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;

    object-fit: cover;
    flex-shrink: 0;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.2;
}

.stars {
    font-size: 18px;
    color: #FFD700;
    letter-spacing: 2px;
    line-height: 1;
}

.testimonial-text {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

/* ===== FAQ ===== */
.faq {
    background: #F9FAFB;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto 32px;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.faq-item:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-black);
    cursor: pointer;
    transition: background var(--transition);
    user-select: none;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-bg-light);
    color: var(--color-text-light);
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--color-primary-bg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
}

.faq-btn-wrap {
    text-align: center;
    
}

.faq-btn-wrap .btn {
 
    padding: 12px 40px;
    font-size: 15px;
    background: linear-gradient(45deg, #06A06E 0%, #025E40 100%);
    box-shadow: 0px 6px 24px 0px rgba(4, 134, 90, 0.3);
}
.faq-btn-wrap .btn:hover{
    background: linear-gradient(70deg, #04865A 0%, #025E40 100%);
}

.faq-btn-wrap img {
    width: 14px;
    height: 14px;
    margin-left: 10px;
}

/* ===== Partners ===== */
.partners {
    background: var(--color-white);
    padding: 64px 0;
}

.partners .section-title {
    font-size: 26px;
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.partners-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.partners-row:last-child {
    margin-bottom: 0;
}

.partner-logo {

    display: flex;
    align-items: center;
    justify-content: center;

}



.partner-logo img {
    width: 435px;
    height: 146px;
    object-fit: contain;
}

/* ===== Footer ===== */
.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 56px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 56px;
    padding-bottom: 40px;

}

.footer-logo {
    margin-bottom: 16px;
    display: inline-flex;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 14px;
    line-height: 1.65;
}

.footer-email {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    transition: color var(--transition);
}

.footer-email:hover {
    color: var(--color-white);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--color-white);
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--color-white);
}

.app-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-btns a img {
    height: 36px;
    width: auto;
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
}

.social-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--color-white);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
        padding: 0 20px;
    }
}

@media (max-width: 1100px) {
    .container {
        max-width: 960px;
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-item {
        padding: 0 16px;
    }

    .feature-icon-wrap {
        width: 280px;
        min-width: 280px;
        height: 100%;
    }

    .feature-icon-wrap img {
        max-height: 256px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 16px;
    }

    .nav {
        display: none;
    }

    .header-btns {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.15;
    }

    .hero-inner {
        padding: 56px 20px 80px;
    }

    .hero-title {
        font-size: 28px;
    }

    .loan-steps {
        flex-wrap: wrap;
        gap: 20px;
        padding: 0 10px;
    }

    .step-item {
        min-width: 140px;
        max-width: 160px;
    }

    .step-connector {
        display: none;
    }

    .section-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-app-store {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .feature-card,
    .feature-card.feature-card-reverse {
        flex-direction: column;
    }

    .feature-icon-wrap {
        width: 100%;
        min-width: unset;
        height: auto;
        aspect-ratio: 280 / 256;
        margin: 0;
        border-radius: 0;
    }

    .feature-icon-wrap img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .loan-steps {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .step-connector {
        width: 0;
        min-width: 0;
        max-width: none;
        height: 0;
        border-top: none;
        border-left: 2px dashed var(--color-primary);
        min-height: 24px;
        margin: 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .partners-row {
        flex-wrap: wrap;
        gap: 16px;
    }

    .partner-logo {
        min-width: 140px;
        padding: 16px 24px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-btns .btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .logo-text {
        font-size: 17px;
    }

    .hero-title {
        font-size: 24px;
    }

    .stat-value {
        font-size: 20px;
    }

    .section-title {
        font-size: 22px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(13, 102, 64, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 6px 16px rgba(13, 102, 64, 0.4);
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}