/* style.css - Bespoke Premium Styles for Yestel (Builds on Bootstrap 5.3) */
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');


:root {
    --primary: #10b981;       /* Vibrant Emerald Green */
    --primary-hover: #059669;
    --primary-light: rgba(16, 185, 129, 0.08);
    --accent: #f97316;        /* Warm Amber Orange */
    --accent-hover: #ea580c;
    --accent-light: rgba(249, 115, 22, 0.08);
    --dark: #0f172a;          /* Unified Slate-900 — all dark surfaces */
    --dark-surface: #1e293b;  /* Slate-800 — elevated dark surface */
    --light: #f8fafc;         /* Crisp Light Gray background */
    --border: #e2e8f0;
    --white: #ffffff;
    --font: 'Google Sans', 'Inter', 'Noto Sans', sans-serif;
    --mono: 'Share Tech Mono', monospace;
    --shadow-premium: 0 20px 40px -15px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(15, 23, 42, 0.03);
    --shadow-hover: 0 30px 60px -15px rgba(16, 185, 129, 0.18), 0 10px 25px -10px rgba(249, 115, 22, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


body {
    font-family: var(--font);
    background-color: var(--light);
    color: #334155;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Typography & Gradients */
.text-gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-premium {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}


.bg-gradient-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

/* Glassmorphism Header & Sticky Navbar — handled inline in header.php */
header.yestel-header {
    font-family: var(--font);
}


.navbar-brand-yestel {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -1.5px;
    display: flex;
    align-items: center;
}
.navbar-brand-yestel .green-text { color: var(--primary); }
.navbar-brand-yestel .orange-text { color: var(--accent); }

.nav-link-custom {
    color: #475569;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link-custom:hover {
    color: var(--primary);
    background-color: var(--primary-light);
}

.nav-link-custom.active {
    color: var(--primary) !important;
    background-color: var(--primary-light);
}

.btn-contact-custom {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px -6px rgba(15, 169, 104, 0.4);
    transition: var(--transition);
}

.btn-contact-custom:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -6px rgba(15, 169, 104, 0.6);
}

/* Hero Slider Stylings */
.hero-slider {
    position: relative;
    height: 580px;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.3) 100%);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 5;
    color: var(--white);
    max-width: 680px;
}

.slide-tag {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.slide-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.slide-desc {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 35px;
    line-height: 1.6;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px -10px rgba(15, 169, 104, 0.5);
    transition: var(--transition);
}

.slide-btn:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -10px rgba(15, 169, 104, 0.7);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.slider-arrow:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(15, 169, 104, 0.4);
}

.slider-arrow.prev { left: 40px; }
.slider-arrow.next { right: 40px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary);
    width: 28px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(15, 169, 104, 0.5);
}

/* Feature Boxes */
.feature-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 169, 104, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

/* 💳 Premium SIM Card design for VIP Numbers */
.sim-card {
    background: #1e293b;
    color: var(--white);
    border-radius: 24px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

/* Subtle background circuit pattern */
.sim-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1.2px, transparent 0);
    background-size: 14px 14px;
    pointer-events: none;
    opacity: 0.85;
}

