body {
    font-family: "Manrope", sans-serif;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: #fff;
}

.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

@media (max-width: 576px) {
    .hero-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 60px;
        flex-wrap: nowrap;
        flex-direction: column;
    }
}

.testimonials-section {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-container {
    overflow: visible;
    padding-bottom: 30px;
}

.testimonials-scroll {
    display: flex;
    align-items: stretch;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border: 1px solid #303030;
    width: 380px;
    height: 485px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.customer-info {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-right: 16px;
    overflow: hidden;
    border: 3px solid #f0f0f0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-info h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    color: #2c2c2c;
}

.testimonial-text {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #666;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-card blockquote {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #1a1a1a;
    margin: 0;
    position: relative;
    padding-left: 20px;
    font-style: bold;
}

.testimonials-container.swiper {
    /* overflow: visible; */
}

.footer-section .footer-content .footer-top {
    display: flex;
    flex-direction: row;
    gap: 180px;
    flex-wrap: nowrap;
}

.swiper-scrollbar {
    background: #e5e5e5;
    height: 6px;
    border-radius: 3px;
    margin-top: 20px;
}

.swiper-scrollbar .swiper-scrollbar-drag {
    background: #C49A6C;
    border-radius: 3px;
}

/* Responsive Design */

@media (min-width: 769px) and (max-width: 1200px) {
    .testimonials-section {
        max-width: 90%;
    }

    .testimonial-card {
        width: 340px;
        padding: 28px;
        min-height: 420px;
    }

    .avatar {
        width: 52px;
        height: 52px;
    }

    .customer-info h3 {
        font-size: 15.5px;
    }

    .testimonial-text {
        font-size: 14.5px;
        line-height: 23px;
    }

    .testimonial-card blockquote {
        font-size: 19px;
        line-height: 27px;
    }
}

@media (max-width: 1200px) {
    .testimonials-section {
        max-width: 95%;
        padding: 0 12px;
    }

    .testimonials-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #C49A6C #e5e5e5;
    }

    .testimonials-scroll {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 16px;
        padding: 0 8px 20px 8px;
    }

    .testimonial-card {
        width: 300px;
        padding: 20px;
        min-height: 340px;
        flex: 0 0 auto;
        border-radius: 8px;
    }

    .avatar {
        width: 48px;
        height: 48px;
        margin-right: 12px;
    }

    .customer-info h3 {
        font-size: 14.5px;
    }

    .testimonial-text {
        font-size: 13.5px;
        line-height: 21px;
    }

    .testimonial-card blockquote {
        font-size: 17px;
        line-height: 24px;
        padding-left: 16px;
    }

    .swiper-scrollbar {
        margin-top: 12px;
        height: 5px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        max-width: 100%;
        padding: 0 8px;
    }

    .testimonials-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #C49A6C #e5e5e5;
    }

    .testimonials-scroll {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
        padding: 0 4px 16px 4px;
    }

    .testimonial-card {
        width: 260px;
        padding: 16px;
        min-height: 300px;
        flex: 0 0 auto;
    }

    .avatar {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .customer-info h3 {
        font-size: 14px;
    }

    .testimonial-text {
        font-size: 13px;
        line-height: 20px;
    }

    .testimonial-card blockquote {
        font-size: 16px;
        line-height: 22px;
        padding-left: 12px;
    }

    .swiper-scrollbar {
        margin-top: 10px;
        height: 4px;
    }

    body {
        padding: 16px 0;
    }
}

/* Custom scrollbar for WebKit browsers */
@media (max-width: 768px) {
    .testimonials-container::-webkit-scrollbar {
        height: 5px;
    }

    .testimonials-container::-webkit-scrollbar-track {
        background: #e5e5e5;
        border-radius: 3px;
    }

    .testimonials-container::-webkit-scrollbar-thumb {
        background: #C49A6C;
        border-radius: 3px;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #efebe4;
}

.about-content {
    margin-bottom: 80px;
    max-width: 897px;
    margin-left: auto;
}

.about-text h2 {
    font-weight: 500;
    font-size: 34px;
    line-height: 46px;
    color: #202020;
}

.trust-section {
    display: flex;
    align-items: center;
    gap: 60px;
}

.trust-image {
    flex: 1;
}

.trust-image img {
    width: 821px;
    max-width: 821px;
    height: 511px;
    object-fit: cover;
}

.trust-content {
    flex: 1;
    margin-bottom: 375px;
}

.trust-content h3 {
    font-family: 'Manrope';
    font-weight: 700;
    font-size: 46px;
    line-height: 50.4px;
    color: #333;
    margin-bottom: 20px;
}

.trust-content p {
    font-family: 'Manrope';
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #666;
}

/* Communities Section */
.communities-section {
    padding: 5px 0;
    background-color: #efebe4;
}

.communities-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 65px;
}

/* Mobile responsive styles */
@media (max-width: 992px) {
    .about-text h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .communities-content {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .communities-text {
        margin-bottom: 0;
        order: 2;
    }

    .communities-image {
        order: 1;
    }

    .communities-image img,
    .placeholder-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        /* min-height: 250px; */
    }

    .communities-text h3 {
        font-size: 28px;
        line-height: 1.3;
    }

    .communities-text p {
        font-size: 16px;
        line-height: 1.6;
    }
}

.communities-text {
    flex: 1;
    margin: auto;
    /* @media (max-width: 575px){
        margin-bottom: 0px;
    } */
}


.communities-text h3 {
    font-family: 'Manrope';
    font-weight: 700;
    font-size: 46px;
    line-height: 50.4px;
    color: #333;
    margin-bottom: 20px;
}

.communities-text p {
    font-family: 'Manrope';
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #666;
}

.communities-image {
    flex: 1;
}

.communities-image img {
    width: 821px;
    max-width: 821px;
    height: 511px;
    object-fit: cover;
}

.support-section {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.support-image {
    flex: 1;
}

.support-image img {
    width: 821px;
    max-width: 821px;
    height: 511px;
    object-fit: cover;
}

.support-content {
    flex: 1;
    padding-left: 40px;
    margin: auto;

}

@media (max-width: 565px) {
    .support-content {
        flex: 1;
        padding-left: 0px;
        margin-bottom: auto;

    }
}

.support-content h3 {
    font-family: 'Manrope';
    font-weight: 700;
    font-size: 46px;
    line-height: 50.4px;
    color: #333;
    margin-bottom: 20px;
}

.support-content p {
    font-family: 'Manrope';
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #666;
    margin-bottom: auto;
}

@media (max-width: 565px) {
    .support-content p {

        margin-bottom: 0px;
    }

}

/* .enquire-form {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
}
.enquire-form .form-row{
    width: calc(50% - 20px);
} */
/* News Section */
.news-section {
    padding: 100px 0;
    background: #fff;
}

.news-section h2 {
    font-family: 'Noto Serif', serif;
    font-weight: 400;
    font-size: 46px;
    line-height: 69px;
    color: #333;
    margin-bottom: 60px;
    text-align: left;
}

/* News header with right-aligned View more */
.news-header {
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 60px;
}

.news-header h2 {
    margin-bottom: 20px;
    flex: 1 1 auto;
}

.view-more-btn {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #C49A6C;
    border: 1px solid #C49A6C;
    padding: 8px 14px;
    /* border-radius: 4px; */
    text-decoration: none;
    white-space: nowrap;
    margin-left: auto;
}

.view-more-btn:hover {
    background: #C49A6C;
    color: #FFFFFF;
}

.news-grid {
    display: flex;
    grid-template-columns: 2fr 1fr;
    gap: 50px;

}

.news-main {
    background: white;
    border: 1px solid #BABCBE;
    padding: 15px;
    width: calc(50% - 25px);
    height: 680px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.news-main img {
    width: 100%;
    height: 438px;
    max-height: 438px;
    object-fit: fill;
}

.news-main-content {
    padding: 0;
}

.news-date {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #888;
    margin-top: 15px;
    display: block;
}

.news-main h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    color: #333;
    margin-bottom: 15px;
}

.news-main p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #666;
}

.news-sidebar {
    display: flex;
    flex-wrap: wrap;
    width: calc(50% - 25px);
    gap: 20px;
}

.news-item {
    width: calc(50% - 10px);
    height: 330px;
    padding: 15px;
    background: white;
    border: 1px solid #BABCBE;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.news-item img {
    width: 100%;
    height: 172px;
    max-height: 172px;
    object-fit: cover;
}

.news-item-content {
    padding: 0;
}

.news-item .news-date {
    margin-bottom: 12px;
    font-size: 13px;
    color: #999;
}

.news-item h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #333;
    margin: 0;
}

