.elementor-22 .elementor-element.elementor-element-27da9df{--display:flex;--overflow:hidden;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-22 .elementor-element.elementor-element-683aded{z-index:3;}.elementor-22 .elementor-element.elementor-element-f7d92d6{z-index:4;}body.elementor-page-22:not(.elementor-motion-effects-element-type-background), body.elementor-page-22 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}:root{--page-title-display:none;}body.elementor-page-22{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-22 .elementor-element.elementor-element-27da9df{--content-width:100vw;}}/* Start custom CSS for html, class: .elementor-element-683aded *//* --- Contact Hero Section with Reveal --- */
.contact-hero-section {
    height: 60vh;
    position: relative;
    overflow: hidden;
    background-color: #f4f4f4; /* Seamless transition background */
}

.contact-hero-sweep {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    animation: sweepBackground 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards;
}

/* Add this keyframe animation if it's not in your main style.css */
@keyframes sweepBackground {
    from { clip-path: polygon(0 0, 0 0, 0 0, 0 0); }
    to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); }
}

.contact-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
}

.contact-hero-content h1{
    font-size: 4rem;
    font-family: 'Panchang';
}

.contact-hero-content p{
    font-size: 1.25rem;

}



/* --- Contact Form Section --- */
.contact-form-section {
    padding: 100px 50px;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form-header {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;           /* ADD THIS */
    transform: translateY(30px); /* ADD THIS */
}

.contact-form-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.main-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 700px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.main-contact-form input,
.main-contact-form textarea,
.main-contact-form select {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

.main-contact-form .cta-button {
    align-self: flex-start;
}

/* --- Details & Map Section --- */
.details-map-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: #fff;
}

.contact-details {
    padding: 60px;
    background: #03736D; /* Using a brand color */
    color: #fff;
}

.contact-details h3 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.contact-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    line-height: 1.8;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Details & Map Section --- */
.details-map-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Original: Details | Map */
    background: #fff;
}

/* ▼▼▼ ADD THIS NEW RULE FOR THE MIRRORED LAYOUT ▼▼▼ */
.details-map-section.layout-mirrored {
    grid-template-columns: 1.5fr 1fr; /* Mirrored: Map | Details */
}

/* Adds a small gap between the two map sections */
.details-map-section + .details-map-section {
    margin-top: 20px;
}



/* --- FAQ Section --- */
.faq-section {
    padding: 100px 50px;
    background-color: #f4f4f4;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 3rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
    .details-map-section {
        grid-template-columns: 1fr;
    }
    .map-container {
        height: 400px;
    }
}
@media (max-width: 768px) {
    .contact-hero-content h1 { font-size: 3.5rem; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f7d92d6 *//* --- Contact Hero Section with Reveal --- */
.contact-hero-section {
    height: 60vh;
    position: relative;
    overflow: hidden;
    background-color: #f4f4f4; /* Seamless transition background */
}

.contact-hero-sweep {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    animation: sweepBackground 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards;
}

/* Add this keyframe animation if it's not in your main style.css */
@keyframes sweepBackground {
    from { clip-path: polygon(0 0, 0 0, 0 0, 0 0); }
    to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); }
}

.contact-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
}

.contact-hero-content h1{
    font-size: 4rem;
    font-family: 'Panchang';
}

.contact-hero-content p{
    font-size: 1.25rem;

}



/* --- Contact Form Section --- */
.contact-form-section {
    padding: 100px 50px;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form-header {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;           /* ADD THIS */
    transform: translateY(30px); /* ADD THIS */
}

.contact-form-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.main-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 700px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.main-contact-form input,
.main-contact-form textarea,
.main-contact-form select {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

.main-contact-form .cta-button {
    align-self: flex-start;
}

/* --- Details & Map Section --- */
.details-map-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: #fff;
}

.contact-details {
    padding: 60px;
    background: #03736D; /* Using a brand color */
    color: #fff;
}

.contact-details h3 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.contact-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    line-height: 1.8;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Details & Map Section --- */
.details-map-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Original: Details | Map */
    background: #fff;
}

/* ▼▼▼ ADD THIS NEW RULE FOR THE MIRRORED LAYOUT ▼▼▼ */
.details-map-section.layout-mirrored {
    grid-template-columns: 1.5fr 1fr; /* Mirrored: Map | Details */
}

/* Adds a small gap between the two map sections */
.details-map-section + .details-map-section {
    margin-top: 20px;
}



/* --- FAQ Section --- */
.faq-section {
    padding: 100px 50px;
    background-color: #f4f4f4;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 3rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
    .details-map-section {
        grid-template-columns: 1fr;
    }
    .map-container {
        height: 400px;
    }
}
@media (max-width: 768px) {
    .contact-hero-content h1 { font-size: 3.5rem; }
}/* End custom CSS */