/* BistroByte Custom Styles */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #36b9cc;
    --success-color: #1cc88a;
    --dark-color: #222;
    --danger-color: #e74a3b;
}

html {
    scroll-behavior: auto; /* Anında kaydırma için 'smooth' kaldırıldı */
}

/* Prevent any automatic scroll animations during navigation */
html, body {
    scroll-behavior: auto !important;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

main {
    margin: 0;
    padding: 0;
}

.content {
    margin: 0;
    padding: 0;
}

/* Sections */
section {
    padding: 5rem 0;
}

section.bg-light {
    background-color: #f8f9fa;
}

.hero {
    padding: 6rem 0;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

.hero h1 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.feature-icon {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: var(--primary-color);
}

/* Cards */
.card {
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.testimonials .card {
    transition: transform 0.3s;
}

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

/* CTAs */
.cta {
    background-color: var(--primary-color);
    padding: 5rem 0;
}

/* Buttons */
.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.btn-primary:hover::before {
    width: 200px;
    height: 200px;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: #f8f9fa;
    padding: 4rem 0 2rem;
    margin-top: auto;
    width: 100%;
}

.footer a {
    color: #f8f9fa;
    text-decoration: none;
}

.footer a:hover {
    color: var(--secondary-color);
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 0.5rem;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* About Page */
.about-story, .about-values, .about-team {
    padding: 4rem 0;
}

.about-team .card {
    transition: transform 0.3s;
}

.about-team .card:hover {
    transform: translateY(-5px);
}

/* Features Page */
.feature-item i {
    font-size: 1.5rem;
}

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

.icon-circle:hover {
    transform: scale(1.1);
}

/* Pricing Page */
.pricing-value {
    margin: 1.5rem 0;
}

.pricing-plans .card {
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-plans .card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.pricing-plans .card-footer {
    margin-top: auto;
}

.pricing-plans .card-body {
    flex: 1;
}

.badge-popular {
    background-color: var(--danger-color);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    top: 10px !important;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.pricing-table th, .pricing-table td {
    padding: 1rem;
    vertical-align: middle;
}

.pricing-table .table-bordered {
    border-radius: 0.5rem;
    overflow: hidden;
}

.pricing-table .bg-primary {
    background-color: var(--primary-color) !important;
}

.pricing-faq .accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
}

.pricing-faq .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Contact Page */
.contact-info .icon-box {
    transition: background-color 0.3s, transform 0.3s;
}

.contact-info .icon-box:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    transform: scale(1.1);
}

.contact-info .icon-box:hover i {
    color: white !important;
}

/* Container widths */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Responsive design */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
    section {
        padding: 4rem 0;
    }
    
    .hero {
        padding: 5rem 0;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .btn-lg {
        padding: 0.7rem 1.75rem;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
    
    .pricing-table {
        overflow-x: auto;
    }
    
    .pricing-value .display-4 {
        font-size: calc(1.5rem + 1.5vw);
    }
    
    .about-team .card, 
    .pricing-plans .card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 575.98px) {
    section {
        padding: 2.5rem 0;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .pricing-value .display-4 {
        font-size: calc(1.3rem + 1.2vw);
    }
    
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .badge-popular {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem !important;
    }
}

/* Devices Page */
.devices-header {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

.devices-filter .card {
    position: sticky;
    top: 20px;
}

.device-item {
    transition: transform 0.3s;
}

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

.device-item .card-img-top {
    height: 180px;
    object-fit: contain;
    padding: 1.5rem;
}

.devices-info .bi {
    color: var(--primary-color);
}

/* --- Enhanced Global Animations --- */
.animated-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animated-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modern Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

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

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

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
}

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

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* --- Enhanced Hero Section --- */
.hero-enhanced {
    background:
        linear-gradient(135deg, rgba(0, 123, 255, 0.95) 0%, rgba(0, 86, 179, 0.98) 100%),
        linear-gradient(45deg, rgba(0, 123, 255, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 86, 179, 0.1) 25%, transparent 25%),
        radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 86, 179, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    background-size: 100% 100%, 60px 60px, 60px 60px, 800px 800px, 600px 600px, 400px 400px;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    margin-top: 0;
    padding-top: 0;
    animation: heroBackgroundShift 30s ease-in-out infinite;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(0, 123, 255, 0.92) 0%, rgba(0, 86, 179, 0.96) 100%),
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(0, 123, 255, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 60% 80%, rgba(0, 86, 179, 0.3) 0%, transparent 50%);
    z-index: 1;
    animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.95;
    }
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.15)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.15)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.08)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,255,255,0.08)"/><circle cx="10" cy="50" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    background-size: 120px 120px, 80px 80px;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        background-position: 0 0, 0 0;
    }
    50% {
        background-position: 60px 60px, 40px 40px;
    }
}

