/* ===== PAGE CONTACT - DESIGN PREMIUM ===== */

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, var(--tech-gradient-1), var(--tech-gradient-2));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 0 80px;
    overflow: hidden;
}

.wave-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.1' fill='%2300B4DB'/%3E%3C/svg%3E") repeat-x bottom;
    background-size: 1200px 120px;
    animation: waveMove 20s linear infinite;
}

@keyframes waveMove {
    0% { background-position: 0 bottom; }
    100% { background-position: 1200px bottom; }
}

.contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact-hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0 60px;
    background: #f8f9fa;
    margin-top: -60px;
    position: relative;
    z-index: 3;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: #ffffff;
    padding: 45px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--tech-gradient-3), var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.info-icon {
    position: relative;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 180, 219, 0.1), rgba(47, 85, 212, 0.1));
    border: 3px solid rgba(0, 180, 219, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.info-icon i {
    font-size: 36px;
    color: var(--tech-gradient-3);
    transition: all 0.3s ease;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid var(--tech-gradient-3);
    border-radius: 50%;
    opacity: 0;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.info-card:hover .info-icon {
    background: linear-gradient(135deg, var(--tech-gradient-3), var(--primary-color));
    border-color: var(--tech-gradient-3);
    transform: scale(1.1);
}

.info-card:hover .info-icon i {
    color: #ffffff;
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.info-card p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 8px;
}

.info-card a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-card a:hover {
    color: var(--tech-gradient-3);
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tech-gradient-3);
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.info-link:hover {
    gap: 12px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #ffffff;
}

.form-wrapper {
    padding: 50px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 40px;
}

.contact-form-premium {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.form-group label i {
    color: var(--tech-gradient-3);
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 15px;
    color: var(--dark-color);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--tech-gradient-3);
    box-shadow: 0 0 0 4px rgba(0, 180, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--tech-gradient-3), var(--primary-color));
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 180, 219, 0.4);
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline-flex;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(0, 180, 219, 0.6);
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 600;
    display: none;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4CAF50;
    color: #4CAF50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 2px solid #f44336;
    color: #f44336;
}

/* Map Wrapper */
.map-wrapper {
    position: relative;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11, 27, 53, 0.95), transparent);
    padding: 30px;
    color: #ffffff;
}

.map-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.hours-grid {
    display: grid;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.hours-item .day {
    font-weight: 600;
    font-size: 14px;
}

.hours-item .time {
    color: var(--tech-gradient-3);
    font-weight: 700;
    font-size: 14px;
}

.hours-item .time.closed {
    color: #ff5733;
}

/* Social Contact Box */
.social-contact-box {
    padding: 35px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.social-contact-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
    text-align: center;
}

.social-contact-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.social-contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-contact-btn i {
    font-size: 28px;
    transition: all 0.3s ease;
}

.social-contact-btn.facebook {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}

.social-contact-btn.facebook:hover {
    background: #1877f2;
    color: #ffffff;
    border-color: #1877f2;
}

.social-contact-btn.linkedin {
    background: rgba(0, 119, 181, 0.1);
    color: #0077b5;
}

.social-contact-btn.linkedin:hover {
    background: #0077b5;
    color: #ffffff;
    border-color: #0077b5;
}

.social-contact-btn.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.social-contact-btn.whatsapp:hover {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
}

.social-contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.social-contact-btn:hover i {
    transform: scale(1.15);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-hero-title {
        font-size: 48px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form-wrapper {
        padding: 35px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 38px;
    }
    
    .map-wrapper {
        height: 350px;
    }
    
    .social-contact-links {
        grid-template-columns: 1fr;
    }
}

