:root {
    --primary: #0054a6;
    --accent: #E13D3A;
    --dark: #0a1019;
    --navy-deep: #06111d;
    --light-bg: #f4f7fa;
    --white: #ffffff;
}

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

/* HEADER */
.header { background: var(--white); box-shadow: 0 2px 15px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }
.logo-container { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo-img { height: 50px; }
.logo-text h2 { color: var(--primary); font-size: 1.4rem; font-weight: 800; line-height: 1; }
.logo-text span { color: var(--accent); }
.logo-text small { font-size: 0.6rem; letter-spacing: 2px; color: #666; font-weight: 700; display: block; }

.menu { display: flex; list-style: none; gap: 25px; }
.menu a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
.menu a.active { color: var(--primary); }

/* BANNER */
.service-banner { 
    padding: 80px 0; 
    background: linear-gradient(to bottom, #0b4f8a, #062845); /* Exact blue from image */
    color: var(--white); text-align: center; 
}
.hero-badge { background: var(--accent); padding: 6px 15px; border-radius: 50px; font-size: 0.7rem; font-weight: 800; margin-bottom: 20px; display: inline-block; }
.hero-title { font-size: 2rem; font-weight: 800; margin-bottom: 15px; }
.hero-stats { display: flex; justify-content: center; gap: 15px; margin-top: 30px; }
.stat-card { background: rgba(255,255,255,0.1); padding: 10px 20px; border-radius: 10px; font-size: 0.85rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.2); }

/* FEATURE CARD SECTION */
.service-section { padding: 80px 0; background-color: var(--light-bg); }
.feature-card { 
    background: var(--white); padding: 50px; border-radius: 20px; 
    border-top: 6px solid var(--accent); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05); 
}
.main-title { font-size: 2.2rem; color: #0b3c6d; font-weight: 800; margin-bottom: 20px; line-height: 1.3; }
.intro-text { font-size: 1.1rem; color: #5a6b7d; margin-bottom: 40px; padding-bottom: 30px; border-bottom: 1px solid #eee; }

.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.list-heading { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; color: var(--dark); }
.styled-list { list-style: none; }
.styled-list li { position: relative; padding-left: 30px; margin-bottom: 12px; color: #4a5568; font-weight: 500; }
.styled-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }

/* GALLERY SECTION - 3 PHOTOS IN ONE LINE */
.gallery-section {  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; }

/* MOBILE ACTION BAR */
.mobile-action-bar { display: none; position: fixed; bottom: 0; width: 100%; z-index: 1000; height: 60px; }
.mobile-btn { flex: 1; text-align: center; color: white; text-decoration: none; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; }
.mobile-btn.call { background: var(--primary); }
.mobile-btn.wa { background: #25D366; }

/* FOOTER */
.footer { background: #0f172a; color: #fff; padding: 60px 0 0; border-top: 4px solid var(--accent); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-bottom { text-align: center; padding: 20px 0; background: #0b1220; font-size: 0.8rem; color: #94a3b8; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .split-layout, .details-grid, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
    .gallery-card { height: 250px; }
    .menu { display: none; }
    .mobile-action-bar { display: flex; }
    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;
    }
    .main-title {
    font-size: 19px;
    color: #0b3c6d;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}
.hero-title {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 15px;
}

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

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

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