/* Container & Layout */
.ab-container {
    padding: 60px 20px;
    background-color: #050505;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

.ab-header {
    text-align: center;
    margin-bottom: 50px;
}

.ab-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #fff;
    font-family: inherit;
}

.ab-subtitle {
    font-size: 16px;
    color: #888;
    margin: 0;
    font-weight: 300;
}

.ab-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.ab-column {
    flex: 1;
    min-width: 300px;
}

/* Form Styles */
.ab-form-group {
    margin-bottom: 20px;
}

.ab-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #bbb;
}

.ab-input {
    width: 100%;
    background-color: #111;
    border: 1px solid #222;
    border-radius: 6px;
    padding: 14px 16px;
    color: #ddd;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box; /* Fix for padding increasing width */
}

.ab-input:focus {
    outline: none;
    border-color: #E0C075; /* Gold default, overridden by JS/CSS var */
}

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

.ab-btn {
    width: 100%;
    padding: 16px;
    background-color: #E0C075;
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
    margin-top: 10px;
}

.ab-btn:hover {
    opacity: 0.9;
}

.ab-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ab-form-message {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

.ab-form-message.success {
    color: #4CAF50;
}

.ab-form-message.error {
    color: #f44336;
}

/* Right Column Cards */
.ab-card {
    background-color: #0A0A0A; /* Slightly lighter than bg */
    border: 1px solid #222;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
}

.ab-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 25px;
    color: #fff;
    font-family: inherit; /* Inherit font from parent or serif if needed */
}

/* Contact Items */
.ab-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

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

.ab-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #E0C075;
    flex-shrink: 0;
}

.ab-contact-text {
    display: flex;
    flex-direction: column;
}

.ab-label {
    font-size: 11px;
    color: #666;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.ab-value {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
}

.ab-value:hover {
    color: #E0C075;
}

/* Info Box */
.ab-info-box-title {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #E0C075;
    margin-bottom: 15px;
}

.ab-info-text {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .ab-content-wrapper {
        flex-direction: column;
    }
    
    .ab-title {
        font-size: 32px;
    }
}
