/* TechBuzz Solution - Contact Page Styles */
.tb-contact-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--tb-light) 0%, var(--tb-gray) 100%);
    position: relative;
    overflow: hidden;
}

.tb-contact-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.tb-contact-hero-text {
    flex: 1;
}

.tb-contact-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--tb-dark);
}

.tb-contact-hero-title span {
    color: var(--tb-primary);
    position: relative;
}

.tb-contact-hero-title span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 5px;
    left: 0;
    background-color: var(--tb-secondary);
    z-index: -1;
    opacity: 0.7;
}

.tb-contact-hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 90%;
}

.tb-hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tb-hero-features {
    display: flex;
    gap: 30px;
}

.tb-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--tb-primary);
    font-weight: 500;
}

.tb-feature i {
    font-size: 1.1rem;
}

.tb-contact-hero-visual {
    flex: 1;
    position: relative;
    text-align: center;
}

.tb-hero-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--tb-primary-light), var(--tb-secondary));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--tb-light);
    box-shadow: var(--tb-shadow);
}

.tb-hero-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.tb-hero-image-placeholder p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Methods */
.tb-contact-methods {
    padding: 100px 0;
    background: var(--tb-light);
}

.tb-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tb-method-card {
    background: var(--tb-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--tb-shadow);
    border-top: 5px solid var(--tb-primary);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tb-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.tb-method-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,107,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--tb-primary);
    font-size: 2.5rem;
}

.tb-method-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--tb-dark);
}

.tb-method-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.tb-method-info {
    margin-bottom: 25px;
}

.tb-method-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--tb-primary);
    margin-bottom: 5px;
}

.tb-method-time {
    font-size: 0.9rem;
    color: #888;
}

.tb-method-btn {
    width: 100%;
    margin-top: auto;
}

.tb-method-btn.tb-whatsapp {
    background: #25D366;
}

.tb-method-btn.tb-whatsapp:hover {
    background: #128C7E;
}

/* Contact Form Section */
.tb-contact-form-section {
    padding: 100px 0;
    background: var(--tb-gray);
}

.tb-contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.tb-form-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--tb-dark);
}

.tb-form-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.tb-form-features {
    margin: 30px 0;
}

.tb-form-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--tb-dark);
}

.tb-form-feature i {
    color: var(--tb-primary);
    font-size: 1.1rem;
}

.tb-response-time {
    margin-top: 40px;
}

.tb-response-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,107,0,0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--tb-primary);
}

.tb-response-card i {
    font-size: 2rem;
    color: var(--tb-primary);
}

.tb-response-card h4 {
    margin-bottom: 5px;
    color: var(--tb-dark);
}

.tb-response-card p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.tb-contact-form-container {
    background: var(--tb-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--tb-shadow);
}

.tb-web3form {
    width: 100%;
}

.tb-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.tb-form-group {
    margin-bottom: 25px;
}

.tb-form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--tb-dark);
    font-weight: 500;
}

.tb-form-input,
.tb-form-select,
.tb-form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    background: var(--tb-light);
    color: var(--tb-text);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.tb-form-input:focus,
.tb-form-select:focus,
.tb-form-textarea:focus {
    outline: none;
    border-color: var(--tb-primary);
    box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}

.tb-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.tb-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.tb-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.tb-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
}

.tb-checkbox-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

.tb-form-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    margin: 20px 0 15px;
}

.tb-form-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #888;
    font-size: 0.9rem;
    text-align: center;
    justify-content: center;
}

.tb-form-note i {
    color: var(--tb-primary);
}

/* Office Location */
.tb-office-location {
    padding: 100px 0;
    background: var(--tb-light);
}

.tb-location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.tb-office-card {
    display: flex;
    gap: 20px;
    background: var(--tb-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--tb-shadow);
    margin-bottom: 40px;
}

.tb-office-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,107,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tb-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tb-office-details h3 {
    margin-bottom: 15px;
    color: var(--tb-dark);
    font-weight: 600;
}

.tb-office-details p {
    color: #666;
    line-height: 1.6;
}

.tb-office-features {
    margin-bottom: 40px;
}

.tb-office-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.tb-office-feature i {
    font-size: 1.5rem;
    color: var(--tb-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.tb-office-feature h4 {
    margin-bottom: 5px;
    color: var(--tb-dark);
}

.tb-office-feature p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.tb-directions h4 {
    margin-bottom: 15px;
    color: var(--tb-dark);
}

.tb-directions ul {
    list-style: none;
    padding: 0;
}

.tb-directions li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.tb-directions i {
    color: var(--tb-primary);
    width: 20px;
}

.tb-map-container {
    height: 500px;
}

.tb-map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--tb-primary-light), var(--tb-secondary));
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--tb-light);
    text-align: center;
}

.tb-map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.tb-map-placeholder p {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.tb-map-placeholder small {
    opacity: 0.8;
    margin-bottom: 20px;
}

/* Contact FAQ */
.tb-contact-faq {
    padding: 100px 0;
    background: var(--tb-gray);
}

.tb-faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.tb-faq-item {
    background: var(--tb-light);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: var(--tb-shadow);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.tb-faq-item:hover {
    border-color: var(--tb-primary);
}

.tb-faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--tb-light);
}

.tb-faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--tb-dark);
    margin: 0;
}

.tb-faq-question i {
    color: var(--tb-primary);
    transition: transform 0.3s ease;
}

.tb-faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tb-faq-item.active .tb-faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.tb-faq-item.active .tb-faq-question i {
    transform: rotate(180deg);
}

/* Emergency Support */
.tb-emergency-support {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b00, #ff8c42);
    color: var(--tb-light);
    text-align: center;
}

.tb-emergency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.tb-emergency-icon {
    font-size: 4rem;
    opacity: 0.9;
}

.tb-emergency-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--tb-light);
}

.tb-emergency-text p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.tb-emergency-contacts {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.tb-emergency-btn {
    padding: 15px 25px;
    font-size: 1.1rem;
}

/* Final CTA */
.tb-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--tb-dark) 0%, #2d3748 100%);
    color: var(--tb-light);
    text-align: center;
}

.tb-final-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--tb-light);
}

.tb-final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.tb-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .tb-contact-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .tb-contact-hero-description {
        max-width: 100%;
    }
    
    .tb-hero-features {
        justify-content: center;
    }
    
    .tb-contact-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tb-location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tb-emergency-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .tb-contact-hero-title {
        font-size: 2.5rem;
    }
    
    .tb-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tb-form-row {
        grid-template-columns: 1fr;
    }
    
    .tb-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .tb-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tb-emergency-contacts {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .tb-contact-hero {
        padding: 150px 0 80px;
    }
    
    .tb-contact-hero-title {
        font-size: 2rem;
    }
    
    .tb-contact-form-container {
        padding: 30px 20px;
    }
    
    .tb-office-card {
        flex-direction: column;
        text-align: center;
    }
    
    .tb-final-cta-content h2 {
        font-size: 2.2rem;
    }
}


.tb-map-container {
    position: relative;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--tb-shadow);
}

.tb-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.tb-map-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.tb-map-button {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--tb-primary);
}

.tb-map-button:hover {
    background: var(--tb-primary);
    color: var(--tb-light);
}