/* Contact Hero */
.contact-hero {
margin-top: 80px;
height: 400px;
position: relative;
background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1920&h=400&fit=crop');
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
}

.contact-hero-overlay {
position: absolute;
inset: 0;
background:#00000087;
}

.contact-hero-content {
position: relative;
z-index: 10;
text-align: center;
padding: 2rem;
}

.contact-hero-title {
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 600;
color: white;
margin-bottom: 1rem;
text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
}

.contact-hero-subtitle {
font-size: clamp(1rem, 2vw, 1.25rem);
color: white;
opacity: 0.95;
text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
max-width: 600px;
margin: 0 auto;
}

/* Contact Section */
.contact-section {
padding: 5rem 0;
background-color: #FFF7ED;
}

.contact-grid {
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
}

/* Contact Form */
.contact-form-wrapper {
background: white;
padding: 2.5rem;
border-radius: 1rem;
box-shadow: 0 4px 20px rgba(17, 24, 39, 0.08);
}

.contact-form-header {
margin-bottom: 2rem;
}

.contact-form-title {
font-size: 2rem;
font-weight: 600;
color: #111827;
margin-bottom: 0.5rem;
}

.contact-form-subtitle {
color: #6B7280;
font-size: 1rem;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.form-row {
display: grid;
grid-template-columns: 1fr;
gap: 1.5rem;
}

.form-group {
display: flex;
flex-direction: column;
gap: 0.5rem;
}

.form-label {
font-weight: 600;
color: #111827;
font-size: 0.875rem;
}

.form-input,
.form-select,
.form-textarea {
padding: 0.875rem 1rem;
border: 2px solid #E5E7EB;
border-radius: 0.5rem;
font-size: 1rem;
transition: all 0.3s;
background-color: white;
color: #111827;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
outline: none;
border-color: #F97316;
box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-textarea {
resize: vertical;
font-family: inherit;
}

.btn-submit {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 1rem 2rem;
background: linear-gradient(135deg, #F97316 0%, #DC2626 100%);
color: white;
border: none;
border-radius: 9999px;
font-weight: 600;
font-size: 1.125rem;
cursor: pointer;
transition: all 0.3s;
}

.btn-submit:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

/* Contact Info Cards */
.contact-info-wrapper {
display: grid;
grid-template-columns: 1fr;
gap: 1.5rem;
}

.contact-info-card {
background: white;
padding: 2rem;
border-radius: 1rem;
box-shadow: 0 4px 20px rgba(17, 24, 39, 0.08);
text-align: center;
transition: all 0.3s;
border: 2px solid transparent;
}

.contact-info-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 30px rgba(17, 24, 39, 0.12);
border-color: #F97316;
}

.contact-info-card.highlight {
background: linear-gradient(135deg, #F97316 0%, #DC2626 100%);
color: white;
}

.contact-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 64px;
height: 64px;
background-color: #FFF7ED;
border-radius: 50%;
margin-bottom: 1rem;
}

.contact-info-card.highlight .contact-icon {
background-color: rgba(255, 255, 255, 0.2);
}

.contact-icon svg {
color: #F97316;
}

.contact-info-card.highlight .contact-icon svg {
color: white;
}

.contact-card-title {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 0.75rem;
}

.contact-card-text {
font-size: 1rem;
margin-bottom: 0.25rem;
color: #374151;
}

.contact-info-card.highlight .contact-card-text {
color: rgba(255, 255, 255, 0.9);
}

.contact-card-note {
font-size: 0.875rem;
color: #6B7280;
margin-top: 0.5rem;
}

.contact-info-card.highlight .contact-card-note {
color: rgba(255, 255, 255, 0.7);
}

/* Map Section */
.map-section {
background-color: #FFF7ED;
padding-bottom: 2.5rem;
}

.map-container {
max-width: 1280px;
margin: 0 auto;
padding: 0 1.5rem;
}

.map-placeholder {
position: relative;
height: 400px;
border-radius: 1rem;
overflow: hidden;
box-shadow: 0 4px 20px rgba(17, 24, 39, 0.12);
}

.map-placeholder img {
width: 100%;
height: 100%;
object-fit: cover;
}

.map-overlay {
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(249, 115, 22, 0.85) 0%, rgba(220, 38, 38, 0.75) 100%);
display: flex;
align-items: center;
justify-content: center;
}

.map-info {
text-align: center;
color: white;
padding: 2rem;
}

.map-title {
font-size: 2rem;
font-weight: 600;
margin-bottom: 1rem;
text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

.map-subtitle {
font-size: 1.125rem;
margin-bottom: 1.5rem;
opacity: 0.95;
}

.btn-map {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 1rem 2rem;
background: white;
color: #F97316;
border: none;
border-radius: 9999px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
}

.btn-map:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* FAQ Section */
.faq-section {
padding: 2.5rem 0;
background-color: white;
}

.faq-header {
text-align: center;
margin-bottom: 3rem;
}

.section-title {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 600;
color: #111827;
margin-bottom: 1rem;
}

.text-accent {
color: #F97316;
}

.section-subtitle {
font-size: 1.125rem;
color: #6B7280;
max-width: 600px;
margin: 0 auto;
}

.faq-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
}

.faq-item {
background: #FFF7ED;
padding: 2rem;
border-radius: 1rem;
border-left: 4px solid #F97316;
transition: all 0.3s;
}

.faq-item:hover {
transform: translateX(8px);
box-shadow: 0 4px 20px rgba(249, 115, 22, 0.15);
}

.faq-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
background-color: white;
border-radius: 50%;
margin-bottom: 1rem;
}

.faq-icon svg {
color: #F97316;
}

.faq-question {
font-size: 1.25rem;
font-weight: 600;
color: #111827;
margin-bottom: 0.75rem;
}

.faq-answer {
font-size: 1rem;
color: #374151;
line-height: 1.7;
}



/* Responsive Design */
@media (min-width: 640px) {
.form-row {
grid-template-columns: repeat(2, 1fr);
}

.faq-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 768px) {
.contact-grid {
grid-template-columns: 1.5fr 1fr;
align-items: start;
}

.contact-info-wrapper {
grid-template-columns: repeat(1, 1fr);
}

.footer-grid {
grid-template-columns: 2fr 1fr 1fr 1fr;
}

.footer-bottom {
flex-direction: row;
justify-content: space-between;
text-align: left;
}
}

@media (min-width: 1024px) {
.contact-section {
padding: 2.5rem 0;
}


.faq-grid {
grid-template-columns: repeat(3, 1fr);
}
}
