:root {
            --primary-color: #2c5aa0;
            --secondary-color: #f8f9fa;
            --accent-color: #ff5722;
            --text-dark: #2d3748;
            --text-light: #718096;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
            --gradient-accent: linear-gradient(135deg, #ff5722 0%, #d84315 100%);
            --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
            --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: var(--text-dark); overflow-x: hidden; }
.custom-navbar { background: var(--white); box-shadow: var(--shadow-light); padding: 1rem 0; position: fixed; top: 0; width: 100%; z-index: 1000; }
.navbar-brand { font-weight: 700; font-size: 1.8rem; color: var(--primary-color) !important; text-decoration: none; }
.navbar-nav .nav-link { color: var(--text-dark) !important; font-weight: 500; margin: 0 0.5rem; padding: 0.5rem 1rem !important; border-radius: 25px; transition: all 0.3s ease; }
.navbar-nav .nav-link:hover { color: var(--primary-color) !important; background: rgba(44, 90, 160, 0.1); }
.navbar-nav .nav-link.active { color: var(--white) !important; background: var(--gradient-primary); }
.page-header { background: var(--gradient-accent); padding: 8rem 0 4rem; margin-top: 80px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('https://images.pexels.com/photos/8005394/pexels-photo-8005394.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover; opacity: 0.1; z-index: 1; }
.page-header-content { position: relative; z-index: 2; text-align: center; }
.page-title { font-size: 3rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.page-subtitle { font-size: 1.2rem; color: rgba(255, 255, 255, 0.9); max-width: 600px; margin: 0 auto; }
.service-card { 
    background: var(--white); 
    border-radius: 15px; 
    padding: 1.5rem; 
    box-shadow: var(--shadow-light); 
    transition: all 0.3s ease; 
    height: 100%; 
    border: 1px solid rgba(255, 87, 34, 0.1); 
    display: flex;
    flex-direction: column;
}

.service-card:hover { 
    transform: translateY(-5px); 
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
}

.service-thumbnail {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.service-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-thumbnail img {
    transform: scale(1.05);
}

.service-title { 
    font-size: 1.4rem; 
    font-weight: 600; 
    color: var(--text-dark); 
    text-align: center; 
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-description { 
    color: var(--text-light); 
    text-align: center; 
    line-height: 1.6;
    margin-bottom: 0;
}
.info-card { background: var(--secondary-color); padding: 2rem; border-radius: 15px; text-align: center; transition: all 0.3s ease; border-left: 4px solid var(--accent-color); }
.info-card:hover { background: var(--accent-color); color: var(--white); transform: translateY(-5px); }
.info-icon { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 1rem; }
.info-card:hover .info-icon { color: var(--white); }
.info-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; }
.section { padding: 5rem 0; }
.section-title { font-size: 2.5rem; font-weight: 700; color: var(--text-dark); text-align: center; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); text-align: center; margin-bottom: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.btn-custom-primary { background: var(--gradient-accent); border: none; padding: 1rem 2.5rem; font-size: 1.1rem; font-weight: 600; border-radius: 50px; color: var(--white); text-decoration: none; display: inline-block; transition: all 0.3s ease; box-shadow: var(--shadow-medium); }
.btn-custom-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-heavy); color: var(--white); }
.cta-section { background: var(--gradient-primary); padding: 4rem 0; text-align: center; }
.cta-title { font-size: 2.2rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.cta-subtitle { font-size: 1.1rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem; }
.custom-footer { background: var(--text-dark); color: var(--white); padding: 3rem 0 1rem; padding-bottom: 70px; }
.footer-title { font-size: 1.3rem; font-weight: 600; margin-bottom: 1.5rem; color: var(--white); }
.footer-link { color: rgba(255, 255, 255, 0.8); text-decoration: none; display: block; margin-bottom: 0.5rem; transition: all 0.3s ease; }
.footer-link:hover { color: var(--accent-color); padding-left: 5px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 2rem; padding-top: 1rem; text-align: center; color: rgba(255, 255, 255, 0.6); }
@media (max-width: 768px) { .page-title { font-size: 2.2rem; } .section-title { font-size: 2rem; } .service-card { margin-bottom: 2rem; } }
.sidebar { position: sticky; top: 100px; }
.widget { background: var(--white); border: 1px solid rgba(255, 87, 34, 0.15); border-radius: 14px; padding: 1.25rem; box-shadow: var(--shadow-light); margin-bottom: 1rem; }
.widget-title { font-weight: 600; margin-bottom: .75rem; color: var(--text-dark); }
.contact-cta { display: flex; align-items: center; gap: .75rem; padding: .9rem; border-radius: 12px; background: var(--secondary-color); border: 1px dashed rgba(255, 87, 34, .35); }
.contact-cta .phone { font-size: 1.15rem; font-weight: 700; color: var(--primary-color); }
.btn-whatsapp { display: inline-flex; align-items: center; gap: .5rem; background: #25D366; color: #fff; border-radius: 999px; padding: .55rem 1rem; text-decoration: none; font-weight: 600; }
.btn-whatsapp:hover { opacity: .9; color: #fff; }
.areas-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
.areas-list .area { background: var(--secondary-color); border: 1px solid rgba(255, 87, 34, 0.15); border-radius: 10px; padding: .5rem .6rem; font-weight: 500; color: var(--text-dark); }

