/* Color Variables */
:root {
    --primary-light-blue: #4FC3F7; /* Main light blue color */
    --primary-dark-blue: #0288D1;  /* Darker blue for contrast */
    --accent-color: #FFA726;       /* Orange accent color */
    --light-gray: #f5f7f9;         /* Light background */
    --text-dark: #333333;          /* Dark text */
    --text-light: #ffffff;         /* Light text */
    --footer-bg: #0277BD;          /* Darker blue for footer */
}

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

body {
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
}

/* Top Bar Styles */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: var(--primary-dark-blue);
    color: var(--text-light);
    font-size: 14px;
}

.top-bar .left span {
    margin-right: 20px;
}

.top-bar .left i {
    margin-right: 5px;
}

.top-bar .left a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar .left a:hover {
    color: var(--accent-color);
}

.social-media a {
    color: var(--text-light);
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: var(--accent-color);
}

/* Header and Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--text-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-dark-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-dark-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.contact {
    display: flex;
    align-items: center;
    list-style: none;
}

.contact-btn {
    background-color: var(--primary-light-blue);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--primary-dark-blue);
}


/* Contact Section Styles */
.contact-section {
    padding: 60px 5%;
    background-color: var(--light-gray);
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.contact-header h2 {
    color: var(--primary-light-blue);
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.contact-header h1 {
    color: var(--primary-dark-blue);
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.contact-header h1::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary-light-blue);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.contact-header p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.contact-card {
    background-color: var(--primary-dark-blue);
    color: var(--text-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-card h3 {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--primary-light-blue);
}

.contact-card h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-card h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-light-blue);
    bottom: 0;
    left: 0;
}

.contact-card p {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.contact-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-light-blue);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-light-blue);
}

button[type="submit"] {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FF9800;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

button[type="submit"]:hover {
    background-color: #ffab2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

button[type="submit"]:active {
    transform: translateY(0);
    background-color: #FF9800;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

button[type="submit"]:focus {
    outline: 2px solid #FF9800;
    outline-offset: 2px;
}

button[type="submit"]:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.message-container {
    width: 100%;
    margin: 20px 0;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #0589d0;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.contact-form .social-media {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-form .social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    color: var(--primary-dark-blue);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-form .social-media a:hover {
    background-color: var(--primary-dark-blue);
    color: var(--text-light);
    transform: translateY(-3px);
}

#success-message {
    padding: 10px;
    border-radius: 4px;
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid #4CAF50;
}

/* Footer Styles */
.footer {
    background-color: var(--footer-bg);
    color: var(--text-light);
    padding: 50px 5% 30px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-column p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer .social-media {
    margin-top: 20px;
}

.footer .social-media a {
    color: var(--text-light);
    margin-right: 15px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer .social-media a:hover {
    color: var(--accent-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}


/* Responsive Design */
@media screen and (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 10px;
    }
    
    header {
        flex-direction: column;
        padding: 15px;
    }
    
    .nav-links {
        margin: 15px 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info, 
    .contact-form {
        width: 100%;
    }
    
    .footer-container {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .nav-links li {
        margin: 5px 10px;
    }
    
    .contact-form, 
    .contact-card {
        padding: 25px;
    }
    
    .contact-header h1 {
        font-size: 1.8rem;
    }
}