/* General Styles */
body {
    font-family: 'Roboto', sans-serif; /* Assuming Roboto based on original site's likely font */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

h1, h2, h3 {
    color: #000; /* Black headings, adjust if needed */
}

a {
    color: #ff9900; /* Primary color from original site */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #ff9900; /* Primary color */
    color: #fff; /* White text */
    border: 1px solid #ff9900;
}

.btn-primary:hover {
    background-color: #e68a00; /* Darker shade for hover */
    text-decoration: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header Styles */
.header {
    background-color: #000; /* Black header background */
    padding: 10px 0;
    color: #fff;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px; /* Adjust as needed */
    /* Placeholder style if logo is missing */
    background-color: #555;
    padding: 5px;
    border: 1px solid #777;
    min-width: 100px; /* Ensure placeholder is visible */
    min-height: 40px;
    display: block; /* Ensure layout consistency */
}

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

.main-nav li {
    margin-left: 20px;
}

.main-nav a {
    color: #fff;
    font-weight: bold;
    padding: 5px 10px;
    border: 1px solid transparent; /* For hover effect */
}

.main-nav a:hover {
    border-color: #ff9900; /* Primary color border on hover */
    text-decoration: none;
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    /* Placeholder background if image missing */
    background-color: #444;
    min-height: 300px; /* Ensure placeholder is visible */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.hero-content {
    position: relative; /* To stay above overlay */
    z-index: 1;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Form Section */
.form-section {
    padding: 50px 0;
    background-color: #f4f4f4; /* Light gray background */
}

.form-container {
    background-color: #333; /* Dark background for form area */
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px; /* Limit form width */
    margin: 0 auto;
}

.form-text {
    text-align: center;
    margin-bottom: 30px;
}

.form-text h2 {
    color: #ff9900; /* Primary color for heading */
}

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

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #555;
    background-color: #fff; /* White input background */
    color: #333;
    border-radius: 4px;
    box-sizing: border-box;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}

.checkbox-group label a {
    color: #ccc; /* Lighter color for privacy link */
}

.captcha-group {
    /* Basic styling for captcha placeholder */
}

.captcha-image {
    background-color: #ddd;
    color: #333;
    padding: 10px;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 4px;
    font-weight: bold;
}

.btn-submit {
    background-color: #ff9900;
    color: #fff;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 4px;
}

.btn-submit:hover {
    background-color: #e68a00;
}

/* Content Sections */
.content-sections {
    padding: 40px 0;
}

.content-sections section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.content-sections section:last-child {
    border-bottom: none;
}

.content-sections h2 {
    margin-bottom: 20px;
}

.content-sections h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-sections img {
    display: block;
    margin: 20px auto; /* Center images */
    max-width: 600px; /* Limit image width */
    /* Placeholder style */
    background-color: #eee;
    border: 1px solid #ccc;
    min-height: 200px;
}

.contact-info-map {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-details,
.map-placeholder {
    flex: 1;
    min-width: 280px;
}

.map-placeholder {
    background-color: #eee;
    border: 1px solid #ccc;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #666;
}

/* Footer Styles */
.footer {
    background-color: #000;
    color: #ccc;
    padding: 20px 0;
    font-size: 0.9em;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.footer-nav li {
    margin-left: 15px;
}

.footer-nav a {
    color: #ccc;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 50px; /* Adjust size as needed */
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
        justify-content: space-between; /* Keep logo and hamburger apart */
    }

    .main-nav {
        width: 100%; /* Take full width */
        order: 3; /* Move below logo */
    }

    .main-nav ul {
        display: none; /* Hide links by default */
        flex-direction: column;
        width: 100%;
        background-color: #333; /* Background for mobile menu */
        position: absolute;
        left: 0;
        top: 70px; /* Position below header */
        padding: 10px 0;
        z-index: 100;
    }

    .main-nav ul.active {
        display: flex; /* Show when active */
    }

    .main-nav li {
        margin: 10px 20px;
        text-align: center;
    }

    .hamburger {
        display: block; /* Show hamburger */
        order: 2; /* Place after logo */
    }

    .hero h1 {
        font-size: 2em;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav ul {
        margin-top: 10px;
        justify-content: center;
    }

    .footer-nav li {
        margin: 0 10px;
    }
}

