:root {
    --primary: #3d6fb4; /* Logo Blue */
    --accent: #79d7e4;  /* Logo Cyan */
    --bg-dark: #0b0e14;
    --bg-alt: #161b25;
    --text: #f0f4f8;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg-dark); color: var(--text); scroll-behavior: smooth; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.text-center { text-align: center; }
.text-gradient { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Navigation */
.top-banner { background: var(--gradient); color: white; text-align: center; padding: 8px; font-size: 0.85rem; font-weight: 600; }
.navbar { position: sticky; top: 0; z-index: 1000; padding: 15px 0; background: rgba(11, 14, 20, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; border-radius: 8px; }
.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a { text-decoration: none; color: #94a3b8; font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.currency-nav { background: var(--bg-alt); color: white; border: 1px solid #2d3748; padding: 5px; border-radius: 5px; cursor: pointer; }
.cart-trigger { position: relative; cursor: pointer; font-size: 1.4rem; }
#cart-count { position: absolute; top: -8px; right: -10px; background: var(--accent); color: var(--bg-dark); font-size: 0.7rem; font-weight: 800; padding: 2px 6px; border-radius: 50%; }

/* Hero */
.hero { padding: 100px 0; position: relative; overflow: hidden; }
.main-logo { width: 180px; border-radius: 25px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); margin-bottom: 30px; animation: float 6s ease-in-out infinite; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 20px; }
.hero p { color: #94a3b8; font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* Buttons */
.btn { padding: 14px 30px; border-radius: 10px; text-decoration: none; font-weight: 700; transition: 0.3s; display: inline-block; border: none; cursor: pointer; }
.btn-primary { background: var(--gradient); color: #fff; }
.btn-outline { border: 1px solid var(--primary); color: #fff; margin-left: 10px; }
.full-width { width: 100%; }

/* Product Grid */
.filter-group { display: flex; gap: 10px; margin-top: 20px; justify-content: center; }
.filter-btn { background: var(--bg-alt); color: #94a3b8; border: none; padding: 8px 18px; border-radius: 20px; cursor: pointer; }
.filter-btn.active { background: var(--gradient); color: #fff; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.product-card { background: var(--bg-alt); border-radius: 20px; padding: 20px; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; position: relative; }
.product-card:hover { transform: translateY(-10px); border-color: var(--accent); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.product-img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; margin-bottom: 15px; }
.badge { position: absolute; top: 30px; right: 30px; background: var(--accent); color: var(--bg-dark); padding: 4px 10px; border-radius: 5px; font-size: 0.7rem; font-weight: 800; }
.product-info h3 { margin-bottom: 10px; }
.price-tag { display: block; font-size: 1.3rem; font-weight: 800; color: var(--accent); margin-bottom: 20px; }
.p-actions { display: flex; gap: 10px; }
/* Container & Header */
.services-interactive {
    position: relative;
    overflow: hidden;
}

.service-glow-shape {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(121, 215, 228, 0.1) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
}

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

.pre-title {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 800;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--gradient);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Enhanced Service Cards */
.service-card {
    position: relative;
    background: rgba(22, 27, 37, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Floating Icon Box */
.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(61, 111, 180, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent);
    font-size: 1.5rem;
    transition: 0.3s;
}

.service-card:hover .icon-box {
    background: var(--gradient);
    color: white;
    transform: rotateY(360deg);
}

/* Feature List Inside Cards */
.card-features {
    list-style: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.card-features li {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-features li i {
    color: var(--accent);
    font-size: 0.7rem;
}

/* Hover Glow Effect */
.card-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at var(--x) var(--y), rgba(121, 215, 228, 0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

/* Contact Section Premium Layout */
.contact-premium {
    position: relative;
    padding: 120px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    background: rgba(22, 27, 37, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.contact-info-side h2 {
    font-size: 3rem;
    margin: 15px 0 25px;
    line-height: 1.1;
}

/* Luxury WhatsApp Button */
.btn-whatsapp-premium {
    display: inline-block;
    padding: 18px 35px;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Social Hub Styles */
.social-hub h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.social-hub p {
    color: #94a3b8;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.social-links-grid {
    display: grid;
    gap: 15px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.social-card i {
    font-size: 1.5rem;
}

/* Individual Social Hover Colors */
.social-card.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    transform: translateX(10px);
}

.social-card.tiktok:hover {
    background: #000000;
    border-color: #ff0050;
    box-shadow: -2px 0 #ff0050, 2px 0 #00f2ea;
    transform: translateX(10px);
}

.social-card.linkedin:hover {
    background: #0077b5;
    transform: translateX(10px);
}

/* Responsive Fix */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    .contact-info-side h2 {
        font-size: 2.2rem;
    }
}

.service-card:hover .card-glow {
    opacity: 1;
}

/* =========================
   REVIEWS / PROJECTS SECTION
========================= */

.reviews-section {
    background: #0b0b0b;
    position: relative;
}

.reviews-subtext {
    max-width: 650px;
    margin: 14px auto 0;
    opacity: 0.75;
    line-height: 1.6;
}

.reviews-grid {
    margin-top: 55px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 28px;
}

/* Card */
.review-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 28px;
    transition: 0.35s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: #00ffcc;
    box-shadow: 0 20px 40px rgba(0,255,204,0.08);
}

/* Top Row */
.review-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.review-top h3 {
    font-size: 22px;
    line-height: 1.3;
    margin: 0;
}

/* Link Button */
.project-link {
    color: #00ffcc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s ease;
}

.project-link:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Project Description */
.project-desc {
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 22px;
}

/* Testimonial */
.testimonial-box {
    background: rgba(255,255,255,0.025);
    border-left: 3px solid #00ffcc;
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 24px;
}

.testimonial-box p {
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-box h4 {
    margin: 0;
    font-size: 15px;
    opacity: 0.8;
}

/* Rating */
.rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.rating span {
    font-size: 14px;
    opacity: 0.75;
}

.stars {
    color: #ffd700;
    font-size: 16px;
    display: flex;
    gap: 4px;
}

/* Mobile */
@media (max-width: 768px) {
    .review-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-top h3 {
        font-size: 20px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .rating {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* Cart Sidebar */
.cart-sidebar { position: fixed; right: -400px; top: 0; width: 400px; height: 100%; background: var(--bg-alt); z-index: 2000; transition: 0.4s; display: flex; flex-direction: column; padding: 30px; border-left: 1px solid rgba(255,255,255,0.1); }
.cart-sidebar.active { right: 0; }
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1500; display: none; }
.cart-body { flex-grow: 1; overflow-y: auto; margin: 30px 0; }
.cart-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 15px; }
.cart-item img { width: 60px; height: 60px; border-radius: 8px; }

/* Animations */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: 1s ease-out; }
[data-reveal].active { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .cart-sidebar { width: 100%; right: -100%; }
}