/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #4f46e5, #9333ea, #ec4899);
    color: #ffffff;
    overflow: hidden;
}

/* Container */
.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 6rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Heading */
.hero-title {
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: #fde047; /* yellow highlight */
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    color: #f1f5f9;
    line-height: 1.7;
}

/* Button */
.hero-btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: #ffffff;
    color: #4f46e5;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
    pointer-events: none;
    z-index: 1;
}
/* How It Works Section */
/* Section */
.how-timeline {
    background: #f9fafb;
    padding: 6rem 1.5rem;
    position: relative;
}

/* Title */
.timeline-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5rem;
}

.timeline-title span {
    color: #4f46e5;
}

/* Wrapper */
.timeline-wrapper {
    position: relative;
}

/* Vertical Line */
.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #e0e7ff;
    transform: translateX(-50%);
}

/* Step */
.timeline-step {
    position: relative;
    margin-bottom: 5rem;
}

/* Dot */
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 24px;
    background: #4f46e5;
    border-radius: 50%;
    border: 4px solid #ffffff;
    transform: translate(-50%, -50%);
    padding: 0px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Image */
.timeline-image {
    width: 100%;
    border-radius: 1.2rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Card */
.timeline-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1.3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.timeline-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.6rem;
}

.timeline-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Step Badge */
.step-badge {
    display: inline-block;
    background: #e0e7ff;
    color: #4f46e5;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 0.6rem;
}

/* Mobile */
@media (max-width: 767px) {
    .timeline-step {
        margin-bottom: 3.5rem;
    }

    .timeline-card {
        margin-top: 1.5rem;
    }
}

/* Icon */
.how-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #4f46e5;
}

/* Card Title */
.how-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

/* Card Text */
.how-card p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.7;
}
/* What You Can Create Section */
.create-section {
    background: linear-gradient(to bottom right, #f9fafb, #ffffff);
    padding: 6rem 1.5rem;
}

/* Container */
.create-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.create-header {
    text-align: center;
    margin-bottom: 5rem;
}

.create-header h2 {
    font-size: clamp(2.4rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.create-header p {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Item Layout */
.create-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 6rem;
}

.create-item.reverse {
    flex-direction: row-reverse;
}

/* Image */
.create-image {
    position: relative;
    flex: 1;
}

.create-image img {
    width: 100%;
    border-radius: 1.8rem;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.image-overlay {
    position: absolute;
    inset: 0;
    border-radius: 1.8rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.12), transparent);
}

/* Content */
.create-content {
    flex: 1;
}

.create-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.create-content p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

/* Button */
.create-btn {
    display: inline-block;
    background: #4f46e5;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(79, 70, 229, 0.35);
    transition: all 0.3s ease;
}

.create-btn:hover {
    background: #4338ca;
    box-shadow: 0 18px 40px rgba(79, 70, 229, 0.45);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .create-item,
    .create-item.reverse {
        flex-direction: column;
    }

    .create-item {
        margin-bottom: 4rem;
    }
}
/* Modal Overlay */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none; /* toggle with JS */
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* Modal Box */
.modal-content {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    font-size: 2rem;
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #4b5563;
}

/* Title */
.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4f46e5;
    text-align: center;
    margin-bottom: 1.2rem;
}

/* Textarea */
.modal-textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
    resize: none;
    outline: none;
    transition: all 0.25s ease;
}

.modal-textarea:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.25);
}

/* Actions */
.modal-actions {
    text-align: center;
    margin-top: 1.5rem;
}

/* Submit Button */
.modal-btn {
    background: #4f46e5;
    color: #ffffff;
    padding: 0.8rem 2.2rem;
    border-radius: 0.75rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.35);
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(79, 70, 229, 0.45);
}

/* Loading State */
.modal-loading {
    display: none;
    text-align: center;
    margin-top: 1.5rem;
}

.modal-loading p {
    margin-top: 0.75rem;
    color: #374151;
    font-weight: 500;
}

