/* Areas/Location Page Specific Styles */

/* Prevent horizontal overflow */
main {
    overflow-x: hidden;
    width: 100%;
}

section {
    overflow-x: clip;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* Ensure containers don't overflow on mobile */
@media (max-width: 768px) {
    .bento-container,
    .services-container,
    .cta-container,
    .process-container,
    .faq-container,
    .areas-covered-container,
    .testimonials-bento-container,
    .contact-container,
    .location-hero-content,
    .breadcrumb-container {
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--background-light);
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

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

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
}

.breadcrumb-item:not(:last-child)::after {
    content: "›";
    margin-left: 10px;
    color: var(--text-light);
}

.breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 500;
}

/* Hero Section */
.location-hero {
    background-color: var(--background-white);
    min-height: calc(95vh - 77px);
    padding: 80px 20px;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.location-hero h1 {
    font-size: 4rem;
    font-weight: 100;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Word animation */
.location-hero .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(-50vh);
    animation: slideDown 0.8s ease forwards;
}

.location-hero .word-1 {
    animation-delay: 0s;
}

.location-hero .word-2 {
    animation-delay: 0.3s;
}

.location-hero .word-3 {
    animation-delay: 0.6s;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-hero p {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background-color: var(--background-white);
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-text {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    padding: 14px 40px;
    font-weight: 400;
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: var(--background-white);
}

/* Bento Section */
.bento-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.bento-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

/* Left Column - Image + Stats */
.bento-left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bento-image-wrapper {
    display: flex;
    align-items: stretch;
    background-color: var(--background-white);
    box-shadow: var(--shadow-lg);
    height: 300px;
}

.bento-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 40px;
    background-color: var(--background-white);
    box-shadow: var(--shadow-lg);
}

.bento-stats h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* Right Column - Form */
.bento-right-column {
    display: flex;
    flex-direction: column;
}

.bento-right-column .bento-form {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bento-right-column .bento-form form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Legacy support */
.bento-left-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 40px;
    background-color: var(--background-white);
    box-shadow: var(--shadow-lg);
}

.bento-left-stats h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-light);
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-image {
    flex: 1;
}

.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Left Column */
.bento-left {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--background-white);
    box-shadow: var(--shadow-lg);
}

.bento-left-top {
    display: flex;
    align-items: stretch;
}

.bento-left h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
    padding: 30px 30px 0;
}

.bento-left .bento-grid {
    padding: 20px 30px;
}

.bento-left .bento-cta {
    margin: 0 30px 30px;
}

/* Right Column */
.bento-right {
    display: flex;
    flex-direction: column;
    background-color: var(--background-white);
    box-shadow: var(--shadow-lg);
}

.bento-right h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.bento-box {
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    padding: 25px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.bento-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--second-accent-color);
    margin-bottom: 8px;
}

.bento-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.bento-desc {
    font-size: 13px;
    color: var(--text-light);
}

/* CTA Box */
.bento-cta {
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    padding: 30px;
}

.bento-cta h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.bento-cta p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* Form Box */
.bento-form {
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    padding: 40px;
    flex: 1;
}

.bento-right .bento-form {
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px;
}

.bento-right .bento-form > p {
    margin-bottom: 80px;
}

.bento-right .bento-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bento-right .bento-form .btn {
    margin-top: 10px;
}

.bento-form h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.bento-form h3 {
    font-size: 1.25rem;
    color: var(--second-accent-color);
    margin-bottom: 10px;
}

.bento-form > p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

