.form-content .form-button .g-recaptcha {
    background-color: #fff;
    color: #007bff;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.16);
}

.form-content .form-button .g-recaptcha:hover,
.form-content .form-button .g-recaptcha:focus {
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.16);
}

:root {
    --primary-color: #1a1a1a;
    --primary-hover: #000000;
    --secondary-color: #4a5568;
    --border-color: #d1d5db;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: #0f172a;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "\203A";
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 0;
}

.contact-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero .lead {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 0;
}

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.contact-card-header {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-card-header svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-card-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
}

.contact-card-body {
    padding: 1.5rem;
}

/* Contact Items */
.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item:first-child {
    padding-top: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    font-size: 0.938rem;
    color: var(--secondary-color);
    line-height: 1.5;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Business Hours */
.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

.hours-item span {
    color: var(--secondary-color);
}

/* Form Card */
.form-card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: 2rem;
}

.form-card-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.form-card-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-card-header p {
    color: var(--secondary-color);
    margin: 0;
    font-size: 1.063rem;
}

/* Form Styles */
.contact-form {
    margin-top: 1.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.938rem;
}

.form-group .required {
    color: #dc2626;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    background: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

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

.form-note {
    font-size: 0.875rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

/* Alert Styles */
.alert-modern {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    border: 1px solid;
}

.alert-success {
    background: #f0fdf4;
    border-color: #86efac;
    color: #166534;
}

.alert-warning {
    background: #fef3c7;
    border-color: #fcd34d;
    color: #92400e;
}

.alert-icon {
    flex-shrink: 0;
}

.alert-icon svg {
    width: 24px;
    height: 24px;
}

.alert-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
    font-weight: 700;
}

.alert-content p {
    margin: 0;
    font-size: 0.938rem;
}

/* Form Validation */
.form-control.is-invalid {
    border-color: #dc2626;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc2626'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc2626' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #dc2626;
}

.invalid-feedback.d-block {
    display: block;
}

.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .form-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 2rem 0;
    }

    .contact-hero h1 {
        font-size: 1.75rem;
    }

    .form-card-header h2 {
        font-size: 1.5rem;
    }

    .form-card {
        padding: 1rem;
    }
}
