/* CSS Variables & Global Settings */
:root {
    /* Brand Colors */
    --bg-main: #0B0F1A;
    --bg-secondary: #12182B;
    --bg-card: rgba(18, 24, 43, 0.7);
    --bg-glass: rgba(11, 15, 26, 0.6);

    --accent-blue: #00AEEF;
    --accent-purple: #7B3FE4;
    --accent-gold: #D4AF37;

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #A0AABF;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    --grad-gold: linear-gradient(135deg, var(--accent-gold), #FFF8DC);
    --grad-glow: linear-gradient(90deg, #00AEEF, #7B3FE4, #D4AF37);

    /* Glow Effects */
    --glow-blue: 0 0 15px rgba(0, 174, 239, 0.6);
    --glow-purple: 0 0 15px rgba(123, 63, 228, 0.6);
    --glow-gold: 0 0 15px rgba(212, 175, 55, 0.6);

    /* Fonts */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utility */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

/* Custom effects */
.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text.gold {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow-blue {
    color: var(--accent-blue);
    text-shadow: var(--glow-blue);
}

.glow-purple {
    color: var(--accent-purple);
    text-shadow: var(--glow-purple);
}

.glow-gold {
    color: var(--accent-gold);
    text-shadow: var(--glow-gold);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a:not(.btn-nav):hover {
    color: var(--accent-blue);
    text-shadow: var(--glow-blue);
}

.nav-menu a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-blue);
    transition: var(--transition-fast);
}

.nav-menu a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--grad-primary);
    padding: 10px 25px;
    border-radius: 30px;
    border: none;
    transition: var(--transition-fast);
    box-shadow: var(--glow-purple);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(123, 63, 228, 0.8);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--text-primary);
    height: 3px;
    width: 30px;
    border-radius: 3px;
    position: relative;
    transition: var(--transition-fast);
}

.nav-toggle-label span::before {
    content: '';
    position: absolute;
    top: -8px;
}

.nav-toggle-label span::after {
    content: '';
    position: absolute;
    bottom: -8px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
}

.btn-primary {
    background: var(--grad-primary);
    color: white;
    box-shadow: var(--glow-blue);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(0, 174, 239, 0.8);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    box-shadow: inset 0 0 0 rgba(0, 174, 239, 0), 0 0 10px rgba(0, 174, 239, 0.3);
}

.btn-secondary:hover {
    background: var(--accent-blue);
    color: #fff;
    box-shadow: inset 0 0 10px rgba(0, 174, 239, 0.6), 0 0 20px rgba(0, 174, 239, 0.6);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);
    transform: translateY(-3px);
}

.btn-large {
    font-size: 1.1rem;
    padding: 15px 40px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-bg.png') center/cover no-repeat;
    opacity: 0.4;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--bg-main));
    z-index: -1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
    animation: float 10s infinite ease-in-out;
}

.orb-1 {
    top: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--accent-blue);
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--accent-purple);
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-50px) scale(1.1);
    }
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.main-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Generic Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--grad-primary);
    border-radius: 3px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-text strong {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.tech-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, var(--accent-blue));
    animation: rotate 4s linear infinite;
    z-index: -1;
}

.tech-card::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--bg-secondary);
    border-radius: 17px;
    z-index: -1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.icon-large {
    font-size: 4rem;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-fast);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 174, 239, 0.3);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-blue);
}

.product-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.btn-link {
    color: var(--accent-blue);
    font-family: var(--font-heading);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.btn-link i {
    transition: transform 0.3s ease;
}

.product-card:hover .btn-link {
    text-shadow: var(--glow-blue);
}

.product-card:hover .btn-link i {
    transform: translateX(5px);
}

/* Brands Marquee */
.brands {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0;
    overflow: hidden;
}

.brands-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.brands-marquee::before,
.brands-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.brands-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.brands-track {
    display: flex;
    width: calc(150px * 14);
    /* Width of item * total items */
    animation: scroll 20s linear infinite;
}

.brand-item {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
}

.brand-item:hover {
    color: var(--text-primary);
    text-shadow: var(--glow-blue);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-150px * 7));
    }

    /* Slide half the width */
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.service-icon {
    font-size: 2.5rem;
    width: 60px;
    text-align: center;
}

