/* Shared styles (header/contact/nav + page hero) for all pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top contact bar */
.contact-bar {
    background: #2c2c2c;
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
}

.contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: #ba5717;
}

.contact-actions {
    display: flex;
    gap: 15px;
}

.btn-contact {
    background: #ba5717;
    color: #fff;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 13px;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-contact:hover {
    background: #a04a12;
}

/* Main navigation */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    max-height: 75px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ba5717;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #ba5717;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: #f2a84e;
    color: #ba5717;
}

/* Mobile nav button */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    padding: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle-bar {
    display: block;
    width: 18px;
    height: 2px;
    background: #2c2c2c;
    border-radius: 2px;
}

/* Page hero (used on inner pages) */
.page-hero {
    position: relative;
    height: 300px;
    background: #ba5717;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f2a84e 0%, #ba5717 100%);
    opacity: 0.9;
    z-index: 1;
}

.page-hero .hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300"><circle cx="500" cy="150" r="100" fill="%23ffffff" opacity="0.05"/><circle cx="450" cy="100" r="60" fill="%23ffffff" opacity="0.03"/><circle cx="550" cy="200" r="80" fill="%23ffffff" opacity="0.04"/></svg>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.page-hero .hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 16px;
    color: #fff;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #ba5717;
}

.breadcrumb span {
    margin: 0 10px;
}

.breadcrumb .current {
    color: #fff;
    font-weight: bold;
}

/* Shared responsive */
@media (max-width: 768px) {
    .logo img {
        max-height: 40px;
    }

    .contact-bar .container {
        flex-direction: column;
        gap: 15px;
    }

    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 16px;
        text-align: center;
    }

    .contact-info span {
        justify-content: center;
    }

    .contact-actions {
        width: 100%;
        justify-content: center;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 12px);
        background: #fff;
        border: 1px solid #eee;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        padding: 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        z-index: 1001;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .page-hero .hero-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .btn-contact {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

/* Footer adjustments (shared across pages) */
.footer .logo img {
    /* Footer logo bigger than header logo */
    max-height: 110px;
}

@media (max-width: 768px) {
    .footer .logo img {
        max-height: 80px;
    }
}

