/* Add Google Fonts import at the top of your CSS file */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&display=swap');

/* Page Header Section */
.page-header {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: var(--mibooz-black);
    background-blend-mode: luminosity;
    z-index: -1;
}

.page-header-bg::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6); /* dark overlay */
    z-index: 2;
}

.page-header .container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 440px;
}

.page-header__inner {
    text-align: center;
    width: 100%;
}

.thm-breadcrumb {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.thm-breadcrumb li {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline;
}

.thm-breadcrumb li a {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.2s;
}

.thm-breadcrumb li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.page-header__title {
    color: #fff;
    font-size: 3rem;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
}

@media (max-width: 767px) {
    .page-header, .page-header .container {
        min-height: 180px;
        height: 180px;
    }
    .page-header__title {
        font-size: 2rem;
    }
}

/* Section Title */
.section-title__tagline {
    color: #0056a3;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title__title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: #222;
    line-height: 1.1;
}

/* Main Content Layout */
.best-agency .container {
    padding: 2rem 2rem 2rem 0;
}

.welcome-three__left {
    padding-right: 2rem;
}

.welcome-three__text {
    font-size: 1.2rem;
    color: #6c6c6c;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', Arial, sans-serif;
}

.welcome-three__img-box {
    border: 3px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    margin-left: auto;
    max-width: 95%;
}

.welcome-three-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .welcome-three__left {
        padding-right: 0;
    }
    .best-agency .container {
        padding: 1rem;
    }
}

@media (max-width: 767px) {
    .best-agency .row {
        flex-direction: column;
    }
    .welcome-three__img-box {
        margin: 2rem 0 0 0;
        max-width: 100%;
    }
    .section-title__title {
        font-size: 2rem;
    }
    .welcome-three__text {
        font-size: 1rem;
    }
}

/* Footer Styles */
.site-footer {
    background: #18181c;
    color: #fff;
    padding-top: 0;
    font-family: 'Montserrat', Arial, sans-serif;
}

.site-footer__top {
    background: #0a2236;
    padding: 40px 0 0 0;
    position: relative;
}

.site-footer__top-shape {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 60px;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.site-footer__top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    padding: 30px 0;
}

.site-footer__top-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__top-left-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #fff;
    letter-spacing: 1px;
}

.site-footer__top-left-phone {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer__top-left-phone:hover {
    color: #fff;
}

.site-footer__top-right-social {
    display: flex;
    gap: 18px;
}

.site-footer__top-right-social a {
    color: #fff;
    font-size: 1.3rem;
    transition: color 0.2s;
}

.site-footer__top-right-social a:hover {
    color: #ffd700;
}

/* Responsive */
@media (max-width: 767px) {
    .site-footer__top-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px 0;
    }
    .site-footer__top-left-title {
        font-size: 1.1rem;
    }
    .site-footer__top-left-phone {
        font-size: 1rem;
    }
}