/* Glassy shine overlay */
.sim-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.sim-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Metallic Golden SIM Chip */
.sim-chip {
    width: 48px;
    height: 36px;
    background: linear-gradient(135deg, #ffe082 0%, #ffb300 50%, #ff8f00 100%);
    border-radius: 6px;
    position: relative;
    border: 1px solid #b26a00;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 3px 6px rgba(0,0,0,0.3);
    overflow: hidden;
}

.sim-chip::before {
    content: '';
    position: absolute;
    inset: 2px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    pointer-events: none;
}

.sim-chip-lines {
    position: absolute;
    top: 0;
    left: 33%;
    width: 34%;
    height: 100%;
    border-left: 1.5px solid rgba(0,0,0,0.25);
    border-right: 1.5px solid rgba(0,0,0,0.25);
}

.sim-chip-inner {
    position: absolute;
    left: 50%;
    top: 30%;
    width: 60%;
    height: 40%;
    transform: translateX(-50%);
    border-top: 1.5px solid rgba(0,0,0,0.25);
    border-bottom: 1.5px solid rgba(0,0,0,0.25);
}

/* Operator Logos and Branding on SIM Cards */
.sim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.sim-operator-logo {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Brand Operator Stylings with custom gradients and box-shadows */
.sim-card.op-azercell {
    background: linear-gradient(135deg, #2b0054 0%, #110022 100%);
    border-color: rgba(0, 229, 255, 0.15);
}
.sim-card.op-azercell .sim-operator-logo { 
    color: #00e5ff; 
}
.sim-card.op-azercell:hover {
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.25), 0 0 0 1.5px rgba(0, 229, 255, 0.4);
    border-color: rgba(0, 229, 255, 0.5);
}

.sim-card.op-bakcell {
    background: linear-gradient(135deg, #c40a15 0%, #4a0004 100%);
    border-color: rgba(227, 6, 19, 0.15);
}
.sim-card.op-bakcell .sim-operator-logo { 
    color: #ffffff; 
}
.sim-card.op-bakcell:hover {
    box-shadow: 0 20px 40px rgba(227, 6, 19, 0.25), 0 0 0 1.5px rgba(227, 6, 19, 0.4);
    border-color: rgba(227, 6, 19, 0.5);
}

.sim-card.op-nar {
    background: linear-gradient(135deg, #d70d53 0%, #4f0016 100%);
    border-color: rgba(215, 13, 83, 0.15);
}
.sim-card.op-nar .sim-operator-logo { 
    color: #ffffff; 
}
.sim-card.op-nar:hover {
    box-shadow: 0 20px 40px rgba(215, 13, 83, 0.25), 0 0 0 1.5px rgba(215, 13, 83, 0.4);
    border-color: rgba(215, 13, 83, 0.5);
}

/* Glowing holographic overlay */
.sim-hologram {
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.18) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-30deg);
    pointer-events: none;
    z-index: 2;
}

.sim-card:hover .sim-hologram {
    left: 180%;
    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Phone Number Monospace Display */
.sim-phone-display {
    font-family: var(--mono);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: var(--white);
    text-align: center;
    margin: 22px 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.15), 0 3px 8px rgba(0, 0, 0, 0.6);
    z-index: 3;
    transition: var(--transition);
}

.sim-card:hover .sim-phone-display {
    letter-spacing: 1.2px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.35), 0 3px 12px rgba(0, 0, 0, 0.7);
}

.sim-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.sim-price {
    font-size: 22px;
    font-weight: 950;
    color: #ffd700;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Capsule button with modern hover effect */
.sim-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: var(--transition);
    box-shadow: none;
}

.sim-card:hover .sim-btn {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
}

/* 🛍️ Tech Product Cards */
.premium-product-card {
    background-color: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-premium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.12);
    border-color: rgba(15, 169, 104, 0.2);
}

.prod-img-box {
    background-color: #f8fafc;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
}

.prod-img-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.premium-product-card:hover .prod-img-box img {
    transform: scale(1.06) translateY(-4px);
}

.prod-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.prod-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.prod-category {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.prod-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.35;
    height: 52px;
    overflow: hidden;
}

.prod-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.prod-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.prod-price {
    font-size: 22px;
    font-weight: 900;
    color: var(--accent);
}

.prod-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 9px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(15, 169, 104, 0.2);
}

.prod-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(15, 169, 104, 0.4);
}

/* 🔧 Tech Services Cards */
.premium-service-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-premium);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.premium-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(15, 169, 104, 0.3);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.1);
}

