.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1.3fr;
gap: 60px;
align-items: start;
}

/* Contact Info Section */
.contact-info {
position: sticky;
top: 120px;
}

.contact-intro h2 {
font-family: 'Syne', sans-serif;
font-size: 2.4rem;
font-weight: 700;
margin-bottom: 16px;
letter-spacing: -1px;
}

.contact-intro p {
color: var(--text-secondary);
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 40px;
}

.contact-cards {
display: flex;
flex-direction: column;
gap: 20px;
margin-bottom: 40px;
}

.contact-card {
display: flex;
align-items: center;
gap: 20px;
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 16px;
padding: 24px;
transition: all 0.3s ease;
}

.contact-card:hover {
border-color: var(--accent);
transform: translateX(8px);
box-shadow: 0 10px 40px rgba(0, 229, 204, 0.1);
}

.contact-icon {
width: 60px;
height: 60px;
background: var(--accent-dim);
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.6rem;
flex-shrink: 0;
}

.contact-details h4 {
font-size: 1rem;
margin-bottom: 4px;
font-weight: 600;
}

.contact-details p {
color: var(--text-secondary);
font-size: 0.95rem;
margin: 0;
}

.contact-details a {
color: var(--accent);
}

.contact-details a:hover {
text-decoration: underline;
}

/* Social Links */
.social-section h4 {
font-size: 1rem;
margin-bottom: 16px;
color: var(--text-secondary);
}

.social-grid {
display: flex;
gap: 12px;
}

.social-btn {
width: 54px;
height: 54px;
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.4rem;
transition: all 0.3s ease;
}

.social-btn:hover {
background: var(--accent);
border-color: var(--accent);
transform: translateY(-4px);
}

/* Contact Form */
.contact-form-wrapper {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 24px;
padding: 50px;
position: relative;
overflow: hidden;
}

.contact-form-wrapper::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: var(--gradient-1);
}

.form-header {
margin-bottom: 36px;
}

.form-header h3 {
font-family: 'Syne', sans-serif;
font-size: 1.6rem;
font-weight: 700;
margin-bottom: 8px;
}

.form-header p {
color: var(--text-secondary);
font-size: 0.95rem;
}

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin-bottom: 20px;
}

.form-group {
margin-bottom: 20px;
}

.form-label {
display: block;
margin-bottom: 10px;
font-size: 0.9rem;
font-weight: 500;
color: var(--text);
}

.form-label span {
color: var(--secondary);
}

.form-input,
.form-select,
.form-textarea {
width: 100%;
padding: 16px 20px;
background: var(--bg-primary);
border: 1px solid var(--border);
border-radius: 12px;
color: var(--text);
font-size: 1rem;
font-family: inherit;
transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
outline: none;
border-color: var(--accent);
box-shadow: 0 0 0 4px var(--accent-dim);
}

.form-input::placeholder,
.form-textarea::placeholder {
color: var(--text-muted);
}

.form-select {
cursor: pointer;
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 16px center;
background-size: 16px;
}

.form-select option {
background: var(--bg-card);
color: var(--text);
}

.form-textarea {
min-height: 160px;
resize: vertical;
}

.budget-options {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
}

.budget-option {
position: relative;
}

.budget-option input {
position: absolute;
opacity: 0;
cursor: pointer;
}

.budget-label {
display: block;
padding: 14px;
text-align: center;
background: var(--bg-primary);
border: 1px solid var(--border);
border-radius: 10px;
font-size: 0.85rem;
cursor: pointer;
transition: all 0.3s ease;
}

.budget-option input:checked + .budget-label {
background: var(--accent-dim);
border-color: var(--accent);
color: var(--accent);
}

.budget-label:hover {
border-color: var(--accent);
}

.form-submit {
width: 100%;
padding: 18px;
background: var(--accent);
border: none;
border-radius: 12px;
color: var(--bg-primary);
font-size: 1.05rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
font-family: inherit;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
margin-top: 10px;
}

.form-submit:hover {
box-shadow: 0 0 40px var(--accent-glow);
transform: translateY(-3px);
}

.form-submit:active {
transform: translateY(0);
}

/* Success Message */
.form-success {
display: none;
text-align: center;
padding: 60px 20px;
}

.form-success.show {
display: block;
}

.success-icon {
width: 80px;
height: 80px;
background: var(--accent-dim);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2.5rem;
margin: 0 auto 24px;
animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
from { transform: scale(0); }
to { transform: scale(1); }
}

.form-success h3 {
font-family: 'Syne', sans-serif;
font-size: 1.6rem;
margin-bottom: 10px;
}

.form-success p {
color: var(--text-secondary);
}

/* Availability Banner */
.availability-banner {
display: flex;
align-items: center;
gap: 14px;
background: rgba(0, 229, 204, 0.08);
border: 1px solid rgba(0, 229, 204, 0.2);
border-radius: 12px;
padding: 18px 24px;
margin-bottom: 40px;
}

.availability-dot {
width: 12px;
height: 12px;
background: var(--accent);
border-radius: 50%;
animation: pulse 2s infinite;
}

@keyframes pulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(0, 229, 204, 0.4); }
50% { box-shadow: 0 0 0 10px rgba(0, 229, 204, 0); }
}

.availability-text {
font-size: 0.95rem;
color: var(--accent);
font-weight: 500;
}

/* FAQ Section */
.faq-section {
margin-top: 120px;
}

.faq-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}

.faq-item {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 16px;
padding: 28px;
transition: all 0.3s ease;
}

.faq-item:hover {
border-color: var(--accent);
}

.faq-item h4 {
font-family: 'Syne', sans-serif;
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 12px;
}

.faq-item h4::before {
content: '?';
width: 28px;
height: 28px;
background: var(--accent-dim);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
color: var(--accent);
}

.faq-item p {
color: var(--text-secondary);
font-size: 0.95rem;
line-height: 1.7;
padding-left: 40px;
}

/* Map Section */
.map-section {
margin-top: 100px;
}

.map-container {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 24px;
overflow: hidden;
height: 350px;
position: relative;
}

.map-overlay {
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.7));
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 20px;
}

.map-pin {
font-size: 3rem;
animation: bounce 2s infinite;
}

@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-15px); }
}

.map-location {
font-family: 'Syne', sans-serif;
font-size: 1.4rem;
font-weight: 600;
}

.map-address {
color: var(--text-secondary);
font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
.contact-wrapper {
grid-template-columns: 1fr;
gap: 50px;
}

.contact-info {
position: static;
}

.faq-grid {
grid-template-columns: 1fr;
}

.budget-options {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.contact-form-wrapper {
padding: 30px;
}

.form-row {
grid-template-columns: 1fr;
}

.budget-options {
grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 480px) {
.budget-options {
grid-template-columns: 1fr;
}
}
