.newsreader {
    font-family: "Newsreader", serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.newsreader-medium800italic {
    font-family: "Newsreader", serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: italic;
}


.scroll6{
    scroll-margin-top: 6vh;
}

.scroll12{
    scroll-margin-top: 12vh;
}


.color-blue {
    color: rgb(16, 23, 41);
}

.color-purple {
    color: rgb(146, 48, 175);
}

.body {
    font-weight: 400;
}

.container-fluid {
    margin-top: 10;
}

.top-bar-row {
    z-index: -1;
    height: 12vh;
    min-height: fit-content;
    padding-left: 6vw;
    padding-right: 6vw;
    background-color:rgb(253, 249, 255);
    color: white;
    border-bottom: #64363415 1px solid;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding-bottom: 0;
    transition: all 0.3s ease;
}

.shrink{
    height: 6vh;

}
.logo{
    top: 0;
    left: 0;
    height: 12vh;
    padding-left: 6vw;
    padding-right: 6vw;
    z-index: 50;
    transition: all 0.3s ease;
}

.logoshrink {
    height: 6vh;
}

.links {
    text-decoration: none;
    font-size: 1.25rem;
    color: rgb(16, 23, 41);
}

.links:hover {
    color: rgb(146, 48, 175);
}

.row-box {
    width: 30%;
    align-items: center;
    gap: 2.5rem;
}

.hero-row {
    height: 88vh;
    padding-left: 6vw;
    padding-right: 6vw;
    background-color: rgb(253, 249, 255);
    width: 100vw;
}

.hero-toptitle {
    width: 100%;
    font-size: 1.5rem;
    line-height: 150%;
    font-weight: 600;
    margin-bottom: 4rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 4vh;
    line-height: 4.5rem;
}

.hero-subtitle {
    width: 75%;
    font-size: larger;
    line-height: 150%;
}

.hero-logo {
    width: 25vw;
}

.hero-img {
    height: 70vh;
    min-height: 40vh;
    border-radius: 24px;
    max-height: 45vw;

}



/* =========================
SERVICES SECTION
========================= */

.services-section {
    padding: 100px 6vw;
    background-color: rgba(114, 39, 136, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 700;
}

.section-divider {
    height: 4px;
    width: 80px;
    background: rgb(146, 48, 175);
    margin: 20px auto;
    border-radius: 50px;
}

.section-description {
    max-width: 45vw;
    margin: auto;
    color: #666;
    font-weight: 400;
}

/* =========================
    SERVICE CARDS
    ========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4vw;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all .3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(114, 39, 136, 0.1);
    color: rgb(114, 39, 136);
    border-radius: 12px;
    margin-bottom: 10px;
}

.service-card:hover .service-icon {
    color: white;
    background-color: rgb(146, 48, 175);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
}

.service-card p {
    font-size: 14px;
    color: #666;
}

.service-image {
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 10px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.service-card:hover img {
    transform: scale(1.1);
}

/* =========================
    WHY US
    ========================= */

.why-section {
    padding: 120px 6vw;
    background-color: rgb(253, 249, 255);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.why-images img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.why-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-text p {
    color: #666;
    font-size: 18px;
}

.feature {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.feature-icon {
    height: 40px;
    width: 40px;
    background: rgb(146, 48, 175);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}


/* =========================
    Review Section
    ========================= */
.review-section {
    background-color: #0f172a;
    padding: 100px 6vw;
}

.review-container {
    max-width: 1400px;
    margin: 0 auto;
}

.review-header {
    text-align: center;
    margin-bottom: 60px;
}

.review-title {
    color: white;
    font-size: 3rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 12px;
}

.review-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
    text-align: center;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.review-card {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-stars .material-icons {
    color: rgb(146, 48, 175);
}

.review-text {
    color: #cbd5e1;
    font-style: italic;
    margin-bottom: 28px;
    line-height: 1.7;
    min-height: 3.4rem;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-avatar {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background-color: rgba(146, 48, 175, 0.15);
    color: rgb(146, 48, 175);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.review-name {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.review-role {
    color: #64748b;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* =========================
    Location Section
========================= */
.location-section {
    background-color: rgb(253, 249, 255);
    padding: 100px 6vw;
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
}

.location-header {
    text-align: center;
    margin-bottom: 60px;
}

.location-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: rgb(16, 23, 41);
}

.location-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* Left side */
.location-list {
    height: 42vw;
    width: 42vw;
    border: 2px solid rgb(16, 23, 41);
    border-radius: 28px;
    background-color: rgb(253, 249, 255);
    box-shadow: 0 8px 24px rgba(16, 23, 41, 0.08);
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
}

.location-list-scroll {
    height: 100%;
    overflow-y: auto;
    padding: 20px 14px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
}

.location-list-scroll::-webkit-scrollbar {
    width: 8px;
}

.location-list-scroll::-webkit-scrollbar-thumb {
    background-color: rgba(146, 48, 175, 0.35);
    border-radius: 20px;
}

.location-list-scroll::-webkit-scrollbar-track {
    background-color: #f3f4f6;
    border-radius: 20px;
}

.location-card {
    background: white;
    border: 1px solid rgba(146, 48, 175, 0.12);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    border-color: rgba(146, 48, 175, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.location-card-divider {
    height: 1px;
    background-color: rgba(148, 163, 184, 0.5);
    margin: 16px 0 10px 0;
}

.location-card-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: rgb(146, 48, 175);
    font-size: 0.8rem;
    font-weight: 600;
}

.location-card-note p{
    align-content: center;
}

.location-card-note .material-symbols-outlined {
    color: rgb(146, 48, 175);
    font-size: 24px;
    flex-shrink: 0;
}

.location-card h3 {
    color: rgb(146, 48, 175);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

.location-hours {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #64748b;
}

.location-hours p {
    margin: 0 0 4px 0;
}

.location-info .material-symbols-outlined,
.location-hours .material-symbols-outlined {
    color: rgb(146, 48, 175);
    font-size: 24px;
    flex-shrink: 0;
}

/* Right side map */
.location-map {
    position: relative;
    width: 42vw;
    height: 42vw;
    background-color: #eef2f7;
    border-radius: 28px;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Very important for pin accuracy */
.location-map-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: grayscale(100%);
    opacity: 0.8;
    background-color: #eef2f7;
}

.location-map-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: white;
    color: rgb(16, 23, 41);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    z-index: 5;
}

/* Pins */
.map-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    z-index: 4;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.map-pin .material-symbols-outlined {
    font-size: 42px;
    color: rgb(146, 48, 175);
    background: transparent;
    border-radius: 50%;
    padding: 4px;
    transition: all 0.25s ease;
    display: block;
}

.map-pin-label {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background-color: rgba(16, 23, 41, 0.9);
    color: white;
    font-size: 0.78rem;
    padding: 6px 10px;
    border-radius: 999px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.25s ease;
    pointer-events: none;
}

/* Pin positions */
.pin-1 {
    top: 54%;
    left: 63.5%;
}

.pin-2 {
    top: 68%;
    left: 50%;
}

.pin-3 {
    top: 93%;
    left: 36%;
}

.pin-4 {
    top: 57%;
    left: 45%;
}

.pin-5 {
    top: 45%;
    left: 76%;
}

.pin-6 {
    top: 6%;
    left: 92%;
}

/* Hover-linked behavior */
.location-map.has-active-pin .map-pin {
    opacity: 0.35;
}

.location-map.has-active-pin .map-pin.active {
    opacity: 1;
    transform: translate(-50%, -100%) scale(1.12);
}

.location-map.has-active-pin .map-pin.active .material-symbols-outlined {
    color: white;
    background-color: rgb(146, 48, 175);
    box-shadow: 0 12px 24px rgba(146, 48, 175, 0.35);
}

.location-map.has-active-pin .map-pin.active .map-pin-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.map-pin:hover .map-pin-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Optional direct pin hover */
.map-pin:hover {
    transform: translate(-50%, -100%) scale(1.1);
}

.map-pin:hover .material-symbols-outlined {
    color: white;
    background-color: rgb(146, 48, 175);
}


@media (max-width: 900px) {
    .hero-title {
        font-size: 42px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-title {
        font-size: 2.2rem;
    }

    .review-text {
        min-height: auto;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-list {
        width: 90vw;
        height: fit-content;
        border: none;
    }

    .location-map {
        display: none;

    }

    .location-title {
        font-size: 2.2rem;
    }

    .location-list-scroll{
        overflow-y: visible;
    }

    .hero-row{
        height: fit-content;
        padding-bottom: 2rem;
        padding-left: 0;
        padding-right: 0;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        justify-content: center;
    }
    .left{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .why-images{
        display: none;
    }

}

/* =========================
   NEW RESPONSIVE NAV STYLES
========================= */
.mobile-nav-toggle {
    background: none;
    border: none;
    color: rgb(146, 48, 175);
    cursor: pointer;
    padding: 0;
}

.mobile-menu-overlay {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: rgb(253, 249, 255);
    flex-direction: column;
    padding: 20px 6vw;
    border-bottom: 1px solid #64363415;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu-overlay a {
    padding: 15px 0;
    font-size: 1.5rem;
    color: rgb(16, 23, 41);
    text-decoration: none;
    border-bottom: 1px solid #64363405;
}

@media (max-width: 820px) {
    .nav-side:first-child { flex: 0; } /* Push logo left on mobile */
}