/* Reset & Base */
body {
    font-family: 'Playfair Display', serif;
    color: #222;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-subtitle-br {
    display: none;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
}

/* --- Vision Section --- */
.vision-section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
    background-color: #f9f9f9;
}

.vision-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

.vision-title-br {
    display: none;
}


.vision-lead {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    color: #555;
}

.vision-features {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.vision-block {
    background: #fff;
    padding: 30px;
    flex: 1 1 calc(33% - 20px);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.vision-block:hover {
    transform: translateY(-5px);
}

.vision-block h3 {
    margin-top: 0;
    color: #333;
}

.vision-block p {
    color: #666;
}

/* --- Services CTA --- */
.services-link-block {
    text-align: center;
    margin-top: 60px;
}

.services-intro {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

.services-link-button {
    background-color: #003366;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.services-link-button:hover {
    background-color: #00509e;
}

/* --- Contact CTA Block --- */
.contact-cta-block {
    background-color: #002244;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #ffcc00;
    color: #002244;
    padding: 14px 30px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e6b800;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .vision-features {
        flex-direction: column;
        gap: 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-subtitle-br{
        display: none;
    }
}

@media (max-width: 600px) {
    .hero {
        height: 70vh;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle-br {
        display: inline;
    }

    .vision-section {
        padding: 60px 15px;
    }

    .vision-title-br{
        display: inline;
    }

    .vision-section h2 {
        font-size: 1.5rem;
    }

    .vision-block {
        padding: 20px;
    }

    .cta-text {
        font-size: 1.1rem;
    }
}