body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

/* HEADER */
.main-header {
    background: #4A5A63;
    color: white;
}

.top-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 30px;
}

.logo {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    background: white;
    padding: 6px 10px;
    border-radius: 6px;
    display: block;
}

.top-bar {
    display: flex;
    align-items: center;
    padding: 12px 30px;
    gap: 15px;
}

/* NAV */
.nav-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    background: #3b4a52;
    padding: 12px;
}

.nav-bar a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.nav-bar a:hover {
    color: #d94b7b;
}

/* HERO */
.hero {
    height: 450px;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-box {
    color: white;
    text-align: center;
    z-index: 2;
}

.hero h1 {
    font-size: 42px;
}

.tagline {
    font-size: 18px;
}

.cta-btn {
    background: #8B1C4A;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card.highlight {
    background: #8B1C4A;
    color: white;
}

/* ABOUT */
.about-section {
    display: flex;
    flex-wrap: wrap;
    padding: 60px;
    gap: 40px;
    background: #f5f5f5;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* FUTURE */
.future-section {
    height: 300px;
    background: url("assets/images/future.jpg") center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.future-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.future-content {
    color: white;
    text-align: center;
    z-index: 2;
}

/* WHY */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: auto;
}

.why-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
}

/* CONTACT */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-form {
    flex: 1;
}

.contact-info {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
}

/* FORM */
input, textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
}

button {
    background: #8B1C4A;
    color: white;
    border: none;
    padding: 10px;
}

/* GENERAL */
.section {
    padding: 60px;
    text-align: center;
}

footer {
    background: #4A5A63;
    color: white;
    padding: 10px;
    text-align: center;
}