.service-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.premium-service-card:hover .service-icon-wrap {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.service-title {
    font-size: 21px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-description {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price-pill {
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 25px;
    font-size: 15px;
}

.service-btn-custom {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.service-btn-custom:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Category Filters & Headers */
.custom-tab-btn {
    background-color: var(--white);
    border: 1px solid var(--border);
    color: #475569;
    padding: 10px 26px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
}

.custom-tab-btn:hover,
.custom-tab-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 16px -4px rgba(15, 169, 104, 0.4);
}

/* Search Filters UI */
.custom-filter-box {
    background-color: var(--white);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-premium);
}

.form-label-custom {
    font-weight: 700;
    font-size: 14px;
    color: #475569;
    margin-bottom: 8px;
}

.form-control-custom {
    border-radius: 8px;
    border: 1px solid var(--border);
    padding: 12px 18px;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.form-control-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 169, 104, 0.15);
}

/* Floating order request form modal */
.modal-content-custom {
    border-radius: 24px;
    border: none;
    padding: 15px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header-custom {
    border-bottom: none;
    padding: 20px 20px 10px 20px;
}

.modal-body-custom {
    padding: 10px 20px 20px 20px;
}

.modal-preview-box {
    background-color: var(--light);
    border-radius: 14px;
    padding: 20px;
    border: 1px dashed var(--border);
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-preview-title {
    font-weight: 800;
    color: var(--dark);
    font-size: 16px;
}

.modal-preview-price {
    font-weight: 900;
    color: var(--accent);
    font-size: 18px;
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--dark);
    color: white;
    padding: 18px 28px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 5px solid var(--primary);
    font-weight: 600;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-notification.error {
    border-left-color: #ef4444;
}

/* Responsive Custom fixes */
@media(max-width: 992px) {
    .hero-slider {
        height: auto;
        min-height: 480px;
        padding: 80px 0;
    }
    .slide-title {
        font-size: 38px;
    }
    .slider-arrow {
        display: none; /* Hide arrows on smaller viewports */
    }
}

.text-hover-primary {
    transition: var(--transition);
}
.text-hover-primary:hover {
    color: var(--primary) !important;
    padding-left: 4px;
}

/* Premium Preloader / Splash Screen */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f172a; /* var(--dark) */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}

.preloader-content {
    text-align: center;
    animation: preloaderPulse 2.2s infinite ease-in-out;
}

.preloader-logo {
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 25px;
    font-family: var(--font);
}

.preloader-logo img {
    max-height: 55px;
    width: auto;
}

.preloader-spinner {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    margin: 0 auto;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.preloader-spinner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: preloaderShimmy 1.4s infinite linear;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(0.96); opacity: 0.9; }
    50% { transform: scale(1.04); opacity: 1; }
}

@keyframes preloaderShimmy {
    100% { left: 100%; }
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Irshad-style customization overrides */
.brand-logo-img {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand-logo-img:hover {
    filter: grayscale(0) !important;
    opacity: 1 !important;
    transform: scale(1.1);
}

.video-icmal-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer;
}
.video-icmal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1) !important;
}
.video-icmal-card:hover .play-btn-circle {
    transform: translate(-50%, -50%) scale(1.15) !important;
    background-color: var(--primary) !important;
    color: #fff !important;
}

.play-btn-circle {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Pulsing Order Callout */
.pulse-button {
    animation: pulseWhatsapp 2s infinite;
}
@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Custom spacing and typography rules */
.fw-black {
    font-weight: 900;
}
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 992px) {
    .hero-slider {
        min-height: 380px !important;
    }
    .slide {
        min-height: 380px !important;
    }
}

