/* Color Palette Custom Variables */
:root {
    --brand-red: #A30000;      
    --brand-gold: #FFCC00;     
    --brand-dark: #1E252B;     
    --bg-light: #F4F6F8;       
    --white: #FFFFFF;
    --text-muted: #666666;
    --border-color: #E2E8F0;
    --transition: all 0.3s ease;
}

/* Section Layout */
.contact-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-light);
    min-height: 100vh;
    padding-bottom: 60px;
    margin-top: 5%; /* To account for fixed navbar height */
}

/* Header Banner */
.contact-header {
    background-color: var(--brand-dark);
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
    border-bottom: 4px solid var(--brand-red);
}

.contact-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.contact-header p {
    font-size: 1.1rem;
    color: var(--border-color);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Main Container Grid */
.contact-container {
    max-width: 1200px;
    margin: -40px auto 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 30px;
    margin-top: 10%;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }
}

/* Left Side: Info Cards */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-left: 4px solid transparent;
    transition: var(--transition);
}

.info-card:hover {
    border-left-color: var(--brand-red);
    transform: translateY(-2px);
}

.info-card .icon-box {
    background-color: var(--brand-red);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--brand-dark);
    font-weight: 600;
}

.info-text p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.info-text p a {
    color: var(--brand-red);
    text-decoration: none;
    transition: var(--transition);
}

.info-text p a:hover {
    color: var(--brand-dark);
}

/* Right Side: Contact Form */
.contact-form-wrapper {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h2 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 1.6rem;
    color: var(--brand-dark);
    font-weight: 700;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    background-color: #FAFAFA;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--brand-red);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(163, 0, 0, 0.1);
}

/* Submit Button styled with Red/Gold accents */
.submit-btn {
    background-color: var(--brand-red);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    background-color: var(--brand-dark);
    color: var(--brand-gold);
}

/* Sticky Green Chat Button */
.sticky-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #10DC60; /* Kept the distinct neon green chat circle from original image */
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(16, 220, 96, 0.4);
    transition: var(--transition);
    z-index: 1000;
}

.sticky-chat-btn:hover {
    transform: scale(1.1);
}