/**
 * Contact Page Minimal Styles
 * File: platform/assets/css/contact-dynamic.css
 * 
 * Clean minimal styling for contact page
 */

/* ========================================
   HEADER SECTION
   ======================================== */
.contact_header_section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0 3rem;
    margin-bottom: -2rem;
}

/* ========================================
   CONTENT SECTION
   ======================================== */
.contact_content_section {
    padding: 3rem 0;
}

.contact_card_minimal {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

/* Contact Row Items */
.contact_row_item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.contact_row_item:first-child {
    padding-top: 0;
}

.contact_row_item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.contact_icon_minimal {
    font-size: 1.5rem;
    color: #667eea;
    flex-shrink: 0;
    width: 35px;
}

.contact_detail_minimal {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.contact_type_label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.contact_link_minimal {
    font-size: 1.125rem;
    color: #1e293b;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact_link_minimal:hover {
    color: #667eea;
}

.contact_text_minimal {
    font-size: 1.125rem;
    color: #1e293b;
    font-weight: 600;
}

/* Company Logo */
.company_logo_img {
    max-height: 60px;
    max-width: 200px;
    margin-top: 0.5rem;
}

/* UPI Display */
.upi_display_minimal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.upi_display_minimal code {
    background: #fef3c7;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.9375rem;
    color: #92400e;
    font-weight: 600;
    flex: 1;
}

.copy_btn_minimal {
    background: #667eea;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy_btn_minimal:hover {
    background: #5568d3;
    transform: translateY(-1px);
}

/* Section Subtitle */
.section_subtitle_minimal {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section_subtitle_minimal i {
    color: #667eea;
}

/* Banking Details */
.banking_pre_minimal {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #334155;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* ========================================
   MAP SECTION
   ======================================== */
.map_section_minimal {
    background: #f8fafc;
    padding: 3rem 0;
}

.map_container_minimal {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map_container_minimal iframe {
    border: none;
    width: 100%;
    height: 400px;
    display: block;
}

/* ========================================
   ACTION BUTTONS SECTION
   ======================================== */
.contact_actions_minimal {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.action_section_title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
}

.action_buttons_group {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.action_btn_primary,
.action_btn_success,
.action_btn_warning {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.action_btn_primary::before,
.action_btn_success::before,
.action_btn_warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.action_btn_primary:hover::before,
.action_btn_success:hover::before,
.action_btn_warning:hover::before {
    left: 100%;
}

.action_btn_primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.action_btn_primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

.action_btn_success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.action_btn_success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    color: white;
}

.action_btn_warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.action_btn_warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    color: white;
}

.action_btn_primary i,
.action_btn_success i,
.action_btn_warning i {
    font-size: 1.25rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991px) {
    .contact_card_minimal {
        margin-bottom: 1.5rem;
    }
    
    .action_buttons_group {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact_header_section {
        padding: 3rem 0 2rem;
    }
    
    .contact_header_section h1 {
        font-size: 2rem;
    }
    
    .contact_card_minimal {
        padding: 1.5rem;
    }
    
    .contact_row_item {
        padding: 1rem 0;
    }
    
    .contact_icon_minimal {
        font-size: 1.25rem;
        width: 30px;
    }
    
    .contact_link_minimal,
    .contact_text_minimal {
        font-size: 1rem;
    }
    
    .map_container_minimal iframe {
        height: 300px;
    }
    
    .action_section_title {
        font-size: 1.5rem;
    }
    
    .action_buttons_group {
        flex-direction: column;
        align-items: center;
    }
    
    .action_btn_primary,
    .action_btn_success,
    .action_btn_warning {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact_card_minimal {
        padding: 1.25rem;
        border-radius: 0.75rem;
    }
    
    .upi_display_minimal {
        flex-direction: column;
        align-items: stretch;
    }
    
    .upi_display_minimal code {
        text-align: center;
    }
    
    .copy_btn_minimal {
        width: 100%;
    }
    
    .banking_pre_minimal {
        padding: 1rem;
        font-size: 0.875rem;
    }
    
    .company_logo_img {
        max-width: 150px;
    }
    
    .contact_actions_minimal {
        padding: 3rem 0;
    }
    
    .action_btn_primary,
    .action_btn_success,
    .action_btn_warning {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}