.contact-content {
    width: 100%;
    max-width: 1160px;
    padding: 2rem 1rem;
    box-sizing: border-box;
    text-align: center;
    color: white;
    z-index: 2;
}

.contact-title {
    font-size: clamp(1.1rem, 6vw, 3.5rem);
    font-family: var(--font_type_parta);
    letter-spacing: 1px;
}

.banner-text-contact {
    font-family: var(--font_type_poppins);
    line-height: 1.92;
    font-weight: 300;
    font-size: clamp(0.875rem, 4vw, 1.375rem);
    margin-top: 1.2rem;
    padding: 0 0.5rem;
}

.banner-contact {
    background-image: url("../assets/ContactUsBanner.png");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-family: var(--font_type_parta);
    padding: 1rem;
}

.overlay-contact {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(3px);
    background-color: rgba(0, 27, 1, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}


.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: rgba(248, 249, 250, 1);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    align-items: start;
}

.get-in-touch {
    position: relative;
    min-height: 500px;
    background: white;
    border-radius: 12px;
    padding: 64px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    overflow: hidden;

}

.get-in-touch ::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #4A7C59 0%, #2D5A3D 100%);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    z-index: 2;
}

.get-in-touch h2 {
    font-size: 2.2rem;
    color: rgba(45, 90, 61, 1);
    margin-bottom: 20px;
    font-weight: 300;
    font-family: var(--font_type_parta);
}

.get-in-touch p {
    color: #636e72;
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-family: var(--font_type_poppins);
    line-height: 1.98rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: #e9ecef;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2D5A3D 0%, #4A7C59 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(-0) invert(1);

}

.contact-details h3 {
    color: rgba(45, 90, 61, 1);
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font_type_poppins);
}

.contact-details p {
    color: rgba(102, 102, 102, 1);
    margin: 0;
    font-size: 0.95rem;
    line-height: 24.32px;
}

.contact-form {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;

}

.contact-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #4A7C59 0%, #2D5A3D 100%);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    z-index: 2;
}

.contact-form h2 {
    font-size: 2.2rem;
    color: rgba(45, 90, 61, 1);
    margin-bottom: 30px;
    font-weight: 400;
    font-family: var(--font_type_parta);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2d3436;
    font-weight: 500;
    font-family: var(--font_type_poppins);
    line-height: 1.52rem;
    font-size: 0.95rem;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00a085;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 160, 133, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(97.19deg, #2D5A3D 0%, #4A7C59 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #48a163;
    transition: 0.8s ease;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .get-in-touch,
    .contact-form {
        padding: 30px;
    }

    .get-in-touch h2,
    .contact-form h2 {
        font-size: 1.8rem;
    }
}

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

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .get-in-touch,
    .contact-form {
        padding: 25px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .get-in-touch h2,
    .contact-form h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {

    .get-in-touch,
    .contact-form {
        padding: 20px;
    }

    .contact-item {
        padding: 15px;
    }

    .get-in-touch h2,
    .contact-form h2 {
        font-size: 1.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 1rem;
    }
}

.location-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.location-header {
    margin-bottom: 50px;
    font-family: var(--font_type_parta);
    font-weight: 400;
    color: rgba(45, 90, 61, 1)
    
}

.location-header h2 {
    font-size: 2.5rem;
    font-family: var(--font_type_parta);
    font-weight: 400;
    color: rgba(45, 90, 61, 1);
    margin-bottom: 20px;
   
}

.location-header p {
    font-family: var(--font_type_poppins);
    color: rgba(102, 102, 102, 1);
    font-weight: 300;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.map-container {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 450px;
}

.map-frame {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 160, 133, 0.1) 0%, rgba(0, 160, 133, 0.05) 100%);
    pointer-events: none;
    border-radius: 12px;
}



.view-larger-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #00a085;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease;
}

.view-larger-btn:hover {
    background: #008a73;
}

/* Responsive Design */
@media (max-width: 768px) {
    .location-section {
        padding: 40px 15px;
    }

    .location-header h2 {
        font-size: 2rem;
    }

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

    .map-container {
        height: 350px;
    }

    .location-info {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 20px;
        max-width: none;
        text-align: center;
    }

    .zoom-controls {
        top: 15px;
        right: 15px;
    }

    .view-larger-btn {
        top: 15px;
        left: 15px;
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .location-header h2 {
        font-size: 1.7rem;
    }

    .map-container {
        height: 300px;
    }

    .zoom-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Custom map styling simulation */
.custom-map {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #87ceeb 0%, #98d8e8 50%, #f0f8ff 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;

}

.map-marker {
    position: absolute;
    top: 45%;
    left: 52%;
    transform: translate(-50%, -100%);
    width: 30px;
    height: 40px;
    background: #e74c3c;
    border-radius: 50% 50% 50% 0;
    transform-origin: bottom center;
    animation: bounce 2s infinite;
}

.map-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, -100%) translateY(0);
    }

    40% {
        transform: translate(-50%, -100%) translateY(-10px);
    }

    60% {
        transform: translate(-50%, -100%) translateY(-5px);
    }
}

.map-roads {
    position: absolute;
    width: 100%;
    height: 100%;
}

.road {
    position: absolute;
    background: #ffffff;
    opacity: 0.8;
}

.road-1 {
    width: 4px;
    height: 60%;
    top: 20%;
    left: 30%;
}

.road-2 {
    width: 70%;
    height: 4px;
    top: 50%;
    left: 15%;
}

.road-3 {
    width: 4px;
    height: 40%;
    top: 30%;
    right: 25%;
}

.water-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 35%;
    height: 100%;
    background: rgba(135, 206, 235, 0.6);
    border-radius: 0 50px 50px 0;
}

.land-area {
    position: absolute;
    right: 0;
    top: 0;
    width: 65%;
    height: 100%;
    background: rgba(240, 248, 255, 0.8);
}



.hero-section {
    position: relative;
    min-height: 506px;
    background: url('../assets/ContactUsReadyToStart.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 4rem 1rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    font-family: var(--font_type_parta);
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-family: var(--font_type_poppins);
    margin-bottom: 3rem;
    color: white;
    opacity: 0.95;
    max-width: 650px;
    font-weight: 300;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: var(--font_type_poppins);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
 
}

.btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: #2d5f55;
    border-color: rgba(255, 255, 255, 0.95);
}

.btn-primary:hover {
    background: white;
   color: #2d5f55;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 27, 1, 0.59);
  z-index: 1;
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.tropical-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(0deg, rgba(45, 95, 85, 0.4) 0%, transparent 100%);
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        padding: 2rem 1rem;
        height: auto;
        min-height: auto;
        max-height: none;
    }

    .hero-content {
        padding: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
    }


}

@media (max-width: 480px) {
    .hero-title {
        margin-bottom: 1rem;
        font-size: 1.9rem!important;
    }

    .hero-description {
        margin-bottom: 2rem;
    }
}