.contact {
    padding: 8rem 0;
    background-color: #000;
    color: #fff;
    text-align: center;
}

.contact .section-title {
    color: #fff;
    margin-bottom: 1rem;
}

.contact .section-subtitle {
    color: #ccc;
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 40rem;
    margin: 0 auto 1.5rem auto;
    text-align: center;
}

.contact-subtitle {
    color: #ccc;
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 40rem;
    margin: 0 auto 1.5rem auto;
    text-align: center;
}

.contact-list {
    list-style: none;
    padding: 0;
    padding-left: 2rem;
    margin: 0 auto 4rem auto;
    max-width: 40rem;
}

.contact-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #ccc;
    text-align: left;
}

.contact-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: -0.3em;
    color: #FBDA5F;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.7;
}

.contact-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-option {
    background-color: #111;
    border-radius: 12px;
    padding: 3rem 2.5rem;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.contact-option:hover {
    border-color: #FBDA5F;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(251, 218, 95, 0.1);
}

.option-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.option-icon {
    background-color: #FBDA5F;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #000;
}

.option-header h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.option-header p {
    color: #ccc;
    font-size: 1rem;
    margin: 0;
}

.contact-form {
    text-align: left;
}

.calendar-option {
    text-align: center;
}

.calendar-description {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.calendar-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto 1rem;
    max-width: 280px;
}

.calendar-note {
    color: #888;
    font-size: 0.875rem;
    margin: 0;
}

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

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #444;
    border-radius: 8px;
    background-color: #111;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FBDA5F;
}

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

.contact-form .cta-button {
    margin-top: 1rem;
    width: 100%;
}

.success-message {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #FBDA5F;
    text-align: center;
}

.success-icon {
    background-color: #FBDA5F;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #000;
}

.success-message h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.success-message p {
    color: #ccc;
    margin: 0;
}
