/* ==========================================================================
   SELLZO PREMIUM MODERN DESIGN SYSTEM (LIGHT THEME)
   ========================================================================== */

:root {
    --primary: #2563eb;          /* Premium Blue */
    --primary-light: #eff6ff;
    --primary-dark: #1d4ed8;
    --secondary: #7c3aed;        /* Royal Purple */
    --secondary-light: #f5f3ff;
    --accent: #3b82f6;
    --dark: #0f172a;             /* Slate 900 */
    --light: #ffffff;
    --bg-gradient: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #eff6ff 100%);
    --accent-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --accent-gradient-hover: linear-gradient(135deg, #1d4ed8 0%, #6d28d9 100%);
    --card-bg: rgba(255, 255, 255, 0.7);
    --border-color: rgba(226, 232, 240, 0.8);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.05), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Global Reset */
html, body {
    overflow-x: hidden !important;
    width: 100%;
    margin: 0;
    padding: 0;
}
body {
    font-family: var(--font-body);
    color: #475569; /* Slate 600 */
    background: var(--bg-gradient);
    padding-top: 85px; /* Account for sticky navbar */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
}

a {
    color: var(--primary);
    transition: var(--transition);
}
a:hover {
    color: var(--secondary);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn-premium {
    background: var(--accent-gradient);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: var(--transition);
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient-hover);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(37, 99, 235, 0.4);
}

.btn-premium:hover::before {
    opacity: 1;
}

.btn-premium-outline {
    background: transparent;
    color: var(--primary) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 11px 28px;
    border-radius: 30px;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.btn-premium-outline:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-premium-nav {
    background: var(--accent-gradient);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.btn-premium-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(37, 99, 235, 0.2);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */

.premium-navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: var(--transition);
}

.premium-navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.logo-icon-wrapper {
    background: var(--accent-gradient);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    color: #ffffff;
    font-size: 18px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--primary);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-navbar .nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: #64748b !important;
    padding: 8px 16px !important;
    position: relative;
}

.premium-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.premium-navbar .nav-link:hover, 
.premium-navbar .nav-link.active {
    color: var(--primary) !important;
}

.premium-navbar .nav-link:hover::after,
.premium-navbar .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ==========================================================================
   GLASS CARDS & BADGES
   ========================================================================== */

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.badge-premium {
    background: var(--primary-light);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    padding: 80px 0 140px;
    position: relative;
    overflow: hidden;
}

/* Radial Glow Effects */
.hero-glow-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Floating Elements */
.floating-element {
    animation: float 6s ease-in-out infinite;
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.floating-1 {
    top: 15%;
    right: 45%;
    animation-delay: 0s;
}

.floating-2 {
    bottom: 20%;
    right: 5%;
    animation-delay: 2s;
}

.floating-3 {
    top: 45%;
    right: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.hero-stats-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hero-stats-badge i {
    color: var(--primary);
    font-size: 1.5rem;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image-main {
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border: 8px solid rgba(255, 255, 255, 0.8);
}

.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.h-card-1 {
    top: 15%;
    left: -10%;
    animation: float 5s ease-in-out infinite alternate;
}

.h-card-2 {
    bottom: 15%;
    right: -5%;
    animation: float 5s ease-in-out infinite alternate;
    animation-delay: 1.5s;
}

/* ==========================================================================
   PARTNER MARKETPLACES
   ========================================================================== */

.partners-section {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.4);
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: var(--transition);
}

.partner-logo-item img {
    max-height: 42px;
    filter: grayscale(100%) opacity(60%);
    transition: var(--transition);
}

.partner-logo-item:hover img {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.08);
}

/* ==========================================================================
   SECTION COMMON LAYOUTS
   ========================================================================== */

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

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

.section-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

@media(max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .section-padding {
        padding: 60px 0;
    }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */

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

.glass-card:hover .service-icon-box {
    background: var(--accent-gradient);
    color: #ffffff;
    transform: rotateY(180deg);
}

.service-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */

.choose-card {
    height: 100%;
}

.choose-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-light);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* ==========================================================================
   STATISTICS COUNTERS
   ========================================================================== */

.stats-section {
    background: var(--accent-gradient);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.stats-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

/* ==========================================================================
   PRICING & PACKAGES
   ========================================================================== */

.pricing-card {
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.03);
}

@media(max-width: 991px) {
    .pricing-card.featured {
        transform: scale(1);
    }
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 6px 40px;
    transform: rotate(45deg);
    box-shadow: var(--shadow-sm);
}

.price-box {
    margin: 25px 0;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
}

.price-period {
    color: #64748b;
    font-size: 1rem;
}

.pricing-features-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features-list li:last-child {
    border-bottom: none;
}

.pricing-features-list i {
    color: #10b981; /* Emerald Green */
    font-size: 1.1rem;
}

/* ==========================================================================
   PORTFOLIO & CASE STUDIES
   ========================================================================== */

.portfolio-card {
    overflow: hidden;
}

.portfolio-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-img-wrapper img {
    transform: scale(1.1);
}

.portfolio-growth {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(16, 185, 129, 0.95);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonial-card {
    padding: 40px;
    height: 100%;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(37, 99, 235, 0.1);
    line-height: 1;
}

.rating-stars {
    color: #fbbf24; /* Amber Gold */
    margin-bottom: 20px;
}

.client-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.accordion-item-custom {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px !important;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item-custom:hover {
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: var(--shadow-sm);
}

.accordion-button-custom {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark) !important;
    background: transparent !important;
    padding: 20px;
    box-shadow: none !important;
    border: none;
}

.accordion-button-custom:not(.collapsed) {
    color: var(--primary) !important;
}

.accordion-button-custom::after {
    background-size: 1.25rem;
    transition: transform 0.3s;
}

.accordion-body-custom {
    padding: 0 20px 20px;
    color: #475569;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact-info-card {
    height: 100%;
}

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

.form-control-custom {
    border: 1px solid var(--border-color);
    padding: 12px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.form-control-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    background: #ffffff;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer-section {
    background: #0b0f19; /* Custom premium dark layout for high-end feel */
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-desc {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-title {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-contact-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--accent-gradient);
    color: #ffffff;
    border-radius: 50%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.back-to-top:hover {
    transform: translateY(-5px);
    color: #ffffff;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   ADMIN PANEL LAYOUTS
   ========================================================================== */

.admin-wrapper {
    display: flex;
    min-height: 100vh;
    padding-top: 0;
}

.admin-sidebar {
    width: 260px;
    background: #0f172a;
    color: #94a3b8;
    flex-shrink: 0;
    transition: var(--transition);
    z-index: 100;
}

.admin-content {
    flex-grow: 1;
    background: #f8fafc;
    padding: 40px;
    overflow-y: auto;
}

.admin-sidebar .nav-link {
    color: #94a3b8 !important;
    padding: 12px 20px !important;
    font-family: var(--font-heading);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid transparent;
    transition: var(--transition);
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--primary);
}

.admin-header {
    background: #ffffff;
    padding: 15px 40px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* ==========================================================================
   PRICING FILTERS & TOGGLE SYSTEMS
   ========================================================================== */

/* Pricing Toggle Switch */
.pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.toggle-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: #64748b;
    transition: var(--transition);
}
.toggle-label.active {
    color: var(--dark);
}
.pricing-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.pricing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.pricing-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 34px;
}
.pricing-switch .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.pricing-switch input:checked + .slider {
    background: var(--accent-gradient);
}
.pricing-switch input:checked + .slider:before {
    transform: translateX(26px);
}

/* Category Filter Tabs */
.category-tabs-container .nav-pills .nav-link {
    background: #ffffff;
    color: #64748b;
    border: 1px solid var(--border-color);
    font-weight: 600;
    transition: var(--transition);
}
.category-tabs-container .nav-pills .nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}
.category-tabs-container .nav-pills .nav-link.active {
    background: var(--accent-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

/* Pricing Card Wrapper Dynamic Animation */
.pricing-card-wrapper {
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Discount pricing display */
.price-discount-label {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.5rem;
    margin-right: 8px;
    font-weight: 500;
    display: inline-block;
}

.price-actual-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    display: inline-block;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS & PROPER ALIGNMENT CORRECTIONS
   ========================================================================== */

/* 1. Global Scaling & Layout Enhancements */
@media (max-width: 1200px) {
    .h-card-1 {
        left: -5%;
    }
    .h-card-2 {
        right: -2%;
    }
}

@media (max-width: 991px) {
    body {
        padding-top: 75px; /* Adjust for smaller navbar */
    }
    
    .section-title {
        font-size: 2.2rem;
    }

    /* Navbar mobile style overrides */
    .premium-navbar {
        padding: 10px 0;
    }
    .premium-navbar .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-radius: 16px;
        margin-top: 10px;
        padding: 20px;
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
    }
    .premium-navbar .nav-link {
        padding: 10px 15px !important;
        border-radius: 8px;
    }
    .premium-navbar .nav-link::after {
        display: none; /* Hide hover underline animation on mobile */
    }
    .premium-navbar .nav-link:hover,
    .premium-navbar .nav-link.active {
        background: var(--primary-light);
    }
    
    /* Hero section stacked alignment */
    .hero-section {
        padding: 50px 0 80px;
        text-align: center;
    }
    .hero-content {
        margin-bottom: 50px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats-badge {
        margin: 0 auto;
    }
    .floating-element {
        display: none !important; /* Hide floating absolute elements to prevent overflow */
    }
    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    .h-card-1, .h-card-2 {
        position: static;
        display: inline-flex;
        margin: 10px;
        animation: none !important;
        box-shadow: var(--shadow-sm);
    }

    /* About section image stack */
    #about img {
        margin-top: 30px;
        max-height: 350px;
    }

    /* Dynamic Pricing filter horizontal scroll or clean alignment */
    .category-tabs-container .nav-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start !important;
        -webkit-overflow-scrolling: touch;
    }
    .category-tabs-container .nav-pills::-webkit-scrollbar {
        height: 4px;
    }
    .category-tabs-container .nav-pills::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 2px;
    }
    .category-tabs-container .nav-item {
        flex: 0 0 auto;
    }

    /* Split Section Layout stacking */
    #why-choose .col-lg-6:first-child {
        margin-bottom: 50px;
    }

    /* Admin Responsiveness Toggles */
    .admin-wrapper {
        position: relative;
    }
    .admin-sidebar {
        position: fixed;
        left: -260px;
        top: 0;
        bottom: 0;
        width: 260px;
        height: 100vh;
        z-index: 1050;
        background: #0f172a;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 10px 0 30px rgba(0,0,0,0.15);
    }
    .admin-sidebar.active {
        transform: translateX(260px);
    }
    .admin-content-wrapper {
        width: 100%;
        min-width: 0;
    }
    .admin-header {
        padding: 15px 20px;
    }
    .admin-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    .section-padding {
        padding: 60px 0;
    }
    
    /* Stats display grid split */
    .stats-section .stat-number {
        font-size: 2.5rem;
    }
    .stats-section .col-6 {
        padding: 20px 10px;
    }

    /* Contact details container stack alignment */
    .contact-info-card {
        padding: 30px !important;
        margin-bottom: 30px;
    }
    #audit-form .glass-card {
        padding: 30px !important;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: calc(1.8rem + 1.5vw);
        line-height: 1.25;
    }
    .hero-buttons .btn-premium,
    .hero-buttons .btn-premium-outline {
        width: 100%;
        text-align: center;
    }
    
    /* Pricing filters centering */
    .pricing-toggle-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Grid spacing and alignments */
    .glass-card {
        padding: 24px !important;
    }
    .testimonial-card {
        padding: 24px !important;
    }
    
    /* Footer stacking */
    .footer-top {
        padding: 50px 0 30px;
    }
    .footer-title {
        margin-top: 20px;
        margin-bottom: 15px;
    }
    .footer-bottom {
        padding: 20px 0;
        text-align: center;
    }
    .footer-bottom .d-flex {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Table optimizations for mobile viewports */
    .table-responsive {
        border-radius: 12px;
        overflow-x: auto;
    }
    
    /* Admin header layout elements alignment */
    .admin-header h4 {
        font-size: 1.2rem;
    }
    .admin-header .btn-outline-primary {
        display: none !important; /* Hide view site button on extra-small mobile screen in header */
    }
}

