:root {
    --primary-blue: #118AB2;
    --secondary-blue: #073B4C;
    --primary-green: #06D6A0;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.section-padding {
    padding: 80px 0;
}

.section-bg {
    background-color: var(--light-bg);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-subtitle {
    color: var(--primary-green);
    font-weight: 600;
}

.accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

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

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

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2306D6A0'%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-color: white;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-cta {
    background: white;
    border-radius: 18px;
    box-shadow: 0 2px 24px rgba(17, 138, 178, 0.16);
    padding: 2.5rem;
    margin-top: 40px;
    text-align: center;
}

.contact-cta h3 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-cta p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.custom-btn {
    background: var(--primary-green);
    color: var(--secondary-blue);
    font-weight: 700;
    border-radius: 32px;
    padding: 16px 36px;
    box-shadow: 0 2px 12px rgba(6, 214, 160, 0.38);
    border: none;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(6, 214, 160, 0.5);
}



body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.section-padding {
    padding: 80px 0;
}

.section-bg {
    background-color: var(--light-bg);
}

.service-area-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-area-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.service-area-subtitle {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 30px;
}

.service-area-description {
    color: #555;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-area-card {
    background: white;
    border-radius: 18px;
    box-shadow: 0 2px 24px rgba(17, 138, 178, 0.16);
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--primary-green);
}

.service-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(17, 138, 178, 0.25);
}

.service-area-card.brooklyn-card {
    border-top: 5px solid var(--primary-blue);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.service-area-card h3 {
    color: var(--secondary-blue);
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.service-area-card.brooklyn-card h3 {
    color: var(--primary-blue);
}

.area-icon {
    background: var(--primary-green);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.2rem;
}

.brooklyn-card .area-icon {
    background: var(--primary-blue);
}

.service-area-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-area-list li {
    padding: 8px 0;
    color: #555;
    font-size: 1.05rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.service-area-list li:last-child {
    border-bottom: none;
}

.service-area-list li i {
    color: var(--primary-green);
    margin-right: 10px;
    font-size: 0.9rem;
}

.brooklyn-card .service-area-list li i {
    color: var(--primary-blue);
}

.highlight-badge {
    background: var(--primary-green);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 10px;
}

.brooklyn-card .highlight-badge {
    background: var(--primary-blue);
}

.service-cta {
    background: white;
    border-radius: 18px;
    box-shadow: 0 2px 24px rgba(17, 138, 178, 0.16);
    padding: 2.5rem;
    margin-top: 40px;
    text-align: center;
}

.service-cta h3 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.service-cta p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.custom-btn {
    background: var(--primary-green);
    color: var(--secondary-blue);
    font-weight: 700;
    border-radius: 32px;
    padding: 16px 36px;
    box-shadow: 0 2px 12px rgba(6, 214, 160, 0.38);
    border: none;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(6, 214, 160, 0.5);
}

.map-placeholder {
    background: linear-gradient(135deg, #118AB2 0%, #06D6A0 100%);
    border-radius: 12px;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
}





body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: var(--light-bg);
}

.section-padding {
    padding: 80px 0;
}

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

.services-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.services-subtitle {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 20px;
}

.services-description {
    color: #555;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.row-title {
    text-align: center;
    margin: 50px 0 30px;
    position: relative;
}

.row-title h3 {
    color: var(--secondary-blue);
    font-weight: 700;
    display: inline-block;
    background: white;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.row-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    z-index: 1;
}

.service-card {
    background: white;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(17, 138, 178, 0.12);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-green);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(17, 138, 178, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-blue);
    transform: scale(1.1);
}

.service-card h4 {
    color: var(--secondary-blue);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.service-features li i {
    color: var(--primary-green);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-cta {
    background: white;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(17, 138, 178, 0.12);
    padding: 3rem;
    margin-top: 50px;
    text-align: center;
    border-top: 4px solid var(--primary-blue);
}

.service-cta h3 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.service-cta p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.custom-btn {
    background: var(--primary-green);
    color: var(--secondary-blue);
    font-weight: 700;
    border-radius: 32px;
    padding: 16px 36px;
    box-shadow: 0 4px 15px rgba(6, 214, 160, 0.3);
    border: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.custom-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(6, 214, 160, 0.4);
    background: var(--primary-blue);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}




body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: var(--light-bg);
}

.section-padding {
    padding: 80px 0;
}

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

.services-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.services-subtitle {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 20px;
}

.services-description {
    color: #555;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.zigzag-section {
    padding: 60px 0;
}

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

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

.zigzag-content {
    flex: 1;
    padding: 0 40px;
}

.zigzag-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(6, 214, 160, 0.3);
}

.service-title {
    color: var(--secondary-blue);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.service-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.feature-box {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-green);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateX(5px);
}

.feature-box h5 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.feature-box h5 i {
    margin-right: 10px;
    color: var(--primary-green);
}

.feature-box p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.visual-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 18px;
    background: linear-gradient(135deg, #118AB2 0%, #06D6A0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(17, 138, 178, 0.2);
    position: relative;
    overflow: hidden;
}

.visual-placeholder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="white" opacity="0.1"><path d="M20,20 L80,20 L80,80 L20,80 Z M30,30 L70,30 L70,70 L30,70 Z"/></svg>');
}

.service-cta {
    background: white;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(17, 138, 178, 0.12);
    padding: 3rem;
    margin-top: 50px;
    text-align: center;
    border-top: 4px solid var(--primary-blue);
}

.service-cta h3 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.service-cta p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.custom-btn {
    background: var(--primary-green);
    color: var(--secondary-blue);
    font-weight: 700;
    border-radius: 32px;
    padding: 16px 36px;
    box-shadow: 0 4px 15px rgba(6, 214, 160, 0.3);
    border: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.custom-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(6, 214, 160, 0.4);
    background: var(--primary-blue);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .zigzag-item {
        flex-direction: column !important;
        text-align: center;
    }

    .zigzag-content {
        padding: 20px 0;
    }

    .visual-placeholder {
        height: 250px;
        margin-top: 20px;
    }
}






body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: var(--light-bg);
}

