/* Contact US Page Styles - High-end, Professional Design */

/* Import Google Fonts for premium typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

.contact-us-page {
    font-family: 'Inter', sans-serif;
}

/* Page Header Styling */
.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: -0.02em;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
    border-radius: 2px;
}

.page-header p {
    font-size: 1.25rem;
    font-weight: 300;
    color: #6b7280;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

/* Contact Information Section */
.contact-info-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316 0%, #ea580c 50%, #dc2626 100%);
}

.company-details h2,
.contact-details h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #1f2937;
    position: relative;
    padding-bottom: 1rem;
}

.company-details h2::after,
.contact-details h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
    border-radius: 1px;
}

.info-item {
    position: relative;
    padding-left: 1.5rem;
}

.info-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: #f97316;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.info-label {
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.info-content {
    font-weight: 500;
    line-height: 1.6;
    color: #374151;
}

/* Contact Items Styling */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #f97316;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    border-left-color: #ea580c;
}

.contact-icon {
    flex-shrink: 0;
    padding: 0.5rem;
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(249, 115, 22, 0.2);
}

.contact-label {
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.contact-value {
    font-weight: 500;
    line-height: 1.5;
    color: #4b5563;
}

/* Map Section Styling */
.map-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    position: relative;
}

.map-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #1f2937;
    position: relative;
}

.map-placeholder {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(249, 115, 22, 0.1) 50%, transparent 52%);
    background-size: 20px 20px;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.1; }
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    position: relative;
}

.contact-form-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #1f2937;
    position: relative;
}

.form-info h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #1f2937;
    position: relative;
    padding-bottom: 0.5rem;
}

.form-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 1px;
}

.form-info ul {
    list-style: none;
    padding: 0;
}

.form-info li {
    font-weight: 400;
    line-height: 1.6;
    color: #4b5563;
    position: relative;
}

/* Form Styling */
.form-container input,
.form-container textarea {
    border: 2px solid #e5e7eb;
    background: #ffffff;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 400;
}

.form-container input:focus,
.form-container textarea:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
    background: #ffffff;
}

.form-container input::placeholder,
.form-container textarea::placeholder {
    color: #9ca3af;
    font-weight: 300;
}

.form-footer button {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border: none;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.form-footer button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.form-footer button:hover::before {
    left: 100%;
}

.form-footer button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.125rem;
    }
    
    .contact-info-section,
    .map-section,
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info-section,
.map-section,
.contact-form-section {
    animation: fadeInUp 0.6s ease-out;
}

.contact-info-section {
    animation-delay: 0.1s;
}

.map-section {
    animation-delay: 0.2s;
}

.contact-form-section {
    animation-delay: 0.3s;
}

/* Premium Shadow Effects */
.contact-info-section,
.map-section,
.contact-form-section {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Hover effects for interactive elements */
.info-item:hover .info-label {
    color: #ea580c;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-label {
    color: #ea580c;
    transition: color 0.3s ease;
}

/* Gradient borders */
.contact-info-section,
.map-section,
.contact-form-section {
    position: relative;
}

.contact-info-section::after,
.map-section::after,
.contact-form-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #dc2626 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}