/* Modern Contact Page Styles */
.contact-section {
    padding: 0px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%);
    min-height: 100vh;
}

.page-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 80px;
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 500;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-image {
    flex: 0 0 400px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.artist-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
    display: block;
}

.artist-photo:hover {
    transform: scale(1.03);
}

/* Contact Methods Section */
.services-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card h3 i {
    margin-right: 10px;
    color: #0077be;
    font-size: 1.1rem;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-card p a {
    color: #0077be;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.service-card p a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Contact Form Section */
.form-section {
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.form-section h3 {
    font-size: 2rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: #fafbfc;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(181, 232, 255);
    background: white;
    box-shadow: 0 0 0 4px rgba(181, 232, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.submit-button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, rgb(181, 232, 255) 0%, #7ef2ff 25%,  #58eeff 50%,  rgb(71, 235, 253) 75%, #34e5f9 100%);
    color: black;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(181, 232, 255, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #7ef2ff 0%, #58eeff 50%, rgb(71, 235, 253) 75%, #34e5f9 100%);
    box-shadow: 0 8px 25px rgba(181, 232, 255, 0.5);
}

/* File Upload Styles */
.file-upload-wrapper {
    position: relative;
}

.file-input {
    display: none;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    border: 2px dashed #e9ecef;
    border-radius: 12px;
    background: #fafbfc;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.file-upload-label:hover {
    border-color: rgb(181, 232, 255);
    background: white;
    box-shadow: 0 0 0 4px rgba(181, 232, 255, 0.1);
}

.file-upload-label i {
    font-size: 2rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.file-upload-text {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
}

.file-upload-hint {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 400;
}

.file-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.file-preview-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e9ecef;
}

.file-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-preview-item .remove-file {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.file-preview-item .remove-file:hover {
    background: #c82333;
}

/* Social Media Section */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #49feec 0%, #03076c 100%);
    border-radius: 24px;
    margin-top: 80px;
    box-shadow: 0 8px 30px rgba(79, 195, 247, 0.25);
} 

.cta-section h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    color: rgb(0, 31, 58);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 237, 247, 0.2);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(181, 232, 255, 0.4);
    background: rgb(14, 175, 249);
    color: black;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 40px;
    }
    
    .hero-image {
        flex: 0 0 300px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 15px;
    }
    
    .page-heading {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 30px 20px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-section {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 30px 15px;
    }
    
    .page-heading {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 30px 20px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-image {
        flex: 0 0 250px;
    }
    
    .form-section {
        padding: 30px 20px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
}