/* Infinite Brand Marquee */
.brand-marquee-container {
    overflow: hidden;
    padding: 30px 0;
    background: #ffffff;
    position: relative;
    width: 100%;
}
.brand-marquee-container::before,
.brand-marquee-container::after {
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    content: "";
    z-index: 2;
    pointer-events: none;
}
.brand-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.brand-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.brand-marquee-wrapper {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}
.brand-marquee-wrapper:hover {
    animation-play-state: paused;
}
.brand-marquee-item {
    flex-shrink: 0;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Premium Buttons Styling */
.btn-premium-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #0c8c56 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    padding: 12px 28px !important;
    box-shadow: 0 4px 15px rgba(15, 169, 104, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-premium-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(15, 169, 104, 0.35) !important;
    opacity: 0.95;
}

.btn-premium-outline {
    background: transparent !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    padding: 10px 26px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-premium-outline:hover {
    background-color: var(--primary) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(15, 169, 104, 0.2) !important;
}

/* Profile Icon Button Navbar */
.btn-navbar-profile {
    width: 44px;
    height: 44px;
    background-color: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #64748b;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}
.btn-navbar-profile:hover {
    background-color: #ffffff;
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(15, 169, 104, 0.15);
    transform: rotate(15deg) scale(1.05);
}


.hover-white:hover {
    color: #ffffff !important;
    transition: color 0.2s ease-in-out;
}

/* End of style.css */

/* ============================================================
   🎨 PREMIUM DESIGN POLISH — Global Layout & Text Centering
   ============================================================ */

/* ── Section Headings Global ── */
.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}
.section-heading .section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
}
.section-heading h2 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
.section-divider {
    width: 48px;
    height: 3.5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    margin: 14px auto 0;
}

/* ── Feature Ribbon Cards — Premium Redesign ── */

/* Section wrapper glow */
.feature-ribbon-section {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf7 50%, #ffffff 100%);
    border-top: 1px solid rgba(16,185,129,0.12);
    border-bottom: 1px solid rgba(16,185,129,0.12);
    position: relative;
    overflow: hidden;
}
.feature-ribbon-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 120px;
    background: radial-gradient(ellipse, rgba(16,185,129,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.feature-ribbon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px 20px;
    border-radius: 20px;
    border: 1px solid transparent;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(16,185,129,0.04);
    cursor: pointer;
}
.feature-ribbon-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16,185,129,0.04) 0%, rgba(249,115,22,0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}
.feature-ribbon-item:hover {
    background: #ffffff;
    border-color: rgba(16,185,129,0.25);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px -8px rgba(16,185,129,0.18), 0 4px 12px rgba(16,185,129,0.08);
}
.feature-ribbon-item:hover::before {
    opacity: 1;
}

/* Icon circle */
.feature-ribbon-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16,185,129,0.12) 0%, rgba(16,185,129,0.06) 100%);
    border: 2px solid rgba(16,185,129,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 14px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(16,185,129,0.12), inset 0 1px 0 rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
}
.feature-ribbon-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px dashed rgba(16,185,129,0.15);
    animation: ribbonIconPulse 3s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.feature-ribbon-item:hover .feature-ribbon-icon::after {
    opacity: 1;
}
@keyframes ribbonIconPulse {
    0% { transform: rotate(0deg) scale(1); opacity: 0.4; }
    50% { opacity: 0.8; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.4; }
}
.feature-ribbon-item:hover .feature-ribbon-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 10px 28px rgba(16,185,129,0.4), 0 0 0 4px rgba(16,185,129,0.08);
    transform: scale(1.12) translateY(-2px);
}

/* Per-item color accents */
.feature-ribbon-item[data-accent="orange"] .feature-ribbon-icon {
    background: linear-gradient(135deg, rgba(249,115,22,0.12) 0%, rgba(249,115,22,0.05) 100%);
    border-color: rgba(249,115,22,0.2);
    color: var(--accent);
    box-shadow: 0 4px 16px rgba(249,115,22,0.1);
}
.feature-ribbon-item[data-accent="orange"]:hover .feature-ribbon-icon {
    background: linear-gradient(135deg, var(--accent) 0%, #ea580c 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 10px 28px rgba(249,115,22,0.4), 0 0 0 4px rgba(249,115,22,0.08);
}
.feature-ribbon-item[data-accent="orange"]:hover {
    border-color: rgba(249,115,22,0.25);
    box-shadow: 0 16px 40px -8px rgba(249,115,22,0.18), 0 4px 12px rgba(249,115,22,0.08);
}

.feature-ribbon-item[data-accent="blue"] .feature-ribbon-icon {
    background: linear-gradient(135deg, rgba(59,130,246,0.12) 0%, rgba(59,130,246,0.05) 100%);
    border-color: rgba(59,130,246,0.2);
    color: #3b82f6;
    box-shadow: 0 4px 16px rgba(59,130,246,0.1);
}
.feature-ribbon-item[data-accent="blue"]:hover .feature-ribbon-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 10px 28px rgba(59,130,246,0.4);
}
.feature-ribbon-item[data-accent="blue"]:hover {
    border-color: rgba(59,130,246,0.25);
    box-shadow: 0 16px 40px -8px rgba(59,130,246,0.18), 0 4px 12px rgba(59,130,246,0.08);
}

