/* JIES Contact Manager Styles */

:root {
    /* Brand Colors */
    --color-primary: #D9232D;
    --color-secondary: #009B4D;
    --color-dark: #1F2937;
    --color-light: #FAFBFC;
    --color-white: #FFFFFF;

    /* Spacing */
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-20: 5rem;

    /* Radius */
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --elevation-3: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --container-width: 1280px;

    /* Utilities */
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-600: #4B5563;
    --color-gray-900: #111827;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Base Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
    width: 100%;
}

/* Typography Utilities */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    text-decoration: none;
    color: white;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #B91C25 100%);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--elevation-3);
}

/* Hero Section */
.contact-hero {
    position: relative;
    padding: 100px 0 60px;
    background: #000000;
    color: white;
    margin-bottom: 50px;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at top right, rgba(217, 35, 45, 0.2), transparent 50%),
        radial-gradient(circle at bottom left, rgba(0, 155, 77, 0.15), transparent 50%);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.contact-hero-subtitle {
    color: var(--color-secondary);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--color-white);
}

.contact-hero-desc {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--color-white);
    max-width: 600px;
}

/* Section & Grid */
.contact-section {
    padding: var(--space-8) 0 var(--space-20);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    align-items: start;
}

/* Contact Info Items */
.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: #e6fdf0;
    /* Light green tint */
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
}

.contact-info-text p {
    margin: 0;
    line-height: 1.5;
    color: var(--color-gray-600);
}

/* Form Card */
.contact-form-card {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-200);
}

.contact-form-card h3 {
    margin-bottom: 20px;
    color: var(--color-dark);
}

/* Map Container */
.map-container {
    height: 400px;
    background: #eee;
    width: 100%;
    margin-top: var(--space-12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
	
	.contact-form-card {
 
    padding: 0px;
    
}
}