/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent-red) 100%);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.contact-hero .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.contact-content {
    padding: 80px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 0;
    align-items: start;
}

.contact-form-section {
    position: relative;
}

.contact-form-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
    position: relative;
}

.contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent-red));
    border-radius: 2px;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.1),
        0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent-red));
}

.form-group {
    margin-bottom: 28px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--black);
    font-size: 15px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafbfc;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
    box-shadow: 
        0 0 0 4px rgba(212, 175, 55, 0.1),
        0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 50px;
}

.btn.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent-red) 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0 auto;
}

.btn.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.btn.btn-primary:hover::before {
    left: 100%;
}

.btn.btn-primary:active {
    transform: translateY(-1px);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card,
.quick-actions-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.08),
        0 3px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-connect-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.06),
        0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before,
.social-connect-card::before,
.quick-actions-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent-red));
}

.contact-info-card:hover,
.social-connect-card:hover,
.quick-actions-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.12),
        0 5px 15px rgba(0,0,0,0.08);
}

.contact-info-card h3,
.quick-actions-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    position: relative;
}

.social-connect-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    position: relative;
}

.social-connect-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-item:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(220, 53, 69, 0.05));
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateX(5px);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--accent-red));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 5px;
}

.contact-details p,
.contact-details a {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.contact-details a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

.social-links-grid {
    display: grid;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #fafafa, #ffffff);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: currentColor;
}

.social-link:hover::before {
    left: 100%;
}

.social-link i {
    font-size: 20px;
    margin-right: 12px;
    width: 24px;
    transition: all 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.2) rotate(5deg);
}

.social-link div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.social-link strong {
    font-weight: 600;
    font-size: 14px;
}

.social-link span {
    font-size: 12px;
    opacity: 0.7;
}

.social-link.instagram { 
    color: #E4405F;
    border-color: rgba(228, 64, 95, 0.2);
}
.social-link.instagram:hover {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.1), rgba(228, 64, 95, 0.05));
}

.social-link.tiktok { 
    color: #000000;
    border-color: rgba(0, 0, 0, 0.2);
}
.social-link.tiktok:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
}

.social-link.facebook { 
    color: #1877F2;
    border-color: rgba(24, 119, 242, 0.2);
}
.social-link.facebook:hover {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(24, 119, 242, 0.05));
}

.social-link.youtube { 
    color: #FF0000;
    border-color: rgba(255, 0, 0, 0.2);
}
.social-link.youtube:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 0, 0, 0.05));
}

.social-link.threads { 
    color: #000000;
    border-color: rgba(0, 0, 0, 0.2);
}
.social-link.threads:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quick-action {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--black);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #fafafa, #ffffff);
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.quick-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.quick-action:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(220, 53, 69, 0.05));
    border-color: var(--gold);
    transform: translateY(-2px) translateX(5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.quick-action:hover::before {
    left: 100%;
}

.quick-action i {
    margin-right: 16px;
    color: var(--gold);
    font-size: 18px;
    width: 20px;
    transition: all 0.3s ease;
}

.quick-action:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent-red);
}

.faq-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(220, 53, 69, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.faq-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.faq-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent-red));
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.08),
        0 3px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent-red));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.12),
        0 5px 15px rgba(0,0,0,0.08);
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item h3 {
    color: var(--black);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.3s both;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-slide-up-delay {
    animation: slideUp 0.8s ease-out 0.2s both;
}

.animate-slide-up-delay-2 {
    animation: slideUp 0.8s ease-out 0.4s both;
}

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

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

/* Loading Animation */
.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 80px;
    }
    
    .contact-hero .page-title {
        font-size: 2.5rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .contact-content {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 0 20px;
    }
    
    .contact-form {
        padding: 35px 25px;
    }
    
    .contact-form-section h2 {
        font-size: 1.8rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
    }
    
    .btn.btn-primary {
        padding: 16px 30px;
        font-size: 15px;
    }
    
    .contact-info-card,
    .quick-actions-card {
        padding: 25px;
        margin: 0;
    }
    
    .social-connect-card {
        padding: 20px;
        margin: 0;
    }
    
    .contact-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-section .section-title {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 20px 0;
    }
    
    .faq-item {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .contact-hero .page-title {
        font-size: 2rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .contact-form-section h2 {
        font-size: 1.5rem;
    }
    
    .social-link,
    .quick-action {
        padding: 15px;
    }
    
    .faq-section .section-title {
        font-size: 1.8rem;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
}