/* Responsive Design */
@media (min-width: 769px) and (max-width: 1200px) {
    .news-section {
        padding: 80px 0;
    }

    .news-grid {
        max-width: 90%;
        gap: 40px;
        grid-template-columns: 2fr 1fr;
    }

    .news-main {
        width: 100%;
        height: 600px;
        padding: 12px;
    }

    .news-main img {
        width: 100%;
        height: 380px;
        max-height: 380px;
        
    }

    .news-main h3 {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 12px;
    }

    .news-main p {
        font-size: 15px;
        line-height: 22px;
    }

    .news-date {
        font-size: 13px;
        margin-top: 12px;
    }

    .news-sidebar {
        gap: 16px;
    }

    /* .news-item {
        width: 100%;
        height: 300px;
        padding: 12px;
    } */

    .news-item img {
        width: 100%;
        height: 150px;
        max-height: 150px;
    }

    .news-item h4 {
        font-size: 15px;
        line-height: 20px;
    }

    .news-item .news-date {
        font-size: 12px;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 60px 12px;
    }

    .news-section h2 {
        font-size: 36px;
        line-height: 50px;
        /* margin-bottom: 0; */
    }

    .news-header {
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .news-grid {
        display: block;
    }

    .news-main {
        width: 100%;
        height: auto;
        min-height: 500px;
        padding: 12px;
        margin-bottom: 40px;
    }

    .news-main img {
        width: 100%;
        height: 300px;
        max-height: 300px;
    }

    .news-main h3 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 10px;
    }

    .news-main p {
        font-size: 14px;
        line-height: 20px;
    }

    .news-date {
        font-size: 12px;
        margin-top: 10px;
    }

    .news-sidebar {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        
        padding-bottom: 16px;
        width: 100%;
    }

    .news-item {
        width: 260px;
        height: 280px;
        padding: 10px;
        flex: 0 0 auto;
        
    }

    .news-item img {
        width: 100%;
        height: 140px;
        max-height: 140px;
    }

    .news-item h4 {
        font-size: 14px;
        line-height: 18px;
    }

    .news-item .news-date {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .news-sidebar::-webkit-scrollbar {
        height: 5px;
    }

    .news-sidebar::-webkit-scrollbar-track {
        background: #e5e5e5;
        border-radius: 3px;
    }

    .news-sidebar::-webkit-scrollbar-thumb {
        background: #BABCBE;
        border-radius: 3px;
    }
}

@media (max-width: 480px) {
    .news-section {
        padding: 40px 8px;
    }

    .news-section h2 {
        font-size: 30px;
        line-height: 42px;
        margin-bottom: 30px;
    }

    .news-main {
        padding: 10px;
        min-height: 420px;
    }

    .news-main img {
        height: 240px;
        max-height: 240px;
    }

    .news-main h3 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 8px;
    }

    .news-main p {
        font-size: 13px;
        line-height: 18px;
    }

    .news-date {
        font-size: 11px;
        margin-top: 8px;
    }

    .news-sidebar {
        display: flex;
        width: 100%;
        gap: 12px;
        padding-bottom: 12px;
        flex-wrap: wrap;
    }

    .news-item {
        width: 220px;
        height: 240px;
        padding: 8px;
    }

    .news-item img {
        height: 120px;
        max-height: 120px;
    }

    .news-item h4 {
        font-size: 13px;
        line-height: 17px;
    }

    .news-item .news-date {
        font-size: 10px;
        margin-bottom: 6px;
    }

}

