/* ===================================================
   PAUL MORRISSY BUSINESS BROKER - Prestige Dark Navy & Gold
   Colors: #0B0F1A, #0B0F1A, #A89A7B, #8F8268, #C4B596
   =================================================== */

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #0B0F1A;
    line-height: 1.6;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== HEADER MAIN (Contact Info Bar) ===== */
.header-main {
    background: #0B0F1A;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 13px;
}

.header-info-item .stm-icon {
    color: #A89A7B;
    font-size: 14px;
}

.header-info-item a {
    color: #ccc;
    transition: color 0.3s;
}

.header-info-item a:hover {
    color: #C4B596;
}

/* ===== HEADER NAV ===== */
.header-nav {
    background: #0B0F1A;
    position: relative;
    z-index: 1000;
}

.header-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.header-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bloglogo {
    display: flex;
    flex-direction: column;
    padding: 14px 0;
    text-decoration: none;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1.2;
}

.logo-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    color: #A89A7B;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav Menu */
.header-menu {
    display: flex;
    align-items: stretch;
}

.header-menu li a {
    display: flex;
    align-items: center;
    padding: 18px 18px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.3s;
    height: 100%;
}

.header-menu li a:hover,
.header-menu li.current-menu-item a {
    background: #A89A7B;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    height: 600px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, #060910 0%, #0D1220 40%, #141C30 70%, #0B0F1A 100%);
    background-size: cover;
    background-position: center;
}

.slide-bg-2 {
    background:
        linear-gradient(135deg, #0D1220 0%, #060910 40%, #141C30 70%, #060910 100%);
}

.slide-bg-3 {
    background:
        linear-gradient(135deg, #141C30 0%, #0D1220 40%, #060910 70%, #0D1220 100%);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.slide-content .container {
    width: 100%;
}

.heading-font {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #A89A7B;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.slide-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slide-title strong {
    font-weight: 800;
}

.slide-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    font-weight: 300;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover { background: rgba(0,0,0,0.8); }
.slider-prev { left: 0; }
.slider-next { right: 0; }

/* Slider Bullets */
.slider-bullets {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.bullet.active,
.bullet:hover {
    background: #fff;
    border-color: #A89A7B;
}

/* ===== STM BUTTON ===== */
.stm-button {
    display: inline-block;
    padding: 16px 34px;
    background: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 2px 0 #A89A7B;
    cursor: pointer;
    transition: all 0.3s;
}

.stm-button:hover {
    background: #0B0F1A;
    color: #fff;
}

.stm-button-light {
    background: #A89A7B;
    box-shadow: 0 2px 0 #8F8268;
}

.stm-button-light:hover {
    background: #8F8268;
}

/* ===== SECTION TITLES ===== */
.section-title-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0B0F1A;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title .stm-color {
    color: #A89A7B;
}

.title-separator {
    width: 60px;
    height: 3px;
    background: #A89A7B;
    margin: 0 auto;
}

/* ===== WELCOME / ABOUT SECTION ===== */
.welcome-section {
    padding: 70px 0 60px;
    background: #fff;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
    text-align: center;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    padding: 60px 0;
    background: #f2f2f2;
}

.stm-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
}

.form-row.full {
    display: block;
    margin-bottom: 18px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #0B0F1A;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label span {
    font-weight: 400;
    font-size: 11px;
    color: #999;
    text-transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    background: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #A89A7B;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    text-align: center;
    margin-top: 10px;
}

/* ===== ICON BOXES ===== */
.icon-boxes-section {
    padding: 60px 0;
    background: #0B0F1A;
}

.icon-boxes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.icon-box {
    border-right: 1px solid rgba(255,255,255,0.08);
}

.icon-box:last-child {
    border-right: none;
}

.icon-box-inner {
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-box:hover .icon-box-inner {
    background: rgba(255,255,255,0.03);
}

.icon-box-icon {
    width: 70px;
    height: 70px;
    border: 2px solid #A89A7B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.icon-box:hover .icon-box-icon {
    background: #A89A7B;
    transform: scale(1.05);
}

.icon-box-icon i {
    font-size: 24px;
    color: #A89A7B;
    transition: color 0.3s;
}

.icon-box:hover .icon-box-icon i {
    color: #fff;
}

.icon-box-triangle {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #A89A7B;
    margin-bottom: 15px;
}

.icon-box-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.icon-box-content p {
    font-size: 12px;
    line-height: 1.7;
    color: #999;
    margin-bottom: 16px;
}

.icon-box-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #A89A7B;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.icon-box-link:hover {
    color: #C4B596;
}

.icon-box-link i {
    font-size: 10px;
}

/* ===== LISTING TABS ===== */
.listings-section {
    padding: 60px 0;
    background: #fff;
}

.stm-listing-tabs {
    margin-bottom: 30px;
}

.stm-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    background: #f2f2f2;
}

.stm-tabs-nav li a {
    display: block;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0B0F1A;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.stm-tabs-nav li.active a {
    background: #0B0F1A;
    color: #fff;
}

.stm-tabs-nav li a:hover {
    background: #0B0F1A;
    color: #fff;
}

/* ===== LISTING CARDS ===== */
.car-listing-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.listing-car-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: all 0.3s;
}

.listing-car-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.listing-car-item-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #141C30, #0D1220, #0B0F1A);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 40px;
    color: rgba(255,255,255,0.15);
}

