/* Contact Page Styles */

/* Main Section */
.ct-section {
    background: #131316;
    padding: 225px 0 70px;
}

.ct-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 140px;
}

/* Title */
.ct-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 1157px;
    width: 100%;
}

.ct-title {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 62px;
    font-weight: normal;
    line-height: 1.1;
    letter-spacing: 2px;
    color: #eff2f1;
    text-align: center;
    margin: 0;
}

.ct-subtitle {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.2;
    letter-spacing: -0.192px;
    color: #eff2f1;
    text-align: center;
    margin: 0;
    max-width: 421px;
}

/* Contact + Form Section */
.ct-form-section {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
}

/* Contact Info (Left) */

.ct-form-box {
    padding: 100px 40px;
    border-radius: 6px;
    background: rgba(103, 255, 86, 1);
}
.ct-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    gap: 50px;
}

.ct-info-item {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ct-info-label {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 32px;
    font-weight: normal;
    line-height: 1.2;
    letter-spacing: -0.344px;
    color: #67ff56;
    margin: 0;
}

.ct-info-value {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.4;
    letter-spacing: -0.192px;
    color: #eff2f1;
    margin: 0;
}

/* Form (Right) */
.ct-form {
    background: #67ff56;
    border: 1px solid #426a5a;
    border-radius: 4px;
    padding: 32px 18px;
    z-index: 1;
}

.ct-form-title {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 32px;
    font-weight: normal;
    line-height: 1.1;
    letter-spacing: 2px;
    color: #131316;
    margin: 0 0 32px 0;
}

/* Map Section */
.ct-map {
    width: 100%;
    max-width: 1420px;
    height: 500px;
    border-radius: 4px;
    overflow: hidden;
}
.ct-map iframe{
	width: 100%;
	    height: 500px;
}
.ct-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767px) {
	.ct-map {
    width: 100%;
    max-width: 1420px;
    height:380px;

}
.ct-map iframe{
	width: 100%;
	    height: 380px;
}
    .ct-content {
        gap: 40px;
    }
    .ct-title {
        font-size: 32px;
    }

    .ct-subtitle {
        font-size: 16px;
    }

    .ct-form-section {
        display: flex;
        flex-direction: column-reverse;
    }

    .ct-form-box {
        padding: 0;
        margin-bottom: 50px;
    }
    .ct-info {
        gap: 32px;
    }
    .ct-info-item {
        gap: 8px;
    }
    .ct-info-label {
        font-size: 20px;
    }
		.ct-section{
			padding: 80px 0 70px;
		}
}

