/* ========================================
   Contact Page - Minimalist Styling
   Creative Design - Glassmorphism
   ======================================== */

/* Global Background for Glass Effect */
body {
    background-color: #f8f9fa;
    background-image: 
        radial-gradient(at 0% 0%, rgba(0,0,0,0.03) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(0,0,0,0.03) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(0,0,0,0.03) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(0,0,0,0.03) 0px, transparent 50%);
    background-attachment: fixed;
}

/* Hero Section */
.page-hero {
    background: transparent;
    padding: 200px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-hero::before,
.page-hero::after {
    display: none;
}

.container {
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-align: center;
    position: relative;
}

.page-hero-title::after {
    display: none;
}

.page-hero-description {
    font-size: 1.25rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
    font-weight: 300;
}

/* Contact Section */
.contact-section {
    padding: 50px 0 100px;
    background: transparent;
    position: relative;
}

/* Contact Methods Grid */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 8rem;
    position: relative;
    z-index: 5;
}

.contact-method-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.02);
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.05);
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.6);
}

.contact-method-card:hover::before {
    opacity: 1;
}

.method-icon-wrapper {
    width: auto;
    height: auto;
    margin: 0 auto 1.5rem;
    display: inline-block;
    background: transparent;
    color: #000000;
    font-size: 2rem;
    position: relative;
    transition: transform 0.4s ease;
    z-index: 1;
}

.contact-method-card:hover .method-icon-wrapper {
    transform: scale(1.1);
}

.method-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.method-detail {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 1.5rem;
}

.method-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method-card:hover .method-link {
    gap: 0.75rem;
}

.method-link i {
    transition: transform 0.3s ease;
}

.contact-method-card:hover .method-link i {
    transform: translateX(3px);
}

/* Contact Form Section */
.contact-form-section {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 4rem;
    position: relative;
    border-radius: 32px;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.03);
}

.contact-form-section::before {
    display: none;
}

/* Form Section Title */
.form-section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.form-section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.form-section-title p {
    font-size: 1.125rem;
    color: #666666;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    display: grid;
    gap: 3rem;
}

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

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #666666;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem 0;
    font-size: 1.125rem;
    color: #000000;
    background: transparent;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-bottom: 2px solid #000000;
    outline: none;
    background: transparent;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #cccccc;
    font-weight: 300;
}

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

/* Error State */
.form-input.error,
.form-textarea.error,
.form-select.error {
    border-bottom-color: #ff4757;
}

.form-submit {
    width: 100%;
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    background: transparent;
    border: 1px solid #000000;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-submit:hover {
    background: #000000;
    color: #ffffff;
}
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.form-submit:active {
    transform: translateY(1px);
}

.form-submit i {
    transition: transform 0.3s ease;
}

.form-submit:hover i {
    transform: translateX(5px);
}

/* Social Connect Section */
.social-connect {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.social-connect h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #000000;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%; /* Circle for a softer look */
}

.social-link::before {
    display: none;
}

.social-link:hover {
    color: #ffffff;
    background: #000000;
    border-color: #000000;
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    padding: 0;
    height: 450px;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.map-container {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    margin-bottom: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.03);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: transparent;
    color: #000000;
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
    opacity: 0.5;
}

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

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

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 500px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-hero-title {
        font-size: 3.5rem;
    }
    
    .contact-methods {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-form-section {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 80px;
    }
    
    .page-hero::before,
    .page-hero::after {
        display: none;
    }
    
    .page-hero-title {
        font-size: 2.75rem;
    }
    
    .page-hero-description {
        font-size: 1.125rem;
    }
    
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 4rem;
    }
    
    .contact-method-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-section {
        padding: 0;
    }
    
    .form-section-title h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-connect {
        margin-top: 3rem;
        padding-top: 2.5rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero-title {
        font-size: 2.25rem;
    }
    
    .page-hero-title::after {
        width: 60px;
        height: 2px;
    }
    
    .page-hero-description {
        font-size: 1rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-method-card {
        padding: 2rem 1.25rem;
    }
    
    .method-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form-section {
        padding: 0;
    }
    
    .form-section-title h2 {
        font-size: 1.75rem;
    }
    
    .form-section-title p {
        font-size: 1rem;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        padding: 1rem 0;
    }
    
    .form-submit {
        padding: 1.125rem 2rem;
        font-size: 1rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.125rem;
    }
}