/* Spinner */
.spinner {
    width: 42px;
    height: 42px;
    border: 4px solid #c7d2fe;
    border-top-color: #4f46e5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

/* Animations */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* Header Wrapper */
.main-header {
    z-index: 1050;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Brand */
.navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1f2937 !important;
    letter-spacing: -0.5px;
}

.brand-dot {
    color: #4f46e5;
}

/* Nav Links */
.navbar-nav .nav-link {
    font-weight: 500;
    color: #374151 !important;
    transition: color 0.25s ease;
}

.navbar-nav .nav-link:hover {
    color: #4f46e5 !important;
}

/* CTA Button */
.diocta-btn {
    background-color: #4f46e5;
    border-color: #4f46e5;
    padding: 0.45rem 1.3rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.35);
    transition: all 0.3s ease;
}

.diocta-btn:hover {
    background-color: #4338ca;
    border-color: #4338ca;
    box-shadow: 0 16px 40px rgba(79, 70, 229, 0.45);
    transform: translateY(-1px);
}

/* Mobile Spacing */
@media (max-width: 767px) {
    .navbar-nav {
        padding: 1rem 0;
        text-align: center;
    }

    .diocta-btn {
        width: 100%;
        margin-top: 0.5rem;
    }
}
/* Footer Wrapper */
.diocta-footer {
    background: linear-gradient(to bottom right, #f3f4f6, #f9fafb);
    border-top: 1px solid #e5e7eb;
    color: #374151;
}

/* Brand */
.footer-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

/* Titles */
.footer-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

/* Text */
.footer-text {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #4b5563;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: #4f46e5;
}

/* Social Icons */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 0.4rem;
    border-radius: 50%;
    color: #6b7280;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    color: #ffffff;
    background: #4f46e5;
    transform: translateY(-2px);
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #e5e7eb;
    font-size: 0.85rem;
    color: #6b7280;
}
/* Hero Section */
.price-hero {
    background: linear-gradient(135deg, #4338ca, #7e22ce, #db2777);
    color: #ffffff;
    padding: 5.5rem 1.5rem;
}

/* Title */
.price-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.price-title span {
    color: #fde047;
}

/* Subtitle */
.price-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

/* Features */
.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.price-features li {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Offer Box */
.price-offer {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 0.9rem;
    padding: 0.9rem 1.2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.offer-price {
    display: block;
    color: #fde047;
    font-weight: 600;
    font-size: 1.05rem;
}

.offer-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Form Card */
.price-form-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.price-form-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4338ca;
    margin-bottom: 1.2rem;
}

/* Override Bootstrap Inputs */
.price-form-card .form-control,
.price-form-card .form-select {
    border-radius: 0.65rem;
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
}

.price-form-card .form-control:focus,
.price-form-card .form-select:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

/* Button */
.price-btn {
    background-color: #4f46e5;
    border-color: #4f46e5;
    font-weight: 600;
    padding: 0.7rem;
    border-radius: 0.7rem;
    transition: all 0.3s ease;
}

.price-btn:hover {
    background-color: #4338ca;
    border-color: #4338ca;
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.45);
}
/* How It Works Images Section */
.how-images {
    background-color: #f9fafb;
    padding: 6rem 1.5rem;
}

/* Image Styling */
.how-image {
    width: 100%;
    border-radius: 1.2rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

/* Subtle Hover Effect */
.how-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.22);
}

/* Responsive spacing tweak */
@media (max-width: 767px) {
    .how-images {
        padding: 4rem 1rem;
    }
}
/* CTA Section */
.diocta-cta {
    background: linear-gradient(to right, #4f46e5, #6366f1);
    color: #ffffff;
    padding: 5rem 1.5rem;
}

/* Title */
.cta-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Subtitle */
.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(224, 231, 255, 0.9);
    margin-bottom: 2.2rem;
}

/* Button */
.cta-btn {
    font-weight: 600;
    padding: 0.9rem 2.3rem;
    border-radius: 999px;
    color: #4f46e5;
    background-color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
}
/* FAQ Section */
.diocta-faq {
    background-color: #f9fafb;
    padding: 5rem 1.5rem;
}

/* Title */
.faq-title {
    font-size: clamp(1.9rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 3rem;
}

/* FAQ List */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

/* FAQ Item */
.faq-item {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem 1.6rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

/* Question */
.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4f46e5;
    margin-bottom: 0.5rem;
}

/* Answer */
.faq-item p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}
/* Form Wrapper */
.start-form {
    max-width: 100%;
}

