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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f1ea;
    color: #222222;
    line-height: 1.6;
}

/* HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #2f3e46;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}

.logo h1 {
    font-size: 1.8rem;
}

#menu-button {
    background-color: #d68c45;
    color: white;
    border: none;
    padding: 10px 18px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
}

#menu-button:hover {
    background-color: #b97333;
}

nav {
    display: none;
    padding: 0 20px 18px;
}

nav a {
    display: block;
    text-decoration: none;
    color: white;
    background-color: #52796f;
    padding: 12px;
    border-radius: 6px;
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
}

nav a:hover {
    background-color: #3d5a52;
}

/* MAIN */
main {
    max-width: 1150px;
    margin: 30px auto;
    padding: 0 20px;
}

/* HERO SECTIONS */
.hero,
.page-hero {
    background: linear-gradient(135deg, #2f3e46, #52796f);
    color: white;
    text-align: center;
    padding: 70px 20px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.hero h2,
.page-hero h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.hero p,
.page-hero p {
    max-width: 800px;
    margin: 0 auto 25px auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* BUTTONS */
.button {
    display: inline-block;
    background-color: #d68c45;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.button:hover {
    background-color: #b97333;
    transform: translateY(-2px);
}

.button-outline-light {
    background-color: transparent;
    border: 2px solid white;
}

.button-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

/* GENERAL BOXES */
.intro-box,
.cta-box,
.info-box,
.form-box,
.process-section,
.stat-box,
.home-card {
    background-color: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.intro-box,
.cta-box,
.process-section {
    margin-bottom: 30px;
}

.intro-box,
.cta-box {
    text-align: center;
}

.intro-box h3,
.cta-box h3,
.info-box h3,
.form-box h3,
.process-section h3,
.home-card h3,
.stat-box h3 {
    color: #2f3e46;
    margin-bottom: 12px;
}

.cta-box p {
    max-width: 760px;
    margin: 0 auto 20px auto;
}

/* HOME CARDS */
.home-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.home-card {
    text-align: center;
    border-top: 6px solid #d68c45;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.service-card {
    display: block;
    text-decoration: none;
    color: #222222;
    background-color: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    border-top: 6px solid #d68c45;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card h3 {
    color: #2f3e46;
    margin-bottom: 12px;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* STATS */
.stats-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.stat-box {
    text-align: center;
    background: linear-gradient(135deg, #e9f0ed, #ffffff);
}

.counter {
    font-size: 2.5rem;
    color: #d68c45;
}

/* PROCESS */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.process-card {
    background-color: #f7f7f7;
    border-radius: 14px;
    padding: 24px;
    text-align: center;
}

.process-card h4 {
    color: #2f3e46;
    margin-bottom: 10px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #d68c45;
    color: white;
    font-weight: bold;
    margin-bottom: 14px;
}

/* TWO COLUMN GRID */
.two-column-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.info-box ul {
    margin-left: 20px;
    margin-top: 10px;
}

.info-box li {
    margin-bottom: 10px;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.sidebar-boxes {
    display: grid;
    gap: 20px;
}

form {
    margin-top: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 8px;
    color: #2f3e46;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #52796f;
    background-color: white;
}

.submit-button {
    width: 100%;
    padding: 14px;
    border: none;
    background-color: #d68c45;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #b97333;
}

#form-message {
    margin-top: 14px;
    font-weight: bold;
    color: #2f3e46;
}

/* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* FOOTER */
footer {
    background-color: #2f3e46;
    color: white;
    text-align: center;
    padding: 22px;
    margin-top: 30px;
}

/* FLOATING CALL BUTTON */
.floating-call {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #d68c45;
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: bold;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
    z-index: 999;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.floating-call:hover {
    background-color: #b97333;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media screen and (min-width: 768px) {
    #menu-button {
        display: none;
    }

    nav {
        display: flex !important;
        justify-content: center;
        gap: 14px;
        padding: 0 20px 18px;
    }

    nav a {
        margin-top: 0;
        width: auto;
        padding: 10px 18px;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .home-cards,
    .stats-section,
    .services-grid,
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .two-column-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 2fr 1fr;
        align-items: start;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}