.section-padding {
    padding: 80px 0;
}

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

.contact-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-subtitle {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-description {
    color: #555;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.map-container {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(17, 138, 178, 0.2);
    margin-bottom: 50px;
    height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #118AB2 0%, #06D6A0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="white" opacity="0.1"><path d="M50,10 C70,10 90,25 90,50 C90,75 70,90 50,90 C30,90 10,75 10,50 C10,25 30,10 50,10 Z M50,30 C60,30 70,40 70,50 C70,60 60,70 50,70 C40,70 30,60 30,50 C30,40 40,30 50,30 Z"/></svg>');
}

.map-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.map-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.map-content h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.info-card {
    background: white;
    border-radius: 18px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 6px 25px rgba(17, 138, 178, 0.12);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-green);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(17, 138, 178, 0.2);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background: var(--primary-blue);
    transform: scale(1.1);
}

.info-card h4 {
    color: var(--secondary-blue);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.info-content {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-content a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--primary-green);
}

.contact-cta {
    background: white;
    border-radius: 18px;
    box-shadow: 0 6px 25px rgba(17, 138, 178, 0.12);
    padding: 3rem;
    margin-top: 60px;
    text-align: center;
    border-top: 4px solid var(--primary-blue);
}

.contact-cta h3 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-cta p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.custom-btn {
    background: var(--primary-green);
    color: var(--secondary-blue);
    font-weight: 700;
    border-radius: 32px;
    padding: 16px 36px;
    box-shadow: 0 4px 15px rgba(6, 214, 160, 0.3);
    border: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.custom-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(6, 214, 160, 0.4);
    background: var(--primary-blue);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.hours-info {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    text-align: left;
}

.hours-info h6 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.hours-info p {
    margin: 5px 0;
    font-size: 0.95rem;
    color: #666;
}





body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
}

.footer {
    background: var(--secondary-blue);
    color: white;
    padding: 60px 0 30px;
}

.footer-main {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links h5 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 10px;
    font-size: 0.9rem;
    color: var(--primary-green);
}

.footer-contact h5 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-green);
    color: var(--secondary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-details h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-details p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-green);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-green);
    color: var(--secondary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-brand {
    text-align: center;
    margin-bottom: 30px;
}

.footer-brand h4 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.service-badge {
    background: var(--primary-green);
    color: var(--secondary-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-contact {
        margin-top: 40px;
    }

    .footer-brand {
        margin-bottom: 40px;
    }
}
