:root {
    /* Colors extracted from your image */
    --primary-teal: #148f9f;   
    --dark-teal: #263f4d;      
    --light-teal: #48c9b0;     
    --white: #ffffff;
    --light-gray: #f4f7f6;
    --text-color: #333;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-teal);
    gap: 10px;
}

.logo i {
    font-size: 2rem;
    color: var(--primary-teal);
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.logo span {
    font-size: 0.9rem;
    color: var(--primary-teal);
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-teal);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-teal);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-image: url('../assets/bg-image.jpg'); 
    background-size: cover;
    -webkit-background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 143, 159, 0.6); 
    /*
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    z-index: 1;
    */
}

.hero-content {
    position: relative;
    z-index: 2; 
    max-width: 800px;
    padding: 0 2rem;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-teal);
}

.btn-primary:hover {
    background: var(--light-teal);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-teal);
    transform: translateY(-3px);
}

/* General Sections */
.section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--dark-teal);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Services */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--dark-teal);
    margin-bottom: 1rem;
}

/* About */
.about {
    background: var(--white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
}

.features-list {
    list-style: none;
    margin-top: 1.5rem;
}

.features-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.features-list i {
    color: var(--primary-teal);
    margin-right: 10px;
}

.about-stats {
    flex: 1;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.stat-box {
    background: var(--primary-teal);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    min-width: 150px;
}

.stat-box .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

/* Contact */
.contact {
    background: var(--dark-teal);
    color: var(--white);
}

.contact .section-title h2, 
.contact .section-title p {
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light-teal);
}

/* Map Section - LAST SECTION */
.location {
    background: var(--white);
}

.map-container {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 4px solid var(--primary-teal);
}

/* Footer */
footer {
    background: #1a2b35;
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

/* Mobile Menu */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark-teal);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 2rem;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .burger {
        display: block;
    }

    .hero h2 {
        font-size: 2.5rem;
    }
    
    .about-container {
        flex-direction: column;
    }
}