.bento-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bento-form input,
.bento-form select,
.bento-form textarea {
    padding: 14px 16px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 14px;
    border: 1px solid var(--border-color);
    background-color: var(--background-white);
    color: var(--text-dark);
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.bento-form textarea {
    resize: vertical;
    min-height: 140px;
}

.bento-form input:focus,
.bento-form select:focus,
.bento-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.bento-form input::placeholder,
.bento-form textarea::placeholder {
    color: var(--text-light);
}

.bento-form .btn {
    width: 100%;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb-list {
        font-size: 12px;
    }

    .location-hero {
        padding: 60px 20px;
    }

    .location-hero-content {
        padding: 0 20px;
    }

    .location-hero h1 {
        font-size: 2.5rem;
    }

    .location-hero p {
        font-size: 1rem;
    }

    .bento-container {
        grid-template-columns: 1fr;
        width: 100%;
        overflow: hidden;
    }

    .bento-left {
        flex-direction: column;
        max-height: none;
        width: 100%;
        overflow: hidden;
    }

    .bento-left-top {
        flex-direction: column;
        width: 100%;
    }

    .bento-left-top .bento-image {
        min-height: 250px;
        width: 100%;
    }

    .bento-left h2 {
        padding: 25px 25px 0;
    }

    .bento-left .bento-grid {
        padding: 20px 25px;
    }

    .bento-left .bento-cta {
        margin: 0 25px 25px;
    }

    .bento-left-stats {
        padding: 30px;
    }

    .bento-stats {
        padding: 30px;
    }

    .bento-image-wrapper {
        height: 250px;
        flex-direction: column;
        width: 100%;
        overflow: hidden;
    }

    .bento-image {
        width: 100%;
        overflow: hidden;
    }

    .vertical-text {
        writing-mode: horizontal-tb;
        transform: none;
        padding: 15px 20px;
        text-align: center;
        font-size: 13px;
        letter-spacing: 2px;
        width: 100%;
        box-sizing: border-box;
    }

    .bento-right {
        padding: 30px;
        width: 100%;
        overflow: hidden;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-text {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb-list {
        font-size: 10px;
        gap: 6px;
    }

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

    .bento-section {
        padding: 40px 15px;
    }

    .bento-left {
        flex-direction: column;
        max-height: none;
    }

    .bento-left-top {
        flex-direction: column;
        width: 100%;
    }

    .bento-left-top .bento-image {
        min-height: 200px;
        width: 100%;
    }

    .bento-left h2 {
        padding: 20px 20px 0;
    }

    .bento-left .bento-grid {
        padding: 15px 20px;
    }

    .bento-left .bento-cta {
        margin: 0 20px 20px;
    }

    .bento-left-stats {
        padding: 20px;
    }

    .bento-stats {
        padding: 20px;
    }

    .bento-image-wrapper {
        flex-direction: column;
        height: auto;
    }

    .vertical-text {
        writing-mode: horizontal-tb;
        transform: none;
        padding: 12px 15px;
        text-align: center;
        font-size: 11px;
        letter-spacing: 1.5px;
        width: 100%;
        box-sizing: border-box;
    }

    .bento-image {
        height: 200px;
        width: 100%;
    }

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

    .bento-value {
        font-size: 1.75rem;
    }

    .bento-right {
        padding: 20px;
    }

    .bento-form,
    .bento-cta {
        padding: 20px;
    }

    .cta-section {
        padding: 50px 15px;
    }

    .cta-text {
        font-size: 1.5rem;
    }
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

/* Left Column - Service Cards */
.services-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    display: flex;
    background-color: var(--background-white);
    box-shadow: var(--shadow-lg);
}

.service-card-title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-color);
    padding: 25px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-color);
    text-transform: uppercase;
    position: relative;
}

.service-card-title::after {
    content: "";
    position: absolute;
    top: 0;
    right: -1px;
    width: 1px;
    height: 0;
    background-color: var(--accent-color);
    transition: height 0.4s ease;
}

.service-card:hover .service-card-title::after {
    height: 100%;
}

/* Alternate layout - title on right */
.services-left > .service-card:nth-child(2) {
    flex-direction: row-reverse;
}

.services-left > .service-card:nth-child(2) .service-card-title {
    border-right: none;
    border-left: 1px solid var(--border-color);
}

.services-left > .service-card:nth-child(2) .service-card-title::after {
    right: auto;
    left: -1px;
}

.service-card-content {
    flex: 1;
    padding: 30px;
}

.service-card-content p {
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.service-card-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-light);
}

/* Bottom Row - Two Cards Side by Side */
.services-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.services-bottom-row .service-card {
    flex-direction: column;
}

.services-bottom-row .service-card-title {
    writing-mode: horizontal-tb;
    transform: none;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 30px;
    justify-content: flex-start;
}

.services-bottom-row .service-card-title::after {
    top: auto;
    bottom: -1px;
    right: auto;
    left: 0;
    width: 0;
    height: 1px;
    transition: width 0.4s ease;
}

.services-bottom-row .service-card:hover .service-card-title::after {
    width: 100%;
    height: 1px;
}

/* Right Column - Image Card */
.services-right {
    height: 100%;
}

.services-image-card {
    background-color: var(--background-white);
    box-shadow: var(--shadow-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.services-image-card h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    padding: 40px 30px;
    margin: 0;
}

.services-image-wrapper {
    position: relative;
    flex: 1;
    display: flex;
}

.services-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-image-text {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-light);
    background-color: var(--background-white);
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

/* Services Section Responsive */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
    }

    .services-right {
        order: -1;
    }

    .services-bottom-row {
        grid-template-columns: 1fr;
    }

    .services-image-card {
        width: 100%;
        overflow: hidden;
    }

    .services-image-card h2 {
        font-size: 1.75rem;
        padding: 30px 20px;
    }

    .services-image-wrapper {
        flex-direction: column;
        width: 100%;
    }

    .services-image-wrapper img {
        width: 100%;
        height: auto;
        min-height: 200px;
        object-fit: cover;
    }

    .services-image-text {
        position: static;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        padding: 12px 15px;
        text-align: center;
        font-size: 10px;
        letter-spacing: 1px;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 15px;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card-title {
        writing-mode: horizontal-tb;
        transform: none;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 15px 20px;
        justify-content: flex-start;
    }

    .service-card-title::after {
        top: auto;
        bottom: -1px;
        right: auto;
        left: 0;
        width: 0;
        height: 1px;
    }

    .service-card:hover .service-card-title::after {
        width: 100%;
        height: 1px;
    }

    .services-left > .service-card:nth-child(2) {
        flex-direction: column;
    }

    .services-left > .service-card:nth-child(2) .service-card-title {
        border-left: none;
        border-bottom: 1px solid var(--border-color);
    }

    .service-card-content {
        padding: 20px;
    }

    .services-image-card h2 {
        font-size: 1.5rem;
        padding: 20px 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .services-image-text {
        font-size: 8px;
        padding: 10px 15px;
        letter-spacing: 0.5px;
        width: 100%;
        box-sizing: border-box;
    }

    .services-image-wrapper {
        width: 100%;
        overflow: hidden;
    }
}

/* Process Section */
.process-section {
    padding: 80px 20px;
    background-color: var(--background-white);
}

.process-container {
    max-width: 800px;
    margin: 0 auto;
}

.process-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.process-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-card {
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: stretch;
    transition: var(--transition);
}

.process-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.process-number {
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    border-right: 1px solid var(--border-color);
    padding: 30px 20px;
}

.process-content {
    flex: 1;
    padding: 30px 40px;
}

.process-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.process-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}

