/* Modern Contact Page Styles */
:root {
    --primary-color: #0A2342;      /* Kept dark blue for primary */
    --secondary-color: #2CA4D6;    /* Kept blue for secondary */
    --accent-color: #2CA4D6;       /* Changed to match logo's red color */
    --text-color: #333333;         /* Kept dark gray for text */
    --background-color: #F4F4F4;   /* Kept light gray for background */
    --white: #FFFFFF;              /* White */
    --light-gray: #EEEEEE;         /* New light gray for container backgrounds */
    --header-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Added shadow for header definition */
}

.FutureTense {
	font-family: FutureTense;
    font-weight: 100;
    text-transform: lowercase;
}

main {
    width: auto;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    line-height: 1.6;
    color: var(--text-color);
}

header {
    background-color: var(--white); /* Changed from primary-color to white */
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Added subtle shadow for definition */
}

.site-logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.site-logo a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.2;
}

.logo-text {
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.logo-subtext {
    color: var(--accent-color);
    font-size: 0.8rem;
    margin-top: -5px;
}

header nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

header nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav ul li {
    margin: 0 15px;
    font-size: 1.30rem;
}

header nav ul li a {
    color: var(--primary-color); /* Changed from white to primary color */
    text-decoration: none;
    font-weight: 100;
    transition: color 0.3s ease;
    position: relative;
}

.site-logo img {
    max-height: 60px; /* Adjust based on your logo size */
    width: auto;
}

header nav ul li a:hover, header nav ul li a.active {
    color: var(--accent-color);
}

header nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.contact-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 5px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-section h1 {
    color: var(--primary-color);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 100;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-section h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.contact-content {
    text-align: center;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.contact-group {
    background-color: var(--background-color);
    padding: 20px;
    border-radius: 8px;
}

.contact-group h2 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.contact-group p, .contact-link {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

.cta-section {
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #FF4F4F;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

footer {
    text-align: center;
    padding: 20px;
    background-color: var(--white); /* Changed from primary-color to white */
    color: var(--primary-color); /* Changed text color */
    border-top: 1px solid rgba(0, 0, 0, 0.1); /* Added subtle top border */
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
}

.phone-group .phone-numbers {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.phone-group .phone-numbers .contact-link {
    margin-bottom: 0;
}

@media (max-width: 1168px) {
    .phone-group .phone-numbers {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .site-logo {
        position: static;
        text-align: center;
        margin-bottom: 10px;
        transform: none;
    }

    header {
        flex-direction: column;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .contact-section {
        margin: 20px 15px;
        padding: 25px;
    }

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

    .contact-group p, .contact-link {
        font-size: 1rem;
    }
}

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

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

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.footer-img {
    max-height: 45px;
    width: auto;
    margin-bottom: 10px;
}

.accent-text {
    color: var(--accent-color);
    font-weight: 600;
}

.footer-accent-text {
    color: var(--primary-color);
    font-weight: 600;
}
