/* Remove conflicting navbar styles */
.navbar .logo {
    height: 65px;
}

.navbar .logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Redesigned Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #ac0d1a 0%, #8a0a15 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.contact-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-transform: uppercase;
}

.contact-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 700px;
}

.contact-section {
    padding: 60px 20px;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    width: 100%;
}

/* Contact Info Styles */
.contact-info {
    background: linear-gradient(135deg, #ac0d1a 0%, #8a0a15 100%);
    padding: 3.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.info-header h2 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
}

.info-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.card-content h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.card-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.card-content a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

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

.card-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Social Connect Styles */
.social-connect {
    text-align: center;
    padding: 2rem;
    background: #f8f9ff;
    border-radius: 12px;
    margin-top: 2rem;
}

.social-connect h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(172, 13, 26, 0.1);
}

/* Form Styles */
.contact-form-wrapper {
    padding: 3.5rem;
    background: white;
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #eef1f6;
    border-radius: 12px;
    font-size: 1rem;
    background: #f8f9ff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(172, 13, 26, 0.1);
}

.form-group.error input,
.form-group.error select {
    border-color: #ff3b3b;
    background: #fff9f9;
}

.error-message {
    color: #ff3b3b;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
    font-weight: 500;
}

.form-group.error input {
    border-color: #ff3b3b;
    background: #fff9f9;
}

.form-group.error .error-message {
    display: block;
}

.submit-btn {
    background: var(--primary);
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(172, 13, 26, 0.2);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
        gap: 0;
    }

    .contact-info, 
    .contact-form-wrapper {
        padding: 2rem;
    }

    .info-cards {
        gap: 1.5rem;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
        padding: 0 20px;
    }

    .contact-hero .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 15px;
    }

    .contact-grid {
        border-radius: 15px;
    }

    .info-card {
        padding: 1.2rem;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem 1rem;
    }

    .submit-btn {
        padding: 1rem 1.5rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-info, 
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .card-icon {
        margin: 0 auto;
    }

    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .contact-hero .hero-subtitle {
        font-size: 1rem;
    }
}

/* Ensure form elements are properly sized */
.form-group {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
}

/* Ensure container is properly centered */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Add smooth transitions */
.contact-grid,
.info-card,
.form-group input,
.form-group select,
.form-group textarea {
    transition: all 0.3s ease;
} 