:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --primary-ultra-light: #f0f4ff;
    --secondary: #10b981;
    --secondary-light: #d1fae5;
    --accent: #f59e0b;
    --accent-light: #fef3c7;
    --danger: #ef4444;
    --danger-ultra-light: #fee2e2;
    --warning: #f97316;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --gradient-soft: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 100%);
    --shadow-soft: 0 10px 40px rgba(99, 102, 241, 0.08);
    --shadow-soft-hover: 0 20px 60px rgba(99, 102, 241, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius-xl: 20px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--light);
    line-height: 1.6;
    padding-top: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Common Utility Classes */
.ws-normal {
    white-space: normal !important;
}

.text-primary-light {
    color: var(--primary-light) !important;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(99, 102, 241, 0.1);
}

.nav-logo {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo .logo-icon {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 8px;
    font-size: 2rem;
}

.partner-form-panel .logo-icon {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 8px;
    font-size: 2rem;
}

.partner-form-panel .logo span {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary);
}

.nav-link {
    font-weight: 500;
    margin: 0 1rem;
    color: var(--gray-600);
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s;
}

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

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

@media (max-width: 1199px) {
    .navbar .navbar-toggler {
        height: 40px;
    }

    .navbar .nav-item:nth-last-child(2) {
        margin-top: 0.5rem;
    }

    .navbar .nav-item:last-child {
        margin-top: 1rem;
    }
}

@media (max-width: 575px) {
    .navbar .nav-logo {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }
}

/* Buttons */
.btn-gradient {
    background: var(--gradient-primary);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.btn-gradient:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-gradient:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-gradient:hover:before {
    left: 100%;
}

.btn-outline-primary {
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: #8b5cf6;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: 2px solid #8b5cf6;
    transition: 0.5s;
    background: transparent;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-outline-primary:hover {
    color: #ffffff !important;
    border-color: transparent;
    background: var(--gradient-primary);
}

.btn-outline-primary:hover:before {
    left: 100%;
}

.btn-outline-primary.login-btn {
    /* padding: 0.8rem; */
    font-size: 16px;
    color: var(--primary-dark);
    transition: 0.3s all ease-in-out;
}

.btn-outline-primary.login-btn:hover {
    color: #ffffff !important;
}

.btn-outline-primary.login-btn i {
    margin-right: 8px;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Hero Section */
.hero-section {
    padding: 12rem 0 8rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-element {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    top: -300px;
    right: -200px;
}

.hero-bg-element-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-success);
    opacity: 0.03;
    border-radius: 50%;
    bottom: -200px;
    left: -100px;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--dark) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Stats Cards */
.stats-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(99, 102, 241, 0.1);
    height: 100%;
    margin-bottom: 70px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transform: rotate(-5deg);
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: rotate(0deg);
}

@media (min-width: 992px) {
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary-light);
    }
}

@media (max-width: 575px) {
    .service-card .btn {
        font-size: 14px;
        padding: 0.4rem 1rem;
        white-space: nowrap;
        text-align: center;
        display: flex;
        justify-content: center;
        margin-top: -15px;
    }
}

/* Trust Section */
.trust-section {
    background: var(--gradient-dark);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.trust-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    height: 100%;
}

.trust-card .trust-icon {
    height: 64px;
    width: 64px;
}

@media (min-width: 992px) {
    .trust-card:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-5px);
        border-color: var(--primary-light);
    }
}

@media (max-width: 575px) {
    .trust-section {
        padding: 4rem 0;
    }
}

/* Audience Section */
.audience-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.audience-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    height: 100%;
}

.audience-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border-radius: 50%;
}

@media (min-width: 992px) {
    .audience-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary);
        box-shadow: var(--shadow-xl);
    }
}

@media (max-width: 991px) {
    .audience-section {
        padding: 4rem 0;
    }
}

@media (max-width: 767px) {
    .audience-section {
        padding: 3rem 0;
    }
}

@media (max-width: 575px) {
    .audience-section {
        padding: 2rem 0;
    }
}

/* Vendor Trust Section */
.vendor-trust-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.vendor-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin: 0.5rem;
    transition: all 0.3s;
}