.feature-ribbon-item[data-accent="purple"] .feature-ribbon-icon {
    background: linear-gradient(135deg, rgba(139,92,246,0.12) 0%, rgba(139,92,246,0.05) 100%);
    border-color: rgba(139,92,246,0.2);
    color: #8b5cf6;
    box-shadow: 0 4px 16px rgba(139,92,246,0.1);
}
.feature-ribbon-item[data-accent="purple"]:hover .feature-ribbon-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 10px 28px rgba(139,92,246,0.4);
}
.feature-ribbon-item[data-accent="purple"]:hover {
    border-color: rgba(139,92,246,0.25);
    box-shadow: 0 16px 40px -8px rgba(139,92,246,0.18), 0 4px 12px rgba(139,92,246,0.08);
}

.feature-ribbon-item[data-accent="whatsapp"] .feature-ribbon-icon {
    background: linear-gradient(135deg, rgba(37,211,102,0.15) 0%, rgba(37,211,102,0.06) 100%);
    border-color: rgba(37,211,102,0.25);
    color: #25D366;
    box-shadow: 0 4px 16px rgba(37,211,102,0.12);
}
.feature-ribbon-item[data-accent="whatsapp"]:hover .feature-ribbon-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 10px 28px rgba(37,211,102,0.45);
}
.feature-ribbon-item[data-accent="whatsapp"]:hover {
    border-color: rgba(37,211,102,0.3);
    box-shadow: 0 16px 40px -8px rgba(37,211,102,0.2), 0 4px 12px rgba(37,211,102,0.1);
}

