

.contact-container {
background: #fff;
padding: 50px;
border-radius: 18px;
box-shadow: 0 15px 35px rgba(0,0,0,0.1);
max-width: 1000px;
margin: 60px auto;
display: flex;
flex-direction: row-reverse;
align-items: center;
gap: 40px;
}



/* IMAGE SECTION */
.contact-image {
flex: 1;
text-align: center;
}

.contact-image img {
width: 100%;
max-width: 400px;
}

/* FORM SECTION */
.contact-form {
flex: 1;
}

.contact-form h2 {
font-size: 32px;
color: #FFB300;
margin-bottom: 15px;
}

.contact-form p {
font-size: 16px;
color: #777;
margin-bottom: 25px;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
width: 100%;
padding: 14px 18px;
margin-bottom: 18px;
border: 1px solid #ddd;
border-radius: 12px;
font-size: 16px;
transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
border-color: #FFB300;
box-shadow: 0 0 10px rgba(255,179,0,0.3);
outline: none;
}

.contact-form textarea {
height: 150px;
resize: none;
}

/* Button */
.contact-form button {
width: 100%;
padding: 14px;
border: none;
border-radius: 12px;
font-size: 18px;
font-weight: 600;
background: linear-gradient(90deg, #FFD700, #FFC107);
color: #fff;
cursor: pointer;
transition: 0.3s;
}

.contact-form button:hover {
background: linear-gradient(90deg, #FFC107, #FFB300);
transform: translateY(-2px);
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
.contact-container {
flex-direction: column;
padding: 35px 25px;
}

.contact-image img {
max-width: 300px;
margin-bottom: 20px;
}

.contact-form h2 {
text-align: center;
}

.contact-form p {
text-align: center;
}
}


.footer {
background: #111;
color: #eee;
padding: 60px 20px 20px;
margin-top: 60px;
}

.footer-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 40px;
}

.footer-section h2,
.footer-section h3 {
color: #ffb400;
margin-bottom: 15px;
font-weight: bold;
}

.footer-section p {
line-height: 1.7;
font-size: 15px;
}

.footer-section ul {
list-style: none;
padding: 0;
}

.footer-section ul li {
margin: 8px 0;
}

.footer-section ul li a {
text-decoration: none;
color: #ddd;
transition: 0.3s;
}

.footer-section ul li a:hover {
color: #ffb400;
}


.footer-social a {
color: #ddd;
margin-right: 15px;
font-size: 20px;
transition: 0.3s;
}

.footer-social a:hover {
color: #ffb400;
}


.footer-bottom {
text-align: center;
padding-top: 25px;
border-top: 1px solid #333;
margin-top: 40px;
}

.footer-bottom p {
font-size: 14px;
color: #bbb;
}