@keyframes heroBackgroundShift {
    0%, 100% {
        background-position: 0% 0%, 0 0, 0 0, 0% 0%, 100% 100%, 50% 50%;
    }
    25% {
        background-position: 0% 0%, 30px 30px, -30px 30px, 10% 90%, 90% 10%, 60% 40%;
    }
    50% {
        background-position: 0% 0%, 60px 60px, -60px 60px, 20% 80%, 80% 20%, 70% 30%;
    }
    75% {
        background-position: 0% 0%, 30px -30px, -30px -30px, 30% 70%, 70% 30%, 40% 60%;
    }
}

@keyframes floatingElements {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(1deg);
    }
    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
    75% {
        transform: translateY(-30px) rotate(0.5deg);
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    animation: floatingElements 12s ease-in-out infinite;
}

.hero-particles::before {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 10%;
    animation-delay: -3s;
}

.hero-particles::after {
    width: 300px;
    height: 300px;
    bottom: 15%;
    left: 15%;
    animation-delay: -6s;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    animation: float 8s ease-in-out infinite;
}

.hero-particles::before {
    top: 5%;
    right: 5%;
    animation-delay: -2s;
    width: 250px;
    height: 250px;
}

.hero-particles::after {
    bottom: 5%;
    left: 5%;
    animation-delay: -4s;
    width: 350px;
    height: 350px;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badges .badge {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.industry-leader-badge {
    background: linear-gradient(135deg, #343a40, #495057) !important;
    box-shadow: 0 4px 15px rgba(52, 58, 64, 0.4);
    color: white !important;
}

.industry-leader-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 58, 64, 0.6);
}

.industry-leader-badge i {
    color: #e9ecef !important;
}

.most-popular-badge {
    background: linear-gradient(135deg, #6c757d, #495057) !important;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.4);
    color: white !important;
}

.most-popular-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.6);
}

.most-popular-badge i {
    color: #e9ecef !important;
}

