.content-section {
    background: var(--surface);
    padding: 18px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(46, 34, 22, 0.06);
    max-width: 1100px;
    margin: 20px auto;
}

.tile-frame {
    position: relative;
    padding: 24px;
    border-radius: 10px;
    background: linear-gradient(263deg, rgba(253, 187, 45, 0.41) 0%, rgba(253, 187, 45, 0.7) 20%, rgba(110, 191, 143, 0.1) 60%, rgba(34, 193, 195, 0.2) 70%);
}

.tile-stripe {
    height: 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    opacity: 0;
}

h2 {
    font-size: 1.8rem;
    color: var(--text);
    margin: 0 0 12px 0;
    font-weight: 600;
}

h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 24px 0 12px 0;
    font-weight: 600;
}

p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 24px;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.6);
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(46, 34, 22, 0.04);
}

.form-row {
    margin-bottom: 16px;
}

.form-row label {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 2px solid var(--border);
    background: #fffaf3;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(51, 128, 0, 0.1);
}

.form-row textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    margin-top: 20px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #2a6b00;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(51, 128, 0, 0.3);
}

.contact-feedback {
    margin-top: 16px;
    padding: 12px;
    border-radius: 6px;
    display: none;
}

.contact-feedback.show {
    display: block;
}

.contact-feedback.success {
    background: #d4edda;
    color: #155724;
}

.contact-feedback.error {
    background: #f8d7da;
    color: #721c24;
}

/* Contact Info & Map Section */
.contact-info-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.6);
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(46, 34, 22, 0.04);
}

.contact-info h3 {
    margin-top: 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(51, 128, 0, 0.04);
    border-radius: 8px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 4px;
}

.info-value {
    color: var(--text);
    font-weight: 500;
    line-height: 1.5;
}

.info-value a {
    color: var(--primary);
    text-decoration: none;
}

.info-value a:hover {
    text-decoration: underline;
}

/* Map Container */
.map-container {
    background: rgba(255, 255, 255, 0.6);
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(46, 34, 22, 0.04);
    min-height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 8px;
}

.map-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.btn-map {
    display: inline-flex;
    flex: 1;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 34, 22, 0.08);
    justify-content: center;
    ;
}

.btn-google {
    color: #4285F4;
    background: white;
}

/* .btn-google:hover {
    background: #357ae8;
} */

.btn-apple {
    color: #000000;
    background: white;
}

/* .btn-apple:hover {
    background: #333333;
} */

.btn-waze {
    background: white;
    color: #33CCFF;
}

/* .btn-waze:hover {
    background: #00B8E6;
} */