.page-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg,
        rgba(137, 25, 68, 0.05) 0%,
        rgba(2, 117, 150, 0.08) 50%,
        rgba(0, 142, 116, 0.05) 100%);
}

.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin: 1rem 0 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.breadcrumbs ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumbs .separator {
    margin: 0 0.5rem;
    color: var(--text-light);
    opacity: 0.5;
}

.breadcrumbs .current {
    color: var(--primary);
    font-weight: 500;
}

/* Contact Main Section */
.contact-main-section {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Column - Contact Info */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-image-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper {
    position: relative;
    height: 300px;
}

.placeholder-image {
    height: 100%;
    background: linear-gradient(135deg, rgba(137, 25, 68, 0.1), rgba(2, 117, 150, 0.15));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.placeholder-image i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.placeholder-image h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.placeholder-image p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-details-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

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

.detail-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(137, 25, 68, 0.1), rgba(2, 117, 150, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detail-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.detail-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.detail-content p strong {
    color: var(--text);
}

.map-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.map-link:hover {
    gap: 0.3rem;
}

.social-connect h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: white;
}

.social-icon.linkedin:hover {
    background: #0077b5;
}

.social-icon.twitter:hover {
    background: #1da1f2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icon.youtube:hover {
    background: #ff0000;
}

/* Right Column - Contact Form */
.contact-form-side {
    position: relative;
}

.form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
}

.required-indicator {
    color: #dc3545;
    margin-left: 0.25rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(137, 25, 68, 0.1);
}

.form-field input.error,
.form-field select.error,
.form-field textarea.error {
    border-color: #dc3545;
}

.form-field textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.5;
}

.field-error {
    display: block;
    margin-top: 0.5rem;
    color: #dc3545;
    font-size: 0.85rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--primary);
    text-decoration: none;
}

.form-checkbox label a:hover {
    text-decoration: underline;
}

.form-submit {
    margin-top: 1rem;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(137, 25, 68, 0.2);
}

.form-note {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.modal-overlay.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-card {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: slideUp 0.3s ease;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.modal-icon.success {
    color: var(--accent);
}

.modal-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.modal-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-placeholder {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 400px;
}

.map-info {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-info h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-info p {
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.map-frame {
    background: linear-gradient(135deg, rgba(137, 25, 68, 0.05), rgba(2, 117, 150, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-map {
    text-align: center;
    color: var(--text);
}

.placeholder-map i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.placeholder-map p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-card {
    background: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-card.active .faq-answer {
    max-height: 500px;
    margin-top: 1rem;
}

.faq-card.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
}

.cta-card {
    background: linear-gradient(135deg, rgba(137, 25, 68, 0.9), rgba(2, 117, 150, 0.9));
    border-radius: 12px;
    padding: 3rem;
    color: white;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: white;
}

.cta-content p {
    opacity: 0.9;
    margin: 0;
}

.cta-action {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: white;
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-large {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-side {
        order: 2;
    }

    .contact-form-side {
        order: 1;
    }

    .cta-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cta-action {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 4rem 0 1.5rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero .subtitle {
        font-size: 1rem;
    }

    .contact-main-section {
        padding: 3rem 0;
    }

    .form-card {
        padding: 2rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .map-placeholder {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .map-info {
        padding: 1.5rem;
    }

    .map-frame {
        height: 300px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .page-hero {
        padding: 3rem 0 1rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .form-card {
        padding: 1.5rem;
    }

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

    .detail-item {
        flex-direction: column;
        gap: 1rem;
    }

    .modal-card {
        padding: 2rem 1.5rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }

    .cta-action {
        flex-direction: column;
        width: 100%;
    }

    .cta-action .btn {
        width: 100%;
        justify-content: center;
    }

    .breadcrumbs ul {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .contact-form-side {
        margin: 0 -1rem;
    }

    .form-card {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .form-checkbox {
        align-items: flex-start;
    }

    .form-checkbox label {
        font-size: 0.85rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
