
:root {
    --primary: #0a2052;
    --accent: #f07b38;
    --gradient: linear-gradient(135deg, #0a2052 0%, #1a3a8f 100%);
    --glass: rgba(255, 255, 255, 0.95);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
:root {
    --primary-color: #003366;
    --secondary-color: #e67e22;
    --light-color: #f4f4f4;
    --dark-color: #333;
    --success-color: #28a745;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background: #f9faff;
    color: #2d2d2d;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Modern Header */
.contact-header {
    background: var(--gradient);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.header-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Floating Grid Layout */
.contact-grid {
    display: grid;
    align-items: start;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: -80px auto 60px;
    position: relative;
    max-width: 1200px;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

/* Glassmorphism Cards */
.contact-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Contact Information */
.info-item {
    margin-bottom: 2rem;
    position: relative;
}

.info-item h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(10, 32, 82, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.info-content p {
    margin-bottom: 5px;
    color: #4a4a4a;
}
.info-content p span{
    font-style: italic;
    font-weight: 600;
}

/* Modern Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px);
    background: var(--accent);
    box-shadow: 0 5px 15px rgba(240, 123, 56, 0.3);
}

/* Modern Form Styling */
.contact-form {
    position: relative;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    position: absolute;
    left: 15px;
    top: 16px;
    color: #6b7280;
    pointer-events: none;
    transition: all 0.3s ease;
    background: var(--glass);
    padding: 0 5px;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--glass);
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(240, 123, 56, 0.2);
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: -10px;
    left: 10px;
    font-size: 0.85rem;
    color: var(--accent);
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--gradient);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 32, 82, 0.2);
}

/* Interactive Map */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
    margin-top: 60px;
    margin-bottom: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2rem;
    }

    .contact-card {
        padding: 30px;
    }

    .map-container {
        height: 300px;
        margin-top: 40px;
    }
}
.contact-infor h3 {
    color: var(--secondary-color);
    margin: 20px 0 10px;
}