/* ========================================
   Contact Page - Minimalist Styling
   Creative Design - Pure Black & White
   ======================================== */

* {
    outline: none !important;
}

*:focus {
    outline: none !important;
}

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

.page-hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    border: 1px solid #f0f0f0;
    border-radius: 50%;
    z-index: 0;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 8%;
    width: 200px;
    height: 200px;
    border: 1px solid #f0f0f0;
    z-index: 0;
}

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

.page-hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    text-align: center;
    position: relative;
}

.page-hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #000000;
}

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

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

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

.contact-method-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 0;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #000000;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #000000;
}

.contact-method-card:hover::before {
    transform: scaleX(1);
}

.method-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    color: #ffffff;
    font-size: 1.75rem;
    position: relative;
    transition: all 0.4s ease;
}

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

.method-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
    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;
}

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

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

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

/* Contact Form Section */
.contact-form-section {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 3.5rem;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, #000000 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.contact-form-section:hover::before {
    opacity: 0.03;
}

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

.form-section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    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: 2rem;
}

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

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

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

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: #000000;
    outline: none;
    background: #fafafa;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999999;
}

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

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

.form-submit:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.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: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e8e8e8;
    text-align: center;
}

.social-connect h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

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

.social-link {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid #e8e8e8;
    color: #000000;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: #000000;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.social-link:hover::before {
    opacity: 1;
}

/* Map Section */
.map-section {
    padding: 0;
    height: 450px;
    background: #f5f5f5;
    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: 80px 0;
    background: #f5f5f5;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

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

.faq-question:hover {
    background: #fafafa;
}

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

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

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

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    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: 3rem;
    }
}

@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: 2.5rem;
    }
    
    .form-section-title h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .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: 2rem;
    }
    
    .form-section-title h2 {
        font-size: 1.75rem;
    }
    
    .form-section-title p {
        font-size: 1rem;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        padding: 1rem;
    }
    
    .form-submit {
        padding: 1.125rem 2rem;
        font-size: 1rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.125rem;
    }
}
