/* =====================================================
   CONTACT PAGE - DESKTOP CSS (1024px and above)
   Professional & Attractive Animated Styles
   ===================================================== */

@media screen and (min-width: 1024px) {
    
    /* =====================================================
       PAGE HEADER
       ===================================================== */
    
    .page-header {
        padding: 6rem 2rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        position: relative;
        overflow: hidden;
        text-align: center;
    }
    
    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg width="150" height="150" xmlns="http://www.w3.org/2000/svg"><circle cx="75" cy="75" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
        opacity: 0.2;
        animation: float 20s infinite linear;
    }
    
    @keyframes float {
        0% { transform: translateY(0) rotate(0deg); }
        100% { transform: translateY(-100px) rotate(360deg); }
    }
    
    .page-header .container {
        position: relative;
        z-index: 2;
        animation: fadeInUp 1s ease-out;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .page-header h1 {
        font-size: 3rem;
        line-height: 1.3;
        color: white;
        margin-bottom: 1.25rem;
        animation: slideInLeft 0.8s ease-out 0.2s both;
    }
    
    .page-header p {
        font-size: 1.2rem;
        color: rgba(255,255,255,0.95);
        line-height: 1.9;
        margin-bottom: 3rem;
        animation: slideInLeft 0.8s ease-out 0.4s both;
    }
    
    .header-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        animation: fadeInUp 0.8s ease-out 0.6s both;
    }
    
    .stat-item {
        text-align: center;
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        border-radius: 25px;
        padding: 2.5rem;
        border: 1px solid rgba(255,255,255,0.2);
        transition: all 0.3s ease;
    }
    
    .stat-item:hover {
        transform: translateY(-10px);
        background: rgba(255,255,255,0.25);
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    }
    
    .stat-number {
        display: block;
        font-size: 2.75rem;
        font-weight: 700;
        color: white;
        line-height: 1;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 1.05rem;
        color: rgba(255,255,255,0.9);
        display: block;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* =====================================================
       CONTACT METHODS
       ===================================================== */
    
    .contact-methods {
        padding: 8rem 2rem;
        background: white;
    }
    
    .section-title {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        text-align: center;
        font-weight: 700;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        color: #6c757d;
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .contact-methods-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .contact-method-card {
        background: white;
        border: 2px solid rgba(0,123,255,0.1);
        border-radius: 30px;
        padding: 2.5rem;
        text-align: center;
        transition: all 0.3s ease;
        animation: fadeInUp 0.6s ease-out both;
    }
    
    .contact-method-card:nth-child(1) { animation-delay: 0.1s; }
    .contact-method-card:nth-child(2) { animation-delay: 0.2s; }
    .contact-method-card:nth-child(3) { animation-delay: 0.3s; }
    .contact-method-card:nth-child(4) { animation-delay: 0.4s; }
    
    .contact-method-card:hover {
        transform: translateY(-15px);
        border-color: rgba(0,123,255,0.3);
        box-shadow: 0 30px 70px rgba(0,123,255,0.15);
    }
    
    .method-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(0,168,89,0.1));
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        transition: transform 0.3s ease;
    }
    
    .contact-method-card:hover .method-icon {
        transform: scale(1.15) rotate(360deg);
    }
    
    .contact-method-card h3 {
        font-size: 1.5rem;
        color: #2c3e50;
        margin-bottom: 1.25rem;
        font-weight: 700;
    }
    
    .contact-method-card p {
        font-size: 1.1rem;
        line-height: 1.9;
        color: #6c757d;
        margin-bottom: 2rem;
    }
    
    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .contact-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1.2rem;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border-radius: 35px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.05rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .contact-link::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }
    
    .contact-link:hover::before {
        width: 300px;
        height: 300px;
    }
    
    .contact-link:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,123,255,0.5);
    }
    
    .contact-link i,
    .contact-link span {
        position: relative;
        z-index: 1;
    }
    
    .contact-link.whatsapp {
        background: linear-gradient(135deg, #25d366, #128c7e);
    }
    
    .contact-link.whatsapp:hover {
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    }
    
    .availability {
        font-size: 1rem;
        color: #6c757d;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    /* =====================================================
       CONTACT INFO SECTION
       ===================================================== */
    
    .contact-info-section {
        padding: 8rem 2rem;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
        position: relative;
        overflow: hidden;
    }
    
    .contact-info-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 20% 30%, rgba(0,123,255,0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(0,168,89,0.03) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .contact-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        position: relative;
        z-index: 1;
    }
    
    .contact-card {
        background: white;
        border-radius: 30px;
        padding: 3rem;
        box-shadow: 0 10px 35px rgba(0,0,0,0.08);
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(0,123,255,0.05);
        animation: fadeInUp 0.6s ease-out both;
    }
    
    .contact-card:nth-child(1) { animation-delay: 0.1s; }
    .contact-card:nth-child(2) { animation-delay: 0.2s; }
    .contact-card:nth-child(3) { animation-delay: 0.3s; }
    .contact-card:nth-child(4) { animation-delay: 0.4s; }
    
    .contact-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 70px rgba(0,123,255,0.2);
        border-color: rgba(0,123,255,0.2);
    }
    
    .contact-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(0,168,89,0.1));
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        transition: transform 0.3s ease;
    }
    
    .contact-card:hover .contact-icon {
        transform: scale(1.15) rotate(360deg);
    }
    
    .contact-card h3 {
        font-size: 1.5rem;
        color: #2c3e50;
        margin-bottom: 1.25rem;
        font-weight: 700;
    }
    
    .contact-card p {
        font-size: 1.1rem;
        line-height: 1.9;
        color: #6c757d;
        margin-bottom: 1.5rem;
    }
    
    .location-features,
    .contact-features,
    .email-features,
    .leadership-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        font-size: 1rem;
        color: #495057;
        text-align: center;
    }
    
    .feature i {
        width: 50px;
        height: 50px;
        background: rgba(0,123,255,0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--primary-color);
        flex-shrink: 0;
    }
    
    .feature span {
        font-size: 0.95rem;
    }
    
    /* =====================================================
       CONTACT FORM SECTION
       ===================================================== */
    
    .contact-form-section {
        padding: 8rem 2rem;
        background: white;
    }
    
    .form-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: start;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .form-info h2 {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }
    
    .form-info > p {
        font-size: 1.2rem;
        line-height: 1.9;
        color: #6c757d;
        margin-bottom: 3rem;
    }
    
    .form-benefits {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 1.1rem;
        color: #495057;
    }
    
    .benefit-item i {
        color: var(--success-color);
        font-size: 1.35rem;
        flex-shrink: 0;
    }
    
    .form-container {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 30px;
        padding: 3rem;
        box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    }
    
    .form-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
    }
    
    .form-group label {
        font-size: 1.05rem;
        color: #2c3e50;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1.2rem;
        border: 2px solid rgba(0,123,255,0.1);
        border-radius: 20px;
        font-size: 1.05rem;
        font-family: 'Poppins', sans-serif;
        transition: all 0.3s ease;
        background: white;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
    }
    
    .form-group small {
        font-size: 0.9rem;
        color: #6c757d;
        margin-top: 0.5rem;
    }
    
    .checkbox-group {
        margin-top: 2rem;
    }
    
    .checkbox-label {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        font-size: 1.05rem;
        color: #495057;
        cursor: pointer;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 24px;
        height: 24px;
        margin-top: 3px;
        cursor: pointer;
    }
    
    .btn-primary.large {
        width: 100%;
        padding: 1.5rem;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border: none;
        border-radius: 40px;
        font-weight: 600;
        font-size: 1.15rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        margin-top: 2rem;
        position: relative;
        overflow: hidden;
    }
    
    .btn-primary.large::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }
    
    .btn-primary.large:hover::before {
        width: 400px;
        height: 400px;
    }
    
    .btn-primary.large:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,123,255,0.5);
    }
    
    .btn-primary.large i,
    .btn-primary.large span {
        position: relative;
        z-index: 1;
    }
    
    /* =====================================================
       FAQ SECTION
       ===================================================== */
    
    .faq-section {
        padding: 8rem 2rem;
        background: white;
    }
    
    .faq-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .faq-item {
        background: white;
        border: 2px solid rgba(0,123,255,0.1);
        border-radius: 25px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .faq-item:hover {
        border-color: rgba(0,123,255,0.3);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    
    .faq-question {
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }
    
    .faq-question h3 {
        font-size: 1.15rem;
        color: #2c3e50;
        font-weight: 600;
        flex: 1;
        margin: 0;
    }
    
    .faq-question i {
        font-size: 1.15rem;
        color: var(--primary-color);
        transition: transform 0.3s ease;
    }
    
    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
        max-height: 500px;
    }
    
    .faq-answer p {
        padding: 0 2rem 2rem;
        font-size: 1.05rem;
        line-height: 1.9;
        color: #6c757d;
        margin: 0;
    }
    
    /* =====================================================
       MAP SECTION
       ===================================================== */
    
    .map-section {
        padding: 8rem 2rem;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    }
    
    .map-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .map-container {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .map-wrapper {
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    }
    
    .map-wrapper iframe {
        width: 100%;
        border: none;
    }
    
    .location-info {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .location-card {
        background: white;
        border-radius: 30px;
        padding: 3rem;
        box-shadow: 0 10px 35px rgba(0,0,0,0.08);
        border: 1px solid rgba(0,123,255,0.05);
    }
    
    .location-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(0,168,89,0.1));
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        transition: transform 0.3s ease;
    }
    
    .location-card:hover .location-icon {
        transform: scale(1.15) rotate(360deg);
    }
    
    .location-details h3 {
        font-size: 1.5rem;
        color: #2c3e50;
        margin-bottom: 1.25rem;
        font-weight: 700;
    }
    
    .location-details p {
        font-size: 1.1rem;
        line-height: 1.9;
        color: #6c757d;
        margin-bottom: 1.5rem;
    }
    
    .location-features {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .location-features .feature {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    
    .contact-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .btn-map,
    .btn-call {
        padding: 1.5rem;
        border-radius: 35px;
        font-weight: 600;
        font-size: 1.15rem;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .btn-map::before,
    .btn-call::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }
    
    .btn-map:hover::before,
    .btn-call:hover::before {
        width: 400px;
        height: 400px;
    }
    
    .btn-map {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
    }
    
    .btn-map:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,123,255,0.5);
    }
    
    .btn-call {
        background: white;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
    }
    
    .btn-call:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,123,255,0.3);
    }
    
    .btn-map i,
    .btn-map span,
    .btn-call i,
    .btn-call span {
        position: relative;
        z-index: 1;
    }
}

