/* ============================================================
   assets/css/style.css — Landing Page & Form Styles (Pink/White)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Brand Colors (Pink & White) */
    --clr-primary: #e91e8c;
    --clr-primary-light: #ff66b2;
    --clr-primary-dark: #c2185b;
    --clr-bg-gradient: linear-gradient(135deg, #fff0f5 0%, #ffe4f0 100%);
    --clr-white: #ffffff;
    --clr-dark: #2a2a2a;
    --clr-text-light: #555555;
    --clr-border: #f0d4e3;

    /* Box Shadows */
    --shadow-sm: 0 4px 12px rgba(233, 30, 140, 0.05);
    --shadow-md: 0 10px 30px rgba(233, 30, 140, 0.1);
    --shadow-hover: 0 15px 40px rgba(233, 30, 140, 0.15);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--clr-bg-gradient);
    color: var(--clr-dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ── Typography & Globals ── */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--clr-primary);
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-pink {
    color: var(--clr-primary);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--clr-primary);
    color: var(--clr-white);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(233, 30, 140, 0.3);
}

.btn:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(233, 30, 140, 0.4);
}

.btn-pulse {
    animation: pulselight 2s infinite;
}

@keyframes pulselight {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 30, 140, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(233, 30, 140, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(233, 30, 140, 0);
    }
}

/* ── Layout Sections ── */
.section {
    padding: 80px 0;
}

/* 1. Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 100px;
    background: radial-gradient(circle at top, #fff 0%, transparent 70%);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    max-width: 900px;
    margin: 0 auto 24px;
    background: linear-gradient(to right, var(--clr-dark), var(--clr-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p.subhead {
    font-size: 1.25rem;
    color: var(--clr-text-light);
    max-width: 650px;
    margin: 0 auto 40px;
}

.trust-line {
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--clr-text-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trust-line i {
    color: #f1c40f;
}

/* Focus Sections (Problem, Need, Fit) */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.list-card {
    background: var(--clr-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--clr-border);
    transition: var(--transition);
}

.list-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.list-card ul {
    list-style: none;
}

.list-card ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--clr-text-light);
}

.list-card ul li::before {
    content: '👉';
    position: absolute;
    left: 0;
    top: 2px;
}

.list-card.bad ul li::before {
    content: '🚫';
}

.list-card.good ul li::before {
    content: '✅';
}

/* Highlighting exact lines requested */
.highlight-box {
    background: rgba(233, 30, 140, 0.1);
    color: var(--clr-primary-dark);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--clr-primary);
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 30px;
    text-align: center;
}

/* Pricing / Offer Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.price-card {
    background: var(--clr-white);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    border: 2px solid var(--clr-border);
    position: relative;
    box-shadow: var(--shadow-md);
}

.price-card.recommended {
    border-color: var(--clr-primary);
    transform: scale(1.05);
}

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--clr-dark);
    margin: 20px 0;
}

.urgency {
    text-align: center;
    color: #d35400;
    font-weight: 600;
    margin-top: 20px;
}

/* FAQ */
.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--clr-white);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.faq-q {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--clr-dark);
    margin-bottom: 8px;
}

.faq-a {
    color: var(--clr-text-light);
}

/* ── Booking Form Section ── */
#booking {
    background: var(--clr-white);
    border-top: 1px solid var(--clr-border);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--clr-white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--clr-border);
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--clr-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 2px solid var(--clr-border);
    background: #fdfafb;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--clr-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.1);
}

/* Payment Manual UI */
.payment-box {
    background: #fff5f9;
    padding: 24px;
    border-radius: 16px;
    border: 2px dashed var(--clr-primary-light);
    margin: 30px 0;
    text-align: center;
}

.pay-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-primary);
    margin-bottom: 10px;
}

.copy-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.copy-input {
    padding: 12px 16px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    background: #fff;
    color: var(--clr-text-light);
    width: 250px;
    text-align: center;
}

.btn-copy {
    background: var(--clr-dark);
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-copy:hover {
    background: var(--clr-primary);
}

/* File Upload */
.upload-area {
    margin-top: 20px;
}

.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--clr-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    background: #fdfafb;
    transition: var(--transition);
    cursor: pointer;
}

.file-upload-wrapper:hover {
    border-color: var(--clr-primary);
    background: #fff0f5;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

#preview-img {
    max-height: 200px;
    border-radius: 8px;
    margin-top: 15px;
    display: none;
    box-shadow: var(--shadow-sm);
}

/* Submit state */
.btn-submit {
    width: 100%;
    margin-top: 10px;
}

/* Toast Messages */
.toast-msg {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    display: none;
}

.toast-success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #4caf50;
    display: block;
}

.toast-error {
    background: #ffebee;
    color: #c62828;
    border-left: 4px solid #ef5350;
    display: block;
}

.toast-info {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-dark);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    z-index: 1000;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toast-info.show {
    opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .form-wrapper {
        padding: 30px 20px;
    }

    .price-card.recommended {
        transform: scale(1);
    }

    .copy-wrapper {
        flex-direction: column;
    }

    .copy-input {
        width: 100%;
    }

    .btn-copy {
        width: 100%;
    }
}

