:root {
    --main-blue: #0054a6;
    --dark-blue: #001f3f;
    --ind-orange: #ff6600;
    --light-bg: #f4f7fa;
    --white: #ffffff;
    --text: #444;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.6; color: var(--text); overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }


/* --- BANNER --- */
.service-banner {
    padding: clamp(60px, 10vw, 100px) 0;
    background: linear-gradient(rgba(0, 84, 166, 0.92), rgba(0, 20, 40, 0.95)), 
                url('../assets/images/banner-bg.jpg') center/cover;
    color: var(--white);
    text-align: center;
}
.hero-title { font-size: clamp(1.8rem, 5vw, 2rem); font-weight: 800; margin: 10px 0 20px; line-height: 1.1; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.2rem); max-width: 800px; margin: 0 auto 30px; opacity: 0.9; }
.hero-tags { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.hero-tags span { background: rgba(255,255,255,0.15); padding: 8px 15px; border-radius: 6px; font-size: 0.85rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.2); }

/* --- ASYMMETRIC SECTION --- */
.asymmetric-section { padding: 80px 0; overflow: hidden; }
.layout-wrapper { display: flex; align-items: center; gap: 60px; }
.text-side { flex: 1; }
.section-title { font-size: 2.2rem; color: var(--dark-blue); margin-bottom: 20px; font-weight: 800; }
.lead-text { margin-bottom: 30px; font-size: 1.1rem; }
.stats-box { display: flex; gap: 40px; border-top: 1px solid #eee; padding-top: 25px; }
.stat-item strong { font-size: 2.5rem; color: var(--main-blue); line-height: 1; }

.image-side { flex: 1; position: relative; min-height: 450px; }
.img-frame-one, .img-frame-two { position: absolute; width: 80%; height: 300px; border-radius: 8px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.img-frame-one { top: 0; left: 0; z-index: 2; border: 6px solid white; }
.img-frame-two { bottom: 0; right: 0; z-index: 1; opacity: 0.8; }
.image-side img { width: 100%; height: 100%; object-fit: cover; }

/* --- CARD GRID --- */
.commercial-details { padding: 80px 0; background: var(--light-bg); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.glass-card { 
    background: var(--white); padding: 40px; border-radius: 12px; transition: 0.4s ease; 
    border-bottom: 5px solid var(--main-blue); box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.glass-card:hover { transform: translateY(-10px); background: var(--main-blue); color: white; border-bottom-color: var(--ind-orange); }
.card-icon { font-size: 2.5rem; color: var(--ind-orange); margin-bottom: 20px; transition: 0.3s; }
.glass-card:hover .card-icon { color: white; }
.check-list { list-style: none; margin-top: 20px; }
.check-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-weight: 600; }
.check-list li i { color: var(--main-blue); }
.glass-card:hover .check-list li i { color: var(--ind-orange); }

/* --- FOOTER --- */
.footer { background: #081018; color: #abb2b9; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.footer h3, .footer h4 { color: white; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: inherit; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--main-blue); padding-left: 5px; }

/* --- MOBILE ELEMENTS --- */
.mobile-action-bar { display: none; position: fixed; bottom: 0; width: 100%; z-index: 1000; height: 60px; }
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--dark-blue); }

@media (max-width: 992px) {
    .hamburger { display: block; }
    .menu { 
        position: absolute; top: 100%; left: 0; width: 100%; background: white; 
        flex-direction: column; padding: 20px; gap: 15px; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        display: none;
    }
    .menu.active { display: flex; }
    .layout-wrapper { flex-direction: column; text-align: center; }
    .image-side { min-height: 400px; width: 100%; max-width: 500px; margin: 40px auto 0; }
    .stats-box { justify-content: center; }
    .mobile-action-bar { display: flex; }
    .mobile-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; color: white; font-weight: 700; background: var(--main-blue); }
    .mobile-btn.wa { background: #25d366; }
    body { padding-bottom: 60px; }
}
/* General Footer Styling */
.modern-footer {
    background-color: #0f172a; /* Dark navy (professional) */
    color: #ffffff;
    padding-top: 50px;
    font-family: 'Arial', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid – SAME */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
    gap: 30px;
    padding-bottom: 40px;
}

/* BRAND */
.footer-brand h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #0054a6; /* LOGO BLUE */
}

.footer-brand h2 span {
    color: #e13d3a; /* LOGO RED */
}

.brand-label {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
    color: #cbd5e1;
}

.modern-footer h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

/* LINKS */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.footer-links li::before {
    content: "▶";
    position: absolute;
    left: 0;
    font-size: 10px;
    top: 4px;
    color: #0054a6; /* BLUE accent */
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

/* NEWSLETTER */
.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    background: #1a2332;
    border: 1px solid #334155;
    padding: 10px;
    color: white;
    width: 100%;
}

.newsletter-form button {
    background-color: #0054a6; /* LOGO BLUE */
    border: none;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
}

.newsletter-form button:hover {
    background-color: #e13d3a; /* LOGO RED */
}

/* CONTACT INFO */
.footer-contact-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact-info i {
    color: #e13d3a; /* RED icons */
    margin-right: 12px;
    margin-top: 4px;
}

/* BOTTOM BAR */
.footer-bottom {
    background-color: #0b1220;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text p {
    margin: 0;
    font-size: 12px;
    letter-spacing: 1px;
    color: #cbd5e1;
}

.copyright-text a {
    color: #0054a6; /* BLUE link */
    text-decoration: none;
}

/* SOCIAL ICONS */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    background: #e13d3a; /* RED like logo */
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.social-icon:hover {
    background: #0054a6; /* BLUE hover */
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-title {
    font-size: 19px;
    font-weight: 800;
    margin: 10px 0 20px;
    line-height: 1.1;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

    .bottom-flex {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links li {
        padding-left: 0;
    }

    .footer-links li::before {
        display: none;
    }
}


/* GALLERY SECTION - 3 PHOTOS IN ONE LINE */
.gallery-section { background-color: #06111d; padding: 80px 0; }
.section-heading.white { color: var(--white); text-align: center; font-size: 2rem; margin-bottom: 40px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-card { height: 300px; border-radius: 15px; overflow: hidden; border: 4px solid rgba(255,255,255,0.1); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }
