:root {
    --primary-text: #121212;
    --secondary-text: #5f5f5f;
    --border-color: #e0e0e0;
    --background-color: #ffffff;
    --hover-light: #f5f5f5;
    --font-family: "Poppins", sans-serif;
    --accent-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    --warning-gradient: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow-soft: 0 8px 32px rgba(31, 38, 135, 0.37);
    --shadow-strong: 0 15px 35px rgba(31, 38, 135, 0.4);
    --border-radius: 20px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

body {
    font-family: var(--font-family);
    background-color: #ffffff; /* Light grey background for the page */
    color: var(--primary-text);
    display: flex;
    justify-content: center;

}

html, body {
    max-width: 100%;
    overflow-x: hidden !important;
}

.main-container {
    width: 100%;
    max-width: 1400px;
    margin: 2rem 1rem;
}

/* --- Main Navigation Container --- */
.navbar {
    display: flex;
    position: sticky;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background-color: var(--background-color);
    border-radius: 12px;
    z-index: 999;
    /* transition: all 0.3s ease-in-out; */
    box-shadow: 0 4px_20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

body.has-fixed-header {
    padding-top: 90px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    /* box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1); */
    /* background-color: var(--background-color); */
    border: none;
    /* padding: 10px 24px; */
    animation: slideDown 0.3s ease-in-out;
}

/* --- Left Section: Logo & Links --- */
.nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    display: flex !important;
    gap: 8px !important;
    width: 190px !important;
    height: 44px !important;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    height: 50px; /* ya jitna tu pehle use kar raha tha */
    width: 160px;
    max-width: 100%;
    display: block; /* removes bottom spacing */
    object-fit: contain;
}

.logo span {
    background-color: var(--primary-text);
    color: var(--background-color);
    padding: 4px 6px;
    border-radius: 4px;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 28px;
    margin-left: 100px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ed1c24;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-text);
}

.nav-links a:hover::after {
    width: 100%;
}