@media (max-width: 578px) {
    .trust-section {
        flex-direction: column;
        gap: 30px;
    }

    .trust-image img {
        width: 100%;
    }

    .support-section {
        flex-direction: column;
    }

    .communities-image img {
        width: 100%;
    }

    .support-image img {
        width: 100%;
    }

    .trust-content {
        margin-bottom: 0px;
    }

    .about-section {
        padding: 20px 0;
    }
}

/* Visit Section */
.visit-section {
    background: #202020;
    color: white;
    position: relative;
}

.visit-content {
    padding: 60px 0 60px;
}

.visit-content h2 {
    font-family: 'Noto Serif';
    font-weight: 400;
    font-size: 46px;
    line-height: 69px;
    color: white;
    margin-bottom: 50px;
    max-width: 650px;
}

.office-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.office-details {
    display: flex;
    gap: 120px;
}

.info-group {
    padding-right: 50px;
}

.info-group strong {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 20px;
}

.info-group p {
    color: #ccc;
    font-size: 16px;
}

.office-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    font-family: 'Manrope';
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    background: #C49A6C;
    color: white;
    border: none;
    padding: 12px 24px;
    /* border-radius: 4px; */
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary {
    font-family: 'Manrope';
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    background: none;
    color: #C49A6C;
    border: 1px solid #C49A6C;
    padding: 12px 24px;
    /* border-radius: 4px; */
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #b8895f;
}

.btn-secondary:hover {
    background: #C49A6C;
    color: white;
}

.map-container {
    width: 100%;
    height: 611px;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Enquire Section */
.enquire-section {
    background: #202020;
    padding: 80px 0;
    color: white;
}

.enquire-content h2 {
    font-family: 'Noto Serif', serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: white;
    margin-bottom: 20px;
}

.enquire-content>p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 850px;
}

.call-us-btn {
    background: transparent;
    border: 2px solid #d4a574;
    color: #d4a574;
    padding: 12px 24px;
    /* border-radius: 4px; */
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 50px;
    transition: all 0.3s ease;
}

.call-us-btn:hover {
    border-color: #d4a574;
    color: #d4a574;
}

.call-us-btn svg {
    width: 16px;
    height: 16px;
}

.enquire-form {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
}

.enquire-form .form-row {
    width: calc(50% - 20px);
}



.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 56px;
    background: transparent;
    border: 2px solid #555;
    padding: 15px 16px;
    font-family: 'Manrope';
    font-size: 14px;
    color: #ccc;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #888;
}