/* Labels */
.start-form .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.4rem;
}

/* Inputs & Select */
.custom-input {
    border-radius: 0.75rem;
    border: 1px solid #d1d5db;
    padding: 0.6rem 0.9rem;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

/* Focus State */
.custom-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

/* Placeholder */
.custom-input::placeholder {
    color: #9ca3af;
}

/* Button */
.start-btn {
    background-color: #4f46e5;
    border-color: #4f46e5;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 0.8rem;
    box-shadow: 0 14px 35px rgba(79, 70, 229, 0.35);
    transition: all 0.3s ease;
}

/* Button Hover */
.start-btn:hover {
    background-color: #4338ca;
    border-color: #4338ca;
    transform: translateY(-1px);
    box-shadow: 0 20px 45px rgba(79, 70, 229, 0.45);
}

/* Button Disabled (optional) */
.start-btn:disabled {
    background-color: #a5b4fc;
    border-color: #a5b4fc;
    cursor: not-allowed;
    box-shadow: none;
}
/* How It Works Section */
.how-it-works {
    position: relative;
    padding: 6rem 1.5rem;
    background: #f9fafb;
    overflow: hidden;
}

/* Background gradient */
.how-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(147, 51, 234, 0.15),
        #ffffff,
        #ffffff
    );
    z-index: 1;
}

/* Container */
.how-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Title */
.how-title {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #111827;
    margin-bottom: 3.5rem;
}

/* Grid */
.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

/* Card */
.how-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 1.8rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

/* Icon */
.how-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #4f46e5;
}

/* Card Title */
.how-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

/* Card Text */
.how-card p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.7;
}
/* Background Wrapper */
.whatsapp-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #4f46e5, #9333ea, #ec4899);
}

/* Card */
.whatsapp-card {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: 0.4s ease;
}

.whatsapp-card:hover {
    transform: scale(1.02);
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 25px;
}

.icon-box {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    background: #e6f9ee;
    color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.header h1 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.header p {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

/* Form */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    display: block;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: 0.3s ease;
    font-size: 14px;
}

.form-group input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
    outline: none;
}

/* Button */
#sendOtpBtn {
    width: 100%;
    padding: 14px;
    background: #16a34a;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 6px 15px rgba(22, 163, 74, 0.3);
}

#sendOtpBtn:hover {
    background: #15803d;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.4);
}

/* Messages */
.error-message {
    color: red;
    text-align: center;
    margin-bottom: 15px;
}

.message-area {
    text-align: center;
    font-size: 13px;
    margin-top: 15px;
}
/* Background */
.otp-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #4f46e5, #9333ea, #ec4899);
}

/* Card */
.otp-card {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: 0.4s ease;
}

.otp-card:hover {
    transform: scale(1.02);
}

/* Icon */
.icon-box {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: #e6f9ee;
    color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

/* Title */
.otp-card h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* OTP Input */
.otp-input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 5px;
    margin-bottom: 18px;
    transition: 0.3s ease;
}

.otp-input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
    outline: none;
}

/* Verify Button */
.verify-btn {
    width: 100%;
    padding: 14px;
    background: #16a34a;
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 6px 15px rgba(22, 163, 74, 0.3);
}

.verify-btn:hover {
    background: #15803d;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.4);
}

/* Resend */
.resend-section {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.resend-btn {
    background: none;
    border: none;
    color: #4f46e5;
    font-weight: 600;
    cursor: pointer;
}

.resend-btn:hover {
    text-decoration: underline;
}

/* Messages */
.error-message {
    color: red;
    font-weight: 500;
    margin-bottom: 15px;
}

.resend-message {
    color: green;
    margin-top: 8px;
}

.message-area {
    margin-top: 15px;
    font-size: 13px;
}
.template-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f5f6fa;
}

.preview-container {
    flex: 1;
    padding: 10px;
}

.preview-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.template-tabs {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    background: #ffffff;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.template-tab {
    padding: 10px 20px;
    border: none;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
}

.template-tab.active {
    background: #1e3a8a;
    color: white;
}
/* Wrapper */
.details-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #4f46e5, #9333ea, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Card */
.details-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    padding: 35px 28px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    text-align: center;
}

