.elementor-3285 .elementor-element.elementor-element-d3803e7{--display:flex;}/* Start custom CSS for html, class: .elementor-element-5ce2e80 *//* --- Global Variables --- */
:root {
    --f2r-black: #000000;
    --f2r-white: #ffffff;
    --f2r-gray-bg: #f9f9f9;
    --f2r-gray-border: #e5e5e5;
    --f2r-text-muted: #555555;
}

/* Animations */
@keyframes f2rSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.f2r-stacked-reg-wrapper {
    font-family: inherit;
    background-color: var(--f2r-white);
}

/* =========================================
   SECTION 1: TOP CONTENT
   ========================================= */
.f2r-top-content {
    padding: 80px 20px 60px;
    background-color: var(--f2r-gray-bg);
    border-bottom: 1px solid var(--f2r-gray-border);
}

.f2r-content-inner {
    max-width: 1000px;
    margin: 0 auto;
    animation: f2rSlideUp 0.8s ease forwards;
}

.f2r-text-center {
    text-align: center;
    margin-bottom: 50px;
}

.f2r-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--f2r-black);
    color: var(--f2r-white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.f2r-main-title {
    font-size: 42px;
    color: var(--f2r-black);
    margin-bottom: 15px;
    font-weight: 400;
}

.f2r-main-title strong {
    font-weight: 800;
}

.f2r-main-subtitle {
    font-size: 18px;
    color: var(--f2r-text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Grid */
.f2r-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.f2r-feature-card {
    background: var(--f2r-white);
    padding: 25px;
    border: 1px solid var(--f2r-gray-border);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.f2r-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--f2r-black);
}

.f2r-feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--f2r-black);
}

.f2r-feature-card p {
    font-size: 14px;
    color: var(--f2r-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* =========================================
   SECTION 2: CENTERED FORM
   ========================================= */
.f2r-bottom-form-section {
    padding: 60px 20px 100px;
    background-color: var(--f2r-white);
}

.f2r-form-card {
    max-width: 650px; /* Keeps the form from getting too wide */
    margin: 0 auto;
    background: var(--f2r-white);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid var(--f2r-gray-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    animation: f2rSlideUp 1s ease 0.2s forwards;
    opacity: 0;
}

.f2r-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.f2r-form-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--f2r-black);
}

.f2r-form-header p {
    color: var(--f2r-text-muted);
    font-size: 15px;
}

/* --- DOKAN FORM COMPACT OVERRIDES --- */
.f2r-compact-dokan-form .dokan-form-group {
    margin-bottom: 15px !important; /* Tightened spacing between rows */
}

.f2r-compact-dokan-form label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--f2r-black) !important;
    margin-bottom: 6px !important;
    display: block !important;
}

/* Compact Inputs */
.f2r-compact-dokan-form input[type="text"],
.f2r-compact-dokan-form input[type="email"],
.f2r-compact-dokan-form input[type="password"],
.f2r-compact-dokan-form input[type="tel"],
.f2r-compact-dokan-form select {
    width: 100% !important;
    padding: 10px 14px !important; /* Reduced padding for smaller height */
    height: 42px !important; /* Shorter input boxes */
    font-size: 14px !important;
    border: 1.5px solid var(--f2r-gray-border) !important;
    border-radius: 6px !important; /* Sharper, more modern corners */
    background: var(--f2r-gray-bg) !important;
    color: var(--f2r-black) !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

/* Focus State */
.f2r-compact-dokan-form input:focus,
.f2r-compact-dokan-form select:focus {
    background: var(--f2r-white) !important;
    border-color: var(--f2r-black) !important;
    outline: none !important;
}

/* Solid Black Submit Button */
.f2r-compact-dokan-form button[type="submit"],
.f2r-compact-dokan-form input[type="submit"] {
    width: 100% !important;
    padding: 14px !important;
    background-color: var(--f2r-black) !important;
    color: var(--f2r-white) !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    margin-top: 20px;
    transition: background 0.3s ease !important;
}

.f2r-compact-dokan-form button[type="submit"]:hover,
.f2r-compact-dokan-form input[type="submit"]:hover {
    background-color: #333 !important;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .f2r-main-title { font-size: 32px; }
    .f2r-form-card { padding: 30px 20px; }
    .f2r-top-content { padding: 50px 15px 40px; }
}/* End custom CSS */