﻿/* ====== Special Offers Section Styles ====== */
.special-offer-unique {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .special-offer-unique::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
        pointer-events: none;
    }

    .special-offer-unique .container {
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;
    }

    /* ====== Offers Grid Layout ====== */
    .special-offer-unique .container {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

.offer-content-unique {
    flex: 0 0 calc(33.333% - 30px);
    min-width: 300px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .offer-content-unique:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    }

/* ====== Single Offer Centered Layout ====== */
.special-offer-unique .container:has(.offer-content-unique:only-child) {
    justify-content: center;
}

    .special-offer-unique .container:has(.offer-content-unique:only-child) .offer-content-unique {
        flex: 0 0 33.333%;
        max-width: 400px;
    }

/* ====== Offer Badge ====== */
.offer-badge-unique {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* ====== Offer Title ====== */
.offer-title-unique {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ====== Offer Description ====== */
.offer-description-unique {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
}

/* ====== Offer Highlights ====== */
.offer-header-row-unique {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 20px;
}

.offer-title-unique {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2D3748;
    line-height: 1.3;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0; /* Remove default margin */
    flex: 1; /* Allow title to take available space */
}

.discount-badge-unique {
    background: linear-gradient(45deg, #48BB78, #38A169);
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
    white-space: nowrap; /* Prevent badge from wrapping */
    flex-shrink: 0; /* Prevent badge from shrinking */
}

.validity-unique {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4A5568;
    font-size: 0.85rem;
    font-weight: 500;
}

    .validity-unique i {
        color: #E53E3E;
    }

/* ====== Services Grid ====== */
.offer-services-grid-unique {
    margin-bottom: 25px;
}

    .offer-services-grid-unique h4 {
        font-size: 1rem;
        font-weight: 600;
        color: #2D3748;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.services-list-unique {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-item-unique {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #F7FAFC;
    border-radius: 10px;
    transition: all 0.2s ease;
    border: 1px solid #E2E8F0;
}

    .service-item-unique:hover {
        background: #EDF2F7;
        transform: translateX(5px);
    }

.service-icon-unique {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .service-icon-unique i {
        font-size: 1.2rem;
        color: #667eea;
    }

.service-details-unique h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2D3748;
    margin: 0 0 4px 0;
}

.service-quantity-unique {
    font-size: 0.8rem;
    color: #718096;
    font-weight: 500;
}

/* ====== Book Button ====== */
.btn-offer-unique {
    width: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

    .btn-offer-unique:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
        background: linear-gradient(45deg, #5a6fd8, #6a4190);
    }

/* ====== Offer Note ====== */
.offer-note-unique {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #718096;
    font-size: 0.8rem;
    text-align: center;
    justify-content: center;
    font-style: italic;
}

    .offer-note-unique i {
        color: #667eea;
    }

/* ====== No Offers State ====== */
.special-offer-unique.no-offer-unique {
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

.no-offer-unique .offer-content-unique {
    text-align: center;
    background: white;
    max-width: 500px;
    margin: 0 auto;
}

.no-offer-icon-unique {
    font-size: 3rem;
    color: #CBD5E0;
    margin-bottom: 20px;
}

.no-offer-unique h2 {
    color: #2D3748;
    margin-bottom: 15px;
    font-weight: 600;
}

.no-offer-unique p {
    color: #718096;
    margin-bottom: 25px;
}

/* ====== Responsive Design ====== */
@media (max-width: 1024px) {
    .offer-content-unique {
        flex: 0 0 calc(50% - 30px);
    }

    .special-offer-unique .container:has(.offer-content-unique:only-child) .offer-content-unique {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .special-offer-unique {
        padding: 60px 0;
    }

    .offer-content-unique {
        flex: 0 0 100%;
        min-width: auto;
    }

    .special-offer-unique .container:has(.offer-content-unique:only-child) .offer-content-unique {
        flex: 0 0 90%;
    }

    .offer-highlights-unique {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .special-offer-unique {
        padding: 40px 0;
    }

    .offer-content-unique {
        padding: 20px;
        margin-bottom: 20px;
    }

    .offer-title-unique {
        font-size: 1.3rem;
    }

    .btn-offer-unique {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* ====== Animation Keyframes ====== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offer-content-unique {
    animation: fadeInUp 0.6s ease-out;
}

/* ====== Print Styles ====== */
@media print {
    .special-offer-unique {
        background: white !important;
        padding: 40px 0;
    }

    .offer-content-unique {
        box-shadow: 0 0 0 1px #E2E8F0 !important;
        break-inside: avoid;
    }

    .btn-offer-unique {
        background: #2D3748 !important;
        color: white !important;
    }
}

/* ===================== CLEAN PREMIUM HEADER ===================== */
.offer-header-unique {
    padding-bottom: 70px;
    position: relative;
    border-bottom: 1px solid #eee;
    text-align: center;
}

    /* Minimal soft dotted pattern (very light) */
    .offer-header-unique::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(0,0,0,0.06) 1px, transparent 1px);
        background-size: 22px 22px;
        opacity: 0.4;
        pointer-events: none;
    }

/* Content */
.header-content-unique {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Premium Badge */
.header-badge-unique {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #ddd;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

    .header-badge-unique i {
        color: #d4af37; /* gold feel */
    }

.header-title-unique {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2D3748;
    margin-top: 20px;
    line-height: 1.2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.highlight-unique {
    background: linear-gradient(45deg, #d4af37, #ff7f50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .header-title-unique {
        font-size: 2rem;
    }

    .header-badge-unique {
        font-size: 0.8rem;
        padding: 8px 18px;
    }
}

@media (max-width: 480px) {
    .header-title-unique {
        font-size: 1.7rem;
    }

    .offer-header-unique {
        padding: 50px 0 30px;
    }
}

/* ====== Services Slider Styles ====== */
.services-slider-container-unique {
    position: relative;
    margin: 20px 0;
    padding: 0 40px;
}

.services-slider-unique {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

    .services-slider-unique::-webkit-scrollbar {
        display: none;
    }

.service-slide-unique {
    flex: 0 0 auto;
    width: 200px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    cursor: grab;
}

    .service-slide-unique:active {
        cursor: grabbing;
        transform: scale(0.98);
    }

    .service-slide-unique:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

.service-image-unique {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    margin: 0 auto 12px auto;
    display: block;
}

.slider-nav-unique {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

    .slider-nav-unique:hover {
        background: #667eea;
        color: white;
        transform: translateY(-50%) scale(1.1);
    }

.slider-prev-unique {
    left: 0;
}

.slider-next-unique {
    right: 0;
}

.slider-nav-unique:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

    .slider-nav-unique:disabled:hover {
        background: white;
        color: inherit;
    }

/* ====== Update Existing Styles for Slider ====== */
.offer-services-grid-unique h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.service-slide-unique .service-details-unique h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2D3748;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.service-slide-unique .service-quantity-unique {
    font-size: 0.8rem;
    color: #718096;
    font-weight: 500;
    background: #F7FAFC;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
}

/* ====== Responsive Design Updates ====== */
@media (max-width: 768px) {
    .header-title-unique {
        font-size: 2.5rem;
    }

    .header-subtitle-unique {
        font-size: 1.1rem;
    }

    .header-stats-unique {
        gap: 20px;
    }

    .stat-number-unique {
        font-size: 1.5rem;
    }

    .services-slider-container-unique {
        padding: 0 30px;
    }

    .service-slide-unique {
        width: 160px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .offer-header-unique {
        padding: 60px 0 40px 0;
    }

    .header-title-unique {
        font-size: 2rem;
    }

    .header-badge-unique {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .services-slider-container-unique {
        padding: 0 25px;
    }

    .service-slide-unique {
        width: 140px;
    }

    .slider-nav-unique {
        width: 35px;
        height: 35px;
    }
}

/* =============== NEW PREMIUM AUTO-SLIDER =============== */
.auto-slider {
    display: flex;
    gap: 22px;
    overflow: hidden;
    padding: 10px 0;
    scroll-behavior: smooth;
    position: relative;
}

.auto-slide {
    min-width: 120px; /* Smaller width */
    background: rgba(255,255,255,0.85);
    border-radius: 14px;
    padding: 12px 10px; /* Small padding */
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

    .auto-slide:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(0,0,0,0.15);
    }

.auto-slide-img img,
.auto-slide-img i {
    width: 40px; /* Smaller image */
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    font-size: 1.5rem; /* Smaller icon size */
    color: #6b46c1;
    margin-bottom: 6px;
}

.auto-slide-title {
    font-size: 0.75rem; /* Smaller text */
    font-weight: 600;
    color: #2D3748;
}

.offer-card-click {
    cursor: pointer;
    transition: 0.3s;
}

    .offer-card-click:hover {
        transform: translateY(-10px) scale(1.02);
    }

