:root {
    --primary: #11d15f;
    --dark: #0c1e35;
    --light: #e9eaed;
    --white: #FFF;
    --black: #000;
    --blue-gary: #353f4d;
    --error: #ff5050;
    --dark-green: #1b9d50;
    --max-width: 1000px;
}


.cta-round:disabled {
    background: #9ca3af; /* muted/disabled color */
    color: #e5e7eb;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    opacity: 0.7;
}

    /* Prevent hover effects when disabled */
    .cta-round:disabled:hover {
        transform: none;
        box-shadow: none;
    }




* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark);
    background-color: var(--blue-gary);
    line-height: 1.6;
}

section {
    background: var(--light);
}

header {
    background: var(--dark);
    color: var(--light);
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    transition: background 0.4s ease, color 0.4s ease, padding 0.4s ease;
    z-index: 1000;
}

    header.scrolled {
        background: var(--light);
        color: var(--dark);
        padding: 1rem 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:1.5em
}

.logo {
    display: none;
}

.scrolled .logo {
    display: block;
}

.light-logo {
    display: block;
}

.scrolled .light-logo {
    display: none;
}

.hero-container {
    max-width: var(--max-width);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

    .hero-container > div {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.40) 35%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0.0) 80%);
        border-radius: 1.5em;
        padding: 1em;
    }

        .hero-container > div > p {
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 4px 12px rgba(0, 0, 0, 0.6);
        }


.hero {
    display: flex;
    justify-content: center;
    padding-top: 8rem;
    color: var(--light);
    padding-bottom: 4rem;
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center 78px;
}

    .hero h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 2rem;
    }





.form-field {
    padding: .5em 1em;
    border-radius: .5em;
    border: 1px solid var(--dark);
    font-size: 1.01em;
    width:100%;
}
    .form-field.message-box {
        width: 100%;
        height: 150px;
        font-family: 'Roboto', sans-serif;
        padding:1em;
    }


.layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem; /* controls spacing between all items */
}

.full {
    grid-column: 1 / -1;
}

.half {
    grid-column: span 1;
}


.success-message{
    color: var(--primary);
}
.field-error {
    color: var(--error);
}


.cta {
    display: inline-block;
    background: var(--dark-green);
    color: var(--white);
    padding: 0.9rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(17, 209, 95, 0.35);
    }

.cta-round {
    background: var(--dark-green);
    color: var(--white);
    padding: 0.5rem 1.8rem;
    border-radius: .5em;
    text-decoration: none;
    width: 100%;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    border: none;
    cursor: pointer;
}
    .cta-round:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(17, 209, 95, 0.35);
    }

section {
    padding: 4rem 2rem;
}

.icon-logo > div {
    font-size: 1.1em;
    text-align: right;
    font-weight: 100;
}


.container {
    max-width: var(--max-width);
    margin: auto;   
}
.body-content .container:not(:last-child) {
    margin-bottom:3em;
}

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

.contact {
    margin: 0 auto;
    width: 100%;
}

    .contact > div {
        background-color: var(--dark);
        color: var(--light);
    }





.card {
    background: var(--light);
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(12, 30, 53, 0.08);
}

    .card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .card p {
        font-size: 1rem;
        opacity: 0.85;
    }

.trust {
    background: var(--dark);
    color: var(--light);
    text-align: center;
}

    .trust p {
        max-width: 800px;
        margin: auto;
        font-size: 1.1rem;
        opacity: 0.9;
    }

footer {
    background: var(--blue-gray);
    color: var(--light);
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.contact-image {
    display: flex;
    align-items: center;
    min-width: 40%;
}
.contact-image img{
    margin:0 auto;
}

@media (max-width: 975px) {
    .hide-image {
        display: none;
    }
    .services{
        display:block;
    }
    .services .card{
        margin-bottom:2rem;
    }
    .hero-container{
        display:block;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