/* Header */
.header {
    margin-bottom: 25px;
}

.icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    border-radius: 16px;
    background: #4338ca;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
}

.header h1 {
    font-size: 22px;
    margin-bottom: 6px;
    color: #111827;
}

.header p {
    font-size: 14px;
    color: #6b7280;
}

/* Form */
.form-group {
    text-align: left;
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: #374151;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    transition: 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #4338ca;
    box-shadow: 0 0 0 2px rgba(67, 56, 202, 0.15);
}

/* Button */
button {
    width: 100%;
    margin-top: 10px;
    padding: 13px;
    background: #4338ca;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #3730a3;
}

.domain-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #4f46e5, #9333ea, #ec4899);
    padding: 20px;
    padding-top: 80px;
}

.domain-card {
    width: 100%;
    max-width: 520px;
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

h1 {
    font-size: 26px;
    margin-bottom: 6px;
}
.subtitle {
    color: #6b7280;
    margin-bottom: 25px;
}
.section {
    margin-bottom: 25px;
}
.section h3 {
    margin-bottom: 10px;
}

.domain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .domain-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.domain-card-option input {
    display: none;
}

.domain-card-inner {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
    transition: 0.25s;
    background: #fff;
    cursor: pointer;
}

.domain-card-inner:hover {
    border-color: #4338ca;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.domain-card-option input:checked + .domain-card-inner {
    border-color: #4338ca;
    background: #eef2ff;
    box-shadow: 0 8px 20px rgba(67, 56, 202, 0.15);
}

.domain-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.badge {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 20px;
}

.available {
    background: #dcfce7;
    color: #166534;
}
.free {
    background: #e0e7ff;
    color: #3730a3;
}

.highlight .domain-card-inner {
    border: 2px solid #4338ca;
}

.custom-box {
    position: relative;
}

.custom-box input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
}

.loader {
    position: absolute;
    right: 10px;
    top: 12px;
    width: 18px;
    height: 18px;
    border: 3px solid #ccc;
    border-top-color: #4338ca;
    border-radius: 50%;
    display: none;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#domainStatus {
    margin-top: 6px;
    font-size: 13px;
}

button {
    width: 100%;
    padding: 14px;
    background: #4338ca;
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #312e81;
}

.payment-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #4f46e5, #9333ea, #ec4899);
    padding: 20px;
    padding-top: 80px;
}

.payment-card {
    width: 100%;
    max-width: 420px;
    background: white;
    padding: 35px 30px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    animation: fadeUp 0.5s ease;
}

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

.icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    border-radius: 16px;
    background: #4338ca;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.subtitle {
    color: #6b7280;
    margin-bottom: 20px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: #4338ca;
    margin: 10px 0 20px;
}

.benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
    color: #374151;
    font-size: 14px;
}

.benefits li {
    margin-bottom: 6px;
}

button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 14px;
    background: #4338ca;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

button:hover {
    background: #312e81;
}

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-top-color: #fff;
    border-radius: 50%;
    display: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.secure-note {
    margin-top: 15px;
    font-size: 12px;
    color: #6b7280;
}
/* ===== SUCCESS POPUP ===== */