.vendor-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Add-ons Section */
.addon-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    transition: all 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.addon-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    top: -400px;
    right: -400px;
}

@media (max-width: 991px) {
    .cta-section {
        padding: 5rem 0;
    }
}

@media (max-width: 767px) {
    .cta-section {
        padding: 4rem 0;
    }
}

@media (max-width: 575px) {
    .cta-section {
        padding: 3rem 0;
    }
}

/* Footer */
.footer {
    background: #0b1120;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-links h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer a {
    text-decoration: none;
}

.text-gray-400 {
    color: #94a3b8;
}

.bg-gray-800 {
    background-color: #1f2937;
}

.border-gray-800 {
    border-color: #6588b9;
}

@media (max-width: 767px) {
    .footer-links h6 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 575px) {
    footer .footer-logo {
        margin-bottom: 0;
    }

    footer,
    .footer-links h6,
    .footer-links a {
        text-align: center;
    }
}

/* Animations */
.hover-lift {
    transition: transform 0.3s;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.glow {
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.1);
}

.price-clarification {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
    border-top: 1px solid var(--gray-200);
    padding-top: 0.5rem;
}

.central-hub-badge {
    background: var(--gradient-success);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

/* ============ Booking Page Styles ============ */
.booking-container {
    padding: 2rem 0;
}

/* Progress Bar */
.progress-container {
    padding: 2rem;
    margin-bottom: 2rem;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-steps:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gray-200);
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 2px;
    margin-top: -15px;
}

.progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: translateY(-50%);
    z-index: 2;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    margin-top: -15px;
}

.step {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 20%;
}

.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--gray-400);
}

.step.active .step-circle {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25);
}

.step.completed .step-circle {
    color: white;
    border-color: var(--primary);
    background: var(--gradient-primary);
}

.step-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-400);
    transition: all 0.3s;
}

.step.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

.step.completed .step-label {
    color: var(--primary);
}

@media (max-width: 767px) {
    .progress-bar {
        margin-top: -25px;
    }

    .progress-steps:before {
        margin-top: -25px;
    }
}

/* Sub Steps - Start */
.steps-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(2px);
    border-radius: 1rem;
    padding: 2rem 2rem 2.5rem 2rem;
    width: 100%;
    border: 1px solid #f0f4ff;
}

.steps-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}
.steps-caption span {
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    color: #1e293b;
    background: rgba(226, 232, 240, 0.7);
    padding: 0.3rem 1rem;
    border-radius: 40px;
    backdrop-filter: blur(2px);
}

.steps-caption span:first-child {
    background: #e0e7ff;
    color: #3730a3;
    font-weight: 600;
}

.progress-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-segment {
    height: 0.625rem;
    flex: 1 1 0;
    border-radius: 9999px;
    background-color: #e2e8f0;
    transition: background-color 0.2s ease;
}

.step-segment.active {
    background-color: #4f46e5;
}

.progress-group:hover .step-segment {
    filter: brightness(0.98);
}

@media (max-width: 480px) {
    .steps-card { padding: 1.5rem; }
}
/* Sub Steps - End */

/* Main Content */
/* .main-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
} */

/* Soft Container */
.soft-container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Booking Card */
.booking-card {
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.booking-card h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-ultra-light);
    color: var(--dark);
    position: relative;
}

.booking-card h3:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

/* Device Category */
.device-category {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.device-category:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.device-category:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-soft-hover);
}

.device-category.active {
    background: var(--primary-ultra-light);
    border-color: var(--primary);
}

.device-category.active:before {
    opacity: 0.05;
}

.device-category i,
.device-category svg {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.device-category.active i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.device-category div {
    position: relative;
    z-index: 1;
}

/* Search Container */
.search-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

/* Device Item */
.device-item {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.device-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.device-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft-hover);
}

.device-item.active {
    background: var(--primary-ultra-light);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.device-item.active:before {
    opacity: 0.05;
}

.device-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.device-item.active i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.device-item div {
    position: relative;
    z-index: 1;
}

.device-item small {
    color: var(--gray-400);
    position: relative;
    z-index: 1;
}

/* Repair Options */
.repair-options {
    display: grid;
    gap: 1rem;
}

.repair-option {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.repair-option:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.repair-option:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft-hover);
}

