/* Add CSS variables at the top, matching styles.css */
:root {
    --brand-color: #0E459A;
    --brand-color: #050a30;
    --yellow-color: #FBDE4D;
    --body-color: #e9faff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #ffffff;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    background-color: #FAFBFF;
}

.logo {
    margin-bottom: 60px;
}

.logo img {
    width: 150px;
}

.content-wrapper {
    display: flex;
    gap: 80px;
    justify-content: space-between;
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Left Section Styles */
.contact-info {
    flex: 1;
    max-width: 500px;
    padding: 20px;
}

.connection-title {
    color: var(--brand-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.connection-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--brand-color);
    border-radius: 2px;
}

.main-title {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #1A1A1A;
}

.description {
    color: #666;
    margin-bottom: 50px;
    line-height: 1.8;
    font-size: 17px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.detail-item:hover {
    transform: translateX(10px);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: #FF6B6B;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.icon-circle i {
    color: white;
    font-size: 20px;
}

.detail-item:nth-child(1) .icon-circle {
    background-color: #4CAF50; /* Green for location */
}

.detail-item:nth-child(2) .icon-circle {
    background-color: #2196F3; /* Blue for phone */
}

.detail-item:nth-child(3) .icon-circle {
    background-color: #FF5722; /* Orange for email */
}

.detail-item:hover .icon-circle i {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.detail-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1A1A1A;
}

.detail-text p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Right Section - Form Styles */
.contact-form {
    flex: 1;
    max-width: 600px;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    color: var(--brand-color);
    font-size: 32px;
    margin-bottom: 35px;
    position: relative;
}

.contact-form h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--brand-color);
    border-radius: 2px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--brand-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(14, 69, 154, 0.1);
}

.phone-input {
    display: flex;
    gap: 15px;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    background: #fff;
    width: auto;
    flex-shrink: 0;
}

.country-code img {
    width: 24px;
    height: 18px;
}

.submit-btn {
    background-color: var(--brand-color);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

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

.submit-btn .arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .arrow {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        max-width: 100%;
    }
}

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

    .content-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 20px 15px;
        margin: 0 10px;
        border-radius: 20px;
    }

    .contact-info,
    .contact-form {
        max-width: 100%;
        padding: 15px 10px;
    }

    .main-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .phone-input {
        flex-direction: row;
        gap: 10px;
    }

    .country-code {
        padding: 12px;
    }

    .social-section {
        padding: 30px 15px;
        margin: 0;
    }

    .social-cards {
        gap: 15px;
        padding: 0 10px;
    }

    .social-card {
        width: 100%;
        padding: 20px 15px;
        margin: 0;
    }

    .location-section {
        margin-top: 40px;
    }

    .map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 15px 10px;
    }

    .content-wrapper {
        padding: 15px 10px;
        margin: 0 5px;
        gap: 20px;
    }

    .contact-form {
        padding: 15px 10px;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 12px;
    }

    .contact-details {
        gap: 20px;
    }

    .detail-item {
        gap: 12px;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
    }

    .location-section {
        margin: 30px 0 0;
    }

    .map-container {
        margin: 0 -10px;
    }

    .social-section {
        padding: 25px 10px;
    }

    .social-cards {
        padding: 0 5px;
    }

    .social-card {
        padding: 15px 10px;
        margin-bottom: 15px;
    }

    .phone-input {
        gap: 8px;
    }

    .country-code {
        padding: 10px;
    }
}

/* Additional adjustments for very small screens */
@media (max-width: 360px) {
    .contact-container {
        padding: 10px 5px;
    }

    .content-wrapper {
        padding: 10px;
        margin: 0;
    }

    .main-title {
        font-size: 24px;
    }

    .description {
        font-size: 14px;
    }

    .contact-form h2 {
        font-size: 22px;
    }

    .submit-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* Add these styles to your existing contact-us.css */

.social-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.social-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 350px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.social-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.social-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 80px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.social-link .arrow {
    font-size: 12px;
}

/* Location Section */
.location-section {
    max-width: 100%;
    margin: 60px 0 0;
    padding: 0;
}

.location-section h2 {
    color: var(--brand-color);
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 0;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .social-cards {
        gap: 20px;
    }

    .social-card {
        width: calc(50% - 20px);
    }
}

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

    .social-card {
        width: 100%;
        max-width: 400px;
    }

    .location-section {
        margin-top: 40px;
    }

    .map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .social-card {
        padding: 20px;
    }

    .social-card h3 {
        font-size: 20px;
    }

    .social-card p {
        font-size: 14px;
        min-height: auto;
    }

    .location-section h2 {
        font-size: 24px;
    }

    .map-container {
        height: 300px;
    }
}

.footer {
    margin-top: 0;
}
