/* Contact Page - Modern 2025 Design */

/* Page Header */
.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #2d2324 0%, #8b1e38 50%, #4b1e29 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(246, 227, 234, 0.2) 0%, transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(139, 30, 56, 0.28) 0%, transparent 55%);
    pointer-events: none;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header__title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f6e3ea 45%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-header__breadcrumb li {
    font-size: 16px;
    color: #cbd5e0;
}

.page-header__breadcrumb li a {
    color: #f6e3ea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header__breadcrumb li a:hover {
    color: #ffffff;
}

.page-header__breadcrumb li span {
    color: #718096;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #2d2324 0%, #4b1e29 50%, #2d2324 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(139, 30, 56, 0.22) 100%);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(246, 227, 234, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.contact-info-card:nth-child(1) { animation-delay: 0.1s; }
.contact-info-card:nth-child(2) { animation-delay: 0.2s; }
.contact-info-card:nth-child(3) { animation-delay: 0.3s; }
.contact-info-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #8b1e38 0%, #d38aa7 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.contact-info-card:hover::before {
    transform: scaleY(1);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.7);
    border-color: rgba(246, 227, 234, 0.85);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8b1e38 0%, #302225 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.75);
}

.contact-info-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.contact-info-card:hover .contact-info-title {
    color: #f6e3ea;
}

.contact-info-text {
    font-size: 16px;
    line-height: 1.7;
    color: #f4edf0;
    margin: 0;
}

.contact-info-text a {
    color: #f6e3ea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.contact-social-links {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(139, 30, 56, 0.3) 100%);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(246, 227, 234, 0.25);
    animation: fadeInLeft 0.8s ease-out 0.5s both;
}

.contact-social-links h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.social-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(246, 227, 234, 0.25);
    text-decoration: none;
    color: #f4edf0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #8b1e38 0%, #302225 100%);
    border-color: rgba(246, 227, 234, 0.9);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.social-link i {
    font-size: 20px;
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(139, 30, 56, 0.32) 100%);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(246, 227, 234, 0.35);
    animation: fadeInRight 0.8s ease-out forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-form-header {
    margin-bottom: 40px;
    text-align: center;
}

.contact-form-tagline {
    display: inline-block;
    color: #f6e3ea;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.contact-form-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f6e3ea 45%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #f4edf0;
    margin: 0;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.form-group .required {
    color: #39252d;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #382126;
    font-size: 18px;
    z-index: 1;
}

.form-control {
    width: 100%;
    padding: 16px 20px 16px 55px;
    font-size: 16px;
    color: #1a202c;
    background: #ffffff;
    border: 2px solid rgba(246, 227, 234, 0.4);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #8b1e38;
    box-shadow: 0 0 0 4px rgba(139, 30, 56, 0.18);
    background: #fafffc;
}

.form-control::placeholder {
    color: #a0aec0;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2368d391' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
    padding-top: 16px;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #f4edf0;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #8b1e38;
}

.checkbox-label a {
    color: #f6e3ea;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #8b1e38 0%, #302225 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
    margin-top: 10px;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.75);
    background: linear-gradient(135deg, #8b1e38 0%, #302225 100%);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon:not(.fa-spin) {
    transform: translateX(5px);
}

.form-message {
    display: none;
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 15px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert {
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: #fdf7f9;
    border: 2px solid #8b1e38;
    color: #2d3748;
}

.alert-error {
    background: #fff5f5;
    border: 2px solid #fc8181;
    color: #2d3748;
}

.alert i {
    font-size: 20px;
}

.alert-success i {
    color: #8b1e38;
}

.alert-error i {
    color: #e53e3e;
}

/* Map Section */
.map-section {
    padding: 0;
    background: #f8f9fa;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-wrapper {
        gap: 50px;
    }
    
    .contact-form-wrapper {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 35px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 80px;
    }
    
    .page-header__title {
        font-size: 42px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info-card,
    .contact-social-links {
        padding: 30px 25px;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .contact-form-title {
        font-size: 28px;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .page-header__title {
        font-size: 36px;
    }
    
    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .contact-form-title {
        font-size: 24px;
    }
    
    .submit-btn {
        padding: 16px 30px;
        font-size: 14px;
    }
}

