/* Contact Page Styles */
body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
    color: #1e293b;
    line-height: 1.6;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #1e40af 100%);
    padding: 5rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(30, 64, 175, 0.3);
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

.contact-hero h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero p {
    color: rgba(255,255,255,0.95);
    font-size: 1.4rem;
    line-height: 1.7;
    margin: 0 0 2rem 0;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    color: #ffffff;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

/* Welcome Section */
.welcome-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 4rem 2rem;
    margin-bottom: 4rem;
}

.welcome-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content h2 {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.welcome-content p {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12);
}

.feature-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    width: 40px;
    text-align: center;
}

.feature-item span {
    color: #1e293b;
    font-weight: 600;
    font-size: 1rem;
}

/* Main Contact Container */
.contact-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
}

/* Contact Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e40af, #3b82f6);
    border-radius: 20px 20px 0 0;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.card-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.card-content h3 {
    color: #1e293b;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.card-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.card-content a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-content a:hover {
    color: #1e40af;
    text-decoration: underline;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.card-note {
    display: block;
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Quick Actions Section */
.quick-actions {
    margin-bottom: 4rem;
    text-align: center;
}

.quick-actions h2 {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.action-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(23,54,93,0.1);
    border: 1px solid rgba(23,54,93,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.5s ease;
}

.action-card:hover::before {
    left: 100%;
}

.action-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.action-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.action-card:hover .action-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.action-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.action-content {
    text-align: left;
}

.action-content h3 {
    color: #17365d;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.action-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Contact Form Container */
.contact-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow: 0 15px 50px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.1);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.form-header h2 {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.form-header p {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #1e293b;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.submit-button {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.submit-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;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.submit-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Map Container */
.map-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow: 0 15px 50px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.1);
    text-align: center;
}

.map-header {
    margin-bottom: 3rem;
}

.map-header h2 {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.map-header p {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.15);
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.map-wrapper {
    position: relative;
    cursor: pointer;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    border-radius: 16px;
}

.map-wrapper:hover .map-overlay {
    opacity: 1;
}

.map-overlay-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.map-overlay-content i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.map-overlay-content span {
    color: #1e293b;
    font-weight: 600;
    font-size: 0.9rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    border: 2px solid transparent;
}

.map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-main { padding: 0 1.5rem 4rem; }
    .contact-info-cards { gap: 1.5rem; }
}

@media (max-width: 992px) {
    .contact-hero { padding: 4rem 1.5rem 5rem; }
    .contact-hero h1 { font-size: 2.8rem; }
    .contact-hero p { font-size: 1.2rem; }

    .contact-form-container,
    .map-container { padding: 3rem 2rem; }

    .form-header h2,
    .map-header h2 { font-size: 2rem; }

    .contact-info-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero { padding: 3rem 1rem 4rem; }
    .contact-hero h1 { font-size: 2.4rem; }
    .contact-hero p { font-size: 1.1rem; }

    .contact-main { padding: 0 1rem 3rem; }

    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card { padding: 2rem 1.5rem; }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .card-icon i { font-size: 1.8rem; }

    .contact-form-container,
    .map-container { padding: 2.5rem 1.5rem; }

    .form-header h2,
    .map-header h2 { font-size: 1.8rem; }

    .form-grid { grid-template-columns: 1fr; gap: 1rem; }

    .map-wrapper iframe { height: 350px; }
}

@media (max-width: 600px) {
    .contact-hero { padding: 2.5rem 1rem 3.5rem; }
    .contact-hero h1 { font-size: 2rem; }
    .contact-hero p { font-size: 1rem; }

    .contact-form-container,
    .map-container { padding: 2rem 1rem; border-radius: 16px; }

    .info-card { padding: 1.5rem 1rem; }

    .card-content h3 { font-size: 1.2rem; }

    .form-header h2,
    .map-header h2 { font-size: 1.6rem; }

    .submit-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .map-wrapper iframe { height: 280px; }

    .actions-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