.form-group input::placeholder {
    color: #888;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    cursor: pointer;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ccc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

.form-group select option {
    background: #2c2c2c;
    color: #ccc;
}

.terms-section {
    margin: 30px 0;
}

.terms-section p {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #aaa;
}

.terms-link {
    color: #d4a574;
    text-decoration: underline;
}

.terms-link:hover {
    color: #e6b885;
}

.register-btn {
    background: #d4a574;
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.register-btn:hover {
    background: #c69660;
}

/* Scrollbar styling for testimonials */
.testimonials-container::-webkit-scrollbar {
    height: 8px;
}

.testimonials-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.testimonials-container::-webkit-scrollbar-thumb {
    background: #C49A6C;
    border-radius: 4px;
}

.testimonials-container::-webkit-scrollbar-thumb:hover {
    background: #b8895f;
}

/* Responsive Design */

/* Large Desktop (1200px and up) */
@media (min-width: 1400px) {



    .hero-header h1 {
        font-size: 52px;
        line-height: 78px;
    }

    .trust-content {
        flex: 1;
        margin-bottom: inherit;
    }

    .trust-content h3,
    .communities-text h3,
    .support-content h3 {
        font-size: 40px;
        line-height: 56px;
        margin-bottom: 28px;
    }
}



/* Large Desktop (1200px - 1399px) */
/* @media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .hero-header h1 {
        font-size: 52px;
        line-height: 78px;
    }

    .trust-content h3,
    .communities-text h3,
    .support-content h3 {
        font-size: 40px;
        line-height: 56px;
        margin-bottom: 28px;
    }

    .news-grid {
        gap: 50px;
    }

    .news-main {
        width: 640px;
        height: 680px;
    }

    .news-main img {
        width: 608px;
        height: 438px;
    }

    .news-item {
        padding: 15px;
    }
    

    

    .form-group input,
    .form-group select {
        width: 620px;
        max-width: 620px;
    }

    .trust-content {
        flex: 1;
        margin-bottom: 375px;
    }
} */

/* Large Desktop (1200px - 1399px) - Removed duplicate range */

/* Desktop (992px - 1399px) */
@media (min-width: 992px) and (max-width: 1399px) {
    .container {
        padding: 0 20px;
    }

    .hero-header h1 {
        font-size: 42px;
        line-height: 63px;
    }

    .about-content {
        margin-right: 60px;
    }

    .trust-image img,
    .communities-image img,
    .support-image img {
        width: 100%;
        max-width: 720px;
        height: auto;
        min-height: 400px;
    }

    .office-details {
        gap: 80px;
    }

    .news-grid {
        gap: 40px;
        max-width: 100%;
    }

    .news-main {
        width: 100%;
        max-width: 640px;
        height: auto;
        min-height: 600px;
    }

    .news-main img {
        width: 100%;
        max-width: 100%;
        height: 350px;
    }

    .news-sidebar {
        display: flex;
        flex-wrap: wrap;
        width: calc(100% - 25px);
        gap: 20px;
    }

    /* .news-item {
        width: calc(100% - 10px);
        height: 330px;
        padding: 15px;
        background: white;
        border: 1px solid #BABCBE;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        cursor: pointer;
    } */

    /* .news-item {
        max-width: 100%;
        height: auto;
        min-height: 280px;
    } */

    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .form-group input,
    .form-group select {
        width: 100%;
    }

    .trust-content {
        flex: 1;
        margin-bottom: inherit;
    }

    .communities-text {
        flex: 1;
        margin: auto;
    }

    .support-content {
        flex: 1;
        margin: auto;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        padding: 0 20px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }

    .hero-header h1 {
        font-size: 36px;
        line-height: 54px;
    }

    .view-all-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .testimonials-scroll {
        gap: 20px;
    }

    .testimonial-card {
        width: 380px;
        height: auto;
        min-height: 400px;
        padding: 20px;
    }

    .testimonial-card blockquote {
        margin-top: 80px;
        font-size: 22px;
        line-height: 30px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-content {
        margin-right: 0;
        justify-content: center;
    }

    .about-text {
        max-width: 100%;
        text-align: left;
    }

    .trust-section,
    .communities-content,
    .support-section {
        flex-direction: column;
        gap: 40px;
    }

    .trust-image img,
    .communities-image img,
    .support-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 350px;
    }

    .trust-content,
    .communities-text,
    .support-content {
        margin-bottom: 0;
        padding: 0;
    }

    .support-content {
        padding-left: 0;
        margin-top: 0;
        margin-bottom: 28px;
    }

    .trust-content h3,
    .communities-text h3,
    .support-content h3 {
        font-size: 28px;
        line-height: 39px;
        margin-bottom: 28px;
    }

    .trust-content p,
    .communities-text p,
    .support-content p {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 0;
    }

    .news-grid {
        display: flex;
        flex-wrap: wrap;
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
    }

    .news-main {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 500px;
    }

    .news-main img {
        width: 100%;
        max-width: 100%;
        height: 300px;
    }

    .news-sidebar {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        gap: 20px;
    }

    .news-item {
        width: calc(100% - 10px);
        height: 330px;
        padding: 15px;
        background: white;
        border: 1px solid #BABCBE;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        cursor: pointer;
    }

    .visit-content h2 {
        font-size: 36px;
        line-height: 54px;
    }

    .office-details {
        flex-direction: column;
        gap: 30px;
    }

    .office-buttons {
        flex-wrap: wrap;
    }

    .map-container {
        height: 400px;
    }

    .enquire-content h2 {
        font-size: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        max-width: 100%;
    }
}


/* Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-section {
        padding: 50px 0;
    }

    .hero-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .hero-header h1 {
        font-size: 32px;
        line-height: 48px;
    }

    .view-all-btn {
        margin-top: 15px;
        font-size: 14px;
        padding: 10px 20px;
    }




    .testimonials-container {
        overflow-x: hidden;
    }

    .testimonials-scroll {
        gap: 20px;
        width: 100%;
        max-width: fit-content;

        padding: 0;
    }

    .testimonial-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 350px;
        padding: 20px;
    }

    .testimonial-card blockquote {
        font-size: 20px;
        line-height: 28px;
        margin-top: 60px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-content {
        margin-right: 0;
        margin-bottom: 40px;
        justify-content: center;
    }

    .trust-section,
    .communities-content,
    .support-section {
        flex-direction: column;
        gap: 30px;
    }

    .trust-image img,
    .communities-image img,
    .support-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 280px;
    }

    .trust-content,
    .communities-text,
    .support-content {
        margin-bottom: 0;
        padding: 0;

    }

    .support-content {
        padding-left: 0;
        margin-top: 0;
        margin-bottom: auto;
    }

    .trust-content h3,
    .communities-text h3,
    .support-content h3 {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 28px;
    }

    .trust-content p,
    .communities-text p,
    .support-content p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 28px;
    }

    .communities-section {
        padding: 20px 0;
    }

    .news-section {
        padding: 60px 0;
    }

    .news-section h2 {
        font-size: 32px;
        line-height: 48px;
        margin-bottom: 24px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .news-main {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 450px;
    }

    .news-main img {
        width: 100%;
        max-width: 100%;
        height: 250px;
    }

    .news-main h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .news-sidebar {
        display: flex;
        flex-wrap: wrap;
        /* width: calc(100% - 25px); */
        width: 100%;
        gap: 20px;
    }

    .news-item {
        width: calc(100% - 10px);
        height: 330px;
        padding: 15px;
        background: white;
        border: 1px solid #BABCBE;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        cursor: pointer;
    }

    .news-item h4 {
        font-size: 16px;
        line-height: 22px;
    }

    .visit-content {
        padding: 50px 0 50px;
    }

    .visit-content h2 {
        font-size: 32px;
        line-height: 48px;
        max-width: 450px;
    }

    .office-details {
        flex-direction: column;
        gap: 25px;
    }

    .office-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .map-container {
        height: 350px;
    }

    .enquire-section {
        padding: 50px 0;
    }

    .enquire-content h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .enquire-content>p {
        font-size: 16px;
        max-width: 100%;
    }

    .call-us-btn {
        font-size: 14px;
        padding: 12px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        max-width: 100%;
        height: 52px;
        font-size: 14px;
    }

    .register-btn {
        font-size: 16px;
        padding: 14px 28px;
        width: 100%;
    }
}

