:root {
    --primary-color: #2c5aa0;
    --secondary-color: #f8f9fa;
    --accent-color: #ff6b35;
    --text-dark: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #e53e3e 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; }

/* Navigation Styles */
.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 */
.page-header { background: var(--gradient-primary); padding: 8rem 0 4rem; margin-top: 80px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: url('images/buzdolabi.png') 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; }

/* Contact Section */
.contact-section { padding: 6rem 0; background: var(--white); }
.contact-card { background: var(--white); border-radius: 20px; padding: 3rem; box-shadow: var(--shadow-medium); text-align: center; transition: all 0.3s ease; height: 100%; border: 1px solid rgba(44, 90, 160, 0.1); }
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-heavy); border-color: var(--primary-color); }
.contact-icon { width: 100px; height: 100px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; font-size: 2.5rem; color: var(--white); }
.contact-title { font-size: 1.5rem; font-weight: 600; color: var(--text-dark); margin-bottom: 1rem; }
.contact-info { font-size: 1.2rem; color: var(--primary-color); font-weight: 600; margin-bottom: 1rem; }
.contact-description { color: var(--text-light); line-height: 1.6; }

/* Emergency Section */
.emergency-section { padding: 5rem 0; background: var(--gradient-accent); text-align: center; }
.emergency-content { color: var(--white); }
.emergency-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.emergency-subtitle { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; }
.emergency-phone { font-size: 3rem; font-weight: 700; margin-bottom: 1rem; display: block; }
.emergency-note { font-size: 1.1rem; opacity: 0.8; }

/* Info Section */
.info-section { padding: 6rem 0; background: var(--secondary-color); }
.info-card { background: var(--white); border-radius: 15px; padding: 2.5rem; box-shadow: var(--shadow-light); transition: all 0.3s ease; height: 100%; }
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium); }
.info-icon { width: 70px; height: 70px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 1.8rem; color: var(--white); }
.info-title { font-size: 1.3rem; font-weight: 600; color: var(--text-dark); margin-bottom: 1rem; }
.info-description { color: var(--text-light); line-height: 1.6; }

/* Service Areas */
.service-areas { padding: 5rem 0; background: var(--white); }
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.area-item { background: var(--secondary-color); padding: 1.5rem; border-radius: 10px; text-align: center; font-weight: 500; color: var(--text-dark); transition: all 0.3s ease; border: 2px solid transparent; }
.area-item:hover { background: var(--primary-color); color: var(--white); transform: translateY(-3px); border-color: var(--primary-color); }

/* Section Styles */
.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; }

/* Footer */
.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); }

/* Responsive Design */
@media (max-width: 768px) {
    .page-title { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    .emergency-phone { font-size: 2.5rem; }
    .contact-card, .info-card { margin-bottom: 2rem; }
}


