/* --- 1. Global Styles & Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root {
    --primary-color: #0a4a7d; /* A nice professional blue */
    --secondary-color: #007bff; /* A brighter blue for buttons */
    --text-color: #333;
    --light-gray: #f4f4f4;
    --white: #ffffff;
    --header-height: 80px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    /* Add padding to bottom to avoid footer covering content */
    padding-bottom: 60px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

main {
    /* Add padding to top to avoid header covering content */
    padding-top: var(--header-height);
    min-height: 70vh; /* Ensures footer is pushed down */
}

a {
    text-decoration: none;
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* --- 2. Header & Navigation --- */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    height: var(--header-height);
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 60px; /* Adjust as needed */
    width: auto;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 20px;
}

.main-nav a {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 700;
    padding: 10px 5px;
    position: relative; /* For the animation */
    transition: color 0.3s ease;
}

/* Nice menu animation */
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* --- 3. Mobile Menu --- */
.hamburger-menu {
    display: none; /* Hidden on desktop */
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 99;
    
    /* Hide it by default */
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.mobile-nav li {
    margin: 10px 0;
}

.mobile-nav a {
    color: var(--text-color);
    font-size: 20px;
    font-weight: 700;
}

.hero-image-banner {
    width: 100%;
    line-height: 0; 
}

.hero-image-banner img {
    width: 100%;
    height: auto; 
    display: block;
}

.hero {
    background: var(--light-gray);
    padding: 60px 0;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.contact-page {

    padding: calc(var(--header-height) + 40px) 0 40px 0;
}

.contact-page h1 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-page p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.contact-info h3,
.contact-form-container h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.info-item p {
    text-align: left;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.4;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

#form-status {
    margin-top: 15px;
    font-weight: 700;
}

.quick-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
}

.contact-toggle-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-toggle-button:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.quick-contact-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.quick-contact-menu.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.quick-contact-menu .menu-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.quick-contact-menu .menu-item:hover {
    transform: scale(1.1);
}

.menu-item.facebook { background: #3b5998; }
.menu-item.maps { background: #ea4335; }
.menu-item.call { background: #4caf50; }

.site-footer {
    background: var(--text-color);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    z-index: 100;
}

@media (max-width: 768px) {
    .main-nav {
        display: none; 
    }

    .hamburger-menu {
        display: block; 
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr; 
    }
}