.repair-option.active {
    border-color: var(--primary);
    background: var(--primary-ultra-light);
    transform: translateY(-4px);
}

.repair-option.active:before {
    opacity: 0.05;
}

.repair-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.repair-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.repair-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.repair-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

/* Service Type */
.service-type {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 30px 22px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-type:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-type:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft-hover);
}

.service-type.active {
    border-color: var(--primary);
    background: var(--primary-ultra-light);
    transform: translateY(-4px);
}

.service-type.active:before {
    opacity: 0.05;
}

.service-type i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

/* Accessories */
.accessory-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.accessory-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.accessory-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft-hover);
}

.accessory-card.selected {
    border-color: var(--primary);
    background: var(--primary-ultra-light);
    transform: translateY(-4px);
}

.accessory-card.selected:before {
    opacity: 0.05;
}

.accessory-checkbox {
    position: absolute;
    top: -1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid var(--gray-300);
    cursor: pointer;
    background: white;
    z-index: 2;
    display: none;
}

.accessory-card.selected .accessory-checkbox {
    background: var(--primary);
    border-color: var(--primary-dark);
}

.accessory-card.selected .accessory-checkbox:after {
    content: '✓';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

.accessory-card.selected .accessory-image {
    background: transparent;
}

.accessory-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.accessory-image i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.8;
}

.accessory-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

/* Quantity Controls */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--gray-600);
    font-weight: 600;
}

.quantity-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.quantity-input {
    width: 60px;
    height: 36px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    background: white;
}

.quantity-input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Chrome, Edge, Safari */
.quantity-input[type=number]::-webkit-inner-spin-button,
.quantity-input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.quantity-input[type=number] {
    -moz-appearance: textfield;
}

/* Warranty Options */
.warranty-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.warranty-option:hover {
    border-color: var(--primary);
}

.warranty-toggle {
    position: relative;
    width: 52px;
    height: 28px;
}

.warranty-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.warranty-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: .4s;
    border-radius: 34px;
}

.warranty-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .warranty-slider {
    background-color: var(--secondary);
}

input:checked + .warranty-slider:before {
    transform: translateX(24px);
}

/* Customer Details Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

/* Summary Panel */
.summary-panel {
    padding: 1.75rem;
    position: sticky;
    top: 7rem;
    height: fit-content;
}

.summary-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-ultra-light);
    position: relative;
}

.summary-header:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-100);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 1.75rem 0;
    padding-top: 1rem;
    border-top: 2px solid var(--gray-200);
}
.summary-panel .btn {
    white-space: nowrap !important;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-100);
}

.btn-step {
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-step-prev {
    background: white;
    border: 2px solid var(--gray-300);
    color: var(--gray-600);
}

.btn-step-prev:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-step-next {
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.btn-step-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

/* Tooltips */
.info-tooltip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--gray-300);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    cursor: help;
    margin-left: 0.5rem;
    transition: background 0.2s;
}

.info-tooltip:hover {
    background: var(--primary);
}

/* IMEI Input */
.imei-container {
    margin-top: 1rem;
    padding: 1.5rem;
    background: var(--primary-ultra-light);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-ultra-light);
}

/* Alert Boxes */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid transparent;
}

.alert-light {
    background: rgba(241, 245, 249, 0.5);
    border-color: rgba(203, 213, 225, 0.3);
    color: var(--gray-600);
}

/* Badges */
.badge {
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.875rem;
}

.bg-primary {
    background: rgba(99, 102, 241, 0.1) !important;
    color: var(--primary) !important;
}

.bg-success {
    background: rgba(16, 185, 129, 0.1) !important;
    color: var(--secondary) !important;
}

/* Animation for step transitions */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

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

/* ============ Partner/Login Page Styles ============ */
.partner-container,
.login-container {
    flex: 1;
    display: flex;
    min-height: calc(100vh - 80px);
}

