/* DFY Submission CSS */

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

body {
    font-family: 'Inter', sans-serif;
    background: #f8faf9;
    background-image:
        radial-gradient(at 20% 30%, rgba(30, 115, 190, 0.06) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(30, 115, 190, 0.05) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(30, 115, 190, 0.03) 0px, transparent 50%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    color: #1a2e27;
} */

.container.moto {
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.03),
        0 8px 16px rgba(0, 0, 0, 0.04),
        0 24px 48px rgba(30, 115, 190, 0.08);
    overflow: hidden;
    animation: slideUp 0.6s ease-out;
    border: 1px solid rgba(30, 115, 190, 0.08);
}

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

.header {
    background: linear-gradient(135deg, #1e73be 0%, #1557a0 100%);
    padding: 3.5rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.header h1 {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.header p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.form-content {
    padding: 2.5rem;
}

.form-section {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 0.2s;
}

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

.form-group {
    margin-bottom: 1.75rem;
}

label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a2e27;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.required {
    color: #1e73be;
    margin-left: 2px;
}

.gdfy-form input, .gdfy-form select, .gdfy-form textarea {
    width: 100% !important;
    padding: 0.95rem 1.1rem !important;
    border: 2px solid #f0f9ff !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-family: 'Inter', sans-serif !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: #f0f9ff7a !important;
    color: #1a2e27 !important;
}

.gdfy-form input:focus, .gdfy-form select:focus, .gdfy-form textarea:focus {
    outline: none;
    border-color: #1e73be;
    background: #ffffff;
    box-shadow:
        0 0 0 4px rgba(30, 115, 190, 0.1),
        0 2px 8px rgba(30, 115, 190, 0.08);
    transform: translateY(-1px);
}

.gdfy-form input:hover, .gdfy-form select:hover, .gdfy-form textarea:hover {
    border-color: #b8d4cb;
}

.gdfy-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-option {
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-label {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border: 2px solid #f0f9ff;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f0f9ff7a;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.radio-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e73be 0%, #1557a0 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.radio-label span {
    position: relative;
    z-index: 1;
}

.radio-option input[type="radio"]:checked + .radio-label::before {
    opacity: 1;
}

.radio-option input[type="radio"]:checked + .radio-label {
    border-color: #1e73be;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(30, 115, 190, 0.3);
}

.radio-label:hover {
    border-color: #1e73be;
    transform: translateY(-2px);
}

.info-box {
    background: #f0f9ff;
    border-left: 4px solid #1e73be;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.75rem;
    font-size: 0.9rem;
    color: #1e3a5f;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, #1e73be 0%, #1557a0 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 12px rgba(30, 115, 190, 0.3);
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 115, 190, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn.processing {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn.processing::after {
    content: ' ⏳';
}

.message {
    display: none;
    margin: 1rem 0;
}

.message.show {
    display: block;
}

.success-msg {
    background: #d4edda;
    color: #155724;
    padding: 0.75rem;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.error-msg {
    background: #f8d7da;
    color: #721c24;
    padding: 0.75rem;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.success-message {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    animation: fadeIn 0.6s ease-out;
}

.success-message.active {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e73be 0%, #1e73be 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-icon::after {
    content: '✓';
    font-size: 2.5rem;
    color: #ffffff;
}

.success-message h2 {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    color: #1a2e27;
    margin-bottom: 0.75rem;
}

.success-message p {
    color: #1e3a5f;
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .header h1 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-content {
        padding: 1.75rem;
    }

    .radio-group {
        flex-direction: column;
    }
}

input::placeholder,
textarea::placeholder {
    color: #b8b8b8;
}

/* Pricing Page CSS */
.pricing-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* Toggle */
.toggle-wrapper {
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e0e7ff;
    border-radius: 30px;
    padding: 5px;
}

.toggle-wrapper label {
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.toggle-wrapper input[type="radio"] {
    display: none;
}

.toggle-wrapper input:checked + label {
    background: #2563eb;
    color: #fff;
}

/* Plans Grid */
.plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.plan-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.plan-header {
    padding: 25px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.plan-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #1e40af;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin: 15px 0 5px;
}

.price small {
    font-size: 0.9rem;
    color: #666;
}

.plan-features {
    padding: 20px 25px;
    text-align: left;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.plan-features li::before {
    content: "✔";
    color: #2563eb;
    font-weight: bold;
    margin-right: 8px;
}

.plan-features li.disabled::before {
    content: "✖";
    color: #9ca3af;
}

.plan-features li.disabled {
    color: #9ca3af;
}

.plan-footer {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

.plan-footer a {
    display: inline-block;
    background: #2563eb;
    color: #fff !important;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s;
}

.plan-footer a:hover {
    background: #1d4ed8;
}

/* Partnership */
.plan-card.partnership .plan-header {
    background: #e0f2fe;
}

.plan-card.partnership .plan-features {
    text-align: center;
}

/* Hide inactive plans */
.plans[data-active="yearly"] .monthly-plan {
    display: none;
}

.plans[data-active="monthly"] .yearly-plan {
    display: none;
}