/* Modern Contact Page Styles */
:root {
    --rogs-primary: #004080;
    --rogs-accent: #0056b3;
    --rogs-secondary: #999999;
    --rogs-light: #f5f7fa;
    --rogs-white: rgba(255, 255, 255, 0.95);
}

/* Modern Contact Section */
.modern-contact-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.modern-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23004080" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-dots)"/></svg>');
    pointer-events: none;
    z-index: 0;
}

.modern-contact-section .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--rogs-primary) 0%, var(--rogs-accent) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 64, 128, 0.2);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--rogs-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--rogs-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--rogs-white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 64, 128, 0.1);
    border: 1px solid rgba(0, 64, 128, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rogs-primary) 0%, var(--rogs-accent) 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rogs-primary);
    margin-bottom: 1rem;
}

.form-subtitle {
    color: var(--rogs-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Form Groups */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--rogs-primary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-label i {
    color: var(--rogs-accent);
    width: 16px;
}

/* Modern Inputs */
.modern-input,
.modern-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 64, 128, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modern-input:focus,
.modern-textarea:focus {
    outline: none;
    border-color: var(--rogs-accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
    transform: translateY(-2px);
}

.modern-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Input Focus Border */
.input-focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rogs-primary) 0%, var(--rogs-accent) 100%);
    transition: width 0.3s ease;
}

.modern-input:focus + .input-focus-border,
.modern-textarea:focus + .input-focus-border {
    width: 100%;
}

/* Submit Button */
.form-actions {
    text-align: center;
}

.modern-submit-btn {
    position: relative;
    background: linear-gradient(135deg, var(--rogs-primary) 0%, var(--rogs-accent) 100%);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 64, 128, 0.3);
}

.modern-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 64, 128, 0.4);
    color: white;
}

.modern-submit-btn:active {
    transform: translateY(-1px);
}

.btn-ripple {
    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: all 0.6s ease;
}

.modern-submit-btn:hover .btn-ripple {
    width: 300px;
    height: 300px;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    background: var(--rogs-white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 64, 128, 0.1);
    border: 1px solid rgba(0, 64, 128, 0.05);
    backdrop-filter: blur(10px);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rogs-accent) 0%, var(--rogs-primary) 100%);
}

.contact-info-header {
    text-align: center;
    margin-bottom: 2rem;
}

.info-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--rogs-primary);
    margin-bottom: 0.5rem;
}

/* Contact Info Items */
.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(0, 64, 128, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(0, 64, 128, 0.05);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(0, 64, 128, 0.05);
    border-color: rgba(0, 64, 128, 0.1);
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--rogs-primary) 0%, var(--rogs-accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--rogs-primary);
    margin-bottom: 0.5rem;
}

.info-content p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.info-note {
    font-size: 0.85rem;
    color: var(--rogs-secondary);
    font-style: italic;
}

/* Social Media */
.contact-social {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 64, 128, 0.1);
}

.contact-social h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--rogs-primary);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.contact-social .social-links .social-link {
    width: 45px;
    height: 45px;
    background: #ffffff !important;
    border-radius: 12px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #004080 !important;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 64, 128, 0.1);
    border: 1px solid rgba(0, 64, 128, 0.1);
}

.contact-social .social-links .social-link i,
.contact-social .social-links .social-link .fab,
.contact-social .social-links .social-link .fab.fa-linkedin,
.contact-social .social-links .social-link .fab.fa-facebook,
.contact-social .social-links .social-link .fab.fa-instagram {
    color: #004080 !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 1.2rem !important;
}

.contact-social .social-links .social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 64, 128, 0.3);
    background: linear-gradient(135deg, #004080 0%, #0056b3 100%) !important;
    color: #ffffff !important;
    border-color: transparent;
}

.contact-social .social-links .social-link:hover i,
.contact-social .social-links .social-link:hover .fab,
.contact-social .social-links .social-link:hover .fab.fa-linkedin,
.contact-social .social-links .social-link:hover .fab.fa-facebook,
.contact-social .social-links .social-link:hover .fab.fa-instagram {
    color: #ffffff !important;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
}

.map-wrapper {
    background: var(--rogs-white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 64, 128, 0.1);
    border: 1px solid rgba(0, 64, 128, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rogs-accent) 0%, var(--rogs-primary) 100%);
}

.map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rogs-primary);
    margin-bottom: 0.5rem;
}

.map-subtitle {
    color: var(--rogs-secondary);
    font-size: 1rem;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 64, 128, 0.15);
}

.modern-map {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Responsive Design */
@media (max-width: 991px) {
    .modern-contact-section {
        padding: 80px 0 60px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2rem;
    }
    
    .modern-map {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper,
    .map-wrapper {
        padding: 1.5rem;
    }
    
    .modern-input,
    .modern-textarea {
        padding: 0.875rem 1rem;
    }
    
    .modern-submit-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper,
    .map-wrapper {
        padding: 1.25rem;
    }
    
    .modern-map {
        height: 250px;
    }
} 