@media(max-width: 576px) {
    .office-details {
        flex-wrap: wrap;
        gap: 25px;
    }

    .office-buttons {
        flex-wrap: wrap;
    }

    .office-buttons button {
        width: 100%;
    }
}

/* Mobile (up to 575px) */

/* Landscape Mobile Optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding: 30px 0;
    }

    .about-section {
        padding: 40px 0;
    }

    .news-section {
        padding: 40px 0;
    }

    .visit-content {
        padding: 30px 0 30px;
    }

    .enquire-section {
        padding: 30px 0;
    }

    .map-container {
        height: 200px;
    }

    .trust-image img,
    .communities-image img,
    .support-image img {
        min-height: 200px;
    }
}

/* Print Styles */
@media print {
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    .hero-section,
    .about-section,
    .communities-section,
    .news-section,
    .visit-section,
    .enquire-section {
        background: white !important;
        color: black !important;
    }

    .btn-primary,
    .btn-secondary,
    .view-all-btn,
    .call-us-btn,
    .register-btn {
        border: 1px solid black !important;
        background: white !important;
        color: black !important;
    }

    .map-container {
        display: none;
    }

    .testimonials-container {
        overflow: visible;
    }

    .testimonials-scroll {
        flex-direction: column;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Section */
/* Footer Section */
/* Footer Section */
.footer-section {
    background: #C49A6C;
    color: white;
    font-family: 'Manrope', sans-serif;
}

.footer-content {
    display: grid;
    /* grid-template-columns: 1fr 1fr 1.5fr; */
    gap: 60px;
    padding: 80px 20px 60px;
    
}

.footer-column h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: white;
    margin-bottom: 25px;
}

.footer-column h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
    margin-bottom: 15px;
    margin-top: 30px;
}

/* Navigation Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* Social Links */
.social-links {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Office Information */
.office-info p,
.city-office p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 10px;
    color: white;
}

.phone,
.email {
    font-weight: 500;
}

/* Contact Form */
.footer-contact-form {
    max-width: 88.89%;
}

.footer-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-contact-form .form-group {
    width: 100%;
    position: relative;
}

.footer-contact-form .form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.footer-contact-form input,
.footer-contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: white;
    transition: border-bottom-color 0.3s ease;
}

.footer-contact-form input::placeholder,
.footer-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
    outline: none;
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

.footer-contact-form textarea {
    resize: vertical;
    min-height: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

/* Footer Privacy Section */
.footer-privacy-section {
    margin-top: 25px;
}

.privacy-notice {
    font-size: 12px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.footer-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 18px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
}

.footer-checkbox-label input[type="checkbox"] {
    display: none;
}

.footer-checkmark {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    background: transparent;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-checkbox-label input[type="checkbox"]:checked+.footer-checkmark {
    background: white;
    border-color: white;
}

.footer-checkbox-label input[type="checkbox"]:checked+.footer-checkmark::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #C49A6C;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consent-text,
.unsubscribe-text {
    font-size: 12px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

/* reCAPTCHA Placeholder */
.recaptcha-placeholder {
    margin: 25px 0;
}

.recaptcha-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(248, 249, 250, 0.98);
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    padding: 14px;
    width: 300px;
    max-width: 100%;
}

.recaptcha-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #c1c1c1;
    border-radius: 2px;
    background: white;
    flex-shrink: 0;
    margin-right: 12px;
}

.recaptcha-box span {
    color: #333;
    font-size: 14px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    flex-grow: 1;
}

.recaptcha-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #4285f4;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-left: 8px;
}

