/* ===================================================== */
/* GLOBAL */
/* ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", Arial, sans-serif;
}

body {
    background: #f6f9fc;
    color: #1a1a1a;
    line-height: 1.6;
}

/* ===================================================== */
/* HEADER */
/* ===================================================== */
.header {
    width: 100%;
    background: #00395d;
    padding: 12px 0;
    position: fixed;
    top: 0;
    z-index: 999;
}

/* ===================================================== */
/* HERO */
/* ===================================================== */
.hero {
    background: #00395d;
    color: white;
    padding: 160px 20px 120px;
    text-align: center;
}

.hero-logo {
    width: 190px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero h2 {
    font-size: 22px;
    opacity: 0.9;
}

/* ===================================================== */
/* ABOUT */
/* ===================================================== */
.about {
    padding: 70px 20px;
    text-align: center;
}

.about-container {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ===================================================== */
/* SERVICES */
/* ===================================================== */
.services {
    text-align: center;
    padding: 60px 20px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 800;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1300px;
    margin: auto;
}

.service-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s ease forwards;
    transition: 0.25s ease;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

.service-desc {
    font-size: 15px;
    color: #555;
    margin: 12px 0 20px;
    line-height: 1.45;
}

.btn-small {
    margin-top: auto;
    align-self: center;
    background: #003d56;
    color: white;
    padding: 10px 22px;
    border-radius: 7px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: 0.25s ease;
}

.btn-small:hover {
    background: #016a93;
    transform: translateY(-3px);
}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ===================================================== */
/* MAP */
/* ===================================================== */
.map-section {
    padding: 60px 20px;
    text-align: center;
}

#map {
    width: 100%;
    height: 350px;
    max-width: 1100px;
    margin: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ===================================================== */
/* FOOTER */
/* ===================================================== */
footer {
    padding: 25px;
    background: #00395d;
    color: white;
    text-align: center;
    font-size: 16px;
    margin-top: 40px;
}

/* ===================================================== */
/* POPUP */
/* ===================================================== */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 35px;
    width: 90%;
    max-width: 480px;
    border-radius: 18px;
    animation: zoomIn .35s ease;
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(.7); }
    to { opacity: 1; transform: scale(1); }
}

.close {
    float: right;
    font-size: 28px;
    cursor: pointer;
}

/* FLOATING BUTTONS PERFECT FIX */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
}

.floating-buttons a svg {
    width: 60px;
    height: 60px;
    display: block;
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
    transition: 0.25s ease;
}

.floating-buttons a svg:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
