/* Custom CSS for ShoptriQ Portal */

/* Root Variables */
:root {
    --primary-color: #1a73e8;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #20232a;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #1a73e8 0%, #065fd4 100%);
    --gradient-secondary: linear-gradient(135deg, #34a853 0%, #0f9d58 100%);
    --gradient-success: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    --gradient-warning: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    --gradient-danger: linear-gradient(135deg, #dc3545 0%, #e91e63 100%);
    --gradient-info: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --gradient-dark: linear-gradient(135deg, #343a40 0%, #20232a 100%);
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Typography Enhancements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-weight: 700;
}

/* Modern Button Enhancements */
.btn {
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

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

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

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

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
}

.btn-secondary {
    background: var(--gradient-secondary);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(52, 168, 83, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #2e7d32 0%, #388e3c 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(52, 168, 83, 0.4);
}

.btn-success {
    background: var(--gradient-success);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.btn-warning {
    background: var(--gradient-warning);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #f57c00 0%, #ff9800 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-danger {
    background: var(--gradient-danger);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #c62828 0%, #d32f2f 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.btn-info {
    background: var(--gradient-info);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.btn-info:hover {
    background: linear-gradient(135deg, #0277bd 0%, #0288d1 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.4);
}

.btn-light {
    background: var(--gradient-light);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(248, 249, 250, 0.2);
}

.btn-light:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.2);
}

.btn-dark {
    background: var(--gradient-dark);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(52, 58, 64, 0.3);
}

.btn-dark:hover {
    background: linear-gradient(135deg, #212529 0%, #343a40 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(52, 58, 64, 0.4);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-outline-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-outline-primary:hover::after {
    width: 100%;
}

.btn-outline-primary:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-outline-light::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-outline-light:hover::after {
    width: 100%;
}

.btn-outline-light:hover {
    color: white;
    border-color: white;
    transform: translateY(-3px) scale(1.02);
}

/* Card Enhancements */
.card {
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

/* Navigation Styles */
.navbar {
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    padding: 1.2rem 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(26, 115, 232, 0.1);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(26, 115, 232, 0.15);
    background-color: rgba(255, 255, 255, 0.98) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.brand-text {
    transition: all 0.3s ease;
}

.brand-name {
    background: linear-gradient(135deg, #1a73e8 0%, #e91e63 50%, #9c27b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.brand-tagline {
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
}

.nav-link-enhanced {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark-color) !important;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.7rem 0.8rem;
    border-radius: 8px;
    margin: 0 0.1rem;
}

.nav-link-enhanced:hover {
    color: #ffffff !important;
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.nav-link-enhanced::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-link-enhanced:hover::before {
    width: 80%;
    left: 10%;
}

.nav-link-enhanced i {
    transition: all 0.3s ease;
}

.nav-link-enhanced:hover i {
    transform: scale(1.2);
}

.btn-cta {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.3);
}

/* Mobile Menu Enhancements */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(26, 115, 232, 0.1);
    }

    .nav-link-enhanced {
        margin: 0.3rem 0;
        text-align: center;
    }

    .btn-cta {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Hero Section with Enhanced Animations */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.floating-shapes .shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    left: 10%;
    top: 20%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.shape-2 {
    left: 70%;
    top: 10%;
    width: 120px;
    height: 120px;
    animation-delay: -2s;
}

.shape-3 {
    left: 50%;
    top: 60%;
    width: 100px;
    height: 100px;
    animation-delay: -4s;
}

.shape-4 {
    left: 20%;
    top: 70%;
    width: 60px;
    height: 60px;
    animation-delay: -1s;
}

.shape-5 {
    left: 80%;
    top: 80%;
    width: 90px;
    height: 90px;
    animation-delay: -3s;
}

.shape-6 {
    left: 30%;
    top: 30%;
    width: 70px;
    height: 70px;
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    33% {
        transform: translateY(-30px) rotate(120deg) scale(1.1);
    }

    66% {
        transform: translateY(20px) rotate(240deg) scale(0.9);
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a73e8 0%, #065fd4 100%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            #667eea 0%,
            #764ba2 15%,
            #f093fb 30%,
            #f5576c 45%,
            #4facfe 60%,
            #00f2fe 75%,
            #43e97b 90%,
            #38f9d7 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Add overlay for better text readability */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><rect fill="%23667eea" width="1000" height="1000"/><circle fill="%23764ba2" cx="500" cy="500" r="200" opacity="0.3"/></svg>');
    background-size: cover;
    background-position: center;
}

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

.hero-phone-mockup img {
    max-width: 300px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

/* Category Cards */
.category-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.5s ease;
    opacity: 0;
    z-index: 0;
}

.category-card:hover::before {
    left: 0;
    opacity: 0.1;
}

.category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 115, 232, 0.2);
}

.category-card .card-body {
    position: relative;
    z-index: 1;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    border-radius: 16px;
    background: var(--gradient-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.feature-card.bg-primary {
    background: var(--gradient-primary) !important;
}

.feature-card.bg-success {
    background: var(--gradient-success) !important;
}

.feature-card.bg-warning {
    background: var(--gradient-warning) !important;
}

.feature-card.bg-info {
    background: var(--gradient-info) !important;
}

.feature-card.bg-danger {
    background: var(--gradient-danger) !important;
}

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

/* Step Numbers */
.step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* Benefit Cards */
.benefit-card {
    background: var(--gradient-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    color: white !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 115, 232, 0.3);
}

.benefit-card:hover .card-text {
    color: rgba(255, 255, 255, 0.9) !important;
}

.benefit-card .card-body {
    position: relative;
    z-index: 1;
}

.benefit-icon {
    font-size: 2rem;
}

/* Forms */
.form-control,
.form-select {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

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

/* Input Groups */
.input-group .form-control:focus {
    z-index: 3;
}

/* Contact Section */
.contact-info .d-flex {
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-info .d-flex:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

footer::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 20"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="20" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

footer .container {
    position: relative;
    z-index: 1;
}

footer h4,
footer h6 {
    color: #ffffff;
    font-weight: 700;
}

footer p,
footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

footer a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

footer .social-media-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-right: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

footer .social-media-links a:hover {
    background: var(--gradient-primary);
    color: white !important;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

/* Footer Logo Enhancement */
footer .logo-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

footer .logo-section:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Footer Quick Links Enhancement */
footer .quick-links ul {
    list-style: none;
    padding: 0;
}

footer .quick-links li {
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

footer .quick-links li:hover {
    transform: translateX(8px);
}

footer .quick-links a::before {
    content: '→';
    margin-right: 8px;
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

footer .quick-links a:hover::before {
    opacity: 1;
    margin-right: 12px;
}

/* Copyright Section */
footer .copyright {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@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);
    }
}

.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__fadeInRight {
    animation-name: fadeInRight;
}

.animate__delay-1s {
    animation-delay: 0.2s;
}

.animate__delay-2s {
    animation-delay: 0.4s;
}

.animate__delay-3s {
    animation-delay: 0.6s;
}

.animate__delay-4s {
    animation-delay: 0.8s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        text-align: center;
    }

    .display-4 {
        font-size: 2rem;
    }

    .hero-content .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .category-icon,
    .feature-icon {
        font-size: 2rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand h4 {
        font-size: 1.2rem;
    }

    .navbar-brand small {
        font-size: 0.7rem;
    }

    .display-5 {
        font-size: 1.8rem;
    }

    .hero-content {
        padding-top: 2rem;
    }

    .category-card,
    .feature-card,
    .benefit-card {
        margin-bottom: 1rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.border-radius-lg {
    border-radius: 16px;
}

.border-radius-xl {
    border-radius: 24px;
}

/* Hover Effects */
.hover-scale:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: var(--shadow-lg);
    transition: box-shadow 0.3s ease;
}

/* Custom Alert Styles */
.alert {
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
}

.alert-primary {
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary-color);
}

.alert-info {
    background: rgba(23, 162, 184, 0.1);
    color: var(--info-color);
}

/* Social Media Icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Mobile App Mockup */
.mobile-app-mockup {
    position: relative;
}

.mobile-app-mockup::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Testimonial Styles (for future use) */
.testimonial {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    line-height: 1;
}

/* Price Card Styles (for future use) */
.price-card {
    position: relative;
    overflow: hidden;
}

.price-card::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: left 0.5s ease;
}

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

/* Custom Badge Styles */
.badge-custom {
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

/* Floating Action Button (for future use) */
.fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 1000;
}

.fab:hover {
    transform: scale(1.1);
    color: white;
}

/* Print Styles */
@media print {

    .navbar,
    .fab,
    footer {
        display: none !important;
    }

    .hero-section {
        min-height: auto;
        page-break-after: always;
    }

    section {
        padding: 1rem 0;
        page-break-inside: avoid;
    }
}

/* Dark Mode Support (for future implementation) */
@media (prefers-color-scheme: dark) {
    :root {
        --dark-color: #f8f9fa;
        --light-color: #343a40;
    }

    /* Add dark mode styles here when needed */
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }

    .card {
        border: 2px solid var(--dark-color);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Enhanced Logo Styles */
.logo-enhanced {
    transition: all 0.3s ease;
    filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.2)) contrast(1.2) saturate(1.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    backdrop-filter: blur(10px);
}

.logo-enhanced:hover {
    transform: scale(1.12) rotate(3deg);
    filter: drop-shadow(8px 8px 20px rgba(0, 0, 0, 0.4)) contrast(1.4) saturate(1.5) brightness(1.1);
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Content Enhancements */
.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
}

.text-gradient-light {
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* App Mockup Placeholder */
.hero-mockup {
    position: relative;
    z-index: 2;
}

.app-mockup-placeholder {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}

.mockup-phone {
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 30px;
    padding: 20px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.mockup-phone::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    z-index: 3;
}

.mockup-screen {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.mockup-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #dee2e6;
}

.mockup-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mockup-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mockup-card:hover {
    transform: translateY(-3px);
}

.mockup-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.mockup-card h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mockup-card p {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.mockup-label {
    text-align: center;
    margin-top: 1rem;
}

.mockup-label .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

/* Special Button Styles */
.btn-hero {
    position: relative;
    overflow: hidden;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    text-transform: none;
    letter-spacing: normal;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.btn-hero:hover::before {
    transform: translateX(100%);
}

.btn-hero-primary {
    background: linear-gradient(135deg, #1a73e8 0%, #4285f4 50%, #065fd4 100%);
    color: white;
    position: relative;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 50%, #0d4494 100%);
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(26, 115, 232, 0.4);
}

.btn-hero-secondary {
    background: linear-gradient(135deg, #34a853 0%, #4caf50 50%, #0f9d58 100%);
    color: white;
}

.btn-hero-secondary:hover {
    background: linear-gradient(135deg, #2e7d32 0%, #388e3c 50%, #1b5e20 100%);
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(52, 168, 83, 0.4);
}

/* Glassmorphism Button */
.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    color: white;
    border-radius: 15px;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Neon Button Effect */
.btn-neon {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    padding: 0.8rem 2rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

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

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

.btn-neon:hover {
    color: white;
    background: var(--primary-color);
    box-shadow:
        0 0 20px rgba(26, 115, 232, 0.5),
        0 0 40px rgba(26, 115, 232, 0.3),
        0 0 60px rgba(26, 115, 232, 0.1);
    transform: translateY(-3px);
}

/* Floating Button */
.btn-floating {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-floating:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Pulse Button */
.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(26, 115, 232, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(26, 115, 232, 0);
    }
}

/* Button with Icon Animation */
.btn-icon-animate {
    position: relative;
    overflow: hidden;
}

.btn-icon-animate i {
    transition: transform 0.3s ease;
}

.btn-icon-animate:hover i {
    transform: translateX(5px);
}

/* Loading Button State */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin 1s linear infinite;
    color: white;
}

/* Gradient Border Button */
.btn-gradient-border {
    background: white;
    border: 3px solid;
    border-image: linear-gradient(135deg, #1a73e8, #065fd4) 1;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-gradient-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-gradient-border:hover::before {
    opacity: 1;
}

.btn-gradient-border:hover {
    color: white;
    border-color: transparent;
}

/* Social Media Button Styles */
.btn-social {
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5aa7 100%);
    color: white;
}

.btn-facebook:hover {
    background: linear-gradient(135deg, #0d5aa7 0%, #1877f2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.btn-twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    color: white;
}

.btn-twitter:hover {
    background: linear-gradient(135deg, #0d8bd9 0%, #1da1f2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4);
}

.btn-instagram {
    background: linear-gradient(135deg, #e4405f 0%, #833ab4 50%, #fd1d1d 100%);
    color: white;
}

.btn-instagram:hover {
    background: linear-gradient(135deg, #fd1d1d 0%, #e4405f 50%, #833ab4 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(228, 64, 95, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.carousel-control-prev {
    justify-content: flex-start !important;
    padding-left: 1em !important;
}

.carousel-control-next {
    justify-content: flex-end !important;
    padding-right: 1em !important;
}

.min_height_90 {
    min-height: 75vh;
}

#tabs_section {

    .box {
        border-radius: 3px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .tab-list {
        position: relative;
        background-color: rgb(255, 255, 255);
        border: 1px solid rgb(170 205 255);
        color: #000000;
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        position: relative;
        width: 600px;
        border-radius: 30px;
    }

    .tab-list::before {
        content: '';
        display: block;
        height: 100%;
        width: 50%;
        position: absolute;
        bottom: 0;
        background-color: #0d6efd;
        color: #000000;
        transition: .3s;
        border-radius: 30px;

    }

    .tab-item {
        flex: 1;
        text-align: center;
        transition: .3s;
        opacity: 0.5;
    }

    .tab-toggle {
        display: none;
    }

    .tab-content {
        display: none;
    }

    .tab-toggle:nth-child(1):checked~.tab-list .tab-item:nth-child(1),
    .tab-toggle:nth-child(2):checked~.tab-list .tab-item:nth-child(2) {
        opacity: 1;
    }

    .tab-toggle:nth-child(2):checked~.tab-list::before {
        transform: translateX(100%);
    }

    .tab-toggle:nth-child(1):checked~.tab-container .tab-content:nth-child(1),
    .tab-toggle:nth-child(2):checked~.tab-container .tab-content:nth-child(2) {
        display: block;
    }

    .tab-trigger {
        display: block;
        padding: 10px 0;
    }

    .tab-container {
        padding: 15px 30px;
        position: relative;
        width: 100%;
    }


    .tab-item .tab-trigger {
        color: #000000;
        font-weight: normal;
        transition: color 0.3s, font-weight 0.3s;
        z-index: 1;
        position: relative;
        font-weight: 500;
    }

    #tab1:checked~.tab-list .tab-item:nth-child(1) .tab-trigger {
        color: white;
        font-weight: 600;
    }

    #tab2:checked~.tab-list .tab-item:nth-child(2) .tab-trigger {
        color: white;
        font-weight: 600;
    }

    .ft_600 {
        font-weight: 600;
    }
}

.bg_fff {
    background: #fff;
}

@media (max-width:576px) {
    .tab-list {
        width: 300px !important;
    }

    .for_buyers_relative {
        margin: 4em 0;
    }
}

.img_width {
    width: 40%;
}

.cursor_pointer {
    cursor: pointer;
}

.d_flex_buyers {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.for_buyers_relative {
    position: relative;
    margin: 2em 0;

    .pst_abs {
        position: absolute;
        top: -50px;
        left: 2px;
        width: 100%;

    }
}