.partner-info-panel,
.login-info-panel {
    flex: 1;
    background: var(--gradient-primary);
    color: #fff;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.partner-info-panel:before,
.login-info-panel:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6366f1 0, #8b5cf6 100%);
    background-size: cover;
}

.partner-form-panel,
.login-form-panel {
    flex: 1;
    background: #fff;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    color: #fff;
    text-decoration: none;
}

.logo-icon {
    font-size: 2.5rem;
}

.welcome-text {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.tagline {
    font-size: 1.1rem;
    opacity: .9;
    margin-bottom: 3rem;
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.benefits-list,
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.benefits-list li,
.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.benefits-list li i,
.features-list li i {
    color: var(--primary-ultra-light);
    font-size: 1.25rem;
    margin-top: .25rem;
}

.copyright {
    margin-top: auto;
    padding-top: 2rem;
    font-size: .875rem;
    opacity: .8;
    position: relative;
    z-index: 1;
}

.partner-tabs,
.login-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-ultra-light);
    padding-bottom: .8rem;
}

.tab-btn {
    padding: .3rem 1.5rem;
    background: 0 0;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    opacity: .6;
    cursor: pointer;
    position: relative;
    transition: all .3s;
}

.tab-btn:hover {
    opacity: .8;
}

.tab-btn.active {
    color: var(--primary);
    opacity: 1;
}

.tab-btn.active:after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.form-title {
    font-size: 2rem;
    margin-bottom: .5rem;
    color: var(--dark);
}

.form-subtitle {
    color: #64748b;
    margin-bottom: 1rem;
}

.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: 0 0;
    border: none;
    color: #64748b;
    cursor: pointer;
    font-size: 1.25rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.checkbox.checked:after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-partner,
.btn-login {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    margin-bottom: 1.5rem;
}

.btn-login {
    margin-bottom: 0;
}

.btn-partner:hover,
.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, .25);
}

.verification-notice {
    background: var(--secondary-light);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--secondary);
}

.verification-notice p {
    margin-bottom: 0;
    color: var(--dark);
    font-size: .95rem;
}

.terms-notice {
    background: var(--primary-ultra-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.terms-notice p {
    margin-bottom: 0;
    color: var(--dark);
    font-size: .95rem;
}

.switch-link {
    text-align: center;
    color: #64748b;
}

.switch-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.switch-link a:hover {
    text-decoration: underline;
}

.form-copyright {
    margin-top: auto;
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
    font-size: .875rem;
    border-top: 1px solid #e2e8f0;
}

/* ============ Confirmation Page Styles ============ */
.confirmation-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f4ff 0, #f8fafc 100%);
}

.confirmation-container {
    max-width: 800px;
    width: 100%;
    animation: fadeInUp .6s ease-out;
}

.success-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(99, 102, 241, .1);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.success-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 2.5rem;
    animation: scaleIn .5s cubic-bezier(.175, .885, .32, 1.275);
}

.order-number {
    display: inline-block;
    background: var(--primary-ultra-light);
    color: var(--primary);
    padding: .5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
}

.next-steps-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(99, 102, 241, .1);
}

.step-items .step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    position: relative;
}

.step-items .step-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    margin-top: 5px;
    width: 40px;
    height: 40px;
    background: var(--primary-ultra-light);
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: .5rem;
    color: var(--dark);
}

.step-content p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: .5rem;
}

.email-highlight {
    background: var(--secondary-light);
    color: var(--secondary);
    padding: .5rem 1rem;
    border-radius: var(--radius-xl);
    display: inline-block;
    margin-top: .5rem;
    font-size: 14px;
}

.order-summary-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(99, 102, 241, .1);
    margin-bottom: 2rem;
}

.order-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-ultra-light);
}

.summary-label {
    color: #64748b;
    font-size: .95rem;
}

.summary-value {
    font-weight: 500;
    color: var(--dark);
}

.summary-divider {
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 2px solid #f1f5f9;
    border-bottom: 2px solid #f1f5f9;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: .5rem;
    border-top: 2px solid #f1f5f9;
}

.total-label {
    color: var(--dark);
}

.total-value {
    color: var(--primary);
}

