/* Mobile Responsive CSS - Fuzul Ev Campaign */
/* Professional Mobile Design */

/* Remove device error completely */
.o-device-error {
    display: none !important;
}

/* Ensure all content is visible */
header, main, footer, form {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.js-hide {
    display: block !important;
}

/* Mobile Menu Toggle Button Styles */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 15px;
    z-index: 1000;
    background: rgba(26, 64, 136, 0.95);
    border: 2px solid white;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* Base Mobile Styles */
@media screen and (max-width: 768px) {
    
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    body {
        font-size: 14px;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    /* Hide desktop search */
    .js-search-btn,
    .sub-menu-hamburger {
        display: none !important;
    }
    
    /* Container adjustments - Tam genişlik */
    .o-container {
        max-width: 100%;
        width: 100%;
        padding: 0 10px;
        margin: 0 auto;
    }
    
    /* Header Mobile - Fixed at top */
    .o-header {
        padding: 12px 0;
        background: #1a4088 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
    }
    
    .o-header__wrapper {
        padding: 0;
    }
    
    .o-header__bottom {
        padding: 0;
    }
    
    .o-header__bottom-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 10px;
        position: relative;
        width: 100%;
    }
    
    .o-header__logo {
        width: auto;
        text-align: center;
        margin: 0;
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .o-header__logo a {
        display: inline-block;
    }
    
    .o-header__logo svg {
        width: 100px;
        height: auto;
    }
    
    /* Navigation Mobile - Full screen overlay */
    .o-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(180deg, #1a4088 0%, #143560 100%);
        flex-direction: column;
        padding: 100px 25px 30px;
        z-index: 999;
        overflow-y: auto;
        animation: slideInLeft 0.3s ease-out;
        backdrop-filter: blur(10px);
    }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-100%);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .o-nav.mobile-open {
        display: flex;
    }
    
    /* Close button in mobile menu */
    .o-nav.mobile-open::before {
        content: '×';
        position: fixed;
        top: 15px;
        left: 15px;
        width: 45px;
        height: 45px;
        background: rgba(255,255,255,0.2);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: white;
        cursor: pointer;
        z-index: 1000;
        border: 2px solid rgba(255,255,255,0.3);
    }
    
    .o-nav__item {
        padding: 18px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        color: white !important;
        font-size: 17px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
        border-radius: 10px;
        margin-bottom: 8px;
        background: rgba(255,255,255,0.05);
    }
    
    .o-nav__item:active {
        background: rgba(255,255,255,0.15);
        transform: scale(0.98);
    }
    
    .o-nav__item-contact {
        background: linear-gradient(135deg, #1ebec9 0%, #17a3ad 100%);
        border: none;
        margin-top: 10px;
    }
    
    .o-header-actions {
        position: relative;
        z-index: 1001;
    }
    
    /* Main Content - Add top padding for fixed header */
    .main-wrapper {
        padding-top: 75px;
        min-height: calc(100vh - 75px);
        width: 100%;
    }
    
    .o-page {
        padding: 0;
        background: #f8f9fa;
        width: 100%;
    }
    
    /* Section Headers */
    .o-section,
    .o-sub-section {
        padding: 25px 10px;
        background: white;
        margin-bottom: 2px;
        width: 100%;
    }
    
    .o-section-head {
        margin-bottom: 20px;
        padding: 0 10px;
        width: 100%;
        text-align: center;
    }
    
    .o-section-head--centered {
        text-align: center;
    }
    
    .o-section-head--button-right {
        flex-direction: column;
        align-items: stretch;
    }
    
    .o-section-head__content {
        width: 100%;
    }
    
    .o-section-head__button {
        margin-top: 15px;
        width: 100%;
    }
    
    .o-section-head__action {
        width: 100%;
        text-align: center;
        display: block;
    }
    
    /* Campaign Calculator Mobile */
    .campaign-calculator {
        padding: 25px 15px;
        margin: 15px 5px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        width: calc(100% - 10px);
        max-width: 100%;
    }
    
    .calculator-title {
        font-size: 24px;
        margin-bottom: 25px;
        text-align: center;
        color: #1a4088;
        font-weight: 800;
    }
    
    .package-selection {
        grid-template-columns: 1fr !important;
        gap: 12px;
        margin-bottom: 25px;
        width: 100%;
    }
    
    .package-option {
        padding: 20px 15px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 15px;
        text-align: left;
        border: 3px solid #e0e0e0;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .package-option:active {
        transform: scale(0.98);
    }
    
    .package-option svg {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }
    
    .package-name {
        font-size: 17px;
        flex: 1;
        font-weight: 700;
        color: #333;
    }
    
    .package-option.selected {
        background: linear-gradient(135deg, #1a4088 0%, #1ebec9 100%);
        border-color: #1a4088;
        box-shadow: 0 6px 20px rgba(26, 64, 136, 0.3);
    }
    
    .package-option.selected .package-name {
        color: white;
    }
    
    .package-option.selected svg {
        stroke: white;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    }
    
    /* Form Fields Mobile */
    .form-field {
        margin-bottom: 22px;
        width: 100%;
    }
    
    .form-field label {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 10px;
        display: block;
        text-align: left;
    }
    
    .form-field input,
    .form-field select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        padding: 16px 15px;
        border-radius: 10px;
        border: 2px solid #ddd;
        transition: all 0.3s;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-field input:focus,
    .form-field select:focus {
        border-color: #1ebec9;
        box-shadow: 0 0 0 3px rgba(30, 190, 201, 0.1);
    }
    
    .form-row {
        margin-bottom: 22px;
        width: 100%;
    }
    
    .form-row label {
        display: block;
        text-align: left;
        margin-bottom: 10px;
        font-size: 15px;
        font-weight: 600;
    }
    
    .form-row input,
    .form-row select,
    .form-row textarea {
        font-size: 16px !important;
        padding: 16px 15px;
        border-radius: 10px;
        border: 2px solid #ddd;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-row input:focus,
    .form-row select:focus,
    .form-row textarea:focus {
        border-color: #1ebec9;
        box-shadow: 0 0 0 4px rgba(30, 190, 201, 0.15);
    }
    
    .form-row-half {
        grid-template-columns: 1fr !important;
        gap: 0;
        width: 100%;
    }
    
    .form-row textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .vade-options {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px;
        margin-top: 15px;
        width: 100%;
    }
    
    .vade-btn {
        padding: 16px 8px;
        font-size: 14px;
        font-weight: 700;
        border-radius: 10px;
        min-height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 3px solid #e0e0e0;
        background: white;
        color: #333;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    
    .vade-btn:active {
        transform: scale(0.95);
    }
    
    .vade-btn.selected {
        background: linear-gradient(135deg, #1a4088 0%, #1ebec9 100%);
        color: white;
        border-color: #1a4088;
        box-shadow: 0 4px 15px rgba(26, 64, 136, 0.3);
    }
    
    /* Calculation Box Mobile */
    .calculation-box {
        padding: 25px 15px;
        margin: 25px 0;
        border-radius: 12px;
    }
    
    .calc-result-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .calc-result-item {
        background: rgba(255,255,255,0.15);
        padding: 15px;
        border-radius: 8px;
    }
    
    .calc-result-label {
        font-size: 13px;
        margin-bottom: 8px;
        opacity: 0.9;
    }
    
    .calc-result-value {
        font-size: 24px;
        font-weight: 700;
    }
    
    /* Info Alert Mobile */
    .info-alert {
        padding: 15px;
        font-size: 13px;
        margin: 20px 0;
        border-radius: 8px;
    }
    
    .info-alert strong {
        display: block;
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .info-alert p {
        margin: 5px 0;
        line-height: 1.5;
    }
    
    /* Campaign Wizard Mobile */
    .campaign-form-wizard {
        padding: 20px 15px;
        margin: 15px 5px;
        border-radius: 12px;
        background: white;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        width: calc(100% - 10px);
        max-width: 100%;
    }
    
    .wizard-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        margin-bottom: 30px;
        position: relative;
        padding: 10px 0;
    }
    
    .wizard-steps::before {
        display: none; /* Hide line on mobile */
    }
    
    .wizard-step {
        flex: none;
        margin: 0;
    }
    
    .wizard-step-circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
        font-weight: 800;
        box-shadow: 0 3px 10px rgba(0,0,0,0.15);
        margin: 0 auto 10px;
        border: 3px solid #e0e0e0;
    }
    
    .wizard-step.active .wizard-step-circle {
        background: linear-gradient(135deg, #1a4088 0%, #1ebec9 100%);
        box-shadow: 0 6px 20px rgba(30, 190, 201, 0.5);
        border-color: #1a4088;
        transform: scale(1.1);
    }
    
    .wizard-step.completed .wizard-step-circle {
        background: #28a745;
        border-color: #28a745;
    }
    
    .wizard-step-title {
        font-size: 12px;
        margin-top: 8px;
        font-weight: 700;
        line-height: 1.2;
    }
    
    .wizard-step.active .wizard-step-title {
        color: #1ebec9;
        font-weight: 800;
    }
    
    .wizard-content {
        min-height: auto;
        padding: 0;
    }
    
    .wizard-panel h2 {
        font-size: 22px;
        margin-bottom: 25px;
        font-weight: 800;
        text-align: center;
        color: #1a4088;
    }
    
    .wizard-buttons {
        position: sticky;
        bottom: 0;
        background: white;
        padding: 18px 15px 12px;
        margin: 25px -15px -20px;
        border-top: 3px solid #f0f0f0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        z-index: 10;
        width: calc(100% + 30px);
        box-sizing: border-box;
    }
    
    .wizard-buttons .btn {
        width: 100%;
        padding: 18px 20px;
        font-size: 17px;
        font-weight: 800;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .wizard-buttons .btn-primary {
        background: linear-gradient(135deg, #1ebec9 0%, #17a3ad 100%);
    }
    
    .wizard-buttons .btn-secondary {
        background: #f0f0f0;
        color: #666;
    }
    
    #prevBtn[style*="display: none"] {
        display: none !important;
    }
    
    #nextBtn:only-child {
        grid-column: 1 / -1;
    }
    
    /* Payment Info Mobile */
    .payment-info-box {
        padding: 20px 15px;
        border-radius: 12px;
        width: 100%;
        margin: 0 auto;
    }
    
    .payment-info-title {
        font-size: 20px;
        margin-bottom: 25px;
        font-weight: 700;
        text-align: center;
    }
    
    .payment-detail {
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        margin-bottom: 18px;
        border-radius: 10px;
        width: 100%;
    }
    
    .payment-detail > div {
        width: 100%;
    }
    
    .payment-detail-label {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .payment-detail-value {
        font-size: 16px;
        word-break: break-all;
        margin-top: 5px;
        font-weight: 700;
    }
    
    .copy-btn {
        margin-top: 12px;
        margin-left: 0;
        width: 100%;
        padding: 12px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 6px;
    }
    
    /* File Upload Mobile */
    .file-upload-area {
        padding: 40px 20px;
        border-width: 3px;
        border-radius: 12px;
    }
    
    .file-upload-icon {
        font-size: 48px;
        margin-bottom: 15px;
    }
    
    .file-upload-icon svg {
        width: 64px !important;
        height: 64px !important;
    }
    
    .file-upload-text {
        font-size: 15px;
        font-weight: 600;
        color: #333;
    }
    
    .file-upload-hint {
        font-size: 12px;
        margin-top: 8px;
    }
    
    .uploaded-file {
        padding: 15px;
        margin-top: 15px;
        border-radius: 8px;
    }
    
    .uploaded-file-name {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .remove-file-btn {
        width: 100%;
        padding: 10px;
        margin-top: 10px;
    }
    
    /* Campaign Hero Mobile */
    .campaign-hero {
        padding: 35px 15px;
        margin: 15px 5px;
        border-radius: 12px;
        width: calc(100% - 10px);
        text-align: center;
    }
    
    .campaign-hero h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
        font-weight: 800;
    }
    
    .campaign-hero p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Page Content */
    .o-page-content {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .o-page-content--small {
        padding: 0 10px;
        width: 100%;
    }
    
    .o-page-content h2 {
        text-align: center;
        padding: 0 5px;
    }
    
    .o-page-content p {
        text-align: left;
        padding: 0;
    }
    
    .o-page-content img {
        width: 100%;
        height: auto;
        border-radius: 12px !important;
        margin: 0 auto;
        display: block;
    }
    
    /* Feature Highlights Mobile */
    .feature-highlights {
        grid-template-columns: 1fr !important;
        gap: 12px;
        padding: 0 10px;
        width: 100%;
    }
    
    .feature-item {
        padding: 18px 15px;
        border-radius: 10px;
        border-left-width: 5px;
        width: 100%;
    }
    
    .feature-item h4 {
        font-size: 16px;
        margin-bottom: 10px;
        font-weight: 700;
    }
    
    .feature-item p {
        font-size: 14px;
        line-height: 1.6;
        color: #666;
    }
    
    /* Campaign List */
    .c-campaigns {
        padding: 0 10px;
        width: 100%;
    }
    
    .c-campaigns__box {
        margin-bottom: 20px;
        border-radius: 12px;
        overflow: hidden;
        width: 100%;
    }
    
    .c-campaigns__head {
        padding: 20px 15px;
        text-align: center;
    }
    
    .c-campaigns__head-title {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 12px;
        font-weight: 700;
    }
    
    .c-campaigns__head-desc {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .c-campaigns__image {
        width: 100%;
    }
    
    .c-campaigns__image img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    /* Popup Mobile */
    .campaign-popup-overlay {
        padding: 0;
        align-items: flex-end;
    }
    
    .campaign-popup {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 20px 20px 0 0;
        max-height: 90vh;
        overflow-y: auto;
        animation: slideUp 0.4s ease-out;
    }
    
    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .popup-header {
        padding: 25px 20px;
    }
    
    .popup-close {
        width: 40px;
        height: 40px;
        font-size: 24px;
        top: 12px;
        right: 12px;
    }
    
    .popup-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .popup-title {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .popup-subtitle {
        font-size: 15px;
    }
    
    .popup-body {
        padding: 25px 20px 30px;
    }
    
    .popup-body h3 {
        font-size: 18px;
    }
    
    .countdown-timer {
        gap: 12px;
        margin: 20px 0;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 12px 10px;
        border-radius: 8px;
    }
    
    .countdown-number {
        font-size: 26px;
        font-weight: 700;
    }
    
    .countdown-label {
        font-size: 11px;
        font-weight: 600;
    }
    
    .popup-features {
        margin: 20px 0;
    }
    
    .popup-feature-item {
        font-size: 14px;
        margin-bottom: 14px;
        padding: 10px;
        background: rgba(26, 64, 136, 0.05);
        border-radius: 6px;
    }
    
    .popup-feature-icon {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
    
    .popup-cta {
        padding: 16px;
        font-size: 17px;
        font-weight: 700;
        border-radius: 10px;
    }
    
    /* Footer Mobile */
    .o-footer {
        padding: 35px 0 120px;
    }
    
    .o-footer__bottom {
        padding: 0;
    }
    
    .o-footer__nav-wrapper {
        flex-direction: column;
        padding: 0 10px;
    }
    
    .o-footer__nav {
        margin-bottom: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    
    .o-footer__nav:last-child {
        border-bottom: none;
    }
    
    .o-footer__nav .h3 {
        font-size: 17px;
        margin-bottom: 15px;
        font-weight: 700;
    }
    
    .o-footer__nav a {
        font-size: 14px;
        padding: 10px 0;
        display: block;
        line-height: 1.5;
    }
    
    .o-footer__top {
        padding: 25px 0;
    }
    
    .o-footer__top-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 0 10px;
    }
    
    .o-footer__logo {
        margin-bottom: 20px;
    }
    
    .o-footer__logo img {
        width: 80px;
    }
    
    .o-footer__text {
        margin-bottom: 25px;
    }
    
    .o-footer__text p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .o-footer__links {
        width: 100%;
    }
    
    .o-footer__phone {
        justify-content: center;
        margin-bottom: 20px;
        font-size: 18px;
        font-weight: 700;
    }
    
    .o-footer__phone i {
        margin-right: 8px;
    }
    
    .o-footer__social {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .o-footer__social a {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.1);
        border-radius: 8px;
    }
    
    .o-footer__actions {
        position: relative;
        width: 100%;
        padding: 0 10px;
        margin-top: 20px;
    }
    
    .o-footer__actions .c-button {
        width: 100%;
    }
    
    .o-footer__mobile-actions {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 12px 10px;
        background: #1a4088;
        box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
        z-index: 100;
    }
    
    .o-footer__mobile-actions .c-button {
        width: 100%;
        padding: 16px;
        font-size: 16px;
        font-weight: 700;
    }
    
    /* Breadcrumb Mobile */
    .o-breadcrumb {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 12px 10px;
        margin: 0 0 15px 0;
        width: 100%;
    }
    
    .o-breadcrumb__list {
        flex-wrap: nowrap;
        gap: 5px;
        justify-content: flex-start;
        width: max-content;
        min-width: 100%;
    }
    
    .o-breadcrumb__item a {
        font-size: 12px;
        padding: 10px 15px;
        white-space: nowrap;
        border-radius: 20px;
    }
    
    .o-breadcrumb__item:after {
        margin: 0 5px;
    }
    
    /* Section Heads Mobile */
    .o-section-head {
        text-align: center;
        width: 100%;
        padding: 0 10px;
    }
    
    .o-section-head__content {
        width: 100%;
        max-width: 100%;
    }
    
    .o-section-head__title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
        font-weight: 800;
        padding: 0 5px;
    }
    
    .o-section-head__desc {
        font-size: 15px;
        line-height: 1.7;
        padding: 0 5px;
    }
    
    .o-section-head__category {
        font-size: 14px;
        margin-bottom: 12px;
        font-weight: 600;
    }
    
    /* Buttons Mobile - Touch Friendly */
    .c-button {
        padding: 18px 25px;
        font-size: 16px;
        width: 100%;
        text-align: center;
        border-radius: 10px;
        font-weight: 700;
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .c-button span {
        display: block;
    }
    
    .btn {
        padding: 16px 25px;
        font-size: 16px;
        border-radius: 10px;
        font-weight: 700;
        min-height: 52px;
        width: 100%;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #1a4088 0%, #1ebec9 100%);
    }
    
    .apply-btn {
        padding: 20px 25px;
        font-size: 18px;
        font-weight: 800;
        border-radius: 12px;
        margin-top: 25px;
        width: 100%;
    }
    
    /* Checkbox Rows Mobile */
    .checkbox-row {
        padding: 15px;
        background: #f8f9fa;
        border-radius: 10px;
        margin-bottom: 15px;
        display: flex;
        gap: 12px;
        width: 100%;
        align-items: flex-start;
    }
    
    .checkbox-row input[type="checkbox"] {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
        margin-top: 2px;
        cursor: pointer;
    }
    
    .checkbox-row label {
        font-size: 14px;
        line-height: 1.6;
        flex: 1;
        text-align: left;
    }
    
    .checkbox-row label a {
        color: #1a4088;
        font-weight: 600;
        text-decoration: underline;
    }
    
    /* Error/Success Message Boxes */
    .error-message-box,
    .success-message-box {
        margin: 20px 0;
        padding: 18px 15px;
        border-radius: 10px;
        border-width: 2px;
    }
    
    .error-message-box strong,
    .success-message-box strong {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .error-message-box p,
    .success-message-box p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Success Screen Mobile */
    .success-screen {
        padding: 40px 20px;
    }
    
    .success-icon {
        width: 90px;
        height: 90px;
        font-size: 45px;
        margin: 0 auto 25px;
    }
    
    .success-icon svg {
        width: 50px !important;
        height: 50px !important;
    }
    
    .success-title {
        font-size: 24px;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .success-message {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .success-message p {
        margin-bottom: 12px;
    }
    
    .success-message strong {
        color: #1a4088;
    }
    
    /* O-Call Form Mobile */
    .o-call {
        padding: 0;
        width: 100%;
    }
    
    .o-call__box {
        padding: 0;
        width: 100%;
    }
    
    .o-call-form {
        padding: 25px 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .o-call-form__head {
        margin-bottom: 25px;
        text-align: center;
    }
    
    .o-call-form__title {
        font-size: 26px;
        line-height: 1.3;
        font-weight: 800;
    }
    
    .o-call-form__content {
        width: 100%;
    }
    
    .o-call-form__content--centered {
        max-width: 100% !important;
        width: 100%;
    }
    
    .o-call-form__row {
        margin-bottom: 20px;
        width: 100%;
    }
    
    .o-call-form__row input,
    .o-call-form__row textarea {
        font-size: 16px !important;
        padding: 16px 15px;
        border-radius: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .o-call-form__row--checkbox {
        padding: 15px;
        background: #f8f9fa;
        border-radius: 10px;
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }
    
    .o-call-form__row--checkbox input {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }
    
    .o-call-form__row--checkbox label {
        font-size: 14px;
        line-height: 1.6;
        flex: 1;
        text-align: left;
    }
    
    /* Loading Screen */
    .loading {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.95);
        z-index: 9999;
    }
    
    /* Tables Mobile - Card Style */
    .data-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .data-table thead {
        display: none;
    }
    
    .data-table tbody,
    .data-table tr,
    .data-table td {
        display: block;
    }
    
    .data-table tr {
        margin-bottom: 20px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        padding: 15px;
        background: white;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    
    .data-table td {
        text-align: right;
        padding: 12px 10px;
        border-bottom: 1px solid #f0f0f0;
        position: relative;
        padding-left: 45%;
        font-size: 13px;
    }
    
    .data-table td:last-child {
        border-bottom: none;
    }
    
    .data-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        font-weight: 700;
        text-align: left;
        color: #666;
        font-size: 12px;
    }
    
    .data-table .btn {
        width: 100%;
        margin-top: 5px;
    }
}

/* Tablet Adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .o-container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .package-selection {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vade-options {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .wizard-steps {
        flex-wrap: nowrap;
    }
    
    .calc-result-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Touch Device Improvements */
@media (hover: none) and (pointer: coarse) {
    button, .btn, .c-button, a {
        min-height: 44px;
        min-width: 44px;
    }
    
    input, select, textarea {
        font-size: 16px !important;
    }
}

/* Very Small Screens (iPhone SE, small Android) */
@media screen and (max-width: 375px) {
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .o-header__logo svg {
        width: 70px;
    }
    
    .package-selection {
        gap: 10px;
    }
    
    .package-option {
        padding: 15px 12px;
    }
    
    .package-option svg {
        width: 35px;
        height: 35px;
    }
    
    .package-name {
        font-size: 15px;
    }
    
    .vade-options {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .wizard-step-circle {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .wizard-step-title {
        font-size: 10px;
    }
    
    .campaign-hero h1 {
        font-size: 22px;
    }
    
    .popup-title {
        font-size: 20px;
    }
    
    .countdown-item {
        min-width: 65px;
        padding: 10px 8px;
    }
    
    .countdown-number {
        font-size: 22px;
    }
}

/* Orientation: Landscape on Mobile */
@media screen and (max-width: 896px) and (orientation: landscape) {
    .campaign-popup {
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .popup-body {
        max-height: 60vh;
        overflow-y: auto;
    }
    
    .campaign-hero {
        padding: 20px 15px;
    }
    
    .wizard-steps {
        margin-bottom: 15px;
    }
    
    .main-wrapper {
        padding-top: 60px;
    }
}

/* Admin Panel Mobile Specific */
@media screen and (max-width: 768px) {
    .admin-container {
        padding: 10px;
    }
    
    .admin-header {
        padding: 20px 15px;
    }
    
    .admin-header h1 {
        font-size: 22px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 20px;
    }
    
    .tab {
        font-size: 13px;
        padding: 10px 15px;
        white-space: nowrap;
    }
    
    .admin-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .admin-card h2 {
        font-size: 18px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important;
        padding: 12px;
    }
}

/* Ensure smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Improve touch targets */
@media (hover: none) {
    a, button, .btn, .c-button, input[type="submit"], input[type="button"] {
        min-height: 44px;
        min-width: 44px;
    }
}