.feature-ribbon-label {
    font-size: 13.5px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.feature-ribbon-item:hover .feature-ribbon-label {
    color: var(--primary);
}
.feature-ribbon-item[data-accent="orange"]:hover .feature-ribbon-label { color: var(--accent); }
.feature-ribbon-item[data-accent="blue"]:hover .feature-ribbon-label { color: #3b82f6; }
.feature-ribbon-item[data-accent="purple"]:hover .feature-ribbon-label { color: #8b5cf6; }
.feature-ribbon-item[data-accent="whatsapp"]:hover .feature-ribbon-label { color: #25D366; }

.feature-ribbon-sub {
    font-size: 11.5px;
    color: #94a3b8;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.feature-ribbon-item:hover .feature-ribbon-sub {
    color: #64748b;
}

/* Separator dividers between items */
.feature-ribbon-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(16,185,129,0.15), transparent);
    align-self: center;
    flex-shrink: 0;
}

/* ── Product Card — Center body text ── */
.premium-product-card .prod-body {
    text-align: center;
    align-items: center;
}
.premium-product-card .prod-category {
    text-align: center;
}
.premium-product-card .prod-title {
    text-align: center;
    font-size: 16px;
}
.premium-product-card .prod-description {
    text-align: center;
    font-size: 13px;
}
.premium-product-card .prod-footer {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}
.premium-product-card .prod-price {
    font-size: 24px;
    text-align: center;
}
.premium-product-card .prod-btn {
    width: 100%;
    justify-content: center;
}

/* ── Service Card — Center layout ── */
.premium-service-card {
    align-items: center;
    text-align: center;
}
.premium-service-card .service-icon-wrap {
    margin-left: auto;
    margin-right: auto;
}
.premium-service-card .service-title {
    text-align: center;
}
.premium-service-card .service-description {
    text-align: center;
}
.premium-service-card .service-price-pill {
    text-align: center;
    display: block;
}

/* ── Feature Card — Center layout ── */
.feature-card {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.feature-card .feature-icon-wrapper {
    margin-left: auto;
    margin-right: auto;
}

/* ── SIM Phone number — center ── */
.sim-card {
    align-items: stretch;
}

/* ── Hero Slider — Centered text option ── */
@media (max-width: 768px) {
    .slide-content {
        text-align: center;
        max-width: 100%;
        padding: 0 20px;
    }
    .slide-content .slide-btn {
        margin: 0 auto;
    }
}

/* ── View-all centered pill buttons — enhanced ── */
.btn-premium-outline {
    font-size: 14px !important;
    letter-spacing: 0.3px;
    border-radius: 50px !important;
    padding: 11px 32px !important;
}
.btn-premium-outline:hover {
    box-shadow: 0 8px 24px rgba(16,185,129,0.25) !important;
}

/* ── Section spacing uniformity ── */
section.py-5 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
section.py-4 { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }

/* ── Smooth animations on scroll ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeInUp 0.6s ease both;
}

/* ── Offer of the Day card beautification ── */
.offer-card {
    border-radius: 20px !important;
    border: 1px solid rgba(249,115,22,0.12) !important;
    box-shadow: 0 8px 30px rgba(249,115,22,0.08), 0 1px 0 rgba(249,115,22,0.15) !important;
    transition: var(--transition) !important;
}
.offer-card:hover {
    box-shadow: 0 16px 48px rgba(249,115,22,0.14) !important;
    transform: translateY(-4px) !important;
}

/* ── Category filter tabs — center ── */
.custom-filter-box .d-flex.flex-wrap {
    justify-content: center;
}

/* ── Footer border top line color fix ── */
footer hr {
    opacity: 0.15 !important;
}

/* ── Input placeholder center ── */
input::placeholder {
    text-align: center;
}

/* ── Dropdown menu items center ── */
.dropdown-menu .dropdown-item {
    text-align: center;
    padding-left: 12px !important;
    padding-right: 12px !important;
}

/* ── Card hover shadow upgrade ── */
.premium-product-card:hover,
.premium-service-card:hover,
.feature-card:hover {
    box-shadow: 0 24px 50px -12px rgba(16,185,129,0.12), 0 8px 20px -8px rgba(249,115,22,0.06) !important;
}

/* ── Page body background gradient subtle ── */
body {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 60%, #f8fafc 100%) !important;
}

/* Navbar top bar separation line glow */
header.yestel-header {
    box-shadow: 0 2px 20px rgba(16,185,129,0.07), 0 1px 0 rgba(16,185,129,0.1);
}


/* ============================================================
   🗂️ CATALOG MEGA-MENU STYLES
   ============================================================ */

/* Icon box beside each menu item */
.catalog-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

/* Each clickable row */
.catalog-menu-item {
    transition: background 0.2s ease, transform 0.2s ease;
    border: 1px solid transparent;
}
.catalog-menu-item:hover {
    background: rgba(16, 185, 129, 0.06) !important;
    border-color: rgba(16, 185, 129, 0.15) !important;
    transform: translateX(3px);
}
.catalog-menu-item:hover .catalog-icon-box {
    transform: scale(1.1);
}
.catalog-menu-item:hover span.fw-semibold {
    color: var(--primary) !important;
}
.catalog-menu-item:hover .fa-chevron-right {
    color: var(--primary) !important;
    opacity: 1;
}

/* Group label row */
.catalog-group-label {
    border-top: 1px solid #f1f5f9;
    padding-top: 8px;
    margin-top: 4px;
}

