/* ----- GLOBAL VARIABLES ----- */
:root {
    --primary-color: #515f4e;
    /* Olive Green from screenshot */
    --secondary-color: #bc7161;
    /* Burnt Orange/Rust from screenshot */
    --bg-color: #faf7f2;
    /* Off-white / light cream background */
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-muted: #666666;

    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Playfair Display', serif;

    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --border-radius: 12px;
}

/* ----- RESETS & BASE STYLES ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----- BUTTONS ----- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
    border: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #a65c4c;
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ----- HEADER & NAVBAR ----- */
.header {
    background-color: var(--bg-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    /* Adjust according to actual logo */
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link i {
    font-size: 12px;
    margin-left: 5px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* ----- HERO SECTION ----- */
.hero {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
    /* Simulating the curved bottom edge */
    border-bottom-left-radius: 50% 50px;
    border-bottom-right-radius: 50% 50px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-subtitle .line {
    height: 2px;
    width: 50px;
    background-color: var(--secondary-color);
}

.hero-subtitle p {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-text {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-points {
    margin-bottom: 40px;
}

.hero-points li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-points i {
    color: var(--secondary-color);
    margin-top: 5px;
    font-size: 12px;
}

.hero-cta {
    padding: 10px 20px;
    border-radius: 25px;
}

/* Hero Images Grid - overlapping collage style */
.image-grid {
    position: relative;
    height: 500px;
    width: 100%;
}

.img-wrapper {
    position: absolute;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 4px solid var(--primary-color);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-1 {
    width: 250px;
    height: 350px;
    top: 0;
    left: 0;
    z-index: 2;
}

.img-2 {
    width: 200px;
    height: 250px;
    top: 50px;
    right: 0;
    z-index: 1;
}

.img-3 {
    width: 220px;
    height: 280px;
    bottom: 0;
    right: 40px;
    z-index: 3;
}

/* ----- CONTACT INFO STRIP ----- */
.contact-info-cards {
    margin-top: -60px;
    /* Pull up to overlap curved hero */
    position: relative;
    z-index: 10;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.info-card:hover {
    border-bottom-color: var(--primary-color);
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.info-details h4 {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-details p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.info-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.info-link:hover {
    text-decoration: underline;
}

.mt-2 {
    margin-top: 15px;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .image-grid {
        margin-top: 50px;
        height: 400px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-cards {
        margin-top: 40px;
    }

    .hero {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        /* Mobile menu hidden by default */
    }

    .header-btn {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .img-1 {
        width: 180px;
        height: 260px;
    }

    .img-2 {
        width: 150px;
        height: 200px;
    }

    .img-3 {
        width: 160px;
        height: 210px;
        right: 10px;
    }
}

/* ----- GENERAL SECTION UTIL ----- */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.text-secondary {
    color: var(--secondary-color);
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.mb-4 {
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
}

/* ----- ABOUT & FOUNDER SECTION ----- */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.rounded-image {
    border-radius: 40% 40% 20% 20% / 40% 40% 20px 20px;
    /* Dome arch like shape */
    border: 4px solid var(--text-light);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* ----- EXPERTISE SECTION ----- */
.expertise {
    background-color: var(--text-light);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.expertise-card {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: left;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(81, 95, 78, 0.3);
}

.expertise-card h4 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.expertise-list {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 0.9rem;
}

.expertise-list li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.expertise-list li::before {
    content: '-';
    position: absolute;
    left: 0;
}

.read-more {
    margin-top: auto;
    color: var(--text-light);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary-color);
}

/* ----- RESPONSIVE FOR NEW SECTIONS ----- */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

/* ----- RESPONSIVE UPDATES ----- */
@media (max-width: 992px) {

    .amenities-container,
    .values-header {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ----- TESTIMONIALS SECTION ----- */
.bg-light {
    background-color: #f4f6f4;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.quote-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    opacity: 0.6;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

.patient-name {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* ----- ASSOCIATIONS MARQUEE ----- */
.pt-0 {
    padding-top: 0;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: transparent;
    padding: 20px 0;
    white-space: nowrap;
}

/* Gradient fades on edges for smoother look */
.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color) 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color) 0%, transparent 100%);
}

.marquee-content {
    display: inline-block;
    animation: marquee-scroll 20s linear infinite;
    /* Scrolling Left to Right */
    animation-direction: reverse;
}

/* Pause on hover */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.association-logo {
    display: inline-block;
    margin: 0 40px;
    vertical-align: middle;
}

.association-logo img {
    height: 120px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
}

.association-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Moves exactly half the cloned width */
    }
}

/* ----- CONTACT FORM & CTA ----- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background-color: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper {
    padding: 50px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: var(--bg-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(81, 95, 78, 0.1);
}

.contact-image-wrapper {
    height: 100%;
}

.contact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----- INSTAGRAM ----- */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.insta-grid img {
    width: 100%;
    border-radius: var(--border-radius);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: var(--transition);
}

.insta-grid img:hover {
    transform: scale(1.03);
}

/* ----- FOOTER ----- */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 70px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.brand-col p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-col h4 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col a {
    opacity: 0.8;
    transition: var(--transition);
    font-size: 0.95rem;
}

.links-col a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.contact-col p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    opacity: 0.8;
    font-size: 0.95rem;
}

.contact-col i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* ----- FINAL RESPONSIVE ----- */
@media (max-width: 992px) {

    .testimonial-grid,
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-image-wrapper {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .form-group-row {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .insta-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ----- AMENITIES SECTION ----- */
.amenities-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.amenities-list {
    margin-bottom: 30px;
}

.amenities-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1rem;
}

.amenities-list i {
    color: var(--primary-color);
    margin-top: 5px;
}

.amenities-img {
    border-radius: 20px 40% 20px 40%;
    width: 100%;
    max-width: 500px;
    box-shadow: var(--box-shadow);
    border: 4px solid var(--text-light);
}

.mt-4 {
    margin-top: 30px;
}

/* ----- CORE VALUES SECTION ----- */
.core-values {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.values-header {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.text-light {
    color: var(--text-light) !important;
}

.opacity-9 {
    opacity: 0.9;
    line-height: 1.8;
}

.values-image {
    width: 100%;
    border-radius: var(--border-radius);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.mt-5 {
    margin-top: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: transparent;
    padding: 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.value-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: var(--text-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-family: var(--font-secondary);
    font-size: 1.2rem;
}

.value-content h4 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.value-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* ----- RESPONSIVE UPDATES ----- */
@media (max-width: 992px) {

    .amenities-container,
    .values-header {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================================================= */
/*                           ABOUT US PAGE STYLES                            */
/* ========================================================================= */

.about-banner {
    background-color: var(--primary-color);
    padding: 60px 0;
    margin-top: 80px;
    /* Offset for sticky header */
}

.dr-about-section img,
.qualifications-section img,
.dr-about-section-2 img,
.vision-section img {
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.custom-list li i {
    position: absolute;
    left: 0;
    top: 8px;
}

.promise-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.bottom-cta {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* ========================================================================= */
/*                          SERVICES PAGE & MODALS                           */
/* ========================================================================= */

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Modal Styling */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    /* Black with opacity */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 15px;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--secondary-color);
    text-decoration: none;
    cursor: pointer;
}

/* ========================================================================= */
/*                          GALLERY PAGE STYLES                              */
/* ========================================================================= */

.gallery-list {
    background-color: var(--bg-color);
    /* Light cream */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-top: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    /* Square images */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    /* Zoom effect on hover */
}

/* Optional Dark overlay on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.15);
    /* Subdued overlay */
}


/* ========================================================================= */
/*                          CONTACT PAGE STYLES                              */
/* ========================================================================= */

.contact-page-section {
    background-color: var(--bg-color);
    /* Matches the light background */
}

/* Contact Details Cards */
.contact-info-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.contact-info-card .icon-box {
    flex-shrink: 0;
}

/* Social Icons in Contact Page */
.follow-us-box a {
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.follow-us-box a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Contact Form Styling */
.contact-form-wrapper {
    background-color: #ffffff;
}

.custom-input {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-input:focus {
    background-color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(75, 92, 75, 0.1);
    /* Olive green glow */
    outline: none;
}

.custom-input::placeholder {
    color: #adb5bd;
    font-weight: 300;
}

/* Map Section */
.map-section {
    padding-top: 40px;
    padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .contact-details-wrapper {
        padding-right: 0 !important;
        margin-bottom: 2rem;
    }
}

.faq-item {
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateX(10px);
}