:root {
    --primary-blue: #4a69bd;
    /* Matches the blue box */
    --accent-orange: #f0932b;
    /* Matches the orange button */
    --text-dark: #2c3e50;
    --text-grey: #666;
    --bg-light: #f9f9f9;
}

/* General Layout */
.contact-wrapper {
    color: var(--text-dark);
    overflow-x: hidden;
}

.contact-us-container .container,
.features-section .container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

/* Hero Section (Optional, good for spacing) */
.contact-hero {
    padding: 60px 0 40px;
    text-align: center;
}

/* Main Contact Section */
.contact-main {
    display: flex;
    flex-wrap: wrap;
    /* Makes it responsive */
    gap: 40px;
    margin-bottom: 80px;
    align-items: flex-start;
}

/* Left Side: Info */
.contact-info {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
}

.subtitle {
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.contact-info h1 {
    font-size: 3rem;
    margin: 0 0 20px 0;
    line-height: 1.1;
    color: #0c2461;
}

.contact-info p.intro-text {
    font-size: 1.1rem;
    text-align: justify;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 40px;
}

.logo-placeholder {
    margin-bottom: 30px;
}

.logo-placeholder img {
    max-height: 50px;
    /* Adjust based on your actual logo */
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-icon {
    color: #0c2461;
    font-size: 1.2rem;
    width: 40px;
    margin-top: 5px;
}

.info-content h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.info-content p {
    margin: 0;
    color: var(--text-grey);
    line-height: 1.5;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: #e1ecfc;
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-btn:hover {
    background: var(--primary-blue);
    color: white;
}

/* Right Side: Form */
.contact-form-wrapper {
    flex: 0.5;
    min-width: 320px;
    background-color: var(--primary-blue);
    color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(74, 105, 189, 0.2);
}

.contact-form-wrapper h2 {
    margin-top: 0;
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-form-wrapper p {
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
    /* Important for padding */
}

.form-control:focus {
    outline: 2px solid var(--accent-orange);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background-color: var(--accent-orange);
    color: white;
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

/* Extra Section: Features */
.features-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-bottom: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

/* Map Section */
.map-section {
    height: 400px;
    width: 100%;
    background: #ddd;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile Responsive Tweaks */
@media (max-width: 768px) {
    .contact-main {
        flex-direction: column;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-info h1 {
        font-size: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}