/* Navbar Base */
/* Navbar Base */
.nav-bar {
    min-height: 72px;
}

.navbar {
    min-height: 72px;
    height: 72px;
    align-items: center;
}

.navbar-brand h1 {
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    background: linear-gradient(90deg, #198754  100%);
    -webkit-background-clip: text;
    margin-bottom: 0;
    line-height: 1;
}

/* Nav Links - always column, even on desktop */
.nav-link {
    font-weight: 700;
    position: relative;
    padding: 0.9rem 1.6rem !important;
    color: #198754 !important;
    border-radius: 8px;
    transition: background 0.25s, color 0.25s;
    display: block;
    text-align: left;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 6px;
    left: 50%;
    background: linear-gradient(90deg, #198754 60%, #ffc107 100%);
    border-radius: 2px;
    transition: all 0.35s ease;
}

.nav-link:hover,
.nav-link.active {
    background: #ffc107;
    color: #198754 !important;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 80%;
    left: 10%;
}

/* Toggler */
.navbar-toggler {
    border: none;
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
    background: #e7f1ff;
    box-shadow: 0 2px 8px rgba(7, 215, 28, 0.845);
    display: block;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 2px #ffc107;
}

.navbar-toggler:hover {
    background: #d0e7ff;
}

.navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(13,110,253,0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile & Desktop Menu (Slide-In) */
.navbar-collapse {
    background: #fff;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    border-radius: 0.7rem 0 0 0.7rem;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 320px;
    max-width: 90vw;
    z-index: 1050;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(.4, 2, .6, 1), opacity 0.3s;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.navbar-collapse.show {
    transform: translateX(0);
    opacity: 1;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 1.5rem;
    gap: 0;
}

.navbar-nav .nav-link {
    width: 100%;
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}

/* Make Get A Quote button full width on menu */
.navbar-collapse .get-quote-btn {
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

/* Always show toggler, always use slide-in menu, even on desktop */
@media (min-width: 992px) {
    .navbar-collapse {
        position: fixed;
        height: 100vh;
        width: 400px;
        max-width: 90vw;
        box-shadow: -4px 0 20px rgba(9, 238, 119, 0.15);
        transform: translateX(100%);
        opacity: 0;
        padding: 2.5rem 2.5rem 2rem 2.5rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        background: #fff;
        border-radius: 0.7rem 0 0 0.7rem;
    }

    .navbar-collapse.show {
        transform: translateX(0);
        opacity: 1;
    }

    .navbar-toggler {
        display: block;
    }

    .navbar-nav {
        flex-direction: column;
        margin-bottom: 1.5rem;
        gap: 0;
    }

    .navbar-nav .nav-link {
        width: 100%;
        font-size: 1.15rem;
        margin-bottom: 0.3rem;
        text-align: left;
    }

    .navbar-collapse .get-quote-btn {
        width: 100%;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
}

/* Overlay */
.navbar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35); /* Make overlay semi-transparent dark */
    z-index: 1049;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.navbar-overlay.show {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* Always show overlay on menu open, all devices */
@media (min-width: 992px) {
    .navbar-overlay {
        display: none;
        background: rgba(0,0,0,0.35);
        opacity: 0;
        pointer-events: none;
    }

    .navbar-overlay.show {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }
}

/* Prevent scroll on open */
body.menu-open {
    overflow: hidden;
}




:root {
    --primary: #198754;
    --secondary: #343a40;
    --light: #f8f9fa;
    --dark: #212529;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
}

.section-title h5 {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title h1 {
    font-weight: 700;
    color: var(--dark);
}

/* Feature Box */
.feature-box {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 30px;
    color: var(--primary);
}

.feature-box h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-box p {
    color: var(--secondary);
}

/* Accordion */
.accordion-item {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    background: white;
    padding: 20px 25px;
    font-weight: 600;
    color: var(--dark);
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: white;
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: scale(1.5);
}

.accordion-button:not(.collapsed):after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 25px;
    background: white;
    color: var(--secondary);
}

.city-reference {
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
    margin-top: 10px;
    display: block;
}

.wow {
    visibility: hidden;
}


.servicearea-header {
    background: linear-gradient(135deg, var(--primary) 0%, #198754 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.servicearea-title {
    position: relative;
    margin-bottom: 2rem;
}

.servicearea-title h5 {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 1px;
}

.servicearea-title h1 {
    font-weight: 700;
    color: white;
}

.servicearea-title h1:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: white;
    margin: 15px auto 0;
    border-radius: 2px;
}

.servicearea-content {
    padding: 40px 30px;
}

.servicearea-list {
    background: rgba(13, 110, 253, 0.03);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
}

.servicearea-list h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.servicearea-cities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.servicearea-city {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.servicearea-city:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.1);
    background: var(--primary);
    color: white;
}

.servicearea-city:hover .servicearea-cityname {
    color: white;
}

.servicearea-cityicon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    margin-right: 12px;
    color: var(--primary);
}

.servicearea-cityname {
    font-weight: 500;
    color: var(--dark);
    margin: 0;
    transition: color 0.3s ease;
}

.servicearea-description {
    padding: 25px;
}

.servicearea-description h3 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.servicearea-description p {
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.servicearea-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.servicearea-featureicon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    color: var(--primary);
    font-size: 18px;
}

.servicearea-featuretext {
    flex: 1;
}

.servicearea-featuretext h5 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.servicearea-featuretext p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.servicearea-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .servicearea-container {
        max-width: 1000px;
    }
    .servicearea-content {
        padding: 30px 15px;
    }
}

@media (max-width: 992px) {
    .servicearea-container {
        max-width: 100%;
        border-radius: 10px;
    }
    .servicearea-content {
        padding: 25px 10px;
    }
    .servicearea-cities {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    .servicearea-header {
        padding: 20px 10px;
    }
    .servicearea-list {
        padding: 15px;
    }
    .servicearea-description {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .servicearea-container {
        border-radius: 8px;
    }
    .servicearea-content {
        padding: 15px 5px;
    }
    .servicearea-cities {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .feature-box {
        padding: 15px;
    }
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    .feature-icon i {
        font-size: 22px;
    }
    .accordion-button,
    .accordion-body {
        padding: 12px 10px;
    }
    .servicearea-header {
        padding: 12px 5px;
    }
    .servicearea-title h1 {
        font-size: 1.5rem;
    }
    .servicearea-title h1:after {
        width: 40px;
        height: 3px;
        margin: 10px auto 0;
    }
    .servicearea-list h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
        padding-bottom: 6px;
    }
    .servicearea-description h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    .servicearea-featureicon {
        width: 28px;
        height: 28px;
        font-size: 14px;
        margin-right: 8px;
    }
    .servicearea-badge {
        font-size: 0.8rem;
        padding: 4px 10px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .servicearea-container {
        border-radius: 0;
        box-shadow: none;
    }
    .servicearea-header {
        padding: 8px 2px;
    }
    .servicearea-title h1 {
        font-size: 1.1rem;
    }
    .servicearea-title h1:after {
        width: 25px;
        height: 2px;
        margin: 6px auto 0;
    }
    .servicearea-content {
        padding: 8px 2px;
    }
    .servicearea-list {
        padding: 8px;
    }
    .servicearea-description {
        padding: 8px;
    }
    .feature-box {
        padding: 8px;
    }
    .feature-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 6px;
    }
    .feature-icon i {
        font-size: 14px;
    }
    .accordion-button,
    .accordion-body {
        padding: 6px 4px;
        font-size: 0.95rem;
    }
    .servicearea-list h4,
    .servicearea-description h3 {
        font-size: 1rem;
    }
    .servicearea-featureicon {
        width: 18px;
        height: 18px;
        font-size: 10px;
        margin-right: 4px;
    }
    .servicearea-badge {
        font-size: 0.7rem;
        padding: 2px 6px;
        margin-top: 6px;
    }
}








.service-header {
    background: linear-gradient(135deg, var(--primary) 0%, #198754 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.service-title {
    position: relative;
    margin-bottom: 2rem;
}

.service-title h5 {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 1px;
}

.service-title h1 {
    font-weight: 700;
    color: white;
}

.service-title h1:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: white;
    margin: 15px auto 0;
    border-radius: 2px;
}

.service-content {
    padding: 40px 30px;
}

.service-description {
    padding: 25px;
    background: rgba(13, 110, 253, 0.03);
    border-radius: 10px;
    height: 100%;
}

.service-description h3 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

.service-description p {
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.service-featureicon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    color: var(--primary);
    font-size: 18px;
}

.service-featuretext {
    flex: 1;
}

.service-featuretext h5 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.service-featuretext p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.service-options {
    padding: 25px;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.service-option:hover,
.service-option.active {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.15);
    border-left: 4px solid var(--primary);
}

.service-option.active {
    background: rgba(13, 110, 253, 0.05);
}

.service-optionicon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    margin-right: 20px;
    color: var(--primary);
    font-size: 24px;
}

.service-optiontext h4 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.service-optiontext p {
    color: var(--secondary);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.service-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 20px;
}

.service-location {
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
    margin-top: 15px;
    display: block;
}

@media (max-width: 992px) {
    .service-option {
        padding: 15px;
    }

    .service-optionicon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 15px;
    }
}





.additionalservice-header {
    background: linear-gradient(135deg, var(--primary) 0%, #198754 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.additionalservice-title {
    position: relative;
    margin-bottom: 2rem;
}

.additionalservice-title h5 {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 1px;
}

.additionalservice-title h1 {
    font-weight: 700;
    color: white;
}

.additionalservice-title h1:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: white;
    margin: 15px auto 0;
    border-radius: 2px;
}

.additionalservice-content {
    padding: 50px 30px;
}

.additionalservice-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.additionalservice-item:last-child {
    margin-bottom: 0;
}

.additionalservice-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.additionalservice-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.additionalservice-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.additionalservice-image:hover img {
    transform: scale(1.05);
}

.additionalservice-details {
    flex: 1;
    padding: 30px;
}

.additionalservice-details h3 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.additionalservice-details h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.additionalservice-details p {
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.additionalservice-features {
    margin-bottom: 25px;
}

.additionalservice-feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.additionalservice-featureicon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    color: var(--primary);
}

.additionalservice-featuretext {
    flex: 1;
    font-weight: 500;
    color: var(--dark);
}

.additionalservice-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.additionalservice-badge:hover {
    background: #198754;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.additionalservice-location {
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
    margin-top: 20px;
    display: block;
}

/* Zig Zag Layout */
.additionalservice-item:nth-child(odd) {
    flex-direction: row;
}

.additionalservice-item:nth-child(even) {
    flex-direction: row-reverse;
}

.additionalservice-item:nth-child(odd) .additionalservice-details {
    padding-left: 50px;
}

.additionalservice-item:nth-child(even) .additionalservice-details {
    padding-right: 50px;
}

@media (max-width: 992px) {
    .additionalservice-item {
        flex-direction: column !important;
        margin-bottom: 60px;
    }

    .additionalservice-image,
    .additionalservice-details {
        width: 100%;
    }

    .additionalservice-details {
        padding: 25px 0 !important;
        margin-top: 25px;
    }

    .additionalservice-image img {
        height: 300px;
    }
}




.contactus-header {
    background: linear-gradient(135deg, var(--primary) 0%, #198754 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.contactus-title {
    position: relative;
    margin-bottom: 2rem;
}

.contactus-title h5 {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 1px;
}

.contactus-title h1 {
    font-weight: 700;
    color: white;
}

.contactus-title h1:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: white;
    margin: 15px auto 0;
    border-radius: 2px;
}

.contactus-content {
    padding: 50px 30px;
}

.contactus-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contactus-map iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 15px;
}

.contactus-info {
    padding: 30px;
    background: rgba(13, 110, 253, 0.03);
    border-radius: 15px;
    height: 100%;
}

.contactus-info h3 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.contactus-info h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.contactus-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contactus-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    margin-right: 20px;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.contactus-text {
    flex: 1;
}

.contactus-text h4 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.contactus-text p {
    color: var(--secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

.contactus-text a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contactus-text a:hover {
    color: var(--primary);
}

.contactus-hours {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contactus-hours h4 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.contactus-hourrow {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.contactus-day {
    color: var(--dark);
    font-weight: 500;
}

.contactus-time {
    color: var(--secondary);
}

.contactus-social {
    display: flex;
    margin-top: 30px;
}

.contactus-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.contactus-social a:hover {
    background: #198754;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .contactus-map {
        margin-bottom: 30px;
    }

    .contactus-map iframe {
        height: 400px;
    }
}
