/* Hero Section */
.hero {

    background-image: url('../assets/images/hero-bg.webp');
    /* Replace with your image */
    background-size: cover;
    background-position: 50%;
    background-attachment: fixed;
    background-repeat: repeat;
    width: 100%;
    height: 60vh;
}

.hero-content {
    /* Optional overlay */
    text-align: center;
    padding: 40px;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 55px;
    font-weight: 400;
    text-shadow: 2px 2px 3px #000000ff;
    line-height: 1.3em;
    text-transform: none;
    letter-spacing: 0;
    text-align: center;
    color: white;
}


.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.all-section-wrapper {
    background-image: url('../assets/images/about-bg.webp');
    /* Replace with your image */
    background-size: cover;
    background-position: 50%;
    background-attachment: fixed;
    background-repeat: repeat;
    width: 100%;
    height: 100%;
    /* padding: 2rem 4rem; */
    margin-bottom: -2rem;
}

.all-section-inner-wrapper {
    position: relative;
    bottom: 10rem;
}

/* Content Section */
.content-section {
    padding: 60px 40px;
    background-color: #f9f9f9;
    color: #333;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.6;
}

.about-me-section {
    /* background-color: black; */
    background-color: transparent;
    width: 100%;
    min-height: 30rem;
    padding: 2rem 4rem;
}


.about-me-upper-content {
    display: flex;
    justify-content: center;
    gap: 4rem;
    align-items: center;
    color: white;
    width: 100%;
    /* position: relative;
    bottom: 115px; */
    padding-left: 0rem 2rem;
}

.owner-circle-img-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* position: relative;
    bottom: 10rem; */
}

.owner-info {
    width: 50%;
    /* position: relative;
    bottom: 10.2rem; */
}

.circle-img {
    /* display: flex;
    justify-content: center; */
    /* border: 3px solid white;
    width: fit-content; */
    border: 15px solid white;
    width: 320px;
    height: 320px;
    border-radius: 10rem;
    overflow: hidden;
    object-fit: cover;
}

.circle-img img {
    height: 340px;
    width: 100%;
    /* vertical-align: middle;
    width: 52%;
    border-radius: 11rem; */
}

.book-call-btn {
    border: 10px solid white;
    background-color: black;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem;
    border-radius: 1rem;
    position: relative;
    bottom: 30px;
}

.owner-info h1 {
    font-size: 55px;
    font-weight: 400;
    text-shadow: 2px 2px 3px #000000ff;
    line-height: 1.3em;
    text-transform: none;
    letter-spacing: 0;
    color: white;
    margin-bottom: 2rem;
}

.owner-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.name-type-wrapper {
    display: flex;
    flex-direction: column;
}

.owner-name {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3em;
    letter-spacing: 0;
    color: #faf089;
}

.owner-type {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3em;
    letter-spacing: 0;
    color: white;
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact p {
    font-size: 1rem;
    font-weight: 400;
    color: white;
    line-height: 1rem;
}

.brokAge-section {
    width: 100%;
    background-color: black;
    min-height: 10rem;
    padding: 2.5rem 14rem;
}

.brokAge-section h1 {
    font-size: 1rem;
    font-weight: 700;
    text-shadow: none;
    line-height: 1.3em;
    letter-spacing: 0;
    text-align: center;
    color: white;
    margin-bottom: 1.5rem;
}

.brokerAge-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.broker-content {
    text-align: center;
}

.broker-content h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3em;
    letter-spacing: 0;
    color: #faf089;
}

.broker-content p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3em;
    letter-spacing: 0;
    color: white;
}

.covered-section {
    margin: 2rem 8rem;
}


.section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #fff;
    text-align: center;
}

.covered-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.covered-box {
    background-color: #595959;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    color: #fff;
    min-height: 20.31rem;
}

.covered-box img {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    /* if icon is black, to make it white */
}

.covered-box h3 {
    color: #ffe666;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.covered-box p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.learn-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.learn-btn:hover {
    background-color: #ffe666;
    color: #000;
}

/* States Css */

.states-section {
    padding: 2rem 4rem;
    background: url('../assets/images/states-bg.webp');
    /* optional background pattern */
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.states-title {
    text-align: center;
    margin-bottom: 2rem;
}

.states-title h2 {
    font-size: 40px;
    font-weight: 400;
    color: #faf089;
    margin-bottom: 2rem;
}

.states-title p {
    color: white;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    margin-bottom: 1rem;
}

.states-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
}

.states-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.state-box {
    border: 1px solid #faf089;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
}

.state-header {
    width: 100%;
    background: transparent;
    color: #faf089;
    padding: 14px 16px;
    font-weight: bold;
    border: none;
    text-align: left;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.state-header img {
    width: 16px;
}

/* .state-header::after {
    content: '';
    background-image: url('/assets/images/info-circle-svgrepo-com.svg');
    height: 1.5rem;
    width: 1.5rem;
    position: absolute;
    right: 20px;
    transition: transform 0.3s;
} */

/* .state-header.active::after {
    transform: rotate(180deg);
} */

.state-content {
    padding: 15px 20px;
    display: none;
    transition: all 0.3s ease;
    background-color: transparent;
    color: white;
}

.state-content p {
    color: white;
}

.state-content img {
    width: 100px;
    margin-top: 10px;
}

.state-content a {
    color: #00cfff;
    text-decoration: underline;
    word-break: break-word;
}

.header-text {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 2rem;
}

/* company logos section */
.company-logos-section {
    padding: 2rem 1rem;
}

.logo-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: auto;
}

.company-logo {
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.company-logo img {
    max-height: 100%;
    max-width: 100%;
}


/* Responsive */
@media (max-width: 1024px) {
    .covered-section {
        margin: 2rem 4rem;
    }

    .hero {
        background-attachment: unset;
    }

    .about-me-section {
        padding: 2rem 1rem;
    }

    .about-me-upper-content {
        gap: 0;
    }

    .owner-circle-img-container {
        width: 100%;
    }

    .owner-info {
        width: 100%;
    }

    .hero-content {
        padding: 1rem;
    }

    .brokAge-section {
        padding: 2.5rem 4rem;
    }

    .brokerAge-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .about-me-upper-content {
        flex-direction: column;
    }

    .covered-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Responsive */
@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 2rem;
    }

    .covered-section {
        margin: 2rem 1rem;
    }

    .circle-img {
        width: 260px;
        height: 260px;
    }

    .owner-info {
        text-align: center;
    }

    .states-section {
        padding: 2rem 1rem;
    }

    .header-text {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .logo-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem
    }


}