/* ── Radio Button Cards (Big) ── */
.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.radio-card {
    position: relative;
    cursor: pointer;
    font-weight: normal;
    margin: 0;
}

.radio-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-content {
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    border: 2px solid var(--clr-border);
    border-radius: 16px;
    background: #fdfafb;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.radio-card:hover .radio-content {
    border-color: var(--clr-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.radio-card input:checked~.radio-content {
    border-color: var(--clr-primary);
    background: #fff0f5;
    box-shadow: 0 8px 24px rgba(233, 30, 140, 0.15);
}

/* Selected state checkmark indicator */
.radio-card input:checked~.radio-content::before {
    content: "✔";
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--clr-primary);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.radio-content .plan-icon {
    font-size: 2rem;
    color: var(--clr-primary);
    margin-bottom: 12px;
}

.radio-content .plan-name {
    font-weight: 700;
    color: var(--clr-dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.radio-content .plan-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--clr-primary);
}

/* ── Video Testimonials ── */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.video-card {
    background: var(--clr-white);
    border-radius: 20px;
    padding: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #000;
    cursor: pointer;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.3s;
}

.video-wrapper:hover video {
    opacity: 1;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(233, 30, 140, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.4);
    transition: 0.3s;
    pointer-events: none;
}

.video-wrapper:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-wrapper.playing .play-btn {
    display: none;
}

.video-wrapper.playing video {
    opacity: 1;
}

.video-info {
    text-align: center;
    margin-top: 15px;
}

.video-info h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: var(--clr-dark);
}

.video-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--clr-text-light);
    font-weight: 500;
}

.hidden-testimonial {
    display: none;
}

/* ── Admin Gear Icon ── */
.admin-gear {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 1.5rem;
    color: var(--clr-text-light);
    opacity: 0.3;
    transition: var(--transition);
    z-index: 1000;
}

.admin-gear:hover {
    color: var(--clr-primary);
    opacity: 1;
    transform: rotate(90deg);
}

/* ── Submit Loading & Success Overlay ── */
.submit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
}

.submit-overlay.active {
    opacity: 1;
    pointer-events: all;
    backdrop-filter: blur(5px);
}

.overlay-content {
    text-align: center;
    animation: slideUp 0.5s ease;
    padding: 30px;
    max-width: 400px;
}

.overlay-content h3 {
    margin-top: 25px;
    font-size: 1.8rem;
    color: var(--clr-dark);
}

.overlay-content p {
    color: var(--clr-text-light);
    font-size: 1.1rem;
    margin-top: 10px;
}

.spinner {
    width: 70px;
    height: 70px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid var(--clr-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* SVG Checkmark Animation */
.checkmark {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: block;
    stroke-width: 4;
    stroke: #4CAF50;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4CAF50;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    margin: 0 auto;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 4;
    stroke-miterlimit: 10;
    stroke: #4CAF50;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 50px #4CAF50;
        stroke: #fff;
    }
}


.radio-content .plan-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 12px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Testimonial Horizontal Slider ── */
.testimonial-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 360px;
    margin: 0 auto;
}

.testimonial-track {
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
}

.tslide {
    display: none;
    animation: fadeSlide 0.4s ease;
}

.tslide.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Reuse existing .video-wrapper & .video-info styles */
.tslide .video-wrapper {
    aspect-ratio: 9/16;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    max-height: 480px;
}

.tslide .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: 0.3s;
}

.tslide .video-wrapper:hover video {
    opacity: 1;
}

/* Prev / Next Buttons */
.slider-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--clr-white);
    border: 2px solid var(--clr-border);
    color: var(--clr-primary);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 2;
}

.slider-btn:hover {
    background: var(--clr-primary);
    color: #fff;
    border-color: var(--clr-primary);
    box-shadow: var(--shadow-md);
}

/* Dot Indicators */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--clr-border);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--clr-primary);
    transform: scale(1.3);
}

@media (max-width: 480px) {
    .testimonial-slider-wrap {
        max-width: 100%;
    }

    .tslide .video-wrapper {
        max-height: 380px;
    }
}

/* ── Submit Loading & Success Overlay ── */
.submit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.97);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(4px);
}

.submit-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.overlay-content {
    text-align: center;
    animation: slideUp 0.5s ease;
    padding: 40px;
    max-width: 420px;
}

.overlay-content h3 {
    margin-top: 25px;
    font-size: 1.8rem;
    color: var(--clr-dark);
}

.overlay-content p {
    color: var(--clr-text-light);
    font-size: 1.1rem;
    margin-top: 10px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Spinner */
.spinner {
    width: 70px;
    height: 70px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid var(--clr-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* SVG Checkmark */
.checkmark {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: block;
    stroke-width: 4;
    stroke: #4CAF50;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4CAF50;
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
    margin: 0 auto;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 4;
    stroke-miterlimit: 10;
    stroke: #4CAF50;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: #4CAF50;
    stroke-width: 4;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 45px rgba(76, 175, 80, 0.1);
    }
}