.recaptcha-icons {
    display: flex;
    gap: 1px;
    margin-top: 2px;
}

.recaptcha-icon {
    width: 3px;
    height: 3px;
    background: #4285f4;
    border-radius: 50%;
}

/* Footer Submit Button */
.footer-submit-btn {
    width: 530px;
    background: rgb(255, 255, 255);
    color: #C49A6C;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 30px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-submit-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
}

/* Footer Bottom */
.footer-bottom {
    padding: 0px 0;
    width: 100%;
}

.footer-bottom .container {
    width: 100%;
    text-align: center;
}

.acknowledgement {
    margin-bottom: 40px;
}

.acknowledgement h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.acknowledgement p {
    font-size: 14px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgb(255, 255, 255);
    width: 100%;
}

.footer-copyright p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .acknowledgement h4 {
        font-size: 16px;
    }

    .acknowledgement p {
        font-size: 12px;
        line-height: 18px;
        max-width: 100%;
        padding: 0 15px;
    }

    .footer-copyright p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .acknowledgement h4 {
        font-size: 14px;
    }

    .acknowledgement p {
        font-size: 10px;
        line-height: 16px;
    }

    .footer-copyright p {
        font-size: 10px;
    }
}


@media (min-width: 576px) and (max-width: 1200px){
    .footer-contact-form{
        max-width: 100%;
    }
}

/* Responsive Design */
@media (min-width: 769px) and (max-width: 1200px) {
    .footer-bottom {
        padding: 15px 0;
    }

    .footer-bottom .container {
        width: 100%;
    }

    .acknowledgement {
        margin-bottom: 30px;
    }

    .acknowledgement h4 {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .acknowledgement p {
        font-size: 13px;
        line-height: 20px;
        max-width: 800px;
    }

    .footer-copyright {
        padding-top: 25px;
    }

    .footer-copyright p {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        padding: 30px 15px;
    }

    .footer-bottom .container {
        width: 100%;
    }

    .acknowledgement {
        margin-bottom: 25px;
    }

    .acknowledgement h4 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .acknowledgement p {
        font-size: 12px;
        line-height: 18px;
        max-width: 100%;
    }

    .footer-copyright {
        padding-top: 20px;
    }

    .footer-copyright p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        padding: 20px 10px;
    }

    .footer-bottom .container {
        width: 100%;
    }

    .acknowledgement {
        margin-bottom: 20px;
    }

    .acknowledgement h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .acknowledgement p {
        font-size: 11px;
        line-height: 16px;
    }

    .footer-copyright {
        padding-top: 15px;
    }

    .footer-copyright p {
        font-size: 10px;
    }
}

/* Responsive Design */

/* Desktop (1200px and up) */
@media (min-width: 1200px) {
    .footer-content {
        /* grid-template-columns: 1fr 1fr 1.5fr; */
        gap: 180px;
        display: flex;
    }

    .social-icons {
        gap: 20px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }
}