.listing-car-item-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #A89A7B;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.single-car-data {
    padding: 12px 15px 15px;
}

.listing-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #0B0F1A;
    margin-bottom: 6px;
    background: #f7f7f7;
    display: inline-block;
    padding: 4px 10px;
}

.listing-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0B0F1A;
    line-height: 1.4;
    margin-bottom: 10px;
}

.listing-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.listing-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background: #0B0F1A;
    padding: 3px 8px;
    letter-spacing: 0.5px;
}

.listing-location {
    font-size: 12px;
    color: #999;
}

.listing-location i {
    color: #A89A7B;
    margin-right: 3px;
}

/* ===== M&A SECTION ===== */
.ma-listings-section {
    padding: 60px 0;
    background: #f2f2f2;
}

.no-data-message {
    text-align: center;
    padding: 50px 20px;
    color: #999;
}

.no-data-message i {
    font-size: 40px;
    color: #ccc;
    margin-bottom: 15px;
    display: block;
}

.no-data-message p {
    font-size: 15px;
}

/* ===== CTA BANNER ===== */
.cta-banner-section {
    position: relative;
    padding: 80px 0;
    background: #0B0F1A;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(11,15,26,0.95) 0%, rgba(17,23,40,0.9) 100%);
}

.cta-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 16px;
    color: #999;
    margin-bottom: 30px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0B0F1A;
}

.footer-widgets-wrapper {
    padding: 50px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-widgets {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo-text {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}

.footer-logo-sub {
    display: block;
    font-size: 10px;
    color: #A89A7B;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-about {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

.widget-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-contact li {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    color: #A89A7B;
    width: 14px;
    text-align: center;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: #888;
    transition: color 0.3s;
}

.footer-contact li a:hover {
    color: #C4B596;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a {
    font-size: 13px;
    color: #888;
    transition: color 0.3s;
    display: inline-block;
}

.footer-links li a:hover {
    color: #C4B596;
}

.footer-links li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    font-size: 11px;
    color: #A89A7B;
}

/* Footer Copyright */
.footer-copyright {
    padding: 20px 0;
    position: relative;
}

.footer-copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.2);
}

.copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-text {
    font-size: 13px;
    color: #666;
}

.copyright-text a {
    color: #C4B596;
    transition: color 0.3s;
}

.copyright-text a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: #888;
    font-size: 13px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #A89A7B;
    color: #fff;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
    .icon-boxes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .icon-box:nth-child(3) { border-right: none; }
    .icon-box:nth-child(4) { border-right: 1px solid rgba(255,255,255,0.08); }

    .car-listing-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider-wrapper { height: 500px; }
    .slide-title { font-size: 34px; }
}

@media (max-width: 767px) {
    .header-main-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0B0F1A;
        flex-direction: column;
        z-index: 999;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }

    .header-menu.active {
        display: flex;
    }

    .header-menu li a {
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .header-nav-inner {
        position: relative;
    }

    .slider-wrapper { height: 400px; }
    .slide-title { font-size: 28px; }
    .heading-font { font-size: 10px; }

    .icon-boxes-grid {
        grid-template-columns: 1fr 1fr;
    }
    .icon-box { border-right: none; }

    .car-listing-row {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .copyright-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .stm-tabs-nav {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .slider-wrapper { height: 350px; }
    .slide-title { font-size: 24px; }
    .stm-button { padding: 12px 24px; font-size: 12px; }
    .section-title { font-size: 22px; }
    .icon-boxes-grid { grid-template-columns: 1fr; }
    .cta-content h2 { font-size: 22px; }
    .listing-price { font-size: 18px; }
    .steps-grid { grid-template-columns: 1fr; }
    .expertise-grid { grid-template-columns: 1fr 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .search-bar { grid-template-columns: 1fr; }
}

/* ======================================================
   SUBPAGE STYLES
   ====================================================== */

/* ===== PAGE BANNER ===== */
.page-banner {
    position: relative;
    padding: 80px 0 60px;
    background: #0B0F1A;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
}

.page-banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 15, 26, 0.75);
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.page-breadcrumbs {
    font-size: 14px;
    color: #A89A7B;
}

.page-breadcrumbs a {
    color: #A89A7B;
    transition: color 0.3s;
}

.page-breadcrumbs a:hover {
    color: #C4B596;
}

.page-breadcrumbs span {
    margin: 0 8px;
    color: #666;
}

/* ===== PAGE CONTENT ===== */
.page-content-section {
    padding: 70px 0;
    background: #fff;
}

.page-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #0B0F1A;
    margin-bottom: 25px;
}

.page-content-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

/* ===== ABOUT PAGE LAYOUT ===== */
.about-page-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
}

