/* Contact Page Custom Styles - Minimalist Black & White Design */

/* Contact Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.08) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}

.contact-hero-section .container {
    position: relative;
    z-index: 1;
}

.contact-hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contact-hero-section p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Contact Information Section */
.contact-info-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
}

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

.contact-icon {
    margin-bottom: 30px;
}

.contact-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

/* CSS Icons using pseudo-elements */
.icon-location::before {
    content: "●";
    font-size: 1.5rem;
    color: #fff;
}

.contact-icon h3 {
    color: #000;
    font-size: 1.5rem;
    margin: 0;
}

.contact-details {
    text-align: left;
}

/* CSS Icons - Simple geometric shapes */
.icon-location,
.icon-email,
.icon-phone,
.icon-clock,
.icon-support,
.icon-worldwide {
    position: relative;
    z-index: 2;
    width: 35px;
    height: 35px;
    display: inline-block;
}

.icon-location::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 3px solid white;
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.icon-email::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 16px;
    border: 3px solid white;
    border-radius: 2px;
}

.icon-email::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 6px solid white;
    margin-top: -8px;
}

.icon-phone::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 24px;
    border: 3px solid white;
    border-radius: 4px;
}

.icon-clock::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-radius: 50%;
}

.icon-clock::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 8px;
    background: #333;
    margin-top: -4px;
}

.icon-support::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 14px;
    border: 2px solid #333;
    border-radius: 10px 10px 0 0;
}

.icon-support::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 2px;
    background: #333;
    margin-top: 6px;
}

.icon-worldwide::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-radius: 50%;
}

.icon-worldwide::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 2px;
    background: #333;
    border-radius: 1px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-detail-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(30, 60, 114, 0.2);
}

.contact-detail-icon.location::before {
    content: "●";
    font-size: 0.8rem;
    color: #fff;
}

.contact-detail-icon.email::before {
    content: "@";
    font-size: 0.9rem;
    color: #fff;
    font-weight: bold;
}

.contact-detail-icon.phone::before {
    content: "☎";
    font-size: 0.8rem;
    color: #fff;
}

.contact-detail-icon.head-office.website::before {
    content: '◉';
    font-size: 1.2rem;
    color: white;
}

.contact-detail-icon.head-office.email::before {
    content: '✉';
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
}

.contact-item p {
    margin: 0;
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-item a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: #666;
    text-decoration: underline;
}

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

.contact-form-wrapper {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.contact-form-section h2 {
    color: #000;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 2rem;
}

.contact-form-section p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Form Styles */
.contact-form-wrapper .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
    border-color: #000;
    box-shadow: 0 0 0 0.2rem rgba(0,0,0,0.1);
}

.contact-form-wrapper .btn {
    background: #000;
    border: 2px solid #000;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form-wrapper .btn:hover {
    background: white;
    color: #000;
}

/* Business Hours & Additional Info */
.business-info-section {
    background: white;
    padding: 80px 0;
}

.info-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #333;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.info-icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

.icon-clock::before {
    content: "🕒";
    font-size: 1.8rem;
}

.icon-support::before {
    content: "🎧";
    font-size: 1.8rem;
}

.icon-worldwide::before {
    content: "🌍";
    font-size: 1.8rem;
}

.info-card h4 {
    color: #000;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-section {
        padding: 60px 0;
    }
    
    .contact-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-section p {
        font-size: 1.1rem;
    }
    
    .contact-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
    }
    
    .info-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .contact-info-section,
    .business-info-section,
    .contact-form-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .contact-hero-section h1 {
        font-size: 2rem;
    }
    
    .contact-hero-section p {
        font-size: 1.1rem;
    }
    
    .contact-card {
        padding: 25px 15px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card,
.info-card,
.contact-form-wrapper {
    animation: fadeInUp 0.6s ease-out;
}

.contact-card:nth-child(2) {
    animation-delay: 0.2s;
}

.info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.info-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Social Media Section */
.social-media-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.social-media-section h3 {
    color: #000;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.social-icon.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.social-icon.linkedin:hover {
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5aa7 100%);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-icon.facebook:hover {
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.social-icon.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.social-icon.twitter:hover {
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #e4405f 0%, #833ab4 50%, #fcb045 100%);
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.social-icon.instagram:hover {
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-media-section {
        padding: 60px 0;
    }
    
    .social-media-section h3 {
        font-size: 1.5rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .social-icons {
        gap: 15px;
    }
}