.contact-hero {
	max-width: 1000px;
	margin: 60px auto 40px;
	text-align: center;
	padding: 0 20px;
}

.contact-hero h1 {
	font-size: 2.5rem;
	color: #006EFF;
	margin-bottom: 12px;
	font-weight: 700;
}

.contact-hero p {
	font-size: 1.15rem;
	color: #333;
	line-height: 1.6;
}

.contact-map {
	max-width: 1100px;
	margin: 60px auto;
	padding: 0 20px;
	text-align: center;
}

.contact-map iframe {
	width: 100%;
	height: 500px;
	border: none;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.contact-form-section {
	max-width: 700px;
	margin: 60px auto;
	background: rgba(0, 110, 255, 0.05);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(0,110,255,0.15);
	padding: 30px 25px;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.contact-form input,
.contact-form textarea {
	padding: 14px 16px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 8px;
	width: 100%;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #006EFF;
	box-shadow: 0 0 8px rgba(0, 110, 255, 0.2);
	outline: none;
}

.contact-form textarea {
	resize: vertical;
	min-height: 150px;
}

.contact-form button {
	padding: 14px;
	font-size: 16px;
	border: none;
	background: #006EFF;
	color: #fff;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.2s ease;
}

.contact-form button:hover {
	background: #0051cc;
	transform: translateY(-2px);
}

.contact-form button:active {
    transform: translateY(0);
}

.form-success {
	background: #eaf7ee;
	border: 1px solid #b9e2c4;
	padding: 16px 20px;
	border-radius: 8px;
	margin-bottom: 24px;
	color: #216d35;
	font-weight: 500;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	text-align: center;
}


/*
======================================
    RESPONSIVE CODE (SMALL MOBILE)
======================================
*/
@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-map iframe {
        height: 300px;
    }

    .contact-form-section {
        margin: 40px 15px;
        padding: 20px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        font-size: 14px;
        padding: 12px 14px;
    }
}

/*
================================
    RESPONSIVE CODE (MOBILE)
================================
*/
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero p {
        font-size: 1.05rem;
    }

    .contact-map iframe {
        height: 400px;
    }

    .contact-form-section {
        margin: 50px 20px;
        padding: 25px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        font-size: 15px;
        padding: 13px 15px;
    }
}

/*
================================
    RESPONSIVE CODE (TABLET)
================================
*/
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-hero h1 {
        font-size: 2.3rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-map iframe {
        height: 450px;
    }

    .contact-form-section {
        margin: 55px 25px;
        padding: 28px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        font-size: 15px;
        padding: 14px 16px;
    }
}