/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

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

.navbar-menu .nav-link {
    margin: 0 15px;
    color: #fff;
    transition: color 0.3s;
}

.navbar-menu .nav-link:hover, .nav-link.active {
    color: #ff4500;
}

/* Contact Hero Section */
.contact-hero {
    text-align: center;
    padding: 100px 20px;
    background: url('https://via.placeholder.com/1500x600') no-repeat center center/cover;
    color: #fff;
}

.hero-content .hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 50px 20px;
    background: #f1f1f1;
}

.section-heading {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form .btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.contact-form .btn:hover {
    background: #333;
}

/* Contact Details Section */
.contact-details {
    padding: 50px 20px;
    background: #fff;
    text-align: center;
}

.details-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.details {
    flex: 1;
    max-width: 300px;
}

.details h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.details a {
    color: #000;
    text-decoration: none;
}

.details a:hover {
    text-decoration: underline;
}

/* Map Section */
.map-section {
    padding: 50px 20px;
    background: #f8f9fa;
    text-align: center;
}

.map-placeholder {
    height: 300px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: #fff;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 15px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}