.vat-notice {
    font-size: .875rem;
    color: #94a3b8;
    text-align: center;
    margin-top: .5rem;
    padding-top: .5rem;
    border-top: 1px solid #f1f5f9;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--primary-ultra-light);
    padding: .25rem .75rem;
    border-radius: 20px;
    font-size: .875rem;
    color: var(--primary);
    font-weight: 500;
}

.accessories-list {
    margin-top: .5rem;
}

.accessory-item {
    display: flex;
    justify-content: space-between;
    font-size: .875rem;
    color: #64748b;
    margin-bottom: .25rem;
}

.action-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, .25);
    color: #fff;
}

.btn-outline {
    background: #fff;
    border: 2px solid var(--primary);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: all .3s;
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.btn-outline:hover {
    background: var(--primary-ultra-light);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ============ Tracking Page Styles ============ */
/* .tracking-container {
    margin: 2rem auto;
    padding: 2rem 0 0 0;
} */

.tracking-header {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.tracking-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.order-badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary-ultra-light);
    color: var(--primary);
    padding: .5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
}

.status-in-progress {
    background: rgba(245, 158, 11, .1);
    color: var(--accent);
}

.status-completed {
    background: rgba(16, 185, 129, .1);
    color: var(--secondary);
}

.status-pending {
    background: rgba(148, 163, 184, .1);
    color: #64748b;
}

.tracking-main {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}

.tracking-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 1.5rem;
}

/* Progress tracking-timeline */
.tracking-timeline {
    position: relative;
    padding-left: 3.6rem;
}

.tracking-timeline:before {
    content: '';
    position: absolute;
    left: 1.75rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-ultra-light);
}

.tracking-timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.tracking-timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tracking-timeline-item.completed:before {
    background: var(--primary);
    border-color: var(--primary-dark);
}

.tracking-timeline-item.current:before {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
    animation: pulse 2s infinite;
}

.tracking-timeline-item.pending:before {
    background: white;
    border-color: #cbd5e1;
}

.tracking-timeline-item:before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 2px solid;
    background: white;
    z-index: 2;
}

.tracking-timeline-item.completed:after {
    content: '✓';
    position: absolute;
    left: -2.5rem;
    top: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 3;
}

.tracking-timeline-time {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tracking-timeline-time i {
    color: var(--primary);
}

.tracking-timeline-content h5 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.tracking-timeline-content p {
    color: #64748b;
    margin-bottom: 0.75rem;
}

.order-sidebar {
    position: sticky;
    top: 7rem;
    height: fit-content;
}

.order-summary {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 1.5rem;
}

.summary-items .summary-item {
    display: flex;
    justify-content: space-between;
    padding: .75rem 0;
    margin-bottom: 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.warranty-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--secondary-light);
    margin-bottom: 1.5rem;
}

.warranty-card h5 {
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.warranty-card h5 i {
    color: var(--secondary);
}

.warranty-details {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.warranty-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 0;
}

.warranty-type {
    font-weight: 500;
    color: var(--dark);
}

.warranty-duration {
    color: var(--secondary);
    font-weight: 600;
}

.help-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--primary-ultra-light);
}

.help-card h5 {
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.help-card h5 i {
    color: var(--primary);
}

.help-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.help-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--primary-ultra-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all .3s;
}

.help-option:hover {
    background: var(--primary-ultra-light);
    transform: translateY(-2px);
}

.help-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-ultra-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
}

.help-option.danger .help-icon {
    color: var(--danger);
    background-color: var(--danger-ultra-light);
}

.rating-section {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    margin-top: 2rem;
}

.rating-section h2 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.stars {
    display: flex;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.star {
    font-size: 2.5rem;
    color: #e2e8f0;
    cursor: pointer;
    transition: color .2s;
}

.star.active,
.star:hover {
    color: var(--accent);
}

.rating-section textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--primary-ultra-light);
    border-radius: var(--radius-md);
    font-family: Inter, sans-serif;
    font-size: .95rem;
    resize: vertical;
    min-height: 120px;
    margin-bottom: 1.5rem;
    transition: border-color .3s;
}

.rating-section textarea:focus {
    outline: 0;
    border-color: var(--primary);
}

