:root {
    --bg: #f5f7fa;
    --text: #111827;
    --muted: #6b7280;
    --dark: #0f172a;
    --accent: #d62828;
    --card: #ffffff;
    --border: #e5e7eb;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
}

/* NAV */
/* HEADER */
header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
}

.logo {
    height: 130px;
    width: auto;
    object-fit: contain;
}

nav a {
    margin-left: 25px;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

nav a:hover {
    color: #dc2626;
}

/* HERO */
.hero {
    min-height: 82vh;

    background:
    linear-gradient(
        to right,
        rgba(15,23,42,0.68),
        rgba(15,23,42,0.40)
    ),
    url('assets/hero1.png') center center/cover;

    display: flex;
    align-items: center;
    padding: 80px 7%;
}

.overlay {
    display: none;
}

.hero-content {
    max-width: 700px;
    transform: none;
    top: auto;
    text-align: left;
    padding: 0;
}

.hero h2 {
    font-size: 4.3rem;
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 24px;
    color: white;
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
}
/* BUTTONS */
/* HERO BUTTONS */
.buttons {
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    min-width: 190px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.call {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    color: white;
}

.call:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(239,68,68,0.4);
}

.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(37,211,102,0.4);
}

/* SECTIONS */
.section {
    padding: 110px 7%;
    text-align: center;
}
.dark { background: white; }

/* SERVICES */
.service-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.service {
    flex: 1;
}
.service img {
    width: 100%;
    border-radius: 10px;
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 10px;
}
.gallery img {
    width: 100%;
    border-radius: 10px;
}

/* FORM */
form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
input, textarea {
    padding: 10px;
    border-radius: 6px;
    border: none;
}


.hero-sub {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px auto;
    color: rgba(255,255,255,0.85);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
    color: white;
}

.trust-badges span {
    background: rgba(255,255,255,0.1);
    padding: 10px 16px;
    border-radius: 999px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.service {
    background: white;
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 18px;
    transition: 0.25s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.service:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service img {
    height: 220px;
    object-fit: cover;
}


.emergency-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #dc2626;
    color: white;
    padding: 14px;
    text-align: center;
    font-weight: 700;
    z-index: 999;
}

.emergency-bar a {
    color: white;
    margin-left: 12px;
    text-decoration: underline;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    transition: 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.03);
}

.service,
.gallery img,
.btn {
    transition: all 0.3s ease;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-info p {
    margin: 12px 0;
    font-size: 1.05rem;
    color: #d1d5db;
}

h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

p {
    line-height: 1.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: 0.25s ease;
    border: none;
    min-width: 180px;
}

.call {
    background: var(--accent);
    color: white;
}

.whatsapp {
    background: white;
    color: var(--dark);
}

.btn:hover {
    transform: translateY(-2px);
}

#contact {
    background: #0f172a;
    color: white;
    border-radius: 40px 40px 0 0;
}

#contact h2 {
    color: white;
}

.contact-info {
    margin-bottom: 50px;
}

.contact-info p {
    color: rgba(255,255,255,0.8);
    font-size: 1.08rem;
    margin: 14px 0;
}

form {
    max-width: 650px;
}

input,
textarea {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 18px;
    border-radius: 14px;
    color: white;
    font-size: 1rem;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255,255,255,0.45);
}

textarea {
    min-height: 160px;
}

.section-alt {
    background: #f1f5f9;
}

.section {
    position: relative;
}

.section h2 {
    margin-bottom: 50px;
}

.service {
    box-shadow:
    0 10px 30px rgba(15,23,42,0.06);
}

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    /* NAVBAR */
    header {
        position: relative;
    }

    .nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;

        height: 72px;
        padding: 10px 18px;

        overflow: hidden;
    }

    .logo {
        height: 115px;
        width: auto;

        object-fit: cover;
        object-position: center;

        transform: scale(1.28);
    }

    nav {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    nav a {
        margin-left: 0;
        font-size: 0.82rem;
        font-weight: 600;
    }

    /* HERO */
    .hero {
        padding: 80px 22px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h2 {
        font-size: 2.15rem;
        line-height: 1.08;
        letter-spacing: -1px;
        margin-bottom: 18px;
        max-width: 95%;
    }

    .hero-sub {
        font-size: 1rem;
        line-height: 1.5;
    }

    .trust-badges {
        justify-content: flex-start;
        gap: 10px;
    }

    .trust-badges span {
        font-size: 0.78rem;
        padding: 8px 14px;
    }

    /* BUTTONS */
    .buttons {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 12px;
        
    }

    .btn {
        width: auto;
        min-width: 150px;

        padding: 14px 20px;

        font-size: 0.9rem;
        border-radius: 10px;
    }

    /* SERVICES */
    .section {
        padding: 70px 22px;
    }

    .service-grid {
        flex-direction: column;
    }

    .service img {
        height: 220px;
    }

    /* GALLERY */
    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery img {
        height: 240px;
    }

    /* CONTACT */
    #contact {
        border-radius: 30px 30px 0 0;
    }

    footer {
        padding: 30px 20px;
        text-align: center;
    }
}