.service-card h3 {
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Store CTA */
.store-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(to right, #0B0F1A, #12182B, #0B0F1A);
    text-align: center;
    border-top: 1px solid rgba(0, 174, 239, 0.3);
    border-bottom: 1px solid rgba(123, 63, 228, 0.3);
    overflow: hidden;
}

.store-cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.store-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.store-cta p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.cyber-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 174, 239, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123, 63, 228, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    perspective: 500px;
    transform: rotateX(60deg) scale(2);
    transform-origin: center bottom;
    opacity: 0.3;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.contact-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.avatar {
    width: 80px;
    height: 80px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--text-secondary);
    margin: 0 auto 20px;
    border: 2px solid var(--accent-blue);
    box-shadow: var(--glow-blue);
}

.contact-card h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.phone-number {
    font-size: 1.2rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
    font-weight: 500;
}

.center {
    text-align: center;
}

/* Footer */
.footer {
    background: #05080E;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.logo-text.large {
    font-size: 3rem;
    margin-bottom: 15px;
}

.footer-slogan {
    color: var(--text-secondary);
    font-style: italic;
}

.footer-links h3,
.footer-social h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-links h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-blue);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--accent-blue);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: var(--accent-blue);
    color: white;
    box-shadow: var(--glow-blue);
    transform: translateY(-3px);
}

/* Payment Logos */
.footer-payments {
    text-align: center;
    padding: 30px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.payments-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.payments-label i {
    color: var(--accent-blue);
    margin-right: 6px;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-badge {
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.75;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.payment-badge:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 174, 239, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}


/* Cart Button & Badge */
.cart-btn {
    position: relative !important;
    display: flex !important;
    align-items: center;
    font-size: 1.1rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--grad-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--glow-blue);
}

/* Cart Overlay sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: absolute;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-main);
    border-left: 1px solid rgba(0, 174, 239, 0.3);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8), inset 5px 0 20px rgba(11, 15, 26, 0.9);
    display: flex;
    flex-direction: column;
    transition: right 0.4s ease;
}

.cart-overlay.active .cart-sidebar {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.5rem;
    color: var(--accent-blue);
    text-shadow: var(--glow-blue);
    font-family: var(--font-heading);
}

.close-cart {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-cart:hover {
    color: white;
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 50px;
    font-style: italic;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-card);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: white;
    /* Contrast for product image */
    border-radius: 5px;
    padding: 2px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.cart-item-info p {
    color: var(--accent-blue);
    font-weight: bold;
}

.remove-item {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.remove-item:hover {
    color: #ff4757;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-secondary);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: bold;
}

.cart-total span:last-child {
    color: var(--accent-gold);
    text-shadow: var(--glow-gold);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media screen and (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .tech-card {
        width: 100%;
        max-width: 300px;
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-main);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transform: translateY(-150%);
        transition: transform 0.4s ease-in-out;
        z-index: -1;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }

    .nav-toggle:checked~.nav-menu {
        transform: translateY(0);
    }

    .nav-toggle:checked~.nav-toggle-label span {
        background: transparent;
    }

    .nav-toggle:checked~.nav-toggle-label span::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked~.nav-toggle-label span::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .services-card:hover {
        transform: translateY(-5px);
    }
}

/* --- WhatsApp Floating Button --- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn i {
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.1));
}

/* --- Search Bar --- */
.search-container {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 174, 239, 0.2);
    border-radius: 30px;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.search-container:focus-within {
    border-color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(0, 174, 239, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.search-container input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 12px;
    font-size: 1rem;
    outline: none;
}

.search-container i {
    color: var(--text-secondary);
    margin-right: 10px;
}

/* --- Toast Notification --- */
#toast-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
    pointer-events: none;
}

.toast {
    background: var(--bg-secondary);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    border-left: 5px solid var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), var(--glow-blue);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideUp 0.3s ease-out forwards;
    opacity: 0;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.toast.fade-out {
    animation: fadeOut 0.5s ease-in forwards;
}

@keyframes fadeOut {
    to { opacity: 0; transform: translateY(-20px); }
}