:root {
    --primary-dark: #0f0c29;
    --secondary-dark: #302b63;
    --accent-blue: #24243e;
    --highlight-pink: #e83e8c;
    --text-light: #f4f4f4;
    --text-secondary: #c0c0c0;
    --font-headings: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Hero Section --- */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    padding: 2rem;
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo {
    max-width: 350px;
    margin-bottom: 2rem;
}

h1 {
    font-family: var(--font-headings);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.cta-button {
    font-family: var(--font-headings);
    text-decoration: none;
    background: linear-gradient(90deg, #8A2387, #E94057, #F27121);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(233, 62, 140, 0.2);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--highlight-pink);
    color: var(--highlight-pink);
}

.cta-button.secondary:hover {
    background-color: var(--highlight-pink);
    color: #fff;
    box-shadow: 0 5px 15px rgba(233, 62, 140, 0.3);
}

/* --- Services Section --- */
.services-section {
    padding: 6rem 2rem;
    background-color: var(--accent-blue);
    text-align: center;
}

h2 {
    font-family: var(--font-headings);
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--secondary-dark);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    border: 1px solid #4a4e69;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--highlight-pink);
}

.service-card i {
    font-size: 3rem;
    color: var(--highlight-pink);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-headings);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* --- Why Us Section --- */
.why-us-section {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
}

.why-us-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-us-content ul {
    list-style: none;
    text-align: left;
    margin: 2rem 0 3rem 0;
}

.why-us-content li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.why-us-content i {
    color: var(--highlight-pink);
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* --- Footer --- */
.footer {
    background-color: var(--primary-dark);
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid var(--accent-blue);
    color: var(--text-secondary);
}

.footer a {
    color: var(--highlight-pink);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--text-light);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .services-section, .why-us-section, .footer {
        padding: 4rem 1rem;
    }
}