.success-overlay {
    position: fixed !important;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.success-box {
    background: #fff;
    width: 90%;
    max-width: 360px;
    padding: 28px 24px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    animation: popupScale 0.25s ease;
}

@keyframes popupScale {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-text {
    font-weight: 600;
    margin-top: 6px;
}

.success-sub {
    color: #6b7280;
    margin-top: 6px;
}

.time-note {
    margin: 14px 0;
    color: #374151;
    font-size: 14px;
}

.success-box button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #7c3aed, #4f46e5);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

/* ===== BRANDING WIZARD ===== */
.wizard-wrapper {
    background: #f4f4f4;
    padding-bottom: 40px;
    padding-top: 100px;
    background: linear-gradient(135deg, #4f46e5, #9333ea, #ec4899);
}
.wizard-header {
    color: #5b0ea3;
    text-align: center;
    padding: 18px;
    font-size: 20px;
    font-weight: 600;
}

.wizard-container {
    max-width: 420px;
    margin: -20px auto;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.section {
    margin-bottom: 22px;
}

.label-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    position: absolute;
    background: white;
    top: -16px;
}
.form-step .section {
    padding: 10px 20px;
    border: 1px solid;
    border-radius: 20px;
    position: relative;
}

/* toggle */
.pill-toggle {
    display: inline-flex;
    background: #eee;
    border-radius: 999px;
    padding: 3px;
}
.pill-toggle input {
    display: none;
}
.pill-toggle label {
    padding: 6px 18px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
}
.pill-toggle input:checked + label {
    background: #111;
    color: #fff;
}

/* upload */
.upload-box {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}
.upload-box input {
    display: none;
}

/* logo rows */
.logo-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.logo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    border-radius: 14px;
    background: #f2f2f2;
    cursor: pointer;
}
.logo-row input {
    display: none;
}

.radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #555;
    margin-right: 10px;
}
.logo-row input:checked + .radio {
    background: #6b21a8;
    border-color: #6b21a8;
}
.logo-text {
    flex: 1;
    margin-left: 10px;
}
.logo-row img {
    height: 28px;
}

/* textarea */
textarea {
    width: 100%;
    min-height: 90px;
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 10px;
}

/* colors */
.color-picker-row {
    display: flex;
    gap: 20px;
}
.color-field input {
    width: 60px;
    height: 40px;
    border: none;
}

/* nav */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
.next-btn {
    background: #5b0ea3;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
}
.back-btn {
    text-decoration: none;
    color: #5b0ea3;
}
.step {
    color: #777;
    font-size: 13px;
}
/* step indicator */
.step-indicator {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
.step {
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 20px;
    background: #e5e7eb;
}
.step.active {
    background: #5b0ea3;
    color: #fff;
}

/* steps */
.form-step {
    display: none;
}
.form-step.active {
    display: block;
}

/* nav */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.next-btn {
    background: #5b0ea3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

.back-btn {
    background: #eee;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
}
/* ===== Background ===== */
.thank-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
    padding-top: 110px;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255, 255, 255, 0.15),
            transparent 40%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(255, 255, 255, 0.1),
            transparent 40%
        ),
        linear-gradient(135deg, #4f46e5, #9333ea, #ec4899);
}

/* ===== Card ===== */
.thank-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    max-width: 540px;
    width: 100%;
    padding: 45px 35px;
    border-radius: 26px;
    text-align: center;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.25) inset;
    animation: fadeUp 0.6s ease;
}

/* ===== Success Icon ===== */
.success-circle {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow:
        0 10px 30px rgba(22, 163, 74, 0.4),
        0 0 0 8px rgba(34, 197, 94, 0.15);
    animation: popIn 0.5s ease;
}

