/* ===== Global Styles ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    background: #fff;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4 { font-family: 'Poppins', Arial, sans-serif; color: #1a1a2e; line-height: 1.3; }
h1 { font-size: 2.8rem; margin-bottom: 1rem; }
h2 { font-size: 2.2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.8rem; }
p { margin-bottom: 1rem; }

/* ===== Top Bar ===== */
.top-bar {
    background: #1a1a2e;
    color: #fff;
    padding: 8px 0;
    font-size: 0.9rem;
}
.top-bar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.top-bar a { color: #fff; margin-right: 18px; }
.top-bar a:hover { color: #f5a623; }
.top-bar .socials a { margin-right: 10px; }

/* ===== Header ===== */
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo img { max-height: 70px; width: auto; }
nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}
nav ul li a {
    font-weight: 600;
    color: #1a1a2e;
    transition: color 0.3s;
    font-size: 0.98rem;
}
nav ul li a:hover, nav ul li a.active { color: #f5a623; }
.call-btn {
    background: #f5a623;
    color: #fff !important;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}
.call-btn:hover { background: #d8881a; color: #fff !important; }

.menu-toggle { display: none; font-size: 1.8rem; cursor: pointer; background: none; border: none; color: #1a1a2e; }

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, rgba(26,26,46,0.85), rgba(26,26,46,0.7)), url('https://images.unsplash.com/photo-1622402281662-21bfd1fdfdc4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #fff;
    padding: 110px 0;
    text-align: center;
}
.hero h1 { color: #fff; font-size: 3.2rem; margin-bottom: 1.2rem; }
.hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 2rem; }
.hero-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.btn-primary { background: #f5a623; color: #fff; }
.btn-primary:hover { background: #d8881a; transform: translateY(-2px); }
.btn-outline { border-color: #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: #1a1a2e; }

/* ===== Sections ===== */
section { padding: 70px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { position: relative; display: inline-block; padding-bottom: 15px; }
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #f5a623;
    border-radius: 2px;
}
.section-title p { max-width: 700px; margin: 1rem auto 0; color: #666; }

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid #f5a623;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.service-icon {
    width: 75px;
    height: 75px;
    background: #f5a623;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: #666; font-size: 0.95rem; }
.service-card .read-more {
    display: inline-block;
    margin-top: 15px;
    color: #f5a623;
    font-weight: 700;
}
.service-card .read-more:hover { text-decoration: underline; }

/* ===== About Section ===== */
.about-section { background: #f8f9fa; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img img { border-radius: 12px; box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.about-content h2 { margin-bottom: 20px; }
.about-content ul { list-style: none; margin-top: 20px; }
.about-content ul li { padding: 8px 0 8px 30px; position: relative; }
.about-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f5a623;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== Why Choose ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.why-card {
    text-align: center;
    padding: 25px 20px;
}
.why-icon {
    width: 70px;
    height: 70px;
    background: #1a1a2e;
    color: #f5a623;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
}

/* ===== CTA Banner ===== */
.cta-banner {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { margin: 15px 0 25px; }

/* ===== Contact Section ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.contact-info-card .icon {
    width: 50px;
    height: 50px;
    background: #f5a623;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}
.contact-info-card h4 { margin-bottom: 5px; }
.contact-info-card p, .contact-info-card a { margin: 0; color: #555; }

.contact-form { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 18px rgba(0,0,0,0.08); }
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #f5a623; }
.contact-form button {
    background: #f5a623;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}
.contact-form button:hover { background: #d8881a; }

.map-embed { margin-top: 40px; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,0.08); }
.map-embed iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ===== Page Banner ===== */
.page-banner {
    background: linear-gradient(135deg, rgba(26,26,46,0.9), rgba(26,26,46,0.75)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}
.page-banner h1 { color: #fff; }
.breadcrumb { margin-top: 10px; font-size: 0.95rem; }
.breadcrumb a { color: #f5a623; }

/* ===== Service Page Content ===== */
.service-content { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.service-main h2 { margin-top: 30px; }
.service-main img { border-radius: 12px; margin: 20px 0; }
.service-main ul { padding-left: 20px; margin-bottom: 20px; }
.service-main ul li { padding: 6px 0; }

.sidebar { background: #f8f9fa; padding: 30px; border-radius: 12px; height: fit-content; position: sticky; top: 120px; }
.sidebar h3 { margin-bottom: 20px; border-bottom: 2px solid #f5a623; padding-bottom: 10px; }
.sidebar ul { list-style: none; }
.sidebar ul li { margin-bottom: 10px; }
.sidebar ul li a {
    display: block;
    padding: 12px 15px;
    background: #fff;
    border-radius: 8px;
    color: #333;
    font-weight: 600;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}
.sidebar ul li a:hover { border-left-color: #f5a623; color: #f5a623; padding-left: 20px; }
.sidebar .cta-box { background: #1a1a2e; color: #fff; padding: 25px; border-radius: 8px; margin-top: 25px; text-align: center; }
.sidebar .cta-box h4 { color: #fff; margin-bottom: 12px; }
.sidebar .cta-box a { color: #f5a623; font-size: 1.4rem; font-weight: 700; }

/* ===== Footer ===== */
footer { background: #0f0f1e; color: #ccc; padding: 60px 0 20px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
footer h4 { color: #fff; margin-bottom: 20px; font-size: 1.2rem; position: relative; padding-bottom: 10px; }
footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: #f5a623; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a { color: #ccc; transition: color 0.3s; }
footer ul li a:hover { color: #f5a623; }
.footer-logo img { max-height: 70px; margin-bottom: 15px; background: #fff; padding: 8px; border-radius: 8px; }
.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background: #1a1a2e;
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: all 0.3s;
}
.footer-social a:hover { background: #f5a623; }
.footer-bottom {
    border-top: 1px solid #2a2a3e;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}
.footer-contact-item { margin-bottom: 12px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-item i { color: #f5a623; margin-top: 5px; }

/* ===== Floating Call Button ===== */
.float-call {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #f5a623;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(245,166,35,0.5);
    z-index: 999;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245,166,35,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(245,166,35,0); }
    100% { box-shadow: 0 0 0 0 rgba(245,166,35,0); }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .about-grid, .contact-grid, .service-content { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .sidebar { position: static; }
}
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .hero h1 { font-size: 2.2rem; }
    h2 { font-size: 1.7rem; }
    .hero { padding: 70px 20px; }
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }
    nav ul.active { display: flex; }
    .menu-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr; }
    .top-bar .container { justify-content: center; text-align: center; }
}