.process-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--accent-color);
    padding: 15px 0;
}

/* Process Section Responsive */
@media (max-width: 768px) {
    .process-section {
        padding: 60px 20px;
    }

    .process-title {
        font-size: 2rem;
    }

    .process-subtitle {
        margin-bottom: 40px;
    }

    .process-number {
        min-width: 80px;
        font-size: 2.5rem;
        padding: 20px 15px;
    }

    .process-content {
        padding: 20px 25px;
    }

    .process-content h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 40px 15px;
    }

    .process-title {
        font-size: 1.75rem;
    }

    .process-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .process-card {
        flex-direction: column;
    }

    .process-number {
        min-width: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        font-size: 2rem;
        padding: 15px;
    }

    .process-content {
        padding: 20px;
    }

    .process-content h3 {
        font-size: 1.1rem;
    }

    .process-content p {
        font-size: 14px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.faq-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item[open] {
    border-color: var(--accent-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-item[open] .faq-question {
    color: var(--accent-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px 30px 30px;
    animation: faqFadeIn 0.3s ease;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.faq-answer strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* FAQ Section Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 20px 25px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 25px 25px 25px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 15px;
    }

    .faq-title {
        font-size: 1.75rem;
    }

    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .faq-icon {
        font-size: 1.25rem;
        margin-left: 15px;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 14px;
    }
}

/* Areas Covered Section */
.areas-covered-section {
    padding: 80px 20px;
    background-color: var(--background-white);
}

.areas-covered-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.areas-covered-content {
    display: flex;
    flex-direction: column;
}

.areas-covered-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.areas-covered-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.areas-covered-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.areas-covered-column h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.areas-covered-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.areas-covered-column li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.areas-covered-column li:last-child {
    border-bottom: none;
}

.areas-covered-column li:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.areas-covered-cta {
    margin-top: auto;
    padding-top: 20px;
}

.areas-covered-cta p {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.areas-covered-map {
    min-height: 450px;
    background-color: var(--background-light);
    box-shadow: var(--shadow-lg);
}

.areas-covered-map iframe {
    display: block;
}

/* Areas Covered Responsive */
@media (max-width: 968px) {
    .areas-covered-container {
        grid-template-columns: 1fr;
    }

    .areas-covered-map {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .areas-covered-section {
        padding: 60px 20px;
    }

    .areas-covered-content h2 {
        font-size: 2rem;
    }

    .areas-covered-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .areas-covered-map {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .areas-covered-section {
        padding: 40px 15px;
    }

    .areas-covered-content h2 {
        font-size: 1.75rem;
    }

    .areas-covered-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .areas-covered-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .areas-covered-cta p {
        font-size: 1.1rem;
    }

    .areas-covered-map {
        min-height: 250px;
    }
}

/* Testimonials Bento Section */
.testimonials-bento-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.testimonials-bento-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-bento-container h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonials-bento-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.testimonials-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-bento-box {
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    padding: 35px 30px;
    text-align: left;
    transition: var(--transition);
}

.testimonial-bento-box:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #f5a623;
    font-size: 1.25rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--accent-color);
    font-size: 13px;
}

.testimonials-bento-cta {
    margin-top: 50px;
}

@media (max-width: 968px) {
    .testimonials-bento-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .testimonials-bento-section {
        padding: 60px 20px;
    }

    .testimonials-bento-container h2 {
        font-size: 2rem;
    }

    .testimonials-bento-subtitle {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .testimonials-bento-section {
        padding: 40px 15px;
    }

    .testimonials-bento-container h2 {
        font-size: 1.75rem;
    }

    .testimonial-bento-box {
        padding: 25px 20px;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: var(--background-light);
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-item strong {
    color: var(--text-dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item a,
.contact-item span {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-item a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }

    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 15px;
    }

    .contact-section h2 {
        font-size: 1.75rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }
}
