:root {
    --primary: #2D79C7;
    --dark: #0F172A;
    --accent: #FFD700;
    --text-muted: #64748B;
    --white: #ffffff;
    --bg-light: #F8FAFC;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg-light); color: var(--dark); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 0; }
.text-center { text-align: center; }
.text-blue { color: var(--primary); }
.text-white { color: white; }
.bg-white { background: white; }
.bg-dark { background: var(--dark); }

/* Buttons */
.btn { display: inline-block; padding: 12px 28px; border-radius: 12px; text-decoration: none; font-weight: 700; transition: 0.3s; cursor: pointer; border: none; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(45, 121, 199, 0.3); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.full-width { width: 100%; text-align: center; }

/* Navbar */
.navbar { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); padding: 1rem 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; color: var(--primary); }
.logo img { height: 40px; }
.nav-links { display: flex; list-style: none; align-items: center; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 500; font-size: 0.95rem; }

/* Hero Section */
.hero { padding: 80px 0; }

.hero {
    background: radial-gradient(circle at top right, rgba(45, 121, 199, 0.05), transparent);
}
.grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.badge { display: inline-block; background: #E0F2FE; color: var(--primary); padding: 6px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 20px; }
h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 24px; font-weight: 800; }
.hero-btns {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-cta {
    padding: 14px 24px;
    font-size: 1rem;
    flex: 1; /* Makes them equal width on mobile if needed */
    text-align: center;
    white-space: nowrap;
}

/* Specific Mobile Optimization */
@media (max-width: 600px) {
    h1 {
        font-size: 2.2rem; /* Shorter for mobile readability */
        min-height: 80px; /* Prevents layout jump while typing */
    }

    .hero-btns {
        flex-direction: column; /* Stacked but controlled */
        width: 100%;
    }

    .btn-cta {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* The blinking cursor effect for the typewriter */
#typewriter::after {
    content: "|";
    animation: blink 0.7s infinite;
    color: var(--primary);
}

.text-main {
    font-size: 5rem;
    font-weight: 800;
    color: var(--dark);
}

.text-blue {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary);
}

/* The Cursor Styling */
.cursor {
    display: inline-block;
    width: 2px;
    background-color: var(--primary);
    margin-left: 4px;
    animation: blink 0.8s infinite;
    vertical-align: middle;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Mobile scaling for the contrasting sizes */
@media (max-width: 768px) {
    .text-main { font-size: 3rem; line-height: 1; }
    .text-blue { font-size: 2rem; margin-top: 10px; display: inline-block; }
}

/* Morphing Blob Animation */
.morph-blob {
    width: 450px; height: 450px; background: var(--primary);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 8s ease-in-out infinite; overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.hero-img { width: 100%; height: 100%; object-fit: cover; }
@keyframes morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

/* Cards & Grid */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 50px; }
.glass-card { background: white; padding: 50px; border-radius: 24px; border: 1px solid #E2E8F0; transition: 0.4s; }
.glass-card:hover { transform: translateY(-10px); border-color: var(--primary); }
.card-icon { font-size: 3rem; margin-bottom: 20px; }



.about-refined {
    background: #ffffff; /* Clean white background to contrast with the light blue hero */
}

.lead-text {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.15rem;
    color: var(--text-muted);
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    background: #E0F2FE; /* Very light blue */
    color: var(--primary); /* Theme Blue */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: 0.3s ease;
}

.glass-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #F1F5F9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Subtle Blue Top-Border on hover */
.glass-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.glass-card:hover::before {
    transform: scaleX(1);
}

.glass-card:hover .card-icon-wrapper {
    background: var(--primary);
    color: #fff;
    transform: rotate(-5deg);
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.glass-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.bio-sleek {
    background: #fff;
    padding: 120px 0;
}

/* Image Styling */
.image-wrapper {
    position: relative;
    display: inline-block;
}

.bio-img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px; /* Slight roundness is sleeker than 100% round */
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

/* A simple decorative line behind the image */
.image-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 12px;
    z-index: 1;
}

.image-wrapper:hover .bio-img {
    transform: translate(-10px, -10px); /* Moves towards the border accent */
}

/* Content Styling */
.tagline {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
}

.bio-content h2 {
    font-size: 2.5rem;
    margin: 10px 0 20px;
}

.quote {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--dark);
    margin-bottom: 20px;
}

.description {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 480px;
}
.final-cta-sleek {
    padding: 100px 0 140px;
    background: #fff;
}

.cta-wrapper {
    background: var(--dark);
    padding: 80px 40px;
    border-radius: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}

/* Subtle glow effect in the corner */
.cta-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.2;
    pointer-events: none;
}

.cta-tagline {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #94A3B8;
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* The Button */
.btn-cta-main {
    padding: 20px 40px;
    font-size: 1.1rem;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(45, 121, 199, 0.2);
}

.cta-note {
    margin-top: 25px;
    font-size: 12px;
    color: #64748B;
    font-style: italic;
}

/* Responsive Mobile view */
@media (max-width: 768px) {
    .cta-wrapper {
        padding: 60px 20px;
        margin: 0 10px;
        border-radius: 24px;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .btn-cta-main {
        width: 60%;
        padding: 10px 20px;
    }
}


/* Steps */
.steps-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; text-align: center; position: relative; }
.step-circle { width: 60px; height: 60px; background: var(--accent); color: var(--dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-weight: 800; font-size: 1.2rem; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; max-width: 900px; margin-inline: auto; }
.price-card { background: #1E293B; color: white; padding: 50px 40px; border-radius: 24px; text-align: center; border: 1px solid #334155; }
.price-card.featured { transform: scale(1.05); border-color: var(--primary); background: #0F172A; }
.popular-badge { background: var(--accent); color: var(--dark); padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 800; margin-bottom: 15px; display: inline-block; }
.time { font-size: 2rem; font-weight: 800; margin: 15px 0; }
.price-tag { margin: 20px 0; font-weight: 600; color: #94A3B8; }

/* Footer */
.footer { padding: 60px 0; background: white; border-top: 1px solid #E2E8F0; }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.footer-info img { height: 35px; }

/* Mobile Optimization */
@media (max-width: 968px) {
    h1 { font-size: 3rem; }
    .grid, .about-grid, .steps-container { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .morph-blob { width: 300px; height: 300px; margin: 0 auto; }
    .hero-btns { flex-direction: column; }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Default Desktop View */
.btn-mobile-cta {
    display: none; /* Hide the duplicate mobile button on desktop */
}

/* Responsive Mobile View (968px and below) */
@media (max-width: 968px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Keep the logo and the button on the same line */
    .nav-links {
        display: none; /* Hides About, How it Works, etc. */
    }

    .btn-mobile-cta {
        display: inline-block; /* Shows the Book Now button */
        padding: 8px 16px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .logo span {
        font-size: 1rem; /* Slightly smaller text for mobile space */
    }
}

.footer-sleek {
    background: #fff;
    padding: 80px 0 40px;
    border-top: 1px solid #F1F5F9;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

/* Brand Section */
.f-logo {
    height: 45px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.f-logo:hover {
    filter: grayscale(0%);
}

.f-mission {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

/* Nav & Contact Styling */
.footer-sleek h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    color: var(--dark);
}

.footer-sleek ul {
    list-style: none;
}

.footer-sleek ul li {
    margin-bottom: 12px;
}

.footer-sleek a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-sleek a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #F1F5F9;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #94A3B8;
}

.legal-links {
    display: flex;
    gap: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .f-mission {
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}