/* --- Middle Section: Redefined Search --- */
.search-container {
    display: flex;
    align-items: center;
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 4px;
    width: 500px;
    transition: box-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .search-container {
        width: 100% !important;
        max-width: 100% !important;
    }

    .main-container {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 15px; /* Margin ki jagah padding use karo */
    }

    .nav-links ul {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    .main-imagess {
        width: 100% !important;
        margin-left: 0 !important;
    }
}

.search-container:focus-within {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

/* --- Location Dropdown --- */
.location-container {
    position: relative;
}

.location-selector-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    cursor: pointer;
    color: var(--primary-text);
    font-weight: 500;
    font-size: 14px;
    background: transparent;
    border: none;
    font-family: var(--font-family);
}

.location-selector-btn i {
    font-size: 18px;
    color: #ed1c24;
    transition: transform 0.3s ease;
}

.location-selector-btn.open i.ri-arrow-down-s-line {
    transform: rotate(180deg);
}

.location-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 8px;
    width: 200px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.location-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.location-dropdown li {
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.location-dropdown li:hover {
    background-color: #ed1c24;
    color: #ffffff;
}

.divider {
    width: 1px;
    height: 24px;
    background-color: var(--border-color);
    margin: 0 8px;
}

.search-input {
    flex-grow: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    font-family: var(--font-family);
}

.search-input::placeholder {
    color: #999;
    transition: opacity 0.5s ease-in-out;
}

.search-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ed1c24;
    color: var(--background-color);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button i {
    font-size: 20px;
}

.search-button:hover {
    background-color: #333;
}

/* --- Right Section: User Actions --- */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.action-btn i {
    font-size: 22px;
    color: #ed1c24;
}

.action-btn:hover {
    background-color: var(--hover-light);
    color: var(--primary-text);
}

.action-btn:hover i {
    color: var(--primary-text);
}

/* --- Hero Slider --- */
/* --- NEW: Promo Card Slider --- */

.promo-slider-sections {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 40px 20px;
}

.slider-containers {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.slider-tracks {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.promo-cards {
    flex: 0 0 100%;
    min-width: 100%;
    height: 389px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .promo-cards {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .promo-cards {
        height: 200px;
    }
}

/* Overlay for better readability if needed */
.promo-cards::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-cards:hover::before {
    opacity: 1;
}

/* Navigation Arrows */
.promo-slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(237, 28, 36, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.promo-slider-arrows:hover {
    transform: translateY(-50%) scale(1.1);
    background: rgba(237, 28, 36, 1);
    box-shadow: 0 6px 20px rgba(237, 28, 36, 0.4);
}

.promo-slider-arrows.prevs {
    left: 20px;
}

.promo-slider-arrows.nexts {
    right: 20px;
}

.promo-slider-arrows i {
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.promo-slider-arrows:hover i {
    transform: scale(1.2);
}

/* Slider Indicators */
.slider-indicatorss {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.indicators {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicators.actives {
    background: #ed1c24;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(237, 28, 36, 0.5);
}

.indicators:hover {
    background: rgba(237, 28, 36, 0.6);
}

/* Loading State */
.promo-cards.loadings {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loadings {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .promo-slider-sections {
        padding: 20px 15px;
    }

    .promo-slider-arrows {
        width: 44px;
        height: 44px;
    }

    .promo-slider-arrows.prevs {
        left: 10px;
    }

    .promo-slider-arrows.nexts {
        right: 10px;
    }

    .promo-slider-arrows i {
        font-size: 20px;
    }

    .slider-indicatorss {
        margin-top: 20px;
        gap: 8px;
    }

    .indicators {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .promo-slider-arrows {
        width: 40px;
        height: 40px;
    }

    .promo-slider-arrows i {
        font-size: 18px;
    }
}

/* Brand section */
/* --- MODERN BRANDS SECTION --- */

/* Import a modern, clean font like 'Inter' */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap");

/* Define a light and clean color palette */
:root {
    --primary-font: "Inter", sans-serif;
    --bg-color: #ffffff;
    --text-primary: #111827; /* Dark gray for text */
    --text-secondary: #6b7280; /* Lighter gray for subtitles */
    --accent-color: #ed1c24; /* A vibrant blue */
    --accent-color-light: #eff6ff; /* A very light blue for hover states */
    --border-color: #e5e7eb;
    --card-bg: #ffffff;
    --shadow-md: 0 12px 18px -1px rgb(0 0 0 / 7%),
        0 2px 20px -2px rgb(0 0 0 / 7%);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
        0 4px 6px -4px rgb(0 0 0 / 0.1);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Main section container */
.brands-section-modern {
    /* font-family: var(--primary-font); */
    max-width: 1400px;
    margin: 1.5rem auto;
    padding: 0 24px;
}

/* Header: Title and Subtitle */
.header-container {
    text-align: center;
    margin-bottom: 40px;
}

.brands-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    position: relative;
}

.brands-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ed1c24;
    border-radius: 2px;
}

.brands-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Controls: Search and Filter Buttons */
.controls-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    min-width: 280px;
}

.search-input-brand {
    width: 100%;
    padding: 14px 20px 14px 45px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
    transition: var(--transition);
}

.search-input-brand::placeholder {
    color: #9ca3af;
}

.search-input-brand:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 20px;
}

.filter-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-btn {
    padding: 10px 22px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background-color: #ed1c24;
    border-color: #ed1c24;
    color: #ffffff;
}

.filter-btn.active {
    background-color: #ed1c24;
    color: white;
    border-color: #ed1c24;
}

/* Brands Grid and Cards */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.brand-card {
    background-color: var(--card-bg);
    border: 3px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.brand-card img {
    max-width: 90%;
    max-height: 70px;
    object-fit: contain;
    transition: var(--transition);

    opacity: 30.7;
}

.brand-card:hover img {
    transform: scale(1.1);
    filter: grayscale(0%); /* Full color on hover */
    opacity: 1;
}

.brand-name {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.brand-card:hover .brand-name {
    color: var(--text-primary);
}

/* Badge for "Popular" or "Premium" */
.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ed1c24;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Stats Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 50px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ed1c24;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
}

/* Animations and Effects */
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes click-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

.brand-card.clicked {
    animation: click-pulse 0.4s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brands-title {
        font-size: 2.5rem;
    }
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 16px;
    }
    .controls-container {
        flex-direction: column;
        align-items: center;
    }
    .search-box {
        width: 90%;
        min-width: unset;
    }
    .stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .brands-title {
        font-size: 2rem;
    }
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* footer */
/* footer section */
.futuristic-footer {
    /* background: linear-gradient(135deg, #6a11cb, #ed1c24); */
    color: #000000;
    font-family: var(--font-family, "Poppins", sans-serif);
    margin-top: 0px;
}

/* --- Main Footer Content --- */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr; /* 4 columns, first is wider */
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 30px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 15px;
}

.footer-col a {
    color: #000000;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #000000;
}

/* --- About Column --- */
.footer-about .footer-logo {
    width: 150px;
    margin-bottom: 20px;
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 25px;
    color: #000000;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f7f7;
    border-radius: 50%;
    color: #000000;
    font-size: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    background-color: #ed1c24;
    transform: translateY(-3px);
}

/* --- Bottom Bar --- */
.footer-bottom {
    text-align: center;
    padding: 25px 30px;
    border-top: 1px solid #2a2a2a;
    font-size: 14px;
}

.mobile-arrow {
    display: none;
}

/*---device section---*/
.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.device-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.device-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.device-image img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #f9f9f9;
    padding: 20px;
}

.device-info {
    padding: 16px;
}

.device-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.device-info p {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}

.device-button {
    display: inline-block;
    padding: 10px 20px;
    background: #111827;
    color: #fff;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}

.device-button:hover {
    background: #2563eb;
}

/* --- Brand Hero Section --- */
/* .brand-page-container {
    padding: 20px 40px;
} */

.brand-hero {
    margin-bottom: 30px;
    padding: 40px 0;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.brand-hero .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.brand-hero h1 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

.brand-hero .breadcrumb {
    margin: 10px 0;
    font-size: 14px;
    color: #666;
}

.brand-hero .breadcrumb a {
    color: #0071e3;
    text-decoration: none;
}

.brand-hero .breadcrumb a:hover {
    text-decoration: underline;
}

.brand-hero p {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    margin-top: 10px;
}

/* --- Search Bar --- */
.device-search-bar {
    max-width: 280px;
    margin-left: auto;
    margin-bottom: 25px;
}

.device-search-bar input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.device-search-bar input:focus {
    border-color: #0071e3;
}

/* --- Devices Grid --- */
.devices-grid-section {
    display: flex;
    justify-content: center;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

.device-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 20px 10px;
    text-decoration: none;
    color: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.device-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.device-card img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
}

.device-info h3 {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: #111;
}

.no-device-text {
    text-align: center;
    color: #888;
    font-size: 16px;
}

/* --- Device Page Layout --- */
.device-issues-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 20px;
}

/* --- Header --- */
.device-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.device-header .device-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.device-header img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: contain;
}

.device-header h1 {
    font-size: 28px;
    font-weight: 700;
}

.device-header h3 {
    font-size: 18px;
    margin-top: 15px;
    color: #111;
}

/* --- Grid Layout --- */
.device-issues-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 20px;
}

/* --- Issue Card --- */
.issue-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
    padding: 15px 20px;
    position: relative;
    margin-bottom: 15px;
}

.issue-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.issue-icon img {
    width: 45px;
    height: 45px;
}

.issue-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.issue-text .price {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.issue-text .mrp {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
    margin-top: -4px;
}

.discount {
    background: #ff3030;
    color: #fff;
    padding: 3px 6px;
    font-size: 12px;
    border-radius: 4px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.btn-add,
.btn-remove {
    background: #e60000;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-remove {
    background: #333;
}

.btn-add:hover {
    background: #c50000;
}

.btn-remove:hover {
    background: #555;
}

/* --- Price Summary Sidebar --- */
.price-summary {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    height: fit-content;
}

.price-summary h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-summary .coupon-row,
.price-summary .total-row {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.price-summary .apply-link {
    color: #e60000;
    font-weight: 600;
    text-decoration: none;
}

.price-summary .btn-book {
    width: 100%;
    background: #e60000;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.price-summary .btn-book:hover {
    background: #c50000;
}

.services-section {
    margin-top: -20px;
    padding: 30px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--secondary-text);
    margin-bottom: 40px;
}

.service-cards-grid {
    display: grid;
    /* 2 columns on desktop, will stack to 1 on smaller screens */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative; /* ADD THIS LINE */
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    /* border-color: rgba(0, 0, 0, 0.1); */ /* REMOVE THIS LINE */
}

.service-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0; /* Prevents image from shrinking */
}

.service-text-content {
    text-align: left;
}

.service-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-text);
    margin: 0 0 5px 0; /* Reset margin */
}

.service-description {
    font-size: 14px;
    color: var(--secondary-text);
    margin: 0;
}

/* --- ADD THIS NEW CODE for the hover border effect --- */

/* This creates the vertical lines using pseudo-elements */
.service-card::before,
.service-card::after {
    content: "";
    position: absolute;
    top: 50%; /* Start from the middle */
    width: 4px; /* Thickness of the line */
    height: 0; /* Initially hidden */
    background-color: #ed1c24;
    transform: translateY(-50%);
    transition: height 0.3s ease;
}

/* Position the first line on the left */
.service-card::before {
    left: 0;
}

/* Position the second line on the right */
.service-card::after {
    right: 0;
}

/* On hover, grow the lines to 60% of the card's height */
.service-card:hover::before,
.service-card:hover::after {
    height: 60%;
}

.process-section-final {
    margin-top: 0;
    padding: 0px 0;
    background-color: var(--background-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--secondary-text);
    margin-bottom: 40px;
}

.process-grid-final {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

/* --- Card --- */
.process-card-final {
    background-color: var(--background-color);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    border-top: 3px solid #ed1c24;
    box-shadow: 6px 20px 22px 11px rgb(53 53 53 / 8%);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.process-card-final:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(237, 28, 36, 0.15);
    border-top-color: #ed1c24;
}

/* --- Active Step --- */
.process-card-final.active {
    border-top-color: #ed1c24;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 #ed1c24;
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 212, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
    }
}

/* --- Icon --- */
.card-icon-main {
    position: absolute;
    top: 0;
    right: 30px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: #ed1c24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(237, 28, 36, 0.25);
    transition: transform 0.3s ease, background 0.3s ease;
}

.process-card-final:hover .card-icon-main {
    transform: translateY(-50%) scale(1.15) rotate(12deg);
    background: #ed1c24;
}

.card-icon-main i {
    font-size: 28px;
    color: white;
}

/* --- Text --- */
.card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 15px;
}

.card-description {
    font-size: 15px;
    color: var(--secondary-text);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .process-grid-final {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.video-section {
    position: relative;
    min-height: 80vh;
    padding: 80px 20px;
    /* background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%); */
    overflow: hidden;
    margin-bottom: -60px;
}

.video-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: radial-gradient(
            circle at 20% 30%,
            rgba(120, 119, 198, 0.3) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(255, 77, 77, 0.2) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 80%,
            rgba(77, 255, 166, 0.1) 0%,
            transparent 50%
        ); */
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
    }
    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

.video-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
}

.content-section {
    color: rgb(0, 0, 0);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.content-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
    /* background: linear-gradient(135deg, #fff 0%, #a8a8a8 100%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
}

.content-section p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 0px;
}

.video-section-main {
    position: relative;
}

.video-thumbnail {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    /* background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1); */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-thumbnail:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2); */
}

.video-thumbnail img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    transition: all 0.4s ease;
}

.overlay:hover {
    background: rgba(0, 0, 0, 0.6);
}

.overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    border: none;
    position: relative;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    animation: popIn 0.6s ease 0.4s both;
}

