@import url('https://fonts.googleapis.com/css2?family=Adventure&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0eaa0b;
    --primary-dark: #0a7b0a;
    --secondary: #3e7fb9;
    --bg: #f7faf8;
    --surface: #ffffff;
    --text: #1e2b26;
    --muted: #5f6f67;
    --border: rgba(14, 170, 11, 0.12);
}

html, body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--bg);
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.gtco-nav {
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

#gtco-logo img {
    max-height: 60px;
}

.menu-1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-1 ul li {
    display: inline-block;
    margin-left: 18px;
}

.menu-1 ul li a {
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-1 ul li a:hover,
.menu-1 ul li.active a {
    color: var(--primary);
}

.gtco-cover {
    position: relative;
    background-size: cover;
    background-position: center center;
    color: #fff;
}

.gtco-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.gtco-cover .gtco-container,
.gtco-cover .gtco-section {
    position: relative;
    z-index: 2;
}

.bt-redesign {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    transition: transform 0.25s ease, background-color 0.25s ease;
    text-decoration: none;
}

.btn-primary, .btn-default {
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
}

.btn-primary {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.28);
    transform: translateY(-2px);
}

.hero-title {
    font-size: 3.6rem;
    line-height: 1.05;
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-family: 'Adventure', cursive;
    font-size: 2.1rem;
    margin-bottom: 1.4rem;
    color: #f3f9ef;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-text {
    max-width: 760px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.92);
    font-size: 1.02rem;
    line-height: 1.8;
}

.hero-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.8rem;
}

.hero-card {
    background: rgba(255,255,255,0.12);
    padding: 18px 22px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.15);
    min-width: 220px;
    color: #fff;
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
}

.hero-card i {
    font-size: 1.3rem;
    color: #fff;
}

.hero-card span {
    font-size: 0.98rem;
    color: #f2f8ee;
}

.gtco-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 700;
}

.gtco-heading p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.85;
}

.feature-center {
    background: var(--surface);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 24px;
}

.feature-center:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0,0,0,0.12);
}

.feature-center h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 18px;
    margin-bottom: 12px;
}

.feature-center p {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.75;
}

.text-highlight {
    color: var(--primary);
    font-weight: 700;
}

.contact-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

.contact-card input,
.contact-card textarea,
.contact-card select {
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 14px 16px;
    width: 100%;
    margin-bottom: 16px;
    font-size: 1rem;
}

.contact-card label {
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
}

.contact-card button {
    width: 100%;
}

#gtco-footer {
    background: #0f1e17;
    color: rgba(255,255,255,0.75);
    padding: 38px 0;
}

#gtco-footer small {
    color: rgba(255,255,255,0.7);
}

@media (max-width: 992px) {
    .menu-1 ul li {
        display: inline-block;
        margin-left: 12px;
    }
}

@media (max-width: 768px) {
    .menu-1 ul li {
        display: block;
        margin: 10px 0;
    }

    .feature-center {
        padding: 28px 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-cards {
        flex-direction: column;
    }

    .hero-card {
        width: 100%;
    }
}
