/* Contact Page Styles */
.contact-page {
    padding-bottom: 60px;
    background-color: #0a0a14;
    background-image: linear-gradient(135deg, #0a0a14 0%, #1a1a2e 50%, #0a0a14 100%);
    position: relative;
    overflow: hidden;
}

.contact-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="none" stroke="rgba(100,100,255,0.1)" stroke-width="1" d="M0,50 L100,50 M50,0 L50,100 M0,0 L100,100 M0,100 L100,0" /></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

/* Banner Styles */
.page-banner {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(90deg, #3023AE 0%, #7042DB 50%, #C86DD7 100%);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="none" stroke="rgba(255,255,255,0.15)" stroke-width="1" d="M0,0 L100,100 M0,20 L80,100 M20,0 L100,80 M0,40 L60,100 M40,0 L100,60 M0,60 L40,100 M60,0 L100,40 M0,80 L20,100 M80,0 L100,20" /></svg>');
}

.page-banner .banner-content {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Breadcrumb Styles */
.breadcrumb-container {
    padding: 15px 0;
    background: linear-gradient(90deg, #16161f 0%, #232342 100%);
    border-bottom: 1px solid rgba(100, 100, 255, 0.2);
    position: relative;
    z-index: 1;
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: inline-block;
    margin-right: 5px;
    color: #a0a0ff;
}

.breadcrumb li:after {
    content: '>';
    margin-left: 5px;
    color: #7878b5;
}

.breadcrumb li:last-child:after {
    display: none;
}

.breadcrumb a {
    color: #a0a0ff;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #ffffff;
}

/* Section Title Styles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #e0e0ff;
    text-shadow: 0 0 10px rgba(100, 100, 255, 0.3);
}

.title-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3023AE, #C86DD7);
    margin: 0 auto;
}

/* Contact Section Styles */
.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #121225 0%, #1d1d35 100%);
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.contact-info {
    margin-bottom: 60px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.contact-item {
    flex: 0 0 calc(33.333% - 30px);
    margin: 0 15px 30px;
    padding: 30px;
    background: linear-gradient(135deg, #1e1e36 0%, #2d2d4a 100%);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3), 0 0 10px rgba(100, 100, 255, 0.2);
    text-align: center;
    border: 1px solid rgba(100, 100, 255, 0.1);
}

.contact-item em {
    font-size: 48px;
    color: #c586d7;
    margin-bottom: 20px;
    display: block;
    text-shadow: 0 0 10px rgba(197, 134, 215, 0.3);
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #a0a0ff;
}

.contact-item p {
    margin: 0;
    color: #d0d0ff;
}

.contact-item a {
    color: #d0d0ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* QR Code Styles */
.qrcode-trigger {
    position: relative;
    cursor: pointer;
}

.qrcode-text {
    display: inline-block;
    padding: 8px 15px;
    background-color: transparent;
    border: 1px solid #7042DB;
    border-radius: 5px;
    color: #d0d0ff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.qrcode-text:hover {
    background-color: rgba(112, 66, 219, 0.2);
    color: #fff;
    border-color: #C86DD7;
}

.qrcode-popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1e1e36;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3), 0 0 10px rgba(100, 100, 255, 0.2);
    z-index: 100;
    margin-top: 15px;
    border: 1px solid rgba(100, 100, 255, 0.1);
}

.qrcode-popup.active {
    display: block;
}

.qrcode-popup img {
    max-width: 200px;
    height: auto;
    display: block;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(100, 100, 255, 0.3);
}

/* Message Section Styles */
.message-section {
    margin-bottom: 60px;
}

.section-desc {
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
    color: #a0a0ff;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.form-group {
    flex: 0 0 calc(50% - 30px);
    margin: 0 15px 20px;
}

.form-group.full-width {
    flex: 0 0 calc(100% - 30px);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #a0a0ff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(100, 100, 255, 0.2);
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(30, 30, 60, 0.6);
    color: #e0e0ff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7042DB;
    box-shadow: 0 0 10px rgba(112, 66, 219, 0.3);
}

.submit-btn {
    display: block;
    width: 200px;
    margin: 30px auto 0;
    padding: 15px;
    background: linear-gradient(90deg, #3023AE, #C86DD7);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Map Section Styles */
.map-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #141428 0%, #232342 100%);
    position: relative;
    z-index: 1;
}

.map-container {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3), 0 0 10px rgba(100, 100, 255, 0.2);
    border: 1px solid rgba(100, 100, 255, 0.1);
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .page-banner {
        height: 250px;
    }
    
    .page-banner h1 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .contact-item {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 200px;
    }
    
    .page-banner h1 {
        font-size: 30px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .contact-item {
        flex: 0 0 calc(100% - 30px);
    }
    
    .form-group {
        flex: 0 0 calc(100% - 30px);
    }
    
    .map-container {
        height: 400px;
    }
    
    .qrcode-popup {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .qrcode-popup img {
        max-width: 150px;
    }
}

@media (max-width: 576px) {
    .page-banner {
        height: 150px;
    }
    
    .page-banner h1 {
        font-size: 24px;
    }
    
    .section-title h2 {
        font-size: 20px;
    }
    
    .submit-btn {
        width: 100%;
    }
} 