.about-page-image {
    position: relative;
}

.about-page-image img {
    width: 100%;
    display: block;
}

.about-card {
    display: flex;
    background: #0B0F1A;
    margin-top: -40px;
    position: relative;
    z-index: 1;
}

.about-card-item {
    flex: 1;
    padding: 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.about-card-item:last-child {
    border-right: none;
}

.about-card-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #A89A7B;
    line-height: 1;
}

.about-card-label {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-page-text .heading-font {
    color: #A89A7B;
}

/* ===== EXPERTISE SECTION ===== */
.expertise-section {
    padding: 70px 0;
    background: #0B0F1A;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.expertise-item {
    text-align: center;
    padding: 25px 15px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
}

.expertise-item:hover {
    background: rgba(255,255,255,0.04);
    border-color: #A89A7B;
}

.expertise-item i {
    font-size: 28px;
    color: #A89A7B;
    margin-bottom: 12px;
    display: block;
}

.expertise-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* ===== PERSONAL / SIDE-BY-SIDE SECTION ===== */
.about-personal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.personal-img {
    width: 100%;
    display: block;
}

.personal-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0B0F1A;
    margin-bottom: 18px;
}

/* ===== CHECK LIST ===== */
.check-list {
    list-style: none;
    margin: 18px 0;
}

.check-list li {
    padding: 6px 0;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list li i {
    color: #A89A7B;
    font-size: 14px;
    flex-shrink: 0;
}

/* ===== INDUSTRIES ===== */
.industries-section {
    padding: 60px 0;
    background: #f2f2f2;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.industry-tag {
    background: #0B0F1A;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.industry-tag:hover {
    background: #A89A7B;
}

/* ===== STEPS SECTION ===== */
.steps-section {
    padding: 70px 0;
    background: #0B0F1A;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.step-card:hover {
    border-color: #A89A7B;
    transform: translateY(-3px);
}

.step-number {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: rgba(255,255,255,0.1);
    z-index: 2;
    line-height: 1;
}

.step-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.step-card:hover img {
    opacity: 0.9;
}

.step-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    padding: 18px 18px 10px;
    letter-spacing: 0.5px;
}

.step-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #999;
    padding: 0 18px 20px;
}

/* ===== LISTING IMAGES ===== */
.listing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.listings-count {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.listings-count strong {
    color: #0B0F1A;
}

/* ===== SEARCH BAR ===== */
.search-bar-section {
    padding: 30px 0;
    background: #0B0F1A;
}

.search-bar {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.search-field label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #A89A7B;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #444;
    background: #060910;
    color: #ccc;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s;
}

.search-field input:focus,
.search-field select:focus {
    border-color: #A89A7B;
}

.search-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.search-btn {
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* ===== CONTACT CARDS ===== */
.contact-cards-section {
    padding: 50px 0;
    background: #fff;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: -80px;
}

.contact-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: #0B0F1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.contact-card-icon i {
    font-size: 22px;
    color: #A89A7B;
}

.contact-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0B0F1A;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card a,
.contact-card p {
    font-size: 14px;
    color: #666;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #C4B596;
}

/* ===== CONTACT PAGE LAYOUT ===== */
.contact-page-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-page-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0B0F1A;
    margin-bottom: 15px;
}

.contact-page-info p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-page-img {
    width: 100%;
    display: block;
    margin-bottom: 25px;
}

.contact-direct h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0B0F1A;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-phone-big {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #0B0F1A;
    transition: color 0.3s;
}

.contact-phone-big:hover {
    color: #A89A7B;
}

.contact-phone-big i {
    font-size: 18px;
    color: #A89A7B;
}

/* ===== MAP SECTION ===== */
.map-section {
    line-height: 0;
}

.map-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    filter: grayscale(60%);
}

/* ===== SUBPAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .expertise-grid { grid-template-columns: repeat(3, 1fr); }
    .search-bar { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    .about-page-layout { grid-template-columns: 1fr; gap: 30px; }
    .about-personal { grid-template-columns: 1fr; gap: 30px; }
    .contact-page-layout { grid-template-columns: 1fr; gap: 30px; }
    .contact-cards { grid-template-columns: 1fr; margin-top: -60px; }
    .contact-cards-section { padding: 30px 0; margin-top: -30px; }
    .page-banner-title { font-size: 28px; }
    .page-banner { padding: 60px 0 40px; min-height: 200px; }
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
    .search-bar { grid-template-columns: 1fr; }
}
