/* ============================================
   Sonipat Home Service - Main Stylesheet
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #0f172a;
    overflow-x: hidden;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background: #0f172a;
    color: #e2e8f0;
    padding: 8px 0;
    font-size: 0.75rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar i {
    color: #f97316;
    margin-right: 5px;
}

.top-bar a {
    color: #f97316;
    text-decoration: none;
}

/* ============================================
   Marquee
   ============================================ */
.marquee-container {
    background: linear-gradient(90deg, #f97316, #fb923c);
    color: white;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-container marquee {
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .marquee-container marquee {
        font-size: 0.75rem;
    }
}

/* ============================================
   Header & Navigation
   ============================================ */
header {
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 15px;
    flex-wrap: wrap;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f05a28, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo span {
    font-size: 0.65rem;
    color: #f97316;
    display: block;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #f97316;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #334155;
    transition: 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f97316;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.user-name {
    font-weight: 600;
    color: #f97316;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 15px 0;
        background: white;
    }
    
    .nav-links.show {
        display: flex;
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn-outline {
    background: transparent;
    border: 1.5px solid #f97316;
    padding: 6px 14px;
    border-radius: 40px;
    font-weight: 600;
    color: #f97316;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 0.85rem;
    transition: 0.2s;
}

.btn-outline:hover {
    background: #f97316;
    color: white;
}

.btn-primary {
    background: #f97316;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: 0.2s;
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-1px);
}

.btn-block {
    width: 100%;
}
/* ============================================
   Hero Slider - Optimized for All Devices
   ============================================ */
.hero-slider {
    position: relative;
    background: linear-gradient(135deg, #fff5eb, #ffffff);
    overflow: hidden;
    min-height: 450px;
    padding: 20px 0;
}

.slide {
    display: none;
    padding: 30px 0;
    animation: fade 0.5s;
}

.slide.active-slide {
    display: block;
}

@keyframes fade {
    from { opacity: 0.4; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.slide-text {
    flex: 1;
    min-width: 250px;
}

.slide-text h2 {
    font-size: clamp(1.2rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #0f172a;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.slide-text p {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    color: #475569;
    margin-bottom: 25px;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.slide-img {
    flex: 1;
    text-align: center;
    min-width: 200px;
}

.slide-img img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-height: 300px;
    object-fit: cover;
    width: auto;
}

.slide-img i {
    font-size: clamp(80px, 15vw, 120px);
    color: #f97316;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: 0.2s;
    z-index: 10;
}

.slider-btn:hover {
    background: #f97316;
    color: white;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.dots {
    text-align: center;
    padding: 15px 0;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.2s;
}

.dot.active-dot {
    background: #f97316;
    width: 24px;
    border-radius: 10px;
}

/* ========== Tablet View (768px - 1024px) ========== */
@media (max-width: 1024px) {
    .hero-slider {
        min-height: 420px;
    }
    
    .slide-content {
        gap: 30px;
        padding: 0 30px;
    }
    
    .slide-text h2 {
        font-size: clamp(1.1rem, 4vw, 2rem);
    }
    
    .slide-text p {
        font-size: clamp(0.85rem, 3vw, 1rem);
    }
}

/* ========== Mobile View (481px - 768px) ========== */
@media (max-width: 768px) {
    .hero-slider {
        min-height: auto;
        padding: 10px 0;
    }
    
    .slide {
        padding: 20px 0;
    }
    
    .slide-content {
        flex-direction: column-reverse;
        gap: 25px;
        padding: 0 20px;
        text-align: center;
    }
    
    .slide-text {
        text-align: center;
        width: 100%;
    }
    
    .slide-text h2 {
        font-size: clamp(1rem, 4.5vw, 1.5rem);
        margin-bottom: 12px;
        letter-spacing: -0.3px;
    }
    
    .slide-text p {
        font-size: clamp(0.85rem, 3.8vw, 0.95rem);
        margin-bottom: 20px;
        line-height: 1.4;
        padding: 0 10px;
    }
    
    .slide-img {
        width: 100%;
        margin-top: 10px;
    }
    
    .slide-img img {
        max-height: 200px;
        width: auto;
        margin: 0 auto;
    }
    
    .slide-img i {
        font-size: clamp(70px, 12vw, 90px);
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        background: rgba(255, 255, 255, 0.9);
    }
    
    .prev {
        left: 5px;
    }
    
    .next {
        right: 5px;
    }
}

/* ========== Small Mobile View (up to 480px) ========== */
@media (max-width: 480px) {
    .hero-slider {
        min-height: auto;
    }
    
    .slide {
        padding: 15px 0;
    }
    
    .slide-content {
        gap: 20px;
        padding: 0 15px;
    }
    
    .slide-text h2 {
        font-size: clamp(1rem, 4vw, 1.3rem);
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .slide-text p {
        font-size: clamp(0.8rem, 3.5vw, 0.9rem);
        margin-bottom: 18px;
        line-height: 1.4;
        padding: 0 5px;
    }
    
    .slide-img img {
        max-height: 160px;
    }
    
    .slide-img i {
        font-size: clamp(60px, 10vw, 70px);
    }
    
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .dots {
        padding: 10px 0;
    }
    
    .dot {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
    
    .dot.active-dot {
        width: 20px;
    }
}

/* ========== Extra Small Devices (320px and below) ========== */
@media (max-width: 320px) {
    .slide-content {
        gap: 15px;
        padding: 0 12px;
    }
    
    .slide-text h2 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .slide-text p {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .slide-img img {
        max-height: 140px;
    }
}

/* Optional: Improve tap targets for mobile */
@media (max-width: 768px) {
    .slider-btn,
    .dot {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .slider-btn:active {
        transform: translateY(-50%) scale(0.95);
    }
    
    .dot:active {
        transform: scale(1.1);
    }
}











/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, #f97316, #fb923c);
    padding: 40px 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 10px 0;
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .stats-section {
        padding: 30px 0;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .stat-item i {
        font-size: 2rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
}

/* ============================================
   Services Section
   ============================================ */
.services-main {
    padding: 60px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0f172a;
}

.section-sub {
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
}

/* ============================================
   Category Tabs - ONLY MOBILE VIEW 3 COLUMNS WITH PERFECT TEXT ALIGNMENT
   ============================================ */

/* Desktop & Tablet - Horizontal Scroll (Original Style) */
.category-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin-bottom: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 5px 0 12px 0;
    scrollbar-width: thin;
}

.category-tabs::-webkit-scrollbar {
    height: 3px;
}
.category-tabs::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}
.category-tabs::-webkit-scrollbar-thumb {
    background: #f97316;
    border-radius: 10px;
}

.category-tab {
    flex: 0 0 auto;
    padding: 10px 20px;
    background: #f1f5f9;
    border: none;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.category-tab i {
    font-size: 0.9rem;
}

.category-tab:hover {
    background: #fef3c7;
    color: #f97316;
}

.category-tab.active-tab {
    background: #f97316;
    color: white;
    box-shadow: 0 2px 8px rgba(249,115,22,0.3);
}

/* ============================================ */
/* ONLY MOBILE VIEW - 3 COLUMNS WITH PERFECT TEXT ALIGNMENT */
/* ============================================ */
@media (max-width: 768px) {
    /* Override to grid layout */
    .category-tabs {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        overflow-x: visible !important;
        padding: 5px 0 10px 0 !important;
    }
    
    /* Remove scrollbar on mobile */
    .category-tabs::-webkit-scrollbar {
        display: none;
    }
    
    /* PERFECT TEXT ALIGNMENT FOR MOBILE */
    .category-tab {
        flex: auto !important;
        padding: 10px 6px !important;
        font-size: 0.7rem !important;
        font-weight: 500 !important;
        white-space: normal !important;
        word-break: break-word !important;
        text-align: center !important;
        justify-content: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 5px !important;
        line-height: 1.3 !important;
        min-height: 55px !important;
    }
    
    /* Icon styling on mobile */
    .category-tab i {
        font-size: 0.8rem !important;
        margin-right: 0 !important;
        display: block !important;
    }
    
    /* Text styling - ensures proper centering */
    .category-tab span {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
    }
}

/* Small mobile - keep perfect alignment */
@media (max-width: 480px) {
    .category-tabs {
        gap: 5px !important;
    }
    
    .category-tab {
        padding: 8px 3px !important;
        font-size: 0.6rem !important;
        min-height: 50px !important;
    }
    
    .category-tab i {
        font-size: 0.7rem !important;
    }
}


/* Service Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Card */
.service-card {
    display: flex;
    gap: 15px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 3px solid #e2e8f0;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: #f97316;
}

.service-image-compact {
    flex-shrink: 0;
    width: 100px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #fff4e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 32px;
    color: #f97316;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: #0f172a;
}

.service-price {
    color: #f97316;
    font-weight: 700;
    font-size: 1rem;
    margin: 5px 0;
}

.service-info p {
    font-size: 0.75rem;
    color: #64748b;
    margin: 5px 0;
    line-height: 1.3;
}

.service-meta {
    font-size: 0.7rem;
    color: #94a3b8;
    margin: 5px 0;
}

.service-meta i {
    margin-right: 3px;
}

.service-buttons {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.btn-view {
    flex: 1;
    display: inline-block;
    padding: 5px 10px;
    background: #f1f5f9;
    color: #334155;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
    transition: 0.2s;
}

.btn-view:hover {
    background: #e2e8f0;
    color: #f97316;
}

.book-service-btn {
    flex: 1;
    background: none;
    border: 1px solid #f97316;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.7rem;
    color: #f97316;
    cursor: pointer;
    transition: 0.2s;
}

.book-service-btn:hover {
    background: #f97316;
    color: white;
}

@media (max-width: 768px) {
    .service-card {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }
    
    .service-image-compact,
    .service-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 10px;
    }
    
    .service-buttons {
        flex-direction: column;
    }
    
    .btn-view, .book-service-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .service-card {
        flex-direction: row;
        text-align: left;
    }
    
    .service-image-compact,
    .service-icon {
        width: 70px;
        height: 70px;
        margin: 0;
    }
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    grid-column: 1 / -1;
}

.loading-spinner i {
    font-size: 2.5rem;
    color: #f97316;
    margin-bottom: 15px;
    display: inline-block;
}

.loading-spinner span {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
}

.no-services {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    grid-column: 1 / -1;
}

.no-services i {
    font-size: 3rem;
    color: #cbd5e1;
    margin-bottom: 15px;
}

/* ============================================
   Why Choose Us
   ============================================ */
.why-choose-us {
    padding: 60px 0;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 16px;
    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature i {
    font-size: 2.5rem;
    color: #f97316;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.feature p {
    color: #64748b;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
    padding: 60px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: #f8fafc;
    padding: 25px;
    border-radius: 16px;
    position: relative;
}

.testimonial i:first-child {
    font-size: 2rem;
    color: #f97316;
    opacity: 0.3;
    margin-bottom: 15px;
    display: block;
}

.testimonial p {
    margin: 15px 0;
    font-style: italic;
    color: #334155;
}

.testimonial h4 {
    margin-top: 10px;
    color: #f97316;
    font-size: 0.9rem;
}

.rating {
    color: #fbbf24;
    margin-top: 5px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Auth Pages
   ============================================ */
.auth-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
}

.auth-box {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.auth-box h2 {
    text-align: center;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    font-family: inherit;
    font-size: 0.9rem;
}

.form-group textarea {
    border-radius: 20px;
    resize: vertical;
}

.auth-link {
    text-align: center;
    margin-top: 20px;
}

.auth-link a {
    color: #f97316;
    text-decoration: none;
}

.alert {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .auth-box {
        padding: 25px;
    }
}

/* ============================================
   Dashboard
   ============================================ */
.dashboard-container {
    padding: 40px 0;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 40px;
}

.dashboard-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.stat-card i {
    font-size: 2rem;
    color: #f97316;
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.dashboard-section {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
}

.dashboard-section h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f97316;
}

.booking-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.booking-info h4 {
    margin-bottom: 8px;
    color: #f97316;
}

.booking-info p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status.pending { background: #fef3c7; color: #b45309; }
.status.confirmed { background: #dcfce7; color: #15803d; }
.status.in_progress { background: #dbeafe; color: #1e40af; }
.status.completed { background: #e0e7ff; color: #3730a3; }
.status.cancelled { background: #fee2e2; color: #dc2626; }

.profile-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.info-row {
    padding: 10px;
    background: #f8fafc;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-card {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-info {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Services Page
   ============================================ */
.services-page {
    padding: 40px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.services-sidebar {
    float: left;
    width: 250px;
    margin-right: 30px;
}

.services-content {
    float: left;
    width: calc(100% - 280px);
}

.category-filter {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.category-filter h3 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f97316;
}

.category-filter ul {
    list-style: none;
    padding: 0;
}

.category-filter li {
    margin-bottom: 10px;
}

.category-filter a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: #334155;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.2s;
}

.category-filter a i {
    width: 20px;
    color: #f97316;
}

.category-filter a:hover,
.category-filter a.active {
    background: #f97316;
    color: white;
}

.service-meta {
    margin: 10px 0;
    font-size: 0.85rem;
    color: #64748b;
}

.service-meta i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .services-sidebar,
    .services-content {
        float: none;
        width: 100%;
    }
    
    .services-sidebar {
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .category-filter ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .category-filter li {
        margin-bottom: 0;
    }
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: #0f172a;
    color: #cbd5e1;
    margin-top: 60px;
}

.footer-main {
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: #f97316;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #f97316;
}

.footer-logo p {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-contact p {
    margin: 10px 0;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    width: 20px;
    color: #f97316;
}

.footer-contact a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.2s;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: #f97316;
}

.footer-links a:hover {
    color: #f97316;
    padding-left: 5px;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 0;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
    margin-bottom: 30px;
}

.payment-partners h4,
.social-media h4 {
    color: #f97316;
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.payment-icons i,
.payment-icons span {
    font-size: 2rem;
    color: #cbd5e1;
    transition: 0.2s;
}

.payment-icons i:hover {
    color: #f97316;
    transform: scale(1.1);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 50%;
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.2s;
}

.social-icons a:hover {
    background: #f97316;
    color: white;
    transform: translateY(-3px);
}

.footer-newsletter {
    text-align: center;
    padding: 30px 0;
    background: #0a0f1a;
    border-radius: 12px;
    margin-bottom: 30px;
}

.footer-newsletter h4 {
    color: white;
    margin-bottom: 10px;
}

.footer-newsletter p {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    background: #1e293b;
    color: white;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #94a3b8;
}

.btn-subscribe {
    background: #f97316;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.btn-subscribe:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

.footer-bottom {
    background: #0a0f1a;
    padding: 20px 0;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright p {
    margin: 5px 0;
    font-size: 0.85rem;
}

.developed {
    font-size: 0.8rem;
    opacity: 0.7;
}

.bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.bottom-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.2s;
}

.bottom-links a:hover {
    color: #f97316;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-col h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-middle {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-icons {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .btn-subscribe {
        width: 100%;
    }
    
    .bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   Pagination
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination a {
    padding: 8px 12px;
    background: #f1f5f9;
    border-radius: 8px;
    text-decoration: none;
    color: #334155;
}

.pagination a.active,
.pagination a:hover {
    background: #f97316;
    color: white;
}

/* ============================================
   Toast Message
   ============================================ */
.toast-message {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    z-index: 1000;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

/* ============================================
   App Badge
   ============================================ */
.app-badge .indus-badge {
    background: #000;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.app-badge .indus-badge i {
    font-size: 1.2rem;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(249,115,22,0.3);
}

.logo-icon i {
    font-size: 1.5rem;
    color: white;
}

.logo-text h1 {
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f05a28, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.65rem;
    color: #f97316;
    display: block;
}
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f05a28, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
}

.logo-text span {
    font-size: 0.65rem;
    color: #f97316;
    display: block;
}



/* Fix header text contrast */
.logo-text span {
    color: #f97316;
    background: transparent;
    font-weight: 600;
}

/* Fix button text contrast for better readability */
.btn-outline {
    color: #f97316;
    border-color: #f97316;
    background: transparent;
    font-weight: 600;
}

.btn-outline:hover {
    background: #f97316;
    color: #ffffff;
}

/* Fix category tab contrast */
.category-tab {
    color: #334155;
    background: #f1f5f9;
    font-weight: 500;
}

.category-tab.active-tab {
    background: #f97316;
    color: #ffffff;
}

/* Fix price badge contrast */
.price-badge {
    background: #f97316;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
}

/* Fix subscribe button contrast */
.btn-subscribe {
    background: #f97316;
    color: #ffffff;
    font-weight: 600;
}

.btn-subscribe:hover {
    background: #e05a1a;
}

/* Fix newsletter note */
.newsletter-note {
    color: #94a3b8;
    font-size: 0.7rem;
}


.other-websites-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}
.other-websites-list li {
    margin-bottom: 5px;
}
.other-websites-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.75rem;
}
.other-websites-list a:hover {
    color: #f97316;
}


<style>
/* Hero Slider */
.hero-slider { position: relative; background: linear-gradient(135deg, #fff5eb, #ffffff); overflow: hidden; min-height: 450px; }
.slide { display: none; animation: fadeIn 0.5s; }
.slide.active-slide { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.slide-content { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.slide-text { flex: 1; }
.slide-text h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; }
.slide-text p { font-size: 1.1rem; color: #475569; margin-bottom: 25px; }
.slide-img { flex: 1; text-align: center; }
.slide-img img { max-width: 100%; max-height: 300px; border-radius: 20px; object-fit: cover; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: white; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: 0.2s; }
.slider-btn:hover { background: #f97316; color: white; }
.prev { left: 10px; }
.next { right: 10px; }
.dots { text-align: center; padding: 10px; }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; margin: 0 4px; cursor: pointer; transition: 0.2s; }
.dot.active-dot { background: #f97316; width: 20px; border-radius: 10px; }

/* Stats Section */
.stats-section { background: linear-gradient(135deg, #f97316, #fb923c); padding: 40px 0; color: white; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.stat-item i { font-size: 2.5rem; margin-bottom: 10px; }
.stat-item h3 { font-size: 2rem; font-weight: 800; margin: 10px 0; }

/* Services Section */
.services-main { padding: 60px 0; background: white; }
.section-title { text-align: center; font-size: 2rem; font-weight: 800; margin-bottom: 10px; }

/* SERVICE COUNT BUTTON */
.service-count-container {
    display: flex;
    justify-content: center;
    margin: 20px 0 30px;
}
.service-count-badge {
    background: linear-gradient(135deg, #f97316, #fb923c);
    border-radius: 60px;
    padding: 15px 30px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
    transition: transform 0.3s ease;
}
.service-count-badge:hover {
    transform: scale(1.02);
}
.service-count-badge i {
    font-size: 2rem;
    color: white;
}
.service-count-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 50px;
}
.service-count-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}
.service-count-btn {
    background: white;
    color: #f97316;
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s;
}
.service-count-btn:hover {
    background: #1e293b;
    color: white;
    transform: scale(1.05);
}


/* ============================================ */
/* COMPACT ORDER STATUS WIDGET - STYLISH & SMALL */
/* ============================================ */
.order-status-widget {
    margin: 20px 0;
}

.status-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef9f4 100%);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.status-card:hover {
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.15);
    transform: translateY(-2px);
}

.status-card-inner {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 15px;
}

/* Status Icon */
.status-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}

.status-icon i {
    font-size: 1.5rem;
    color: white;
}

/* Status Content */
.status-content {
    flex: 1;
}

.status-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.status-label {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: #fef3c7;
    color: #b45309;
}

.status-badge.pending { background: #fef3c7; color: #b45309; }
.status-badge.confirmed { background: #dbeafe; color: #1e40af; }
.status-badge.in_progress { background: #ede9fe; color: #6d28d9; }
.status-badge.completed { background: #dcfce7; color: #15803d; }
.status-badge.cancelled { background: #fee2e2; color: #dc2626; }

.status-service {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
}

.status-id {
    font-size: 0.7rem;
    color: #94a3b8;
    font-family: monospace;
}

/* Status Action Link */
.status-action {
    flex-shrink: 0;
}

.status-link {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
    transition: all 0.3s ease;
}

.status-link:hover {
    background: #f97316;
    color: white;
    transform: translateX(3px);
}

/* Progress Section */
.status-progress {
    padding: 0 20px 15px 20px;
    position: relative;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.step-dot {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid white;
    box-shadow: 0 0 0 1px #cbd5e1;
}

.step.active .step-dot {
    background: #f97316;
    box-shadow: 0 0 0 2px #f97316;
    transform: scale(1.2);
}

.step.completed .step-dot {
    background: #10b981;
    box-shadow: 0 0 0 1px #10b981;
}

.step-text {
    font-size: 0.6rem;
    color: #94a3b8;
    font-weight: 500;
}

.step.active .step-text {
    color: #f97316;
    font-weight: 600;
}

.step.completed .step-text {
    color: #10b981;
}

/* Progress Bar */
.progress-bar {
    height: 3px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 5px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #f97316, #fb923c);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .status-card-inner {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .status-icon {
        width: 42px;
        height: 42px;
    }
    
    .status-icon i {
        font-size: 1.2rem;
    }
    
    .status-service {
        font-size: 0.8rem;
    }
    
    .step-text {
        font-size: 0.55rem;
    }
    
    .step-dot {
        width: 8px;
        height: 8px;
    }
}



@media (max-width: 480px) {
    .status-card-inner {
        flex-wrap: wrap;
    }
    
    .status-action {
        margin-left: auto;
    }
    
    .progress-steps {
        gap: 5px;
    }
    
    .step-text {
        font-size: 0.5rem;
    }
}







/* Coupon Banner */
.coupon-banner { background: linear-gradient(135deg, #fef3c7, #fde68a); border-radius: 16px; padding: 15px 25px; margin-bottom: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.coupon-banner-content { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.coupon-banner-content i { font-size: 1.5rem; color: #f97316; }
.coupon-banner-content span { color: #78350f; }
.coupon-banner-btn { background: #f97316; color: white; padding: 8px 20px; border-radius: 40px; text-decoration: none; font-weight: 600; transition: 0.2s; }
.coupon-banner-btn:hover { background: #ea580c; transform: scale(1.05); }

/* Category Tabs */
.category-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 40px; }
.category-tab { background: #f1f5f9; border: none; padding: 10px 24px; border-radius: 40px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: 0.2s; }
.category-tab.active-tab { background: #f97316; color: white; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; }
.service-card { display: flex; gap: 15px; background: white; border-radius: 16px; padding: 15px; border: 1px solid #e2e8f0; align-items: center; transition: 0.3s; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); border-color: #f97316; }
.service-image-compact { flex-shrink: 0; width: 80px; height: 80px; border-radius: 12px; overflow: hidden; background: #f1f5f9; }
.service-image-compact img { width: 100%; height: 100%; object-fit: cover; }
.service-icon { flex-shrink: 0; width: 80px; height: 80px; background: #fff4e6; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.service-icon i { font-size: 32px; color: #f97316; }
.service-info { flex: 1; }
.service-info h3 { font-size: 1rem; margin-bottom: 5px; font-weight: 700; }
.service-price-dual { background: linear-gradient(135deg, #fef9f4 0%, #fff5eb 100%); border-radius: 12px; padding: 8px 12px; margin: 8px 0; border-left: 3px solid #f97316; }
.price-full, .price-minimum, .price-balance { display: flex; justify-content: space-between; align-items: center; padding: 4px 0; font-size: 0.75rem; }
.price-label { color: #64748b; font-weight: 500; }
.price-amount { font-weight: 700; color: #f97316; }
.price-badge { background: #f97316; color: white; padding: 2px 8px; border-radius: 20px; font-size: 0.6rem; margin-left: 8px; }
.price-note { font-size: 0.6rem; color: #10b981; margin-left: 8px; }
.price-full .price-amount { color: #0f172a; font-weight: 800; font-size: 0.9rem; }
.service-info p { font-size: 0.75rem; color: #64748b; margin: 5px 0; }
.service-buttons { display: flex; gap: 8px; margin-top: 8px; }
.btn-view { flex: 1; display: inline-block; padding: 5px 10px; background: #f1f5f9; color: #334155; text-decoration: none; border-radius: 20px; font-size: 0.7rem; font-weight: 500; text-align: center; }
.btn-view:hover { background: #e2e8f0; color: #f97316; }
.book-service-btn { flex: 1; background: none; border: 1px solid #f97316; padding: 5px 10px; border-radius: 20px; font-weight: 600; font-size: 0.7rem; color: #f97316; cursor: pointer; }
.book-service-btn:hover { background: #f97316; color: white; }

/* Why Choose Us */
.why-choose-us { padding: 60px 0; background: #f8fafc; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.feature { text-align: center; padding: 30px; background: white; border-radius: 16px; }
.feature i { font-size: 2.5rem; color: #f97316; margin-bottom: 15px; }

.loading-spinner { text-align: center; padding: 60px; background: white; border-radius: 20px; }
.loading-spinner i { font-size: 2rem; color: #f97316; }

/* Responsive */
@media (max-width: 768px) {
    .hero-slider { min-height: 380px; }
    .slide-text h2 { font-size: 1.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .service-card { flex-direction: column; text-align: center; padding: 12px; }
    .service-image-compact, .service-icon { width: 60px; height: 60px; margin: 0 auto 10px; }
    .service-buttons { flex-direction: column; }
    .btn-view, .book-service-btn { width: 100%; }
    .coupon-banner { text-align: center; justify-content: center; }
    .service-count-badge { padding: 10px 20px; gap: 10px; }
    .service-count-number { font-size: 1.8rem; }
    .service-count-text { font-size: 0.9rem; }
}
@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-card { flex-direction: row; text-align: left; }
    .service-image-compact, .service-icon { width: 70px; height: 70px; margin: 0; }
    .service-count-badge { flex-direction: column; text-align: center; }
}

/* Expiry timer styles */
.status-expiry {
    font-size: 0.65rem;
    color: #dc2626;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-expiry i {
    font-size: 0.6rem;
}

/* Live update animation */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.status-badge.completed {
    animation: pulse 2s infinite;
}

/* ============================================ */
/* TIFFIN PROMO SECTION - MOBILE OPTIMIZED */
/* ============================================ */

.tiffin-promo-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
}

.tiffin-promo-card {
    background: linear-gradient(135deg, #f97316, #fb923c);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
    position: relative;
    overflow: hidden;
}

.tiffin-promo-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tiffin-promo-icon i {
    font-size: 2rem;
    color: white;
}

.tiffin-promo-content {
    flex: 1;
    color: white;
}

.tiffin-promo-badge {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.6rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.tiffin-promo-content h3 {
    font-size: 1.1rem;
    margin: 0 0 4px 0;
    font-weight: 700;
}

.tiffin-promo-content p {
    font-size: 0.7rem;
    opacity: 0.9;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.tiffin-promo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0;
}

.tiffin-promo-features span {
    background: rgba(255,255,255,0.15);
    padding: 3px 8px;
    border-radius: 30px;
    font-size: 0.6rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tiffin-promo-features span i {
    font-size: 0.55rem;
}

.tiffin-order-btn {
    background: white;
    color: #f97316;
    padding: 8px 16px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tiffin-order-btn i {
    font-size: 0.7rem;
}

.tiffin-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.tiffin-offer-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc2626;
    color: white;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.6rem;
    font-weight: 700;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Desktop View */
@media (min-width: 768px) {
    .tiffin-promo-card {
        padding: 30px;
        gap: 25px;
        border-radius: 28px;
    }
    .tiffin-promo-icon {
        width: 100px;
        height: 100px;
        border-radius: 25px;
    }
    .tiffin-promo-icon i {
        font-size: 3rem;
    }
    .tiffin-promo-content h3 {
        font-size: 1.5rem;
    }
    .tiffin-promo-content p {
        font-size: 0.85rem;
    }
    .tiffin-promo-features span {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    .tiffin-order-btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
}

/* Very Small Mobile (under 400px) */
@media (max-width: 400px) {
    .tiffin-promo-card {
        padding: 15px;
        gap: 10px;
    }
    .tiffin-promo-icon {
        width: 55px;
        height: 55px;
        border-radius: 14px;
    }
    .tiffin-promo-icon i {
        font-size: 1.5rem;
    }
    .tiffin-promo-content h3 {
        font-size: 0.95rem;
    }
    .tiffin-promo-content p {
        font-size: 0.6rem;
    }
    .tiffin-promo-features span {
        font-size: 0.5rem;
        padding: 2px 6px;
    }
    .tiffin-order-btn {
        padding: 6px 12px;
        font-size: 0.65rem;
    }
    .tiffin-offer-tag {
        font-size: 0.5rem;
        padding: 2px 8px;
    }
}
.floating-tiffin-btn {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@media (min-width: 769px) {
    .floating-tiffin-btn {
        left: 30px;
        bottom: 120px;
    }
}

