:root {
    --primary: #1a5fb4;
    --primary-dark: #134a8e;
    --accent: #ff9f1c;
    --dark: #15202b;
    --light-bg: #f7f9fc;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #2c333a;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* ---- Top bar ---- */
.top-bar {
    background: var(--dark);
    color: #cfd8e3;
    font-size: 0.85rem;
}
.top-bar a { color: #cfd8e3; }
.top-bar a:hover { color: #fff; }
.social-links a {
    display: inline-block;
    margin-left: 12px;
    color: #cfd8e3;
}
.social-links a:hover { color: var(--accent); }

/* ---- Navbar ---- */
.navbar-brand { color: var(--primary) !important; }
.nav-link { font-weight: 500; color: #2c333a !important; }
.nav-link.active, .nav-link:hover { color: var(--primary) !important; }
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* ---- Hero ---- */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 100px 0;
}
.hero h1 { font-size: 2.75rem; }
.hero .btn-outline-light:hover { color: var(--primary); }

/* ---- Section spacing ---- */
section { padding: 80px 0; }
.section-light { background: var(--light-bg); }
.section-title { margin-bottom: 50px; }
.section-title .eyebrow {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* ---- Cards ---- */
.service-card, .feature-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}
.service-card:hover, .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(26, 95, 180, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

/* ---- Gallery ---- */
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ---- Footer ---- */
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #cfd8e3; }
.footer-links a:hover { color: var(--accent); }
.text-light-50 { color: #aab4c0; }

/* ---- WhatsApp floating button ---- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
    z-index: 1000;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.08); }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---- Contact page ---- */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}
.contact-info-item .icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(26, 95, 180, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.map-wrapper iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 12px;
}

/* ---- Responsive tweaks ---- */
@media (max-width: 767px) {
    .hero { padding: 60px 0; text-align: center; }
    .hero h1 { font-size: 2rem; }
    section { padding: 50px 0; }
}
