:root {
    /* New Brand Palette - Based on Screenshots */
    --brand-pink: #E91E63;
    /* Hot Pink */
    --brand-purple: #8E24AA;
    /* Deep Purple */
    --brand-gradient: linear-gradient(135deg, #D500F9, #F50057);
    /* Purple to Pink */
    --hero-bg-gradient: linear-gradient(135deg, #C2185B, #6A1B9A);
    /* Darker Pink/Purple for Hero BG */

    /* Light Theme Colors */
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    /* Very light gray */
    --text-primary: #111827;
    /* Near black */
    --text-secondary: #4b5563;
    /* Dark gray */
    --text-light: #9ca3af;
    /* Light gray */

    /* Components */
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --btn-radius: 8px;
    /* Slightly less rounded than pill */

    /* Layout */
    --container-padding: 2rem;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

/* Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-pink {
    color: var(--brand-pink);
}

.bg-light {
    background-color: var(--bg-light);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--btn-radius);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    font-size: 0.95rem;
    white-space: nowrap;
    /* Prevent wrapping */
}

.btn-primary {
    background: var(--brand-pink);
    color: #fff;
    box-shadow: 0 4px 14px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    background-color: #D81B60;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #fff;
    color: var(--brand-pink);
    border: 1px solid var(--brand-pink);
}

.btn-cta-hero {
    background: #fff;
    color: var(--brand-purple);
    font-weight: 700;
}

/* Navbar */
.navbar {
    background: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 55px;
    /* Smaller logo as requested (was 90px inline) */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:not(.btn):hover {
    color: var(--brand-pink);
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-primary) !important;
}

/* Hero Section */
.hero-section {
    background: var(--hero-bg-gradient);
    color: #fff;
    padding: 4rem 0 6rem;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
}

.hero-check {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-check span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Calculator Card */
.calculator-card {
    background: #fff;
    color: var(--text-primary);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.calc-group {
    margin-bottom: 1.2rem;
}

.calc-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.input-wrapper {
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 0.75rem;
    background: #f9fafb;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    outline: none;
}

.currency-symbol {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.calc-types {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.radio-hidden {
    display: none;
}

.calc-type-btn {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-secondary);
}

.radio-hidden:checked+.calc-type-btn {
    border-color: var(--brand-purple);
    color: var(--brand-purple);
    background: rgba(142, 36, 170, 0.05);
}

/* Stats Ribbon */
.stats-ribbon {
    background: #fff;
    padding: 2rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.stat-item h3 {
    font-size: 1.5rem;
    color: var(--brand-purple);
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Services / Niches */
.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-heading p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.tag-pill {
    display: inline-block;
    background: rgba(233, 30, 99, 0.1);
    color: var(--brand-pink);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: rgba(233, 30, 99, 0.1);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-pink), var(--brand-purple));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Steps Section */
.steps-section {
    padding: 5rem 0;
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

/* Connecting line (desktop only) */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 100px;
    right: 100px;
    height: 2px;
    background: #f3f4f6;
    z-index: 0;
}

.step-item {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--brand-purple);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 4px solid #fff;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(142, 36, 170, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-purple);
    font-size: 1.5rem;
    margin: 1.5rem auto 1rem;
}

/* Footer & Contact Tweaks for Light Mode */
.contact-section {
    background-color: var(--bg-light);
    color: var(--text-primary);
}

.contact-text h2 {
    background: none;
    background-clip: unset;
    -webkit-text-fill-color: initial;
    color: var(--text-primary);
}

/* Improved Contact Form */
.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Softer, deeper shadow */
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    background: #f8fafc;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-pink);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-check {
        justify-content: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid::before {
        display: none;
    }

    .nav-links {
        display: none;
        /* Mobile menu needed */
    }
}

/* --- Footer Styles (User Request) --- */
.footer {
    background: #111827;
    color: white;
    padding: 4rem 0 2rem;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.legal-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: white;
    text-decoration: underline;
}

.copyright-text {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.6;
    border-top: 1px solid #374151;
    padding-top: 2rem;
    width: 100%;
}

/* --- Improved Range Sliders (User Request: Thicker & Good Looking) --- */
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    margin: 15px 0;
    background: transparent;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 12px;
    cursor: pointer;
    background: #e5e7eb;
    border-radius: 25px;
    transition: 0.2s;
}

input[type=range]::-webkit-slider-thumb {
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background: var(--brand-pink);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    margin-top: -8px;
    /* center thumb */
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.4);
    transition: transform 0.2s;
    border: 3px solid white;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

/* Firefox */
input[type=range]::-moz-range-track {
    width: 100%;
    height: 12px;
    cursor: pointer;
    background: #e5e7eb;
    border-radius: 25px;
}

input[type=range]::-moz-range-thumb {
    height: 28px;
    width: 28px;
    border: 3px solid white;
    border-radius: 50%;
    background: var(--brand-pink);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.4);
}

/* --- Scroll Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}