/* Tablet (768px - 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 60px 0 40px;
    }

    .contact-form-column {
        grid-column: 1 / -1;
        margin-top: 40px;
    }

    .footer-contact-form .form-row {
        gap: 20px;
    }
    

    .social-icons {
        gap: 12px;
    }

    .acknowledgement p {
        max-width: 100%;
    }
}

/* Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 0 30px;
    }

    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .office-info p,
    .city-office p {
        font-size: 13px;
    }

    .footer-contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .checkbox-label {
        font-size: 12px;
        line-height: 16px;
    }

    .privacy-text p {
        font-size: 11px;
        line-height: 15px;
    }

    .acknowledgement h4 {
        font-size: 15px;
    }

    .acknowledgement p {
        font-size: 12px;
        line-height: 18px;
    }

    .g-recaptcha {
        transform: scale(0.8);
    }
}

/* Mobile (up to 575px) */
@media (max-width: 575px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0 25px;
    }

    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-column h4 {
        font-size: 14px;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .footer-links li {
        margin-bottom: 14px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .office-info p,
    .city-office p {
        font-size: 12px;
        line-height: 18px;
    }

    .social-links {
        margin-top: 25px;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .footer-contact-form .form-row {
        gap: 12px;
        margin-bottom: 12px;
    }

    .footer-contact-form input,
    .footer-contact-form textarea {
        padding: 10px 12px;
        font-size: 12px;
    }

    .footer-contact-form input::placeholder,
    .footer-contact-form textarea::placeholder {
        font-size: 12px;
    }

    .checkbox-label {
        font-size: 11px;
        line-height: 15px;
        margin-bottom: 12px;
    }

    .checkmark {
        width: 14px;
        height: 14px;
    }

    .checkbox-label input[type="checkbox"]:checked+.checkmark::after {
        left: 3px;
        top: 0px;
        width: 5px;
        height: 8px;
    }

    .privacy-text {
        margin: 12px 0;
        margin-left: 24px;
    }

    .privacy-text p {
        font-size: 10px;
        line-height: 14px;
    }

    .submit-btn {
        padding: 10px 25px;
        font-size: 12px;
        width: 100%;
    }

    /* .footer-bottom {
        padding: 30px 0;
    } */

    .acknowledgement {
        margin-bottom: 20px;
    }

    .acknowledgement h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .acknowledgement p {
        font-size: 11px;
        line-height: 16px;
    }

    .footer-copyright p {
        font-size: 11px;
    }

    .g-recaptcha {
        transform: scale(0.75);
    }
}

/* Extra Small Mobile (up to 374px) */
@media (max-width: 374px) {
    .footer-content {
        padding: 30px 0 20px;
        gap: 25px;
    }

    .footer-column h3 {
        font-size: 14px;
    }

    .footer-links a {
        font-size: 11px;
    }

    .office-info p,
    .city-office p {
        font-size: 11px;
        line-height: 16px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    .footer-contact-form input,
    .footer-contact-form textarea {
        padding: 8px 10px;
        font-size: 11px;
    }

    .checkbox-label {
        font-size: 10px;
        line-height: 14px;
    }

    .privacy-text p {
        font-size: 9px;
        line-height: 13px;
    }

    .submit-btn {
        font-size: 11px;
        padding: 8px 20px;
    }

    .acknowledgement h4 {
        font-size: 13px;
    }

    .acknowledgement p {
        font-size: 10px;
        line-height: 15px;
    }

    .footer-copyright p {
        font-size: 10px;
    }

    .g-recaptcha {
        transform: scale(0.7);
    }
}

/* Print Styles */
@media print {
    .footer-section {
        background: white !important;
        color: black !important;
    }

    .footer-column h3,
    .footer-column h4,
    .footer-links a,
    .office-info p,
    .city-office p,
    .acknowledgement h4,
    .acknowledgement p,
    .footer-copyright p {
        color: black !important;
    }

    .social-icons,
    .footer-contact-form,
    .recaptcha-container {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .contact-form-column {
        display: none;
    }
}

@media (min-width: 1200px) {
    .content-wrapper {
        grid-template-columns: 1fr 1fr 1.5fr;
        gap: 80px;
    }

    .social-icons {
        gap: 20px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }



    .footer-submit-btn {
        width: 100%;
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Tablet (768px - 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .right-column {
        grid-column: 1 / -1;
        margin-top: 40px;
    }

    .form-row {
        gap: 20px;
    }

    .social-icons {
        gap: 12px;
    }

    .acknowledgement p {
        max-width: 100%;
    }

    .footer-submit-btn {
        width: 100%;
        /* max-width: 450px; */
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        /* padding: 50px 15px 30px; */
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .navigation h3,
    .follow-us h3,
    .office-info h3,
    .city-office h3,
    .contact-form-section h3 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .navigation a,
    .office-info p,
    .city-office p {
        font-size: 13px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .right-column {
        padding: 20px;
    }

    .acknowledgement h3 {
        font-size: 15px;
    }

    .acknowledgement p {
        font-size: 12px;
        line-height: 18px;
    }

    .recaptcha-box {
        transform: scale(0.8);
        transform-origin: left;
    }

    .footer-submit-btn {
        width: 100%;
        /* max-width: 400px; */
        padding: 11px 20px;
        font-size: 13px;
        margin-top: 20px;
    }
}

/* Mobile (up to 575px) */
@media (max-width: 575px) {
    .container {
        padding: 5px 10px 25px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .navigation h3,
    .follow-us h3,
    .office-info h3,
    .city-office h3,
    .contact-form-section h3 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .navigation li {
        margin-bottom: 10px;
    }

    .navigation a,
    .office-info p,
    .city-office p {
        font-size: 14px;
        line-height: 26px;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    .right-column {
        padding: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 0;
        font-size: 12px;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        font-size: 12px;
    }

    .checkbox-label {
        font-size: 11px;
        line-height: 15px;
        margin-bottom: 12px;
    }

    .checkmark {
        width: 14px;
        height: 14px;
    }

    .checkbox-label input[type="checkbox"]:checked+.checkmark::after {
        left: 3px;
        top: 0px;
        width: 5px;
        height: 8px;
    }

    .privacy-text p {
        font-size: 10px;
        line-height: 14px;
    }

    .privacy-text.small p {
        font-size: 10px;
        line-height: 14px;
    }

    .submit-btn {
        padding: 10px 25px;
        font-size: 12px;
        width: 100%;
    }

    .bottom-section {
        padding-top: 30px;
        margin-bottom: 20px;
    }

    .acknowledgement h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .acknowledgement p {
        font-size: 11px;
        line-height: 16px;
    }

    footer p {
        font-size: 11px;
    }

    .recaptcha-box {
        transform: scale(0.75);
        transform-origin: left;
    }

    .footer-submit-btn {
        width: 100%;
        padding: 10px 15px;
        font-size: 12px;
        margin-top: 15px;
        letter-spacing: 0.3px;
    }
    .footer-contact-form{
        max-width: 100%;
    }
}

/* Extra Small Mobile (up to 374px) */
@media (max-width: 374px) {
    .container {
        padding: 30px 8px 20px;
    }

    .content-wrapper {
        gap: 25px;
    }

    .navigation h3,
    .follow-us h3,
    .office-info h3,
    .city-office h3,
    .contact-form-section h3 {
        font-size: 14px;
    }

    .navigation a,
    .office-info p,
    .city-office p {
        font-size: 11px;
        line-height: 16px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .right-column {
        padding: 12px;
    }

    .form-group input,
    .form-group textarea {
        padding: 8px 0;
        font-size: 11px;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        font-size: 11px;
    }

    .checkbox-label {
        font-size: 10px;
        line-height: 14px;
    }

    .privacy-text p,
    .privacy-text.small p {
        font-size: 9px;
        line-height: 13px;
    }

    .submit-btn {
        font-size: 11px;
        padding: 8px 20px;
    }

    .acknowledgement h3 {
        font-size: 13px;
    }

    .acknowledgement p {
        font-size: 10px;
        line-height: 15px;
    }

    footer p {
        font-size: 10px;
    }

    .recaptcha-box {
        transform: scale(0.7);
        transform-origin: left;
    }

    .footer-submit-btn {
        width: 100%;
        padding: 8px 12px;
        font-size: 11px;
        margin-top: 12px;
        letter-spacing: 0.2px;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {

    .form-group input,
    .form-group textarea {
        border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    }

    .checkbox-label input[type="checkbox"]:checked+.checkmark {
        border: 2px solid white;
    }
}

/* Print Styles */
@media print {
    body {
        background: white !important;
        color: black !important;
    }

    .content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .right-column {
        display: none;
    }

    .navigation h3,
    .follow-us h3,
    .office-info h3,
    .city-office h3,
    .acknowledgement h3 {
        color: black !important;
    }

    .navigation a,
    .office-info p,
    .city-office p,
    .acknowledgement p,
    footer p {
        color: black !important;
    }

    .social-icons {
        display: none;
    }
}


@media (max-width: 576px) {

    /* Mobile redesign overrides (supersede legacy rules) */
    .page-container {
        max-width: 100% !important;
        padding: 0 16px !important
    }

    .about-section {
        padding: 20px 0 !important
    }

    .about-content {
        margin-bottom: 28px !important;
        max-width: 100% !important;
        margin-left: 0 !important
    }

    .about-text h2 {
        font-size: 22px !important;
        line-height: 32px !important
    }

    .trust-section,
    .communities-content,
    .support-section {
        flex-direction: column !important;
        gap: 20px !important
    }

    .communities-content {
        align-items: flex-start !important;
        margin-bottom: 28px !important
    }

    .communities-text h3,
    .support-content h3 {
        font-size: 22px !important;
        line-height: 32px !important;
        margin-bottom: 12px !important
    }

    .communities-text p,
    .support-content p {
        font-size: 14px !important;
        line-height: 21px !important
    }

    .trust-image img,
    .communities-image img,
    .support-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 220px
    }

    .support-content {
        padding-left: 0 !important;
        margin-bottom: 0 !important
    }

    /* News */
    .news-section {
        padding: 40px 0 !important
    }

    .news-section h2 {
        font-size: 28px !important;
        line-height: 38px !important;
        margin-bottom: 24px !important
    }

    .news-grid {
        display: block !important
    }

    .news-main {
        width: 100% !important;
        min-height: auto !important;
        margin-bottom: 24px !important
    }

    .news-main img {
        height: 260px !important;
        max-height: 260px !important
    }

    .news-main h3 {
        font-size: 20px !important;
        line-height: 28px !important
    }

    .news-main p {
        font-size: 14px !important;
        line-height: 20px !important
    }

    /* .news-sidebar {
        display: flex;
        width: 100% !important;
        gap: 12px !important;
        overflow-x: auto !important;
        padding-bottom: 12px !important;
        flex-wrap: wrap;
    } */

    .news-item {
        width: 48% !important;
        height: auto !important;
        padding: 10px !important;
        flex: 0 0 auto !important
    }

    .news-item img {
        height: 120px !important
    }

    /* Visit */
    .visit-content {
        padding: 40px 0 40px !important
    }

    .visit-content h2 {
        font-size: 28px !important;
        line-height: 38px !important;
        margin-bottom: 20px !important;
        max-width: 450px !important
    }

    .office-info-section {
        gap: 24px !important
    }

    .office-details {
        gap: 16px !important;
        flex-direction: column !important
    }

    .office-buttons {
        flex-direction: column !important;
        gap: 12px !important
    }

    .map-container {
        height: 280px !important
    }

    /* Enquire */
    .enquire-section {
        padding: 48px 0 !important
    }

    .enquire-content h2 {
        font-size: 28px !important
    }

    .enquire-content>p {
        font-size: 14px !important
    }

    /* Footer */
    .footer-section .footer-content {
        padding: 40px 16px 30px !important;
        gap: 24px !important
    }
    .footer-section .footer-content .footer-top {
        display: flex;
        flex-direction: row;
        gap: 24px;
        flex-wrap: nowrap;
    }

    .footer-submit-btn {
        width: 100% !important
    }
}