/* ===== Typography ===== */
.thank-card h1 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.subtitle {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* ===== Info Box ===== */
.info-box {
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    color: #4338ca;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 28px;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* ===== Steps ===== */
.next-steps {
    text-align: left;
    margin-bottom: 28px;
}

.next-steps h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #111827;
}

.next-steps ul {
    padding-left: 0;
}

.next-steps li {
    list-style: none;
    padding: 6px 0;
    color: #374151;
    font-size: 14px;
    position: relative;
    padding-left: 22px;
}

.next-steps li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

/* ===== Contact Box ===== */
.contact-box {
    background: #f9fafb;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 28px;
    font-size: 14px;
    color: #374151;
    border: 1px solid #eee;
}

/* ===== Buttons ===== */
.actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #6d28d9, #9333ea);
    color: #fff;
    padding: 13px 26px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 18px rgba(109, 40, 217, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(109, 40, 217, 0.45);
}

/* outline button */
.btn-outline {
    border: 2px solid #9333ea;
    color: #9333ea;
    padding: 11px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #9333ea;
    color: #fff;
    transform: translateY(-2px);
}

/* ===== Animations ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    from {
        transform: scale(0.6);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== Mobile ===== */
@media (max-width: 480px) {
    .thank-card {
        padding: 35px 22px;
    }

    .thank-card h1 {
        font-size: 22px;
    }

    .success-circle {
        width: 75px;
        height: 75px;
        font-size: 30px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .payment-card,
    .wizard-container,
    .thank-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .price {
        font-size: 34px;
    }

    button,
    .next-btn,
    .back-btn {
        padding: 12px;
        font-size: 15px;
    }

    .logo-row {
        flex-direction: row;
        padding: 12px;
    }

    .logo-row img {
        height: 22px;
    }

    .actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .success-circle {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .payment-wrapper,
    .thank-wrapper,
    .wizard-wrapper {
        padding-top: 70px;
    }

    .wizard-container {
        max-width: 92%;
    }

    .payment-card {
        max-width: 92%;
    }

    .thank-card {
        max-width: 92%;
    }

    .logo-row {
        padding: 12px 14px;
    }

    .step-indicator {
        gap: 10px;
    }
}
@media (max-width: 1024px) {
    .wizard-container {
        max-width: 500px;
    }

    .thank-card {
        max-width: 500px;
    }
}
/* ===== PREMIUM NAVBAR TOGGLER ===== */

.premium-toggler {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: inherit;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* lines */
.premium-toggler span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.35s ease;
}

/* hover glow */
.premium-toggler:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* active animation */
.premium-toggler.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.premium-toggler.active span:nth-child(2) {
    opacity: 0;
}

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

/* dark navbar support */
.navbar-dark .premium-toggler span {
    background: #fff;
}

.navbar-light .premium-toggler span {
    background: #111;
}
.navbar-light .premium-toggler span:nth-child(2) {
    width: 14px;
    margin-left: auto;
}
/* touch feedback */
.premium-toggler:active {
    transform: scale(0.92);
}
.balance-note {
    margin-top: 15px;
    font-size: 14px;
    color: #b45309;
    background: #fff7ed;
    padding: 10px;
    border-radius: 8px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .details-wrapper,
    .domain-page,
    .wizard-wrapper,
    .thank-wrapper,
    .payment-wrapper {
        padding: 80px 0px 30px 0px;
    }
    .domain-card,
    .details-card,
    .payment-card,
    .wizard-container,
    .thank-card {
        padding: 35px 20px;
        border-radius: 0px;
        width: 95%;
        margin: auto;
    }
    .color-field input {
        width: 35px;
        height: 20px;
        /* margin-top: -22px; */
        border: none;
    }
    .color-field {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }
    .label-title {
        font-size: 11px;
        top: -10px;
    }
    .form-step input {
        font-size: 12px;
    }
    .form-step textarea {
        font-size: 12px;
    }
    .form-step select {
        font-size: 12px;
    }
    .form-step label {
        font-size: 12px;
    }
    .next-steps ul li {
        font-size: 14px;
    }

    .domain-card-inner {
        padding: 10px 6px;
    }
    .header h1 {
        font-size: 18px;
    }
    .header p {
        font-size: 12px;
        color: #6b7280;
    }
    .price-hero {
        padding: 5.5rem 0.5rem;
    }
    .price-title {
        font-size: clamp(1.5rem, 4.5vw, 3.2rem);
        margin-bottom: 0.5rem;
    }
    .price-subtitle {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: inherit;
        margin-bottom: 0.8rem;
    }
    .price-features li {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
        color: rgba(255, 255, 255, 0.9);
    }
    .price-form-card {
        padding: 2rem 1rem;
    }
    .price-form-card h3 {
        font-size: 1rem;
    }
    .price-form-card .form-control,
    .price-form-card .form-select {
        font-size: 12px;
    }
    .btn {
        font-size: 12px;
    }
    .hero-container {
        padding: 6rem 0.5rem 3rem;
    }
    .hero-title {
        font-size: clamp(2rem, 5vw, 3.8rem);
    }
    .hero-subtitle {
        font-size: 1rem;
        margin: 0 auto 1.5rem;
    }
    .how-it-works {
        padding: 2rem 0.5rem;
    }
    .create-header h2,
    .how-title {
        font-size: clamp(1.5rem, 4.5vw, 3.2rem);
        margin-bottom: 1.5rem;
    }
}
.iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.1.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.1.1/build/img/flags@2x.png");
    }
}
.iti {
    position: relative;
    display: inline-block;
    width: 100%;
}
.btn-success {
    background: #16a34a;
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    width: 100%;
    border: none;
    font-weight: 600;
}

.next-btn {
    display: block;
    margin-top: 12px;
    text-align: center;
}
