:root {
    --tapro-blue: #009CDE;
    --tapro-dark: #0B0F19;
    --tapro-slate: #1E293B;
    --tapro-gray: #64748B;
    --font-primary: 'Outfit', sans-serif;
}

body {
    background-color: var(--tapro-dark);
    color: white;
    font-family: var(--font-primary);
    overflow-x: hidden;
}

/* Glassmorphism */
.glass-panel {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.glass-panel:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(0, 156, 222, 0.3);
}

.transition-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-hover:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 156, 222, 0.5) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

/* Navbar */
.navbar-glass {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.text-tapro-blue {
    color: var(--tapro-blue);
}

/* Navbar Links */
.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background-color: var(--tapro-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
    opacity: 1 !important;
    text-shadow: 0 0 10px rgba(0, 156, 222, 0.5);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.btn-primary-custom {
    background-color: var(--tapro-blue);
    color: white;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 0 20px rgba(0, 156, 222, 0.3);
}

.btn-primary-custom:hover {
    background-color: #00b4ff;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 156, 222, 0.5);
    color: white;
}

.btn-request-demo {
    background-color: #003366;
    /* Dark Blue */
    color: white;
    border-radius: 50px;
    padding: 0.5rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 0 20px rgba(0, 51, 102, 0.3);
    text-decoration: none;
}

.btn-request-demo:hover {
    background-color: #004080;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 51, 102, 0.5);
    color: white;
}

/* Wishlist Highlight Button */
@keyframes pulse-highlight {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 156, 222, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 35px rgba(0, 156, 222, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 156, 222, 0.3);
    }
}

.btn-wishlist-highlight {
    background: linear-gradient(135deg, var(--tapro-blue) 0%, #00d2ff 100%);
    color: white !important;
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 10px 25px rgba(0, 156, 222, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: pulse-highlight 2.5s infinite ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-wishlist-highlight:hover {
    background: linear-gradient(135deg, #00b4ff 0%, #00e5ff 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 156, 222, 0.8);
    animation: none;
}

.btn-wishlist-nav {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.btn-wishlist-nav i {
    font-size: 1.2rem;
    color: white;
}

.btn-wishlist-nav:hover,
.btn-wishlist-nav.active {
    background: var(--tapro-blue);
    border-color: var(--tapro-blue);
    box-shadow: 0 0 15px rgba(0, 156, 222, 0.5);
    transform: translateY(-2px);
}

.btn-wishlist-nav:hover i {
    color: white;
}

/* WhatsApp Button */
.btn-whatsapp {
    background-color: #25d366;
    color: white;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 156, 222, 0.15) 0%, rgba(11, 15, 25, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.logo-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 156, 222, 0.1), transparent);
    transform: rotate(45deg);
    z-index: -1;
    border-radius: 40px;
}

.shape-1 {
    top: 5rem;
    left: -100px;
}

.shape-2 {
    bottom: 5rem;
    right: -50px;
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.1), transparent);
}

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

.gradient-text {
    background: linear-gradient(to right, var(--tapro-blue), #67e8f9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Feature Cards */
.feature-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
}

.card:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

/* POS Card */
.card-pos .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--tapro-blue), #0891b2);
}

.card-pos:hover {
    border-color: rgba(0, 156, 222, 0.5);
    background: rgba(0, 156, 222, 0.1);
}

/* Restaurant Card */
.card-restaurant .feature-icon-wrapper {
    background-color: #334155;
}

.card-restaurant:hover {
    border-color: rgba(249, 115, 22, 0.5);
    background: rgba(249, 115, 22, 0.1);
}

.card-restaurant:hover .feature-icon-wrapper {
    background-color: #f97316;
}

/* Auto Card */
.card-auto .feature-icon-wrapper {
    background-color: #334155;
}

.card-auto:hover {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(239, 68, 68, 0.1);
}

.card-auto:hover .feature-icon-wrapper {
    background-color: #ef4444;
}

/* LMS Card */
.card-lms .feature-icon-wrapper {
    background-color: #334155;
}

.card-lms:hover {
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(168, 85, 247, 0.1);
}

.card-lms:hover .feature-icon-wrapper {
    background-color: #a855f7;
}

/* Dealership Card */
.card-dealership .feature-icon-wrapper {
    background-color: #334155;
}

.card-dealership:hover {
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(16, 185, 129, 0.1);
}

.card-dealership:hover .feature-icon-wrapper {
    background-color: #10b981;
}

/* Footer */
.footer-section {
    background-color: #0f172a;
    background-image:
        radial-gradient(at 40% 20%, hsla(190, 80%, 50%, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 0%, hsla(260, 80%, 60%, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 50%, hsla(340, 80%, 50%, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 50%, hsla(210, 80%, 60%, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(280, 80%, 60%, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 100%, hsla(200, 80%, 50%, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 0%, hsla(230, 80%, 60%, 0.1) 0px, transparent 50%);
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-item {
    transition: transform 0.3s ease;
}

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

.footer-icon-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 4px solid rgba(255, 255, 255, 0.05);
}

/* Address - Blue/Cyan */
.icon-address {
    background: linear-gradient(135deg, #0ea5e9, #22d3ee);
}

.footer-item:hover .icon-address {
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.4);
    transform: scale(1.1) rotate(-5deg);
}

/* Phone - Green/Emerald */
.icon-phone {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.footer-item:hover .icon-phone {
    box-shadow: 0 0 30px rgba(52, 211, 153, 0.4);
    transform: scale(1.1) rotate(5deg);
}

/* Email - Violet/Fuchsia */
.icon-email {
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
}

.footer-item:hover .icon-email {
    box-shadow: 0 0 30px rgba(217, 70, 239, 0.4);
    transform: scale(1.1) rotate(-5deg);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}


.footer-bottom {
    background: #020617;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Social Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(5px);
    overflow: hidden;
    /* Ensure image stays within border */
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: white;
}

.icon-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.4);
}

.icon-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
    box-shadow: 0 0 20px rgba(220, 39, 67, 0.4);
}

.icon-youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.icon-x:hover {
    background: #000000;
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}