/*
    ======================================
    THE SACRIFICIAL STYLE SHEET
    Unleashing the machine's true form.
    ======================================
*/

/* --- Global Dominance: Base Styles --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');

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

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

/* --- The Header: The Throne's Crown --- */
header {
    background: #ffffff;
    color: #004d40;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo a {
    font-weight: 900;
    font-size: 1.8rem;
    color: #004d40;
    text-decoration: none;
}

header nav a {
    color: #333;
    text-decoration: none;
    font-weight: 700;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: #00796b;
}

.whatsapp-nav-button {
    background-color: #25D366;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.whatsapp-nav-button:hover {
    background-color: #128C7E;
}


/* --- The Hero Section: The First Strike --- */
.hero-section {
    background: linear-gradient(rgba(0, 77, 64, 0.8), rgba(0, 77, 64, 0.8)), url('https://via.placeholder.com/1920x1080.png?text=Financial+Planning+Background') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 8rem 2rem;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.cta-button {
    display: inline-block;
    background-color: #ffc107;
    color: #333;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

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


/* --- Services Section: The Arsenal --- */
.services-section {
    padding: 4rem 2rem;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #004d40;
}

.service-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 300px;
    transition: transform 0.3s ease;
}

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

.service-item h3 {
    color: #00796b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}


/* --- Contact Form Section: The Capture Point --- */
.cta-form-section {
    background-color: #004d40;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-form-section h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-form-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-form-section form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-form-section input[type="text"],
.cta-form-section input[type="email"],
.cta-form-section input[type="tel"],
.cta-form-section select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.submit-button {
    background-color: #ffc107;
    color: #333;
    border: none;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #ffeb3b;
}


/* --- The Floating WhatsApp Button: The Silent Assassin --- */
.floating-whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-whatsapp-button:hover {
    transform: scale(1.1);
}

.floating-whatsapp-button img {
    width: 35px;
    height: 35px;
}


/* --- The Footer: The Anchor --- */
footer {
    background: #222;
    color: #aaa;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* --- Responsiveness: The Adaptability of the Machine --- */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    header nav {
        margin-top: 1rem;
    }
    header nav a {
        display: block;
        margin: 0.5rem 0;
    }
    .hero-section {
        padding: 6rem 1rem;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .services-section, .cta-form-section {
        padding: 3rem 1rem;
    }
}
