﻿:root {
    --primary: #0f3d3e;
    --accent: #f57c00;
    --light: #f6f8fa;
    --dark: #222;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f1f5f9;
    color: var(--dark);
}

/* ===== Header ===== */
header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

    .brand img {
        height: 56px;
        width: auto;
    }

.brand-text h1 {
    margin: 0;
    font-size: 22px;
    color: var(--primary);
}

.brand-text small {
    font-size: 13px;
    color: #666;
}

.contact-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-btn {
    /*width: 34px;
            height: 34px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: black;
    font-size: 26px;
    text-decoration: none;
}

.icon-btnphone {
    /*width: 34px;
            height: 34px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fb923c;
    font-size: 26px;
    text-decoration: none;
}

.icon-btnwhatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #4ebb1d;
    font-size: 26px;
    text-decoration: none;
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, rgba(245,124,0,0.15), rgba(15,61,62,0.12));
}

.hero-container {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero h2 {
    margin: 20px 0 10px;
    font-size: 36px;
    color: var(--primary);
}

.hero p {
    max-width: 760px;
    margin: auto;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* ===== Services ===== */
.services {
    background: #ffffff;
}

.services-container {
    max-width: 1100px;
    margin: auto;
    padding: 50px 20px;
}

.services h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: var(--primary);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.service-box {
    background: linear-gradient(135deg, rgba(245,124,0,0.15), rgba(15,61,62,0.12));
    padding: 18px 20px;
    border-radius: 14px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .service-box::before {
        content: "✔";
        color: var(--accent);
        font-weight: 700;
    }

/* ===== Footer ===== */
footer {
    background: #0f172a;
    color: #e5e7eb;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

footer h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #ffffff;
}

footer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5f5;
}

footer a {
    color: #fb923c;
    text-decoration: none;
}

footer span {
    color: #fb923c;
    text-decoration: none;
}

.copyright {
    text-align: center;
    padding: 14px 10px;
    background: #020617;
    font-size: 13px;
    color: #94a3b8;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-name {
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #cbd5f5;
}

    .contact-row span {
        white-space: nowrap;
    }

@@media (max-width: 768px) {
    .hero h2 {
        font-size: 28px;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .get-touch-container {
        padding: 30px 16px;
    }

    .touch-form {
        flex-direction: column;
    }

        .touch-form button {
            width: 100%;
        }
}

.phone-text {
    color: inherit;
    text-decoration: none;
}

    .phone-text a {
        color: inherit !important;
        text-decoration: none !important;
    }

/* iOS Safari auto-link fix */
a[x-apple-data-detectors],
span[x-apple-data-detectors] {
    color: inherit !important;
    text-decoration: none !important;
}

/* ===== Get In Touch ===== */
.get-touch {
    background: linear-gradient(135deg, #ffffff, #eef2f7);
}

.get-touch-container {
    max-width: 700px;
    margin: auto;
    padding: 50px 20px;
    text-align: center;
}

.get-touch h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: var(--primary);
}

.get-touch p {
    font-size: 15px;
    color: #555;
    margin-bottom: 24px;
}

.touch-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}

.country-code {
    padding: 12px 14px;
    background: #f3f4f6;
    font-weight: 600;
    color: #333;
}

.input-group input {
    border: none;
    padding: 12px 14px;
    font-size: 15px;
    outline: none;
    width: 200px;
}

.touch-form button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .touch-form button:hover {
        background: #e36c00;
    }

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

    .brand img {
        height: 56px;
    }

.brand-text h1 {
    margin: 0;
    line-height: 1.1;
    color: var(--primary);
}

.brand-tagline {
    font-weight: 700;
    font-size: 13px;
}

/* ===== Desktop Default ===== */
.brand-desktop {
    display: block;
}

.brand-mobile {
    display: none;
}

/* ===== Mobile View ===== */
@@media (max-width: 768px) {
    .brand {
        align-items: flex-start;
    }

    .brand-desktop {
        display: none;
    }

    .brand-mobile {
        display: block;
        text-align: center;
    }

        .brand-mobile h1 {
            text-align: center;
        }

    .brand-tagline {
        display: block;
        text-align: center;
    }
}

/* ===== Loader ===== */
.loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: #fff;
}

.loader {
    width: 48px;
    height: 48px;
    border: 4px solid #fff;
    border-top-color: #fb923c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 12px;
}

@@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== Popup Common ===== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9998;
}

.popup {
    background: #fff;
    border-radius: 14px;
    padding: 26px;
    max-width: 360px;
    width: 90%;
    text-align: center;
    animation: popupScale 0.3s ease;
}

@@keyframes popupScale {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup h3 {
    margin: 0 0 10px;
}

.popup p {
    font-size: 14px;
    color: #555;
}

/* ===== Success ===== */
.popup.success h3 {
    color: #16a34a;
}

/* ===== Error ===== */
.popup.error h3 {
    color: #dc2626;
}

.popup button {
    margin-top: 18px;
    padding: 10px 24px;
    border: none;
    border-radius: 999px;
    background: #fb923c;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}


.loader__element {
    border-radius: 100%;
    border: var(--size) solid var(--CrTe);
    margin: calc(var(--size)*2);
}

    .loader__element:nth-child(1) {
        animation: preloader .6s ease-in-out alternate infinite;
    }

    .loader__element:nth-child(2) {
        animation: preloader .6s ease-in-out alternate .2s infinite;
    }

    .loader__element:nth-child(3) {
        animation: preloader .6s ease-in-out alternate .4s infinite;
    }