.cancel-btn,
.submit-btn {
    padding: .875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    flex: 1;
}

.submit-btn {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, .2);
}

.cancel-btn {
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.cancel-btn:hover {
    background: var(--primary-ultra-light);
}

.btn-track {
    padding: 1rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    transition: all .3s;
    border: none;
    cursor: pointer;
}

.btn-outline {
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary-ultra-light);
    transform: translateY(-2px);
}

/* ============ About Page Styles ============ */
.about-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f4ff 0, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.section-padding {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mission-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(99, 102, 241, .1);
    position: relative;
    overflow: hidden;
}

.mission-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.stats-section {
    background: var(--gradient-dark);
    color: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(99, 102, 241, .1);
    transition: all .3s;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-ultra-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.components-section {
    background: linear-gradient(135deg, #f8fafc 0, #f1f5f9 100%);
}

.component-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(99, 102, 241, .1);
    height: 100%;
    transition: all .3s;
}

.component-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.component-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.team-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all .3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-ultra-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: var(--primary);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.about-timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-ultra-light);
    transform: translateX(-50%);
}

.about-timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
    padding-right: 4rem;
}

.about-timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 4rem;
    padding-right: 0;
}

.about-timeline .about-timeline-item:last-child {
    margin-bottom: 0;
}