.play-btn::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(255, 71, 87, 0.5);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.5);
}

.play-btn i {
    margin-left: 3px;
}

.duration {
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 0.6s both;
}

.watch-img {
    position: absolute;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: auto;
    opacity: 0.8;
    transition: transform 0.1s linear;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
    animation: modalSlideIn 0.4s ease;
}

.close-btn {
    position: absolute;
    top: -60px;
    right: 0;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

iframe {
    width: 100%;
    height: 60vh;
    border: none;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .video-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .watch-img {
        display: none;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 40px 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-section h2 {
        font-size: 2.5rem;
    }

    .play-btn {
        width: 70px;
        height: 70px;
        font-size: 20px;
    }

    .overlay h3 {
        font-size: 20px;
    }

    .video-thumbnail img {
        height: 300px;
    }

    iframe {
        height: 50vh;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .content-section p {
        font-size: 16px;
    }
}

.about-sectionss {
    min-height: 100vh;
    /* background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%); */
    padding: 30px 0px;
}

.containerss {
    max-width: 1280px;
    margin: 0 auto;
}

.gridss {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Left Content Section */
.left-contents {
    animation: fadeInLeft 1s ease-out;
}

.badges {
    display: inline-block;
    background: #fee2e2;
    color: #dc2626;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 32px;
}

.main-titless {
    font-size: 45px;
    font-weight: 700;
    color: #111827;
    line-height: 1;
    margin-bottom: 22px;
}

.highlightss {
    color: #dc2626;
}

.descriptions {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 22px;
}

.experience-cardss {
    background: white;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.experience-cardss:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.experience-innerss {
    display: flex;
    align-items: center;
    gap: 24px;
}

.experience-numberss {
    font-size: 72px;
    font-weight: 700;
    color: #dc2626;
    line-height: 1;
}

.experience-textss h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.years-texts {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.sub-descriptions {
    font-size: 14px;
    color: #6b7280;
}

/* Right Image Section */
.right-sectionss {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.decorative-bgss {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fee2e2 0%, #fef2f2 100%);
    border-radius: 24px;
    transform: rotate(7deg);
    z-index: 0;
}

.image-containerss {
    position: relative;
    /* background: white; */
    /* border-radius: 24px; */
    padding: 32px;
    /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15); */
    z-index: 1;
}

.main-imagess {
    width: 520px;
    margin-top: 50px;
    margin-left: 50px;
    height: auto;
    border-radius: 16px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.floating-badgess {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: #dc2626;
    color: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.4);
    text-align: center;
    z-index: 2;
}

.floating-badge-numberss {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.floating-badge-textss {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Features Section */
.features-sectionss {
    margin-top: 48px;
}

.features-titless {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.features-descriptionss {
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.features-listss {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-itemss {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-itemss:nth-child(1) {
    animation-delay: 0.1s;
}
.feature-itemss:nth-child(2) {
    animation-delay: 0.2s;
}
.feature-itemss:nth-child(3) {
    animation-delay: 0.3s;
}
.feature-itemss:nth-child(4) {
    animation-delay: 0.4s;
}
.feature-itemss:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-itemss:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #fecaca;
    transform: translateY(-2px);
}

.checkmarkss {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.feature-itemss:hover .checkmarkss {
    transform: scale(1.1);
}

.feature-contentss {
    flex: 1;
}

.feature-titless {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.feature-descriptionss {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .gridss {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .main-titless {
        font-size: 42px;
    }

    .experience-numberss {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .about-sectionss {
        padding: 60px 16px;
    }

    .main-titless {
        font-size: 36px;
    }

    .experience-innerss {
        flex-direction: column;
        text-align: center;
    }

    .main-imagess {
        width: 341px;
        margin-top: 0px;
        margin-left: 26px;
    }

    .floating-badgess {
        bottom: -35px;
        right: 0px;
        padding: 16px;
    }

    .features-titless {
        font-size: 28px;
    }
}

/* feature section */
.features-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: auto;
    margin-top: 35px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 12px 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* futuristic gradient glow on hover */
.feature-card::before {
    content: "";
    position: absolute;
    top: 0px !important;
    right: 0px !important;
    width: 100%;
    height: 100%;
    background: conic-gradient(
        from 180deg at 50% 50%,
        #ed1c24,
        #ffac41,
        #ed1c24,
        #ed1c24
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 0.15;
}

.feature-icon {
    font-size: 50px;
    color: #ed1c24;
    margin-bottom: 20px;
    transition: transform 0.4s ease, color 0.3s ease;
    z-index: 1;
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(8deg);
    color: #ed1c24;
}

.feature-title {
    font-size: 15px;
    /* font-weight: 600; */
    margin-bottom: 12px;
    color: #111;
    z-index: 1;
    position: relative;
}

.feature-text {
    font-size: 12px;
    line-height: 1.6;
    color: #444;
    z-index: 1;
    position: relative;
}

/* Hover lift */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* testimonials section */
.testimonial-section {
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
    position: relative;
    top: 0px;
}

.testimonial-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #111;
}
.testimonial-section h2 span {
    color: #ed1c24; /* purple brand */
}

/* Slider container */
.testimonial-slider {
    display: flex;
    gap: 20px;
    animation: testimonialScroll 40s linear infinite;
    width: max-content;
}

/* Testimonial Card */
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    text-align: left;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.stars {
    color: #ed1c24;
    margin-bottom: 12px;
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    color: #333;
    margin-bottom: 18px;
    line-height: 1.5;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    font-size: 14px;
}
.author-info strong {
    display: block;
    font-weight: 600;
    color: #000;
}
.author-info span {
    color: #ed1c24;
    font-size: 13px;
}

/* Animation */
@keyframes testimonialScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Gradient fade edges */
.testimonial-section::before,
.testimonial-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
}
.testimonial-section::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 60%, transparent);
}
.testimonial-section::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 60%, transparent);
}

.faq-section {
    padding: 80px 20px;
}

.faq-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* LEFT FAQ */
.faq-left {
    flex: 1;
    min-width: 300px;
}

.faq-subtitle {
    color: #ed1c24;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.faq-title span {
    color: #ed1c24;
    font-weight: 500;
    font-style: italic;
}

/* ACCORDION */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

.faq-question {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    border: none;
    background: #fff;
    cursor: pointer;
    color: #1a1a1a;
    transition: background 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question::after {
    content: "+";
    font-size: 24px;
    color: #ed1c24;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 18px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 18px 18px;
}

/* RIGHT FORM */
.faq-right {
    flex: 1;
    min-width: 320px;
}

.contact-form-box {
    background: linear-gradient(135deg, #b9a8cc, #665c5d);
    color: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-form-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-form-box .subtitle {
    font-size: 14px;
    margin-bottom: 25px;
    color: #fff;
    opacity: 0.9;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #fff !important;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
    outline: none;
    transition: background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    background: #fff;
    color: #ed1c24;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

.form-note {
    font-size: 13px;
    text-align: center;
    opacity: 0.85;
    margin-top: 15px;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-container {
        gap: 30px;
    }

    .faq-title {
        font-size: 28px;
    }

    .contact-form-box {
        padding: 30px 24px;
    }

    .contact-form-box h3 {
        font-size: 20px;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .faq-left,
    .faq-right {
        min-width: 100%;
    }

    .contact-form-box {
        padding: 24px 20px;
    }
}

/* Reset for section only */
.repair-section * {
    box-sizing: border-box;
    text-decoration: none;
}

/* Main Section Container */
.repair-section {
    width: 100%;
    padding: 0;
    background: #ffffff;
}

.repair-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.repair-header {
    background: white;
    padding: 40px 20px;
    margin-bottom: 0;
}

.repair-header-content {
    max-width: 1400px;
    margin: 0 auto;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.breadcrumb-search-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #ff3b30;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Search and Filter Combined Bar */
.search-filter-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.search-wrapper {
    width: 300px; /* <<< small size */
    position: relative;
    flex: 0 0 auto; /* <<< stop stretching */
}

.search-wrapper input {
    width: 100%;
    padding: 10px 40px 10px 40px;
    border: 2px solid #e8ecf0;
    border-radius: 25px;
    font-size: 14px;
    background: #f8f9fb;
}

.search-wrapper input:focus {
    outline: none;
    border-color: #007aff;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.08);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #999;
    pointer-events: none;
}

.filter-group {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.filter-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
}

.filter-btn {
    padding: 10px 22px;
    border: 2px solid #e8ecf0;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: #ff3b30;
    color: #ff3b30;
    background: #fff5f4;
    transform: translateY(-1px);
}

.filter-btn.active {
    background: #ff3b30;
    border-color: #ff3b30;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.25);
}

/* Content Section */
.content-section {
    padding: 40px 20px;
}

/* Section Title */
.section-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

/* Models Grid */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    align-items: stretch;
}

/* Model Card */
.model-card {
    background: white;
    border: 1px solid #e8ecf0;
    border-radius: 16px;
    padding: 15px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center; /* Horizontal Center */
    justify-content: center; /* Vertical Center */
    height: 100%; /* Parent grid cell ki height lega */
    min-height: 180px; /* Ek minimum height fix kar do */
    transition: all 0.3s ease;
}

.model-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 122, 255, 0.15);
    border-color: #ff3b30;
}

.model-card:active {
    transform: translateY(-3px);
}

/* Badge */
.badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #ff3b30;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.3);
    text-transform: uppercase;
}

/* Phone Image */
.phone-img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.phone-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Image kategi nahi, bas fit hogi */
}

.model-card:hover .phone-img {
    transform: scale(1.08);
}

/* Model Name */
.model-name {
    font-size: 16px;

    color: #333;
    text-align: center;
    margin: 0;
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.no-results svg {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    opacity: 0.4;
    display: block;
}

.no-results p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Device Icon Header */
.section-headers {
    background: #fff;
    border-radius: 18px;
    padding: 25px 35px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.device-icon {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

.device-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-content h1 {
    font-size: 28px;
    color: #1a1a1a;
    margin: 0;
    font-weight: 700;
}

.header-content p {
    font-size: 15px;
    color: #777;
    margin-top: 6px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }

    .filter-group {
        gap: 8px;
    }

    .filter-btn {
        padding: 9px 18px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .repair-header {
        padding: 30px 15px;
    }

    .page-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .breadcrumb {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .search-filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .search-wrapper {
        width: 100%;
        min-width: 100%;
    }

    .search-wrapper input {
        padding: 12px 40px 12px 40px;
        font-size: 14px;
    }

    .filter-group {
        width: 100%;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #e8ecf0 transparent;
    }

    .filter-group::-webkit-scrollbar {
        height: 6px;
    }

    .filter-group::-webkit-scrollbar-track {
        background: transparent;
    }

    .filter-group::-webkit-scrollbar-thumb {
        background: #e8ecf0;
        border-radius: 3px;
    }

    .filter-label {
        flex-shrink: 0;
    }

    .filter-btn {
        flex-shrink: 0;
    }

    .models-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }

    .content-section {
        padding: 30px 15px;
    }

    .section-headers {
        padding: 20px 25px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .device-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .repair-header {
        padding: 25px 15px;
    }

    .page-title {
        font-size: 22px;
    }

    .breadcrumb {
        font-size: 12px;
    }

    .search-wrapper input {
        padding: 11px 35px 11px 35px;
        font-size: 13px;
        border-radius: 25px;
    }

    .search-icon {
        width: 16px;
        height: 16px;
        left: 14px;
    }

    .filter-group {
        gap: 6px;
    }

    .filter-label {
        font-size: 13px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 20px;
    }

    .models-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .model-card {
        padding: 6px 0px;
        border-radius: 14px;
    }

    .badge {
        top: 0px;
        right: 0px;
        padding: 4px 10px;
        font-size: 10px;
    }

    .phone-img {
        width: 69px;
        height: 104px;
        margin-bottom: 0;
    }

    .model-name {
        font-size: 13px;
        line-height: 1.3;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .content-section {
        padding: 0px 0px;
    }

    .section-headers {
        padding: 18px 20px;
    }

    .device-icon {
        width: 60px;
        height: 60px;
    }

    .header-content h1 {
        font-size: 20px;
    }

    .header-content p {
        font-size: 13px;
    }

    .no-results {
        padding: 60px 15px;
    }

    .no-results svg {
        width: 48px;
        height: 48px;
    }

    .no-results p {
        font-size: 14px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .page-title {
        font-size: 20px;
    }

    .models-grid {
        gap: 10px;
    }

    .model-card {
        padding: 16px 12px;
    }

    .phone-img {
        width: 65px;
        height: 95px;
    }

    .model-name {
        font-size: 12px;
    }
}

/* === GRID LAYOUT === */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: flex-start;
}

/* === LEFT SECTION (SERVICES) === */
.services-container {
    background: #fff;
    border-radius: 18px;
    padding: 25px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.services-header {
    margin-bottom: 20px;
}

.services-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.services-subtitle {
    font-size: 14px;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

/* === SERVICE CARD === */
.service-cardss {
    position: relative;
    background: #fff;
    border: 1.5px solid #e8eaf0;
    border-radius: 14px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.service-cardss:hover {
    transform: translateY(-4px);
    border-color: #667eea;
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.15);
}

.service-cardss.selected {
    border-color: #667eea;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.07),
        rgba(118, 75, 162, 0.07)
    );
}

/* === DISCOUNT BADGE === */
.discount-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 11px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    font-weight: 700;
    border-radius: 20px;
    padding: 4px 8px;
    box-shadow: 0 4px 10px rgba(245, 87, 108, 0.3);
}

/* === ICON BOX === */
.service-icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 0px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.25);
}

.service-icon-box img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* === TEXTS & PRICING === */
.service-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.pricing {
    margin-bottom: 12px;
}

.price-current {
    color: #667eea;
    font-weight: 700;
    font-size: 17px;
}

.price-old {
    color: #aaa;
    text-decoration: line-through;
    font-size: 13px;
    margin-left: 5px;
}

/* === BUTTONS === */
.button-box {
    margin-top: 5px;
}

.btn-add,
.btn-remove {
    border: none;
    border-radius: 10px;
    padding: 7px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-add {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-add:hover {
    opacity: 0.9;
}

.btn-remove {
    background: #f5576c;
    color: #fff;
}

.btn-remove:hover {
    background: #dc3545;
}

/* Info Row */
.service-extra {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* (i) icon */
.info-icon {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
}

/* Tooltip */
.info-tooltip {
    position: absolute;
    top: -10px;
    left: 25px;
    width: 220px;
    padding: 8px 12px;
    background: #1a1a1a;
    color: white;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.4;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    z-index: 50;
}

/* Show tooltip */
.info-icon:hover .info-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-4px);
}

/* Paragraph under info icon */
.service-desc {
    font-size: 12px;
    color: #888;
    margin: 0;
}

@media (max-width: 768px) {
    .service-extra {
        margin-top: 4px;
    }

    .info-icon {
        margin-left: 10px;
    }
}

/* === RIGHT SIDEBAR === */
.checkout-sidebar {
    position: sticky;
    top: 20px;
}

.checkout-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.checkout-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.coupon-box {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.coupon-field {
    flex: 1;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 14px;
    outline: none;
}

.coupon-apply-btn {
    border: none;
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    cursor: pointer;
}

/* === SELECTED ITEMS === */
.selected-items-box {
    background: #fafafa;
    border-radius: 10px;
    padding: 12px;
    max-height: 200px;
    overflow-y: auto;
    font-size: 14px;
}

.item-line {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.item-line:last-child {
    border-bottom: none;
}

.item-name {
    color: #333;
    font-weight: 600;
}

.item-price {
    color: #667eea;
    font-weight: 700;
}

/* === TOTAL & BUTTON === */
.total-box {
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.total-display {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 16px;
}

.book-repair-btn {
    width: 100%;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 700;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.book-repair-btn:hover {
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
}

/* === RESPONSIVE FIXES === */
@media (max-width: 1024px) {
    .main-grid {
        grid-template-columns: 1fr;
    }
}

/* Checkout Section */
.checkout-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkout-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 20px;
}

.checkout-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Coupon Section */
.coupon-box {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.coupon-field {
    flex: 1;
    padding: 14px;
    border: 2px solid #e8eaf0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.coupon-field:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.coupon-apply-btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    font-size: 15px;
}

.coupon-apply-btn:hover {
    transform: scale(1.05);
}

/* Selected Items Section */
.selected-items-box {
    margin-bottom: 24px;
    min-height: 100px;
}

.empty-state {
    text-align: center;
    padding: 30px 0;
    color: #999;
    font-size: 15px;
}

.selected-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #e8eaf0;
}

.selected-row:last-child {
    border-bottom: none;
}

.item-label {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.item-amount {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 16px;
}

/* Total Section */
.total-box {
    padding-top: 24px;
    border-top: 2px solid #e8eaf0;
    margin-bottom: 24px;
}

.total-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-text {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.total-price {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Book Button */
.book-repair-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 19px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(245, 87, 108, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-repair-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(245, 87, 108, 0.5);
}

.book-repair-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .checkout-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .repair-section {
        padding: 20px 15px;
    }

    .section-header {
        padding: 25px;
        flex-direction: column;
        text-align: center;
    }

    .device-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }

    .header-content h1 {
        font-size: 28px;
    }

    .services-container {
        padding: 25px;
    }

    /* Single column list - full width */
    .services-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    /* Convert card into horizontal list style */
    .service-cardss {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 15px !important;
        border-radius: 12px !important;
        text-align: left !important;
        width: 100% !important;
        height: auto !important;
    }

    /* ICON left */
    .service-icon-box {
        width: 55px !important;
        height: 55px !important;
        min-width: 55px !important;
        margin: 0 !important;
    }

    /* TEXT center left */
    .service-content {
        flex: 1 !important;
        margin-left: 15px !important;
    }

    .service-title {
        font-size: 12px !important;
        margin-bottom: 3px !important;
        font-weight: 500 !important;
    }

    .price-current {
        font-size: 15px !important;
        font-weight: 500 !important;
    }

    .pricing {
        margin: 0 !important;
    }

    /* BUTTON right */
    .button-box {
        margin-left: auto !important;
    }

    .btn-add,
    .btn-remove {
        padding: 8px 16px !important;
        font-size: 14px !important;
        border-radius: 10px !important;
    }

    .discount-tag {
        top: 8px !important;
        right: 8px !important;
        padding: 3px 6px !important;
        font-size: 10px !important;
    }

    .checkout-card {
        padding: 25px;
    }

    .coupon-box {
        flex-direction: column;
    }

    .coupon-apply-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .section-header {
        padding: 20px;
        margin-bottom: 0px;
    }

    .header-content h1 {
        font-size: 24px;
    }

    .header-content p {
        font-size: 15px;
    }

    .services-container {
        padding: 20px;
    }

    /* Single column list - full width */
    .services-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }

    /* Convert card into horizontal list style */
    .service-cardss {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 15px !important;
        border-radius: 12px !important;
        text-align: left !important;
        width: 100% !important;
        height: auto !important;
    }

    /* ICON left */
    .service-icon-box {
        width: 55px !important;
        height: 55px !important;
        min-width: 55px !important;
        margin: 0 !important;
    }

    /* TEXT center left */
    .service-content {
        flex: 1 !important;
        margin-left: 15px !important;
    }

    .service-title {
        font-size: 14px !important;
        margin-bottom: 3px !important;
        font-weight: 500 !important;
    }

    .price-current {
        font-size: 12px !important;
        font-weight: 500 !important;
    }

    .pricing {
        margin: 0 !important;
    }

    /* BUTTON right */
    .button-box {
        margin-left: auto !important;
    }

    .btn-add,
    .btn-remove {
        padding: 8px 16px !important;
        font-size: 14px !important;
        border-radius: 10px !important;
    }

    .discount-tag {
        top: 8px !important;
        right: 8px !important;
        padding: 3px 6px !important;
        font-size: 10px !important;
    }

    .checkout-card {
        padding: 20px;
    }
}


/* Title row: Issue name + info icon */
.title-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.service-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Info icon */
.info-icon {
    font-size: 15px;
    cursor: pointer;
    position: relative;
    color: #555;
    margin-top: 2px;
}

.pick-issues{
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #000000;
}

/* Tooltip */
.info-tooltip {
    position: absolute;
    top: -5px;
    left: 20px;
    background: #000;
    color: white;
    padding: 8px 12px;
    width: 200px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
    z-index: 100;
}

.info-icon:hover .info-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Pick & Drop text */
.pick-info {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 2px 0 4px 0;
    font-size: 10px;
    color: #777;
    margin-top: 8px;
}

.pick-info svg {
    stroke: #777;
}

/* PRICE correct position (under pick-info) */
.pricing {
    font-size: 15px;
    font-weight: 600;
    margin-top: 0;
}


/* ✅ Ensure overlay always covers full screen */
.checkout-overlay {
    inset: 0 !important;
    position: fixed !important;
    z-index: 99999 !important;
}

/* ✅ Center modal properly even after dynamic move */
.checkout-overlay .checkout-modal {
    margin: auto !important;
}

/* ✅ Force overlay to always full-screen */
.checkout-overlay {
    inset: 0 !important;
    position: fixed !important;
    width: 100vw !important;
    height: 100vh !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(8px);
    z-index: 99999 !important;
}

/* ✅ Center modal inside overlay */
.checkout-overlay .checkout-modal {
    margin: auto !important;
    position: relative !important;
}

/* Hero Section */
.heros {
    /* background: linear-gradient(135deg, #e51616 0%, #ff6b6b 100%); */
    color: rgb(0, 0, 0);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.heros::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 1px,
        transparent 1px
    );
    background-size: 50px 50px;
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-contents {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.heros h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s ease;
}

.heros p {
    font-size: 1.3rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.3s backwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-sections {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.containers {
    max-width: 1200px;
    margin: 0 auto;
}

.section-titles {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.section-titles::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #e51616, #ff6b6b);
    border-radius: 2px;
}

.section-subtitles {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.2rem;
    margin-bottom: 60px;
}

/* Features Grid */
.features-grids {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.feature-cards {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-cards::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #e51616, #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-cards:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(229, 22, 22, 0.15);
}

.feature-cards:hover::before {
    transform: scaleX(1);
}

.feature-icons {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e51616 0%, #ff6b6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    transition: transform 0.4s ease;
}

.feature-cards:hover .feature-icons {
    transform: rotateY(360deg);
}

.feature-cards h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-cards p {
    color: #7f8c8d;
    line-height: 1.8;
}

/* Mission & Vision */
.mission-visions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 80px 0;
}

.mv-cards {
    background: linear-gradient(135deg, #e51616 0%, #ff6b6b 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.mv-cards::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.mv-cards h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.mv-cards p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Stats Section */
.stats-sections {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 20px;
    margin: 80px 0;
}

.stats-grids {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-items {
    padding: 30px;
}

.stat-numbers {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #e51616, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-labels {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-sections {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.contact-containers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-infos {
    padding: 40px;
}

.contact-items {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-items:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(229, 22, 22, 0.15);
}

.contact-icons {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e51616 0%, #ff6b6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-detailss h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.contact-detailss p {
    color: #7f8c8d;
    line-height: 1.6;
}

.contact-detailss a {
    color: #e51616;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detailss a:hover {
    color: #ff6b6b;
}

/* Contact Form */
.contact-forms {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-groups {
    margin-bottom: 25px;
}

.form-groups label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1rem;
}

.form-groups input,
.form-groups textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-groups input:focus,
.form-groups textarea:focus {
    outline: none;
    border-color: #e51616;
    box-shadow: 0 0 0 4px rgba(229, 22, 22, 0.1);
}

.form-groups textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btns {
    background: linear-gradient(135deg, #e51616 0%, #ff6b6b 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-btns::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btns:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btns:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(229, 22, 22, 0.3);
}

.submit-btns span {
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .heros h1 {
        font-size: 2.5rem;
    }

    .heros p {
        font-size: 1.1rem;
    }

    .section-titles {
        font-size: 2rem;
    }

    .contact-containers,
    .mission-visions {
        grid-template-columns: 1fr;
    }

    .features-grids {
        grid-template-columns: 1fr;
    }

    .contact-forms {
        padding: 30px 20px;
    }

    .stat-numbers {
        font-size: 2.5rem;
    }
}

/*  Device ISsue */

/* === CONTAINER === */
.device-issues-container {
    width: 100%;
    /*background: #f8f9fb;*/
    min-height: 100vh;
    padding: 0;
}

.repair-sections {
    max-width: 1400px;
    margin: -20px auto;
    padding: 32px 0px;
}

/* === HEADER SECTION === */
.section-headerss {
    background: white;
    border-radius: 16px;
    padding: 13px 13px;
    margin-bottom: 12px;
    margin-top: 0px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8ecf0;
}

.device-icons {
    width: 80px;
    height: 80px;
    padding: 0px;

}

.device-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-content {
    flex: 1;
}

.header-content h1 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #1a1a1a;
}

.header-content p {
    font-size: 14px;
    margin: 0;
    color: #666;
    font-weight: 400;
}

/* === MAIN GRID === */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

/* === SERVICES SECTION === */
.services-container {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8ecf0;
}

.services-header {
    margin-bottom: 30px;
}

.services-title {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.services-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.services-grid {
    display: grid;
    flex-direction: column;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* === SERVICE CARD - RECTANGULAR === */
.service-cardss {
    background: white;
    border: 2px solid #e8ecf0;
    border-radius: 14px;
    padding: 8px 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-cardss:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #ed1c24;
}

.service-cardss.selected {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8efff 100%);
    border-color: #ff3b30;
    border-width: 2px;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15);
}

.discount-tag {
    position: absolute;
    top: 0px;
    right: 12px;
    background: linear-gradient(135deg, #ff3b30 0%, #ff6b6b 100%);
    color: white;
    padding: 5px 10px;
    border-radius: 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.3);
}

.service-icon-box {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #ff3b30 0%, #ff3b30 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
    flex-shrink: 0;
}

.service-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-content {
    flex: 1;
    min-width: 0;
}

.service-title {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.1;
    display: flex;
    /* margin-right: 160px !important; */
}

.pricing {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-current {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
}

.price-old {
    font-size: 15px;
    color: #999;
    text-decoration: line-through;
}

.button-box {
    flex-shrink: 0;
}

.btn-add,
.btn-remove {
    padding: 8px 20px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-add {
    background: linear-gradient(135deg, #ff3b30 0%, #ff3b30 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.btn-remove {
    background: #fff;
    color: #ff3b30;
    border: 2px solid #ff3b30;
}

.btn-remove:hover {
    background: #ff3b30;
    color: white;
    transform: translateY(-2px);
}

.empty-services {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-services svg {
    margin-bottom: 16px;
    opacity: 0.4;
}

.empty-services p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* === CHECKOUT SIDEBAR === */
.checkout-sidebar {
    position: sticky;
    top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8ecf0;
}

.checkout-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 2px solid #f0f0f0;
}

.checkout-header svg {
    color: #ff3b30;
}

.checkout-title {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* === COUPON BOX === */
.coupon-box {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.coupon-input-wrapper {
    flex: 1;
    position: relative;
}

.coupon-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.coupon-field {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 2px solid #e8ecf0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.coupon-field:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.coupon-apply-btn {
    padding: 12px 22px;
    background: linear-gradient(135deg, #ff3b30 0%, #ff3b30 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.coupon-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

/* === SELECTED ITEMS === */
.selected-items-box {
    margin-bottom: 20px;
}

.items-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.items-count {
    background: #ff3b30;
    color: white;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 12px;
}

.item-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 12px;
}

.item-line:last-child {
    border-bottom: none;
}

.item-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.item-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ff3b30 0%, #ff3b30 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-icon svg {
    color: white;
}

.item-details {
    flex: 1;
    min-width: 0;
}

.item-name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.discount-badge {
    display: inline-block;
    background: #fff3f0;
    color: #ff3b30;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.item-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.item-price {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
}

.item-remove {
    width: 28px;
    height: 28px;
    background: #fff0f0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.item-remove:hover {
    background: #ff3b30;
}

.item-remove:hover svg {
    color: white;
}

.item-remove svg {
    color: #ff3b30;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.empty-state svg {
    margin-bottom: 16px;
    opacity: 0.3;
}

.empty-state p {
    font-size: 15px;
    color: #666;
    margin: 0 0 6px 0;
    font-weight: 500;
}

.empty-state small {
    font-size: 13px;
    color: #999;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e8ecf0, transparent);
    margin: 20px 0;
}

/* === TOTALS === */
.total-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.total-row.savings {
    color: #10b981;
    font-weight: 600;
}

.total-row.savings span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.savings-amount {
    color: #10b981;
    font-weight: 700;
}

.total-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 2px solid #f0f0f0;
    margin-top: 8px;
}

.total-display span {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.total-display strong {
    font-size: 26px;
    color: #1a1a1a;
    font-weight: 700;
}

/* === BOOK BUTTON === */
.book-repair-btn {
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(135deg, #ff3b30 0%, #ff3b30 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.book-repair-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.5);
}

.book-repair-btn:active {
    transform: translateY(-1px);
}

.book-repair-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.empty-cart-action {
    text-align: center;
    padding: 30px 20px;
    color: #999;
}

.empty-cart-action p {
    font-size: 15px;
    margin: 0;
}

/* === TRUST BADGES === */
.trust-badges {
    background: white;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8ecf0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #555;
}

.trust-item svg {
    color: #667eea;
    flex-shrink: 0;
}

.trust-item span {
   font-weight: 700;
    font-size: 15px;
}

.mobile-bottom-bar {
    display: none; /* Desktop pe nahi dikhega */
}

/* === RESPONSIVE DESIGN === */

/* Tablet - Large */
@media (max-width: 1200px) {
    .main-grid {
        grid-template-columns: 1fr 380px;
        gap: 25px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .repair-section {
        padding: 25px 15px;
    }

    .main-grid {
        grid-template-columns: 1fr 360px;
        gap: 20px;
    }

    .section-headers {
        padding: 25px 30px;
    }

    .device-icon {
        width: 75px;
        height: 75px;
    }

    .header-content h1 {
        font-size: 26px;
    }

    .services-container {
        padding: 30px 25px;
    }

    .checkout-card {
        padding: 25px;
    }
}

/* Tablet - Small */
@media (max-width: 900px) {
    .main-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .checkout-sidebar {
        position: static;
        order: 2;
    }

    .services-container {
        order: 1;
    }
}

/* Mobile - Large */
@media (max-width: 768px) {
    .repair-section {
        padding: 20px 15px;
    }

    .section-headerss {
        padding: 6px 6px;
        margin-bottom: 25px;
        margin-top: -44px;
        gap: 18px;
        border-radius: 14px;
    }

    .device-icon {
        width: 70px;
        height: 70px;
    }

    .book-repair-btn {
        display: none;
    }

    /* 🚀 FIXED BOTTOM BAR FOR MOBILE */
    .mobile-bottom-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: 12px 20px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-top: 1px solid #eee;
    }

    .bottom-bar-left {
        display: flex;
        flex-direction: column;
    }

    .total-label {
        font-size: 11px;
        color: #666;
        text-transform: uppercase;
    }

    .total-price {
        font-size: 20px;
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.1;
    }

    .item-count-text {
        font-size: 11px;
        color: #2ecc71;
        font-weight: 500;
    }

    .mobile-book-btn {
        background: #ff3b30;
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .header-content h1 {
        font-size: 24px;
    }

    .header-content p {
        font-size: 13px;
    }

    .services-container {
        padding: 25px 20px;
        border-radius: 14px;
    }

    .services-title {
        font-size: 22px;
    }

    .services-subtitle {
        font-size: 13px;
    }

    .service-cardss {
        padding: 18px 20px;
        gap: 16px;
    }

    .service-icon-box {
        width: 60px;
        height: 60px;
    }

    .service-title {
        font-size: 16px;
    }

    .price-current {
        font-size: 20px;
    }

    .price-old {
        font-size: 14px;
    }

    .btn-add,
    .btn-remove {
        padding: 10px 20px;
        font-size: 13px;
    }

    .checkout-card {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .checkout-title {
        font-size: 18px;
    }

    .total-display strong {
        font-size: 24px;
    }

    .trust-badges {
        padding: 18px;
    }
}

/* Mobile - Medium */
@media (max-width: 640px) {
    .repair-section {
        padding: 15px 12px;
    }

    .book-repair-btn {
        display: none;
    }

    .section-headerss {
        padding: 6px 6px;
        margin-bottom: 25px;
        margin-top: -44px;
        gap: 16px;
    }

    .device-icon {
        width: 65px;
        height: 65px;
    }

    .header-content h1 {
        font-size: 22px;
                text-align: left !important;
    }

    .header-content p {
        font-size: 12px;
    }

    /* 🚀 FIXED BOTTOM BAR FOR MOBILE */
    .mobile-bottom-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: 12px 20px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-top: 1px solid #eee;
    }

    .bottom-bar-left {
        display: flex;
        flex-direction: column;
    }

    .total-label {
        font-size: 11px;
        color: #666;
        text-transform: uppercase;
    }

    .total-price {
        font-size: 20px;
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.1;
    }

    .item-count-text {
        font-size: 11px;
        color: #2ecc71;
        font-weight: 500;
    }

    .mobile-book-btn {
        background: #ff3b30;
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .services-container {
        padding: 20px 16px;
    }

    .services-header {
        margin-bottom: 20px;
    }

    .services-title {
        font-size: 20px;
    }

    .services-grid {
        gap: 14px;
    }

    .service-cardss {
        padding: 16px 18px;
        gap: 14px;
    }

    .service-icon-box {
        width: 55px;
        height: 55px;
    }

    .service-title {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .pricing {
        gap: 8px;
    }

    .price-current {
        font-size: 19px;
    }

    .price-old {
        font-size: 13px;
    }

    .btn-add,
    .btn-remove {
        padding: 9px 18px;
        font-size: 13px;
    }

    .discount-tag {
        top: 10px;
        right: 10px;
        padding: 4px 9px;
        font-size: 9px;
    }

    .checkout-card {
        padding: 20px 16px;
    }

    .checkout-header {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    .checkout-title {
        font-size: 17px;
    }

    .coupon-box {
        flex-direction: column;
    }

    .coupon-apply-btn {
        width: 100%;
        padding: 12px;
    }

    .item-name {
        font-size: 13px;
    }

    .item-price {
        font-size: 14px;
    }

    .total-display {
        padding: 14px 0;
    }

    .total-display span {
        font-size: 15px;
    }

    .total-display strong {
        font-size: 22px;
    }

    .book-repair-btn {
        padding: 14px 20px;
        font-size: 15px;
    }

    .trust-badges {
        padding: 16px;
    }

    .trust-item {
        font-size: 13px;
        gap: 10px;
    }

    .trust-item svg {
        width: 18px;
        height: 18px;
    }
}

/* Mobile - Small */
@media (max-width: 480px) {
    .repair-section {
        padding: 4px 10px;
    }

    .section-headerss {
        padding: 6px 6px;
        margin-bottom: 25px;
        margin-top: -44px;
        border-radius: 12px;
        text-align: center;
    }

    .book-repair-btn {
        display: none;
    }

    .device-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }

    .header-content h1 {
        font-size: 20px;
                text-align: left !important;
    }

    .header-content p {
        font-size: 11px;
    }

    .services-container {
        padding: 18px 14px;
        border-radius: 12px;
    }

    .services-title {
        font-size: 18px;
    }

    /* 🚀 FIXED BOTTOM BAR FOR MOBILE */
    .mobile-bottom-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: 12px 20px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-top: 1px solid #eee;
    }

    .bottom-bar-left {
        display: flex;
        flex-direction: column;
    }

    .total-label {
        font-size: 11px;
        color: #666;
        text-transform: uppercase;
    }

    .total-price {
        font-size: 20px;
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.1;
    }

    .item-count-text {
        font-size: 11px;
        color: #2ecc71;
        font-weight: 500;
    }

    .mobile-book-btn {
        background: #ff3b30;
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .services-subtitle {
        font-size: 12px;
    }

    .services-grid {
        gap: 12px;
    }

    .service-cardss {
        padding: 14px 16px;
        gap: 12px;
        border-radius: 12px;
    }

    .service-icon-box {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .service-title {
        font-size: 14px;
    }

    .price-current {
        font-size: 18px;
    }

    .price-old {
        font-size: 12px;
    }

    .btn-add,
    .btn-remove {
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 9px;
    }

    .btn-add svg,
    .btn-remove svg {
        width: 14px;
        height: 14px;
    }

    .discount-tag {
        padding: 3px 8px;
        font-size: 9px;
    }

    .checkout-card {
        padding: 18px 14px;
        border-radius: 12px;
    }

    .checkout-header {
        margin-bottom: 18px;
        padding-bottom: 14px;
        gap: 10px;
    }

    .checkout-header svg {
        width: 20px;
        height: 20px;
    }

    .checkout-title {
        font-size: 16px;
    }

    .coupon-field {
        padding: 11px 12px 11px 36px;
        font-size: 13px;
    }

    .coupon-icon {
        width: 16px;
        height: 16px;
        left: 12px;
    }

    .coupon-apply-btn {
        padding: 11px;
        font-size: 13px;
    }

    .items-header {
        font-size: 13px;
    }

    .items-count {
        padding: 3px 8px;
        font-size: 11px;
    }

    .item-line {
        padding: 12px 0;
    }

    .item-icon {
        width: 26px;
        height: 26px;
    }

    .item-icon svg {
        width: 14px;
        height: 14px;
    }

    .item-name {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .discount-badge {
        padding: 2px 6px;
        font-size: 10px;
    }

    .item-price {
        font-size: 13px;
    }

    .item-remove {
        width: 26px;
        height: 26px;
    }

    .item-remove svg {
        width: 12px;
        height: 12px;
    }

    .empty-state {
        padding: 30px 15px;
    }

    .empty-state svg {
        width: 40px;
        height: 40px;
    }

    .empty-state p {
        font-size: 14px;
    }

    .empty-state small {
        font-size: 12px;
    }

    .total-row {
        font-size: 13px;
    }

    .total-row svg {
        width: 14px;
        height: 14px;
    }

    .total-display {
        padding: 12px 0;
    }

    .total-display span {
        font-size: 14px;
    }

    .total-display strong {
        font-size: 20px;
    }

    .book-repair-btn {
        padding: 13px 18px;
        font-size: 14px;
        border-radius: 10px;
        margin-top: 16px;
    }

    .book-repair-btn svg {
        width: 18px;
        height: 18px;
    }

    .trust-badges {
        padding: 14px;
        gap: 12px;
    }

    .trust-item {
        font-size: 12px;
        gap: 8px;
    }

    .trust-item svg {
        width: 16px;
        height: 16px;
    }
}

/* Mobile - Extra Small */
@media (max-width: 360px) {
    .section-headers {
        padding: 16px 12px;
    }

    .device-icon {
        width: 55px;
        height: 55px;
    }

    .header-content h1 {
        font-size: 18px;
    }

    .services-title {
        font-size: 17px;
    }

    .service-cardss {
        padding: 12px 14px;
    }

    .service-icon-box {
        width: 45px;
        height: 45px;
    }

    .service-title {
        font-size: 13px;
    }

    .price-current {
        font-size: 17px;
    }

    .btn-add,
    .btn-remove {
        padding: 7px 14px;
        font-size: 11px;
    }

    .total-display strong {
        font-size: 18px;
    }
}

/* INFO SECTION */
.info-sections {
    background: #ffffff;
    padding: 50px 20px;
    border-top: 1px solid #e5e5e5;
}

.info-containers {
    max-width: 1400px;
    margin: 0 auto;
}

/* Main Title */
.section-titles {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e5e5;
}

/* Intro Text */
.intro-texts {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    text-align: justify;
}

/* Content Block */
.content-blocks {
    margin-bottom: 32px;
}

.content-blocks h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.content-blocks p {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 12px;
    text-align: justify;
}

.content-blocks p a {
    color: #2874f0;
    text-decoration: none;
    font-weight: 500;
}

.content-blocks p a:hover {
    text-decoration: underline;
}

/* Two Column Layout */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

/* Divider */
.dividers {
    height: 1px;
    background: #e5e5e5;
    margin: 40px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .info-sections {
        padding: 40px 16px;
    }

    .section-titles {
        font-size: 18px;
    }

    .content-blocks h3 {
        font-size: 15px;
    }

    .intro-texts,
    .content-blocks p {
        font-size: 12px;
        line-height: 1.7;
    }

    .two-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dividers {
        margin: 30px 0;
    }
}

/*  */

.available-coupons {
    margin-top: 18px;
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.coupon-list-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.coupon-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafafa;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.coupon-left {
    display: flex;
    flex-direction: column;
}

.coupon-code {
    font-size: 14px;
    font-weight: 700;
}

.coupon-desc {
    font-size: 12px;
    color: #777;
}

.apply-coupon-btn {
    background: #ed1c24;
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.apply-coupon-btn:hover {
    background: #d0131a;
}

.coupon-applied-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f6ffed;
    border: 1px solid #a5d6a7;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.coupon-badge {
    background: #4caf50;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.remove-coupon-btn {
    font-size: 12px;
    color: #ff5252;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.discount-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    color: #ff5252;
}

.discount-amount {
    font-weight: bold;
    color: #ff5252;
}
