/* ==========================================================================
 * Contact Page Specific Styles
 * ========================================================================== */

/* ==========================================================================
 * 1.0 - FLOATING ELEMENTS
 * ========================================================================== */

/* 1.1 - Header Home Button */
.home-btn {
    position: absolute;
    top: 1.5rem;
    left: 1rem;
    width: 45px;
    height: 45px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.home-btn:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.4);
}

/* 1.2 - Floating Home Button */
.floating-home-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-home-btn:hover {
    background: #1d4ed8;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.5);
}

.floating-home-btn span {
    position: absolute;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    top: -5px;
    right: -5px;
    box-shadow: 0 2px 5px rgba(239, 68, 68, 0.3);
}

/* 1.3 - Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    background: #4ade80;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification.show {
    transform: translateX(0);
}

/* ==========================================================================
 * 2.0 - BACKGROUND DECORATIONS
 * ========================================================================== */

.floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 15s infinite ease-in-out;
    color: #2563eb;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ==========================================================================
 * 3.0 - CONTACT PAGE LAYOUT
 * ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
 * 4.0 - HEADER SECTION
 * ========================================================================== */

header {
    text-align: center;
    padding: 2rem 0;
    position: relative;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2563eb;
}

.tagline {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

/* ==========================================================================
 * 5.0 - BREADCRUMB NAVIGATION
 * ========================================================================== */

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

/* ==========================================================================
 * 6.0 - MAIN CONTENT LAYOUT
 * ========================================================================== */

.content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* ==========================================================================
 * 7.0 - CONTACT INFORMATION SECTION
 * ========================================================================== */

.page-contact-info {
    flex: 1;
    min-width: 300px;
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    color: #2563eb;
}

.info-text {
    flex: 1;
}

.info-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: #1e293b;
}

.info-text p {
    color: #64748b;
}

.info-text a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-text a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* ==========================================================================
 * 8.0 - CONTACT FORM SECTION
 * ========================================================================== */

.contact-form {
    flex: 1;
    min-width: 300px;
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    color: #1f2937;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.submit-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.25);
}

/* ==========================================================================
 * 9.0 - MAP SECTION
 * ========================================================================== */

.map-container {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    margin-bottom: 3rem;
    overflow: hidden;
}

#map {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
 * 10.0 - FOOTER SECTION
 * ========================================================================== */

footer {
    text-align: center;
    padding: 2rem 0;
    color: #64748b;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

/* ==========================================================================
 * 11.0 - TYPOGRAPHY
 * ========================================================================== */

.section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #2563eb;
    border-radius: 3px;
}

/* ==========================================================================
 * 12.0 - RESPONSIVE BREAKPOINTS
 * ========================================================================== */

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .content {
        flex-direction: column;
    }
    
    .page-contact-info, .contact-form {
        min-width: 100%;
    }
    
    #map {
        height: 300px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .home-btn {
        top: 1rem;
        left: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .floating-home-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .floating-home-btn span {
        display: none;
    }
    
    .form-control {
        padding: 0.7rem 1rem;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
        width: 100%;
    }
    
    .shape {
        opacity: 0.05;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}