.about-timeline-dot {
    position: absolute;
    right: -25px;
    top: 0;
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.about-timeline-item:nth-child(even) .about-timeline-dot {
    left: -25px;
    right: auto;
}

.about-timeline-content {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.our-values-section {
    background-color: #121a2d;
}

.our-values-section .section-title {
    color: #ffffff;
}

.our-values-section .value-card {
    background: #121a2d;
    border: 1px solid rgb(99 102 241 / 50%);
}

.our-values-section h4 {
    color: #ffffff;
}

.our-values-section p {
    color: #63738a !important;
    margin-bottom: 0;
}

/* Success Animation */
.checkmark {
    width: 56px;
    height: 56px;
    stroke-width: 2;
    stroke: white;
    stroke-miterlimit: 10;
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: white;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

/* Social Login */
.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-social {
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-social:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Register Link */
.register-link {
    text-align: center;
    margin-top: 2rem;
    color: #64748b;
}

.register-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.register-link a:hover {
    text-decoration: underline;
}

/* Vendor Link */
.vendor-link {
    background: var(--primary-ultra-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}

.vendor-link p {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.btn-vendor {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-vendor:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
    color: white;
}

.login-form-panel .logo {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Divider */
.user-login-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: #64748b;
}

.user-login-divider:before,
.user-login-divider:after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.user-login-divider span {
    padding: 0 1rem;
    font-size: 0.875rem;
}

.user-registration-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: #64748b;
}

.user-registration-divider:before,
.user-registration-divider:after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.user-registration-divider span {
    padding: 0 1rem;
    font-size: 0.875rem;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 40px transparent;
    }
}

/* ============ Additional Animations ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, .4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(99, 102, 241, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

/* ============ Responsive Styles ============ */
@media (min-width: 992px) {
    .partner-container {
        height: 100%;
    }

    .partner-info-panel {
        overflow: hidden;
    }

    .partner-form-panel {
        max-width: 600px;
        overflow-y: auto;
    }

    .login-container {
        height: 100%;
    }

    .login-info-panel {
        overflow: hidden;
    }

    .login-form-panel {
        max-width: 600px;
        overflow-y: auto;
        padding-top: 4rem;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 6rem 0 4rem;
    }

    .tracking-main {
        grid-template-columns: 1fr;
    }

    /* .main-content {
        grid-template-columns: 1fr;
    } */

    .partner-container,
    .login-container {
        flex-direction: column;
    }

    .partner-form-panel,
    .partner-info-panel,
    .login-form-panel,
    .login-info-panel {
        padding: 2rem;
    }

    .welcome-text {
        font-size: 2rem;
    }

    .about-timeline:before {
        left: 30px;
    }

    .about-timeline-item {
        width: 100%;
        padding-left: 4rem;
        padding-right: 0;
    }

    .about-timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 4rem;
    }

    .about-timeline-dot {
        left: 10px;
        right: auto;
        width: 40px;
        height: 40px;
        border: 2px solid var(--primary);
    }

    .about-timeline-item:nth-child(even) .about-timeline-dot {
        left: 10px;
    }

    .about-hero {
        padding: 8rem 0 4rem;
    }

    .mission-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
    }

    .value-card {
        padding: 1.8rem;
    }

    .component-card {
        padding: 2.2rem;
    }

    .component-number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .about-timeline-content {
        padding: 1.5rem;
    }

    .login-form-panel .logo,
    .partner-form-panel .logo,
    .partner-info-panel .copyright {
        display: none;
    }

    .partner-info-panel .logo {
        margin-bottom: 1rem;
    }

    .social-login {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-section {
        padding: 4rem 0 4rem;
    }

    .nav-link {
        margin: 0.5rem 0;
        white-space: nowrap;
    }

    .vendor-badge {
        width: 100%;
        justify-content: center;
        margin: 0.5rem 0;
    }

    .device-category-grid,
    .device-grid,
    .service-type-grid,
    .accessories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-card {
        padding: 1.5rem;
    }

    .step-circle {
        width: 40px;
        height: 40px;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .btn-step {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .tracking-header {
        padding: 1.5rem;
    }

    .tracking-card {
        padding: 1.5rem;
    }

    .rating-section .buttons {
        flex-direction: column;
    }

    .cancel-btn,
    .submit-btn {
        width: 100%;
    }

    .confirmation-section {
        padding: 1rem;
    }

    .success-card {
        padding: 2rem 1.5rem;
    }

    .next-steps-card,
    .order-summary-card {
        padding: 2rem 1.5rem;
    }

    .step-item {
        flex-direction: column;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-outline,
    .btn-primary {
        width: 100%;
        min-width: auto;
    }

    .order-summary-header {
        flex-direction: column;
        align-items: flex-start;
        gap: .5rem;
    }

    .about-hero {
        padding: 5rem 0 4rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .mission-card {
        padding: 2rem;
    }

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

    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .tab-btn.active:after {
        bottom: -.5rem;
    }

    .mission-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .section-padding {
        padding: 4rem 0;
    }

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

    .value-icon {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .component-card {
        padding: 1.8rem;
    }

    .component-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 3rem 0 3rem;
    }

    .social-login {
        grid-template-columns: 1fr;
    }

    .partner-tabs {
        /* flex-direction: column; */
        gap: .5rem;
    }

    .partner-tabs .tab-btn {
        width: 100%;
        text-align: center;
        white-space: nowrap;
    }

    .form-title {
        font-size: 1.3rem;
    }

    .btn-gradient,
    .btn-outline-primary {
        font-size: 16px;
        padding: 0.6rem 1rem;
    }

    .hero-subtitle {
        margin-bottom: 1.5rem;
    }

    .partner-tabs, .login-tabs {
        padding-bottom: 4px;
    }

    .hero-section .hero-assets {
        right: -10px !important;
        transform: scale(0.8);
    }

    .about-hero {
        padding: 4rem 0 3rem;
    }

    .mission-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .component-card {
        padding: 1.5rem;
    }
}

/* Contact Page */
.contact-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero:before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    top: -300px;
    right: -200px;
}

.contact-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(99, 102, 241, 0.1);
    height: 100%;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-ultra-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-form-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.contact-form-card h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-ultra-light);
    position: relative;
}

.contact-form-card h3:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control, .form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

.btn-contact {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.faq-section {
    background: linear-gradient(135deg, #f8fafc 0%, #dcdee1 100%);
    padding: 4rem 0;
}

.faq-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(99, 102, 241, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.faq-card:hover {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--gray-600);
}

.faq-card.active .faq-answer {
    max-height: 200px;
    margin-top: 1rem;
}

.faq-answer p {
    /* margin-bottom: 0; */
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-card.active .faq-icon {
    transform: rotate(180deg);
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.office-hours {
    background: var(--primary-ultra-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.office-hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

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

.emergency-contact {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 2px solid var(--accent);
}

@media (max-width: 991px) {
    .contact-hero {
        padding: 6.5rem 0 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 5rem 0 2rem;
    }

    .contact-card, .contact-form-card {
        padding: 1.5rem;
    }
}

@media (max-width: 575px) {
    .contact-hero {
        padding: 3rem 0 2rem;
    }
}

/* ============ Vendor Profile Page ============ */
.vendor-profile-container {
    margin: 130px auto 5rem;
    padding: 0 1.5rem;
}

/* Profile Header Card */
.profile-header {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(99, 102, 241, 0.1);
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.profile-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.vendor-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.vendor-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 1rem;
}

.vendor-stat-item {
    text-align: center;
}

.vendor-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.vendor-stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Trust Panel / Badges Grid */
.trust-panel {
    background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.trust-panel-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-panel-title i {
    color: var(--primary);
    font-size: 1.5rem;
}

.badges-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(99, 102, 241, 0.2);
    font-weight: 500;
    transition: all 0.3s;
}

.badge-item i {
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.badge-check { color: var(--secondary); } /* Green for verified */
.badge-star { color: var(--accent); } /* Orange/Gold for special */
.badge-shield { color: var(--primary); } /* Blue for platform */

.badge-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary);
}

/* How we verify link/modal simulation */
.verify-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
}

.verify-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.verify-link:hover {
    border-bottom-color: var(--primary);
}

.verify-link:hover i {
    transform: translateX(5px);
}

/* Verification Modal */
.verify-modal-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--primary-ultra-light);
    display: none;
}

.verify-modal-card.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.verify-modal-card h6 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.verify-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.verify-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
}

.verify-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.verify-list li i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

/* About Section & Supplier Info */
.info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(99, 102, 241, 0.1);
    height: auto;
    transition: all 0.3s;
}

.info-card:hover {
    box-shadow: var(--shadow-medium);
}

.info-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-ultra-light);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card-title i {
    color: var(--primary);
    font-size: 1.4rem;
}

.info-card-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.parts-grade-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--primary-ultra-light);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.supplier-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.supplier-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 30px;
    text-align: center;
}

.supplier-item .supplier-detail {
    flex: 1;
}

.supplier-name {
    font-weight: 700;
    color: var(--dark);
}

.supplier-meta {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* Services offered */
.service-offering {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.service-pill {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    transition: all 0.3s;
}

.service-pill i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.service-pill:hover {
    border-color: var(--primary);
    background: var(--primary-ultra-light);
}

/* Customer Reviews - Slick Carousel Customization (Added) */
.review-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 0.5rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
    box-shadow: var(--shadow-soft);
    height: auto; /* Height auto as cards may have different content */
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-ultra-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    margin-right: 1rem;
}

.reviewer-info h6 {
    margin-bottom: 0.25rem;
}

.reviewer-info .rating {
    color: var(--accent);
    font-size: 0.9rem;
}

.review-text {
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* Slick Carousel Custom Arrows/Dots */
.reviews-carousel {
    margin-bottom: 2rem;
}
.reviews-carousel .slick-prev,
.reviews-carousel .slick-next {
    background: var(--primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 1;
    box-shadow: var(--shadow-soft);
}
.reviews-carousel .slick-prev:hover,
.reviews-carousel .slick-next:hover {
    background: var(--primary-dark);
}
.reviews-carousel .slick-prev:before,
.reviews-carousel .slick-next:before {
    color: white;
    font-size: 20px;
    opacity: 1;
}
.reviews-carousel .slick-prev {
    left: -10px;
}
.reviews-carousel .slick-next {
    right: -10px;
}
.reviews-carousel .slick-dots {
    bottom: -30px;
}
.reviews-carousel .slick-dots li button:before {
    color: var(--primary);
    font-size: 10px;
}
.reviews-carousel .slick-dots li.slick-active button:before {
    color: var(--primary-dark);
}
.reviews-carousel .slick-slide {
    padding: 10px 5px;
}

/* Trust note about parts */
.trust-note {
    background: var(--primary-ultra-light);
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.trust-note strong {
    color: var(--primary);
}
