/* Contacts Page Specific Styles */

/* Contact Hero Section */
.contact-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 30%, #2d1b69 70%, #9d4edd 100%);
}

.contact-hero-content {
    margin-top: 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}
iframe {
   
    border: none;
}
.breadcrumb {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #b8c5d6;
}

.contact-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-accent {
    display: block;
    color: #b8c5d6;
    font-size: 0.6em;
    font-weight: 400;
    margin-bottom: 10px;
}

.title-main {
    display: block;
    background: linear-gradient(45deg, #00d4ff, #9d4edd, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    color: #b8c5d6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-stat i {
    font-size: 2rem;
    color: #ffd700;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #00d4ff;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #b8c5d6;
}

/* Contact Information Section */
.contact-info {
    background: linear-gradient(135deg, #1a2332 0%, #2d1b69 100%);
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(157, 78, 221, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(45deg, #9d4edd, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #00d4ff;
    position: relative;
    z-index: 1;
}

.contact-card p {
    color: #b8c5d6;
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.contact-details {
    position: relative;
    z-index: 1;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 15px;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.contact-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 15px;
    padding: 15px 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: left;
}

.contact-address i {
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #b8c5d6;
    font-size: 0.9rem;
}

.contact-hours .online {
    color: #28a745;
    animation: pulse 2s ease-in-out infinite;
}

.chat-btn {
    background: linear-gradient(45deg, #28a745, #20c997) !important;
    border: none !important;
    cursor: pointer;
}

.chat-btn:hover {
    background: linear-gradient(45deg, #218838, #1ea080) !important;
}

/* Map Section */
.map-section {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    padding: 100px 0;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(20%) contrast(1.2);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-info h4 {
    color: #ffd700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-info p {
    color: #b8c5d6;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: #ffd700;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #b8c5d6;
    font-weight: 600;
}

.feature i {
    color: #00d4ff;
    font-size: 1.2rem;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #2d1b69 0%, #9d4edd 100%);
    padding: 100px 0;
}

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group label i {
    color: #ffd700;
    width: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b8c5d6;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a2332;
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.character-count {
    text-align: right;
    font-size: 0.8rem;
    color: #b8c5d6;
    margin-top: -5px;
}

.form-error {
    color: #ff4757;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

.form-error.show {
    display: block;
}

.checkbox-group {
    flex-direction: row !important;
    align-items: flex-start !important;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    cursor: pointer;
    color: #b8c5d6 !important;
    font-weight: 400 !important;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background: linear-gradient(45deg, #00d4ff, #9d4edd);
    border-color: #00d4ff;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    flex: 1;
}

.privacy-link,
.terms-link {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
}

.privacy-link:hover,
.terms-link:hover {
    color: #ffd700;
}

.form-actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.submit-btn,
.reset-btn {
    flex: 1;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Nunito', sans-serif;
}

.submit-btn {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #218838, #1ea080);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
}

.submit-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.reset-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #b8c5d6;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reset-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Form Sidebar */
.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-tips,
.response-time {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-tips h3,
.response-time h3 {
    color: #ffd700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.tip {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tip:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tip i {
    color: #00d4ff;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.tip h4 {
    color: #00d4ff;
    margin-bottom: 5px;
    font-size: 1rem;
}

.tip p {
    color: #b8c5d6;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.response-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.response-item:last-child {
    margin-bottom: 0;
}

.priority {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.priority.high {
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
}

.priority.medium {
    background: rgba(255, 193, 7, 0.2);
    color: #ffd93d;
}

.priority.low {
    background: rgba(40, 167, 69, 0.2);
    color: #51cf66;
}

.time {
    color: #b8c5d6;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #0f1419 0%, #2d1b69 100%);
    padding: 100px 0;
}

.faq-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #b8c5d6;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-family: 'Nunito', sans-serif;
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.category-btn.active {
    background: linear-gradient(45deg, #00d4ff, #9d4edd);
    color: white;
    border-color: transparent;
}

.category-btn i {
    color: #ffd700;
    width: 20px;
}

.faq-content {
    position: relative;
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h4 {
    color: #00d4ff;
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #ffd700;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #b8c5d6;
    line-height: 1.6;
    margin: 0;
}

.faq-footer {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.faq-search h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.search-box {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-box input {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
}

.search-box input::placeholder {
    color: #b8c5d6;
}

.search-box input:focus {
    outline: none;
}

.search-box button {
    padding: 15px 20px;
    background: linear-gradient(45deg, #00d4ff, #9d4edd);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: linear-gradient(45deg, #0099cc, #7a3bb8);
}

.faq-contact {
    text-align: right;
}

.faq-contact p {
    color: #b8c5d6;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: linear-gradient(45deg, #218838, #1ea080);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-categories {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .category-btn {
        white-space: nowrap;
        min-width: 150px;
    }

    .faq-footer {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .faq-contact {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-stats {
        flex-direction: column;
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .location-features {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .map-overlay {
        position: static;
        margin-top: 20px;
        border-radius: 15px;
    }

    .faq-categories {
        gap: 5px;
    }

    .category-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-stat {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .form-wrapper {
        padding: 25px;
    }

    .contact-tips,
    .response-time {
        padding: 20px;
    }

    .tip {
        flex-direction: column;
        gap: 10px;
    }

    .search-box {
        flex-direction: column;
    }

    .search-box input,
    .search-box button {
        border-radius: 0;
    }

    .search-box input {
        border-radius: 25px 25px 0 0;
    }

    .search-box button {
        border-radius: 0 0 25px 25px;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Form Validation States */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff4757;
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.2);
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

/* Loading States */
.submit-btn.loading {
    pointer-events: none;
}

.submit-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Success Message */
.form-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    color: #28a745;
    display: none;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.form-success i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}