/* 
  Prathibha Certified Life Clarity Coaching Landing Page
  Design Style: Silent Luxury (Minimal, Elegant, Professional)
*/

@import url('assets/fonts/google-fonts/fonts.css');

:root {
    /* Colors */
    --bg-color: #F9FAFB;
    --primary-color: #2563EB;
    --primary-hover: #1D4ED8;
    --secondary-color: #3B82F6;
    --text-dark: #0F172A;
    --text-neutral: #64748B;
    --section-light: #EFF6FF;
    --white: #FFFFFF;
    --accent-light: #DBEAFE;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 100px 20px;
    --section-padding-mobile: 60px 20px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

footer {
    background-color: #111827; /* Deep professional dark */
    color: var(--white);
    padding: 80px 0 40px;
}

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

.footer-column h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.footer-column.brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 320px;
}

.footer-nav-links,
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav-links a,
.footer-contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-links a:hover, 
.footer-contact-info a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-logo span {
    color: #ef4136; /* Vibrant Red */
    font-size: 2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Prevent clipping on smaller screens */
    gap: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copy {
    text-align: left;
}

.footer-credit {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    font-weight: 400;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 700; /* Bold highlight */
    transition: var(--transition);
}

.footer-credit a span {
    color: #e63946; /* Vibrant Red */
    font-size: 2rem; /* Even bigger impact */
    line-height: 0;
    margin-left: 2px;
}

.footer-credit a:hover {
    color: var(--white);
}

.footer-credit a:hover span {
    filter: brightness(1.2);
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--accent-light);
}

.btn-secondary:hover {
    background-color: var(--section-light);
    transform: translateY(-2px);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-title p {
    color: var(--text-neutral);
    font-size: clamp(1rem, 2vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    position: relative;
    padding-left: 20px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: var(--primary-color);
}

.service-tag {
    display: inline-block;
    padding: 6px 12px;
    background: var(--section-light);
    color: var(--primary-color);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.call-teaser {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.hero .call-teaser {
    background: var(--white);
    border-color: var(--accent-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-left: 0;
}

.final-cta .call-teaser {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.call-teaser h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: inherit;
}

.call-teaser ul {
    display: grid;
    gap: 12px;
}

.call-teaser li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.call-teaser li i {
    color: #10B981;
    margin-top: 3px;
}

.testimonial-meta {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #F1F5F9;
}

.testimonial-meta h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-meta span {
    font-size: 0.85rem;
    color: var(--text-neutral);
    display: block;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
}

.logo span {
    color: #e63946; /* Vibrant Red */
    font-size: 2.2rem; /* Big signature dot */
    line-height: 0;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-cta-mobile {
    display: none;
    width: 100%;
    padding: 20px;
    text-align: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--white);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    color: var(--text-neutral);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 24px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1)) 
            drop-shadow(0 30px 40px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.hero-image img:hover {
    transform: translateY(-5px);
}

/* Problem Section */
.problem {
    padding: var(--section-padding);
    background-color: var(--bg-color);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.problem-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-light);
}

.problem-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.problem-card h3 {
    margin-bottom: 12px;
}

/* Solution Section */
.solution {
    padding: var(--section-padding);
    background-color: var(--white);
}

.solution .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-list {
    margin-top: 32px;
}

.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.solution-item i {
    color: #10B981;
    font-size: 1.25rem;
    margin-top: 4px;
}

.solution-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background-color: var(--section-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    background: var(--primary-color);
}

.service-card:hover h3, 
.service-card:hover p {
    color: var(--white);
}

/* How It Works */
.how-it-works {
    padding: var(--section-padding);
    background-color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
}

.step-card {
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    font-weight: 700;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--bg-color);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 480px; /* Increased size by ~15% */
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 0%; /* Tighter top crop to reduce empty space */
    border-radius: 12px;
    background: #F9FAFB; /* Modern off-white backdrop */
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); /* Softer, more premium shadow */
    filter: contrast(1.02) brightness(1.02);
    transition: var(--transition);
}

.about-image img:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonials {
    padding: var(--section-padding);
    background-color: var(--section-light);
}

/* FAQ Section */
.faq {
    padding: var(--section-padding);
    background-color: var(--section-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid #F1F5F9;
}

.faq-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-icon {
    transition: var(--transition);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content {
    padding: 0 24px 24px;
    color: var(--text-neutral);
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
}
.faq-item.is-open .faq-body {
    max-height: 500px; /* Increased for longer "strong" content */
}

.faq-content {
    padding: 0 24px 24px;
    color: var(--text-neutral);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.faq-item.is-open .faq-content {
    opacity: 1;
    transform: translateY(0);
}

.faq-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
}

.faq-footer p {
    color: var(--text-neutral);
}

.faq-footer a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 2px solid rgba(13, 110, 253, 0.2);
}

.faq-footer a:hover {
    border-bottom-color: var(--primary-color);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.final-cta .btn-white {
    background: var(--white);
    color: var(--primary-color);
}


.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

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

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation Delays */
.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }
.delay-4 { transition-delay: 0.6s !important; }

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.fade-in {
    animation: fadeIn 1.2s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
    :root {
        --section-padding: 80px 20px;
    }

    .hero .container, .solution .container, .about .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .solution-content, .about-content {
        text-align: center;
    }

    .solution-list {
        display: inline-block;
        text-align: left;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Desktop Navigation Styles */
.nav-links {
    display: flex;
    align-items: center;
}

.nav-menu-items {
    display: flex;
    gap: 30px; /* Restored "Proper" gaps */
    align-items: center;
}

/* Hide drawer elements on desktop */
.drawer-header, 
.nav-cta-mobile, 
.drawer-footer {
    display: none;
}

/* Base Responsive Breakpoint for Mobile Menu */
@media (max-width: 991px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 40px 40px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        z-index: 999;
        gap: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .drawer-header {
        position: absolute;
        top: 25px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
    }

    .drawer-header .logo {
        display: block; /* Show inside drawer */
    }

    .nav-menu-items {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 20px;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 0;
        width: 100%;
        text-align: center;
        font-weight: 500;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        opacity: 0;
        transform: translateX(20px);
        transition: 0.3s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered Animations */
    .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active a:nth-child(5) { transition-delay: 0.5s; }

    .nav-cta-mobile {
        display: block;
        margin-top: 30px;
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s ease;
        transition-delay: 0.6s;
    }

    .nav-cta-mobile .btn {
        width: 100%;
        color: var(--white) !important;
    }

    .drawer-footer {
        display: block;
        margin-top: auto;
        padding-top: 30px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
        opacity: 0;
        transition: 0.4s ease;
        transition-delay: 0.7s;
    }

    .nav-links.active .drawer-footer,
    .nav-links.active .nav-cta-mobile {
        opacity: 1;
        transform: translateY(0);
    }

    .drawer-socials {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .drawer-socials a {
        font-size: 1.25rem;
        color: var(--text-dark);
        padding: 0;
        width: auto;
        border-bottom: none;
        opacity: 1;
        transform: none;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-cta .btn {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }

    .navbar {
        padding: 15px 0;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-info p {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}