.hero-badges .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-title {
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.text-gradient {
    background: linear-gradient(45deg, #ffffff, #e9ecef, #6c757d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-title {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
    font-weight: 400;
}

.hero-stats .stat-item {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-stats .stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero-stats .stat-number {
    font-size: 1.8rem;
    color: white !important;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-enhanced {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    font-weight: 600;
    border-radius: 12px;
    padding: 1rem 2rem;
}

.btn-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.btn-enhanced:hover::before {
    width: 300px;
    height: 300px;
}

.hero-trust .trust-badges .badge {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-image-container {
    position: relative;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-radius: 24px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 10px 30px rgba(0, 123, 255, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 1),
        0 0 0 3px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(0, 123, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-weight: 800;
    font-size: 1.2rem;
    color: #1a1a1a;
    border: 3px solid rgba(255, 255, 255, 0.9);
    z-index: 20;
    animation: floatingElements 6s ease-in-out infinite;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.floating-card:hover {
    transform: translateY(-12px) scale(1.1);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.3),
        0 12px 35px rgba(0, 123, 255, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 1),
        0 0 0 4px rgba(255, 255, 255, 0.9),
        0 0 30px rgba(0, 123, 255, 0.4);
    background: rgba(255, 255, 255, 1);
}

.floating-card i {
    font-size: 2.2rem;
    padding: 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(0, 86, 179, 0.3));
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.floating-card-1 {
    top: 20%;
    right: 5%;
    animation-delay: 0s;
}

.floating-card-1 i {
    color: #28a745;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.3), rgba(40, 167, 69, 0.5));
    border: 3px solid rgba(40, 167, 69, 0.6);
    box-shadow:
        0 6px 18px rgba(40, 167, 69, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.floating-card-2 {
    top: 55%;
    left: 5%;
    animation-delay: -2s;
}

.floating-card-2 i {
    color: #fd7e14;
    background: linear-gradient(135deg, rgba(253, 126, 20, 0.3), rgba(253, 126, 20, 0.5));
    border: 3px solid rgba(253, 126, 20, 0.6);
    box-shadow:
        0 6px 18px rgba(253, 126, 20, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.floating-card-3 {
    bottom: 25%;
    right: 15%;
    animation-delay: -4s;
}

.floating-card-3 i {
    color: #17a2b8;
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.3), rgba(23, 162, 184, 0.5));
    border: 3px solid rgba(23, 162, 184, 0.6);
    box-shadow:
        0 6px 18px rgba(23, 162, 184, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-main-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    color: white;
    font-size: 1.5rem;
    animation: float 2s ease-in-out infinite;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-arrow:hover {
    opacity: 1;
}

/* --- Statistics Section --- */
.stats-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    position: relative;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
    opacity: 0.3;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-plus {
    display: inline;
    font-size: 2rem;
    color: white;
    font-weight: 600;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Counter Animation */
.counter {
    animation: countUp 1s ease-out forwards;
}

/* --- Enhanced Benefits Section --- */
.why-us-enhanced {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.section-badge .badge {
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.benefit-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon-wrapper {
    position: relative;
    display: inline-block;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(13, 110, 253, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    transform: scale(1.1);
}

.benefit-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.benefit-metric {
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.metric-value {
    font-size: 1.2rem;
    display: block;
}

.metric-label {
    font-size: 0.8rem;
    color: #6c757d;
}

/* --- Enhanced Features Section --- */
.features-enhanced {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.featured-feature {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.featured-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #28a745, #20c997);
}

.feature-badge .badge {
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #495057;
}

.feature-image-wrapper {
    position: relative;
}

.feature-image-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

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

.feature-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(13, 110, 253, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0d6efd;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-modern {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    transform: scale(1.1);
}

.feature-badge-new {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-badge-popular {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-badge-trending {
    background: linear-gradient(135deg, #e83e8c, #6f42c1);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card-body h4 {
    color: #212529;
    margin-bottom: 1rem;
}

.feature-metrics {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05), rgba(13, 110, 253, 0.02));
    border-radius: 12px;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.metric-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- Social Proof Section --- */
.social-proof {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

.achievement-card {
    padding: 2rem 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.achievement-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.customer-logos {
    margin-top: 3rem;
}

.logos-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.8;
    animation: logoSlide 25s ease-in-out infinite;
}

@keyframes logoSlide {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    50% {
        transform: translateX(5px);
    }
    75% {
        transform: translateX(-3px);
    }
}

.logo-item {
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.1);
    opacity: 1;
}

.logo-placeholder {
    width: 120px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-placeholder span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* --- Enhanced CTA Section --- */
.cta-enhanced {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.cta-particles::before,
.cta-particles::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 8s ease-in-out infinite;
}

.cta-particles::before {
    top: 20%;
    right: 15%;
    animation-delay: -3s;
}

.cta-particles::after {
    bottom: 20%;
    left: 15%;
    animation-delay: -6s;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge .badge {
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-features {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-feature {
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-actions .btn {
    min-width: 200px;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hero-enhanced {
        padding: 3rem 0;
        background-attachment: scroll;
        min-height: 100vh;
    }

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

    .hero-stats .stat-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 1rem;
    }

    .hero-stats .stat-number {
        font-size: 1.8rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-stats .stat-label {
        font-size: 0.9rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .floating-card {
        position: relative;
        margin: 1rem auto;
        max-width: 320px;
        animation: none;
        transform: none;
        background: rgba(255, 255, 255, 1);
        border: 3px solid rgba(255, 255, 255, 0.8);
        box-shadow:
            0 12px 35px rgba(0, 0, 0, 0.2),
            0 6px 18px rgba(0, 123, 255, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 1);
    }

    .floating-card-1,
    .floating-card-2,
    .floating-card-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 1rem auto;
    }

    .floating-elements {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
        z-index: 10;
    }

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

    .featured-feature {
        padding: 2rem;
    }

    .logos-slider {
        gap: 1rem;
    }

    .logo-placeholder {
        width: 100px;
        height: 50px;
    }

    .logo-placeholder span {
        font-size: 0.7rem;
    }

    .hero-particles {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-enhanced {
        min-height: 90vh;
        padding: 2rem 0;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats .row {
        gap: 0.5rem;
    }

    .hero-stats .col-4 {
        flex: 1;
        min-width: 0;
    }

    .floating-card {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
        max-width: 300px;
        background: rgba(255, 255, 255, 1);
        border: 3px solid rgba(255, 255, 255, 0.8);
        font-weight: 700;
        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.2),
            0 5px 15px rgba(0, 123, 255, 0.3);
    }

    .floating-card i {
        font-size: 1.6rem;
        padding: 0.8rem;
        box-shadow:
            0 4px 12px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }

    .hero-badges .d-flex {
        justify-content: center;
    }

    .hero-badges .badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

/* --- General Page Enhancements --- */
.page-hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="page-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23page-pattern)"/></svg>');
    opacity: 0.3;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.page-hero .lead {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 1.2rem;
}

.page-hero .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.page-hero .breadcrumb-item.active {
    color: white;
}

.enhanced-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.enhanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.enhanced-card:hover::before {
    transform: scaleX(1);
}

.enhanced-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.enhanced-section {
    padding: 5rem 0;
    position: relative;
}

.enhanced-section.bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    margin-bottom: 1rem;
}

.section-badge .badge {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.enhanced-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #007bff;
    transition: all 0.3s ease;
}

.enhanced-card:hover .enhanced-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    transform: scale(1.1);
}

.enhanced-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enhanced-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
    color: white;
}

.enhanced-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.enhanced-btn:hover::before {
    width: 300px;
    height: 300px;
}

.text-enhanced {
    color: #495057;
    line-height: 1.7;
}

.text-enhanced.lead {
    font-size: 1.2rem;
    color: #6c757d;
}

.enhanced-list {
    list-style: none;
    padding: 0;
}

.enhanced-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.enhanced-list .list-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* --- Device Page Specific Styles --- */
.devices-filter {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.filter-btn {
    text-align: left;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 123, 255, 0.2);
}

.filter-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-color: #007bff;
}

.device-card {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.device-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.device-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.device-image-container:hover img {
    transform: scale(1.05);
}

.device-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 123, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.device-card:hover .device-overlay {
    opacity: 1;
}

.device-actions {
    display: flex;
    gap: 0.5rem;
}

.device-category-badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.device-features {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(0, 123, 255, 0.02));
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #495057;
}

.devices-results-header {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.empty-state {
    text-align: center;
    padding: 2rem;
}

.empty-state i {
    opacity: 0.3;
}

/* Device Badge Colors */
.bg-primary {
    background: linear-gradient(135deg, #007bff, #0056b3) !important;
}

.bg-success {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
}

.bg-warning {
    background: linear-gradient(135deg, #fd7e14, #e55353) !important;
}

.bg-info {
    background: linear-gradient(135deg, #17a2b8, #6f42c1) !important;
}

.bg-dark {
    background: linear-gradient(135deg, #343a40, #495057) !important;
}

.bg-secondary {
    background: linear-gradient(135deg, #6c757d, #495057) !important;
}

/* Responsive Design for Devices */
@media (max-width: 768px) {
    .devices-results-header {
        padding: 1rem;
    }

    .devices-results-header .d-flex {
        flex-direction: column;
        gap: 1rem;
    }

    .device-overlay {
        display: none;
    }

    .filter-btn {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }

    /* Mobile Fallback for Animated Sections */
    .animated-section {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition: none !important;
    }

    /* Mobile Fallback for Fade Animations */
    .fade-in-up,
    .fade-in-left,
    .fade-in-right {
        opacity: 1 !important;
        animation: none !important;
        transform: translateY(0) translateX(0) !important;
    }

    /* Category Filter Mobile Optimization */
    .category-filter-wrapper {
        padding: 0 1rem;
    }

    .btn-group-responsive {
        flex-direction: column;
        gap: 0.5rem !important;
    }

    .category-btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        border-radius: 12px !important;
    }

    /* Device Cards Mobile Optimization */
    .device-card {
        margin-bottom: 1.5rem;
        display: block !important;
        visibility: visible !important;
    }

    .enhanced-card {
        display: block !important;
        visibility: visible !important;
    }

    .device-image-container {
        display: block !important;
        visibility: visible !important;
    }

    .device-image-container img {
        height: 150px !important;
        display: block !important;
        visibility: visible !important;
    }

    .card-body {
        padding: 1.5rem !important;
        display: block !important;
        visibility: visible !important;
    }

    .card-title {
        font-size: 1.1rem;
        height: auto !important;
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        display: block !important;
        visibility: visible !important;
    }

    .card-text {
        height: auto !important;
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        display: block !important;
        visibility: visible !important;
    }

    .device-features {
        padding: 0.8rem;
        display: block !important;
        visibility: visible !important;
    }

    .feature-item {
        font-size: 0.8rem;
        display: flex !important;
        visibility: visible !important;
    }

    /* Force visibility for all device elements */
    .row.g-4 {
        display: flex !important;
        visibility: visible !important;
    }

    .col-12.col-md-6.col-lg-4 {
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
    }

    /* Section Padding Mobile */
    section {
        padding: 3rem 0;
    }

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

    .enhanced-section {
        padding: 3rem 0;
    }

    /* Results Header Mobile */
    .results-header h4 {
        font-size: 1.1rem;
    }

    .results-header .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Empty State Mobile */
    .empty-state {
        padding: 1.5rem;
    }

    .empty-state i {
        font-size: 3rem;
    }

    .empty-state h4 {
        font-size: 1.2rem;
    }

    /* About Page Mobile Responsive Fixes */
    .position-relative .position-absolute.bg-primary {
        position: relative !important;
        transform: none !important;
        margin: 1rem auto !important;
        display: block !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
        max-width: 120px !important;
        font-size: 0.8rem !important;
        padding: 0.6rem !important;
        text-align: center !important;
    }

    .position-relative .position-absolute.bg-primary .fw-bold {
        font-size: 1.3rem !important;
        display: block !important;
        margin-bottom: 0.2rem !important;
    }

    .position-relative .position-absolute.bg-primary small {
        font-size: 0.7rem !important;
        line-height: 1.1 !important;
        display: block !important;
    }

    /* Stat items mobile spacing */
    .stat-item {
        margin-bottom: 2rem !important;
    }

    /* About page enhanced cards mobile */
    .enhanced-card {
        margin-bottom: 1rem !important;
    }

    /* About page display text mobile */
    .display-4, .display-5 {
        font-size: 1.8rem !important;
    }

    /* About page section spacing mobile */
    .enhanced-section {
        padding: 3rem 0 !important;
    }

    /* About page info cards mobile optimization */
    .enhanced-card .d-flex.align-items-center {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
    }

    .enhanced-card .enhanced-icon {
        margin-bottom: 1rem !important;
        margin-right: 0 !important;
    }

    .enhanced-card h5 {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .enhanced-card .text-muted.small {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        text-align: center !important;
        margin-bottom: 0 !important;
    }

    /* Enhanced card padding mobile */
    .enhanced-card.p-3 {
        padding: 1.5rem !important;
    }
}

/* --- Full Page Loader --- */
#full-page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
    backdrop-filter: blur(2px);
}

#full-page-loader.show {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.1s ease-in, visibility 0.1s ease-in;
}

#full-page-loader .spinner-border {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-width: 3px;
}

#full-page-loader p {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}
