/*
Theme Name: RipMyBills Theme  
Theme URI: http://localhost/ripmybills
Description: Exact replica of ripmybills.com design
Version: 2.0
Author: Custom Development
Text Domain: ripmybills
*/

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Header */
.site-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.trust-badges {
    display: flex;
    gap: 15px;
    align-items: center;
}

.trust-badges img {
    height: 40px;
    width: auto;
}

/* Main Content Area */
.main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* Hero Title */
.hero-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hero-title .emergency {
    color: #e53935;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list li {
    padding: 8px 0;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 20px;
}

/* Form Container */
.form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin: 40px 0;
}

/* Progress Bar - Override plugin styles */
.drf-progress-wrapper {
    margin-bottom: 30px !important;
}

.drf-progress-bar {
    height: 6px !important;
    background: #e5e5e5 !important;
    border-radius: 10px !important;
}

.drf-progress-fill {
    background: #4CAF50 !important;
    height: 100% !important;
}

/* Question */
.form-question,
.drf-question {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin-bottom: 25px !important;
    text-align: center !important;
}

/* Button Options */
.drf-radio-group {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 15px !important;
}

.drf-radio-option label {
    background: #fff !important;
    border: 2px solid #e0e0e0 !important;
    padding: 15px 20px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

.drf-radio-option label:hover {
    border-color: #4CAF50 !important;
    background: #f1f8f4 !important;
}

.drf-radio-option input:checked+label {
    background: #4CAF50 !important;
    color: #fff !important;
    border-color: #4CAF50 !important;
}

/* Input Fields */
.drf-input,
.drf-select {
    width: 100% !important;
    padding: 14px 16px !important;
    font-size: 16px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 6px !important;
    transition: all 0.3s !important;
}

.drf-input:focus,
.drf-select:focus {
    outline: none !important;
    border-color: #4CAF50 !important;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1) !important;
}

/* Buttons */
.drf-button,
.cta-button {
    background: #4CAF50 !important;
    color: #fff !important;
    padding: 14px 40px !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

.drf-button:hover,
.cta-button:hover {
    background: #45a049 !important;
    transform: translateY(-1px) !important;
}

/* About Sections */
.about-section {
    background: #f8f9fa;
    padding: 50px 20px;
    margin: 40px 0;
}

.about-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2962ff;
    margin-bottom: 15px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 20px;
}

.cta-section {
    text-align: center;
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    text-decoration: none;
    margin: 10px;
}

/* Footer */
.site-footer {
    background: #f8f9fa;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #e5e5e5;
    margin-top: 50px;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #2962ff;
    text-decoration: none;
    font-size: 14px;
}

.footer-copyright {
    font-size: 13px;
    color: #666;
}

/* Final Page Styles */
.drf-final-page {
    text-align: center !important;
    padding: 20px !important;
}

.drf-final-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
}

.drf-phone-number {
    background: #4CAF50 !important;
    color: #fff !important;
    padding: 18px 40px !important;
    border-radius: 8px !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    display: inline-block !important;
    margin: 20px 0 !important;
}

.drf-agent-status {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 18px !important;
    margin: 20px 0 !important;
}

.drf-status-indicator {
    width: 12px !important;
    height: 12px !important;
    background: #4CAF50 !important;
    border-radius: 50% !important;
    animation: pulse 2s infinite !important;
}

.drf-countdown-timer {
    font-size: 42px !important;
    color: #e53935 !important;
    font-weight: 700 !important;
    margin: 20px 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .hero-title {
        font-size: 24px;
    }

    .drf-radio-group {
        grid-template-columns: 1fr !important;
    }

    .trust-badges {
        justify-content: center;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}