:root {
    --navy-deep: #001f2f;
    --navy-brand: #00334E;
    --dark-green: #0a261a;
    --accent-green: #2e8b57; 
    --pearl-grey: #e9ecef; 
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* { box-sizing: border-box; margin: 0; padding: 0; scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    /* This makes the whole page the same professional Navy gradient */
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-brand) 100%);
    background-attachment: fixed; /* Keeps the color smooth as you scroll */
    color: var(--white);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 25px; }

/* --- HERO SECTION --- */
.hero {
    padding: 100px 0 60px;
    text-align: center;
}

.hero-logo {
    height: 180px;
    margin-bottom: 30px;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.5));
    transition: var(--transition);
}

.hero h1 { 
    font-size: clamp(3rem, 8vw, 5rem); 
    font-weight: 800; 
    line-height: 1.1;
    margin-bottom: 50px;
    color: var(--white);
}

.highlight { 
    color: var(--accent-green);
    text-shadow: 0 0 20px rgba(46, 139, 87, 0.5);
}

.btn-main {
    background: linear-gradient(to right, var(--dark-green), var(--accent-green));
    color: var(--white);
    padding: 24px 60px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: var(--transition);
}

/* --- SERVICES SECTION (Now seamless) --- */
.services { 
    padding: 80px 0; 
}

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.card-bubbly {
    background: var(--pearl-grey);
    padding: 55px 40px;
    border-radius: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: var(--transition);
    color: var(--navy-brand); /* Keeps text dark for readability on grey */
}

.card-bubbly:hover { 
    transform: translateY(-15px); 
    background: var(--white);
}

.icon-circle {
    font-size: 50px;
    background: var(--white);
    width: 90px; height: 90px;
    line-height: 90px;
    margin: 0 auto 25px;
    border-radius: 30px;
}

/* --- CONTACT SECTION (Now seamless) --- */
.contact-section {
    padding: 100px 0 120px;
}

.glass-form-container {
    background: var(--white);
    color: var(--navy-brand); /* Keeps text dark inside the form */
    border-radius: 60px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.info-pill {
    background: var(--pearl-grey);
    padding: 15px 25px;
    border-radius: 20px;
    margin-top: 15px;
    font-weight: 600;
    display: block;
    width: fit-content;
}

.bubbly-form input, .bubbly-form textarea {
    width: 100%;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 20px;
    border: 2px solid #f0f4f8;
    background: #fbfcfd;
    font-family: inherit;
}

.btn-submit-bubbly {
    background: var(--navy-brand);
    color: white;
    width: 100%;
    padding: 22px;
    border-radius: 25px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s;
}

/* --- FOOTER --- */
footer { 
    background: rgba(0, 0, 0, 0.2); /* Slightly darker transparent footer */
    color: rgba(255,255,255,0.5); 
    text-align: center; 
    padding: 60px 0; 
}

@media (max-width: 768px) {
    .glass-form-container { grid-template-columns: 1fr; padding: 40px 25px; }
    .hero h1 { font-size: 2.5rem; }
}