:root {
    --bg: #0a0a0a;
    --red: #ff002e;
    --white: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.03);
    --glass: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--white);
    overflow-x: hidden;
}


/* logo */

:root {
    --wz-red: #a11d26;
    --wz-dark: #1a1a1a;
    --wz-white: #ffffff;
}

.webzen-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    background: rgba(0, 0, 0, 0.98);
    /* Deep dark background */
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Pedestal Style */
.logo-pedestal {
    background: var(--wz-white);
    padding: 20px 25px;
    border-radius: 0 0 20px 20px;
    /* Rounded bottom corners */
    margin-top: -10px;
    /* Pulls it up to align with top */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.logo-img {
    height: 55px;
    width: auto;
}

.logo-pedestal:hover {
    transform: translateY(5px);
    /* Logo "drops" slightly on hover */
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    position: relative;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--wz-white);
}

/* Red Animated Underline */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--wz-red);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Action Button */
.contact-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid var(--wz-red);
    color: var(--wz-white);
    padding: 8px 8px 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.arrow-circle {
    background: var(--wz-red);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-pill:hover {
    background: var(--wz-red);
    box-shadow: 0 0 20px rgba(161, 29, 38, 0.4);
}

/* Floating Background Decoration */
.circle-bg {
    position: fixed;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 46, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    filter: blur(80px);
}

/* Glass Navigation */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 90%;
    left: 5%;
    top: 20px;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    z-index: 1000;
}

.logo {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.logo span {
    color: var(--red);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--red);
}

.btn-outline {
    border: 1px solid var(--red);
    padding: 10px 25px;
    border-radius: 50px;
    background: transparent;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
}

.hero-tag {
    background: rgba(255, 0, 46, 0.1);
    color: var(--red);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid var(--red);
}

.hero h1 {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2rem, 8vw, 5rem);
    line-height: 1;
    margin-bottom: 30px;
}

.red-text {
    color: var(--red);
    text-shadow: 0 0 30px rgba(255, 0, 46, 0.4);
}

.hero p {
    max-width: 600px;
    color: #888;
    font-size: 1.1rem;
}

/* Services Grid */
.services {
    padding: 100px 5%;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-box {
    background: var(--card-bg);
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.service-box:hover {
    background: rgba(255, 0, 46, 0.05);
    border-color: var(--red);
    transform: translateY(-10px);
}

.num {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 10px;
    right: 20px;
}

.service-box h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.tags {
    margin-top: 20px;
    color: var(--red);
    font-weight: 700;
    font-size: 0.8rem;
}

/* Mouse Scroll Animation */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--red);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }

    100% {
        opacity: 0;
        top: 25px;
    }
}



/* about */


.about {
    padding: 120px 8%;
    background-color: #050505;
    /* Deep black background */
    overflow: hidden;
    position: relative;
}

.about-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    flex-wrap: wrap;
}

/* ==========================================================================
   LEFT SIDE - CONTENT & INTERACTIVE FEATURES
   ========================================================================== */
.about-text {
    flex: 1.2;
    min-width: 400px;
}

.tagline {
    color: var(--red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.about-text h2 {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Interactive Glass Feature Items */
.simple-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 25px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.feature-item:hover {
    background: rgba(255, 0, 46, 0.05);
    border-color: rgba(255, 0, 46, 0.4);
    transform: translateX(12px);
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--red);
    transition: width 0.3s ease;
}

.feature-item:hover::before {
    width: 5px;
}

.icon-box {
    width: 55px;
    height: 55px;
    background: rgba(255, 0, 46, 0.1);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--red);
    font-size: 1.3rem;
    transition: 0.4s;
}

.feature-item:hover .icon-box {
    background: var(--red);
    color: var(--white);
    transform: rotate(-10deg) scale(1.1);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.feature-content span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   RIGHT SIDE - VISUAL BENTO GRID
   ========================================================================== */
.about-visual {
    flex: 0.8;
    min-width: 350px;
    position: relative;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bento-box {
    padding: 50px 30px;
    border-radius: 30px;
    text-align: center;
    transition: 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.glass-effect {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
}

.red-effect {
    background: var(--red);
    box-shadow: 0 20px 40px rgba(255, 0, 46, 0.2);
}

.bento-box.wide {
    grid-column: span 2;
    padding: 40px;
    text-align: left;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    border-left: 4px solid var(--red);
}

.bento-box h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.bento-box p {
    font-size: 0.95rem;
    color: #cccccc;
    font-weight: 600;
}

.bento-box:hover {
    transform: translateY(-10px);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1024px) {
    .about-flex {
        gap: 50px;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 5%;
    }

    .about-flex {
        flex-direction: column;
    }

    .about-text,
    .about-visual {
        width: 100%;
        min-width: unset;
    }

    .about-text h2 {
        font-size: 2.1rem;
    }
}

/* Shimmer Animation on Feature Items */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: translateX(-100%);
}

.feature-item:hover::after {
    animation: shimmer 2s infinite;
}

/* callback form */


.callback-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
}

.callback-wrapper {
    display: flex;
    max-width: 1000px;
    width: 100%;
    background: var(--wz-dark);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

/* Left Brand Panel */
.brand-panel {
    flex: 1;
    background: #fff;
    padding: 60px;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mini-logo img {
    height: 55px;
    margin-bottom: 30px;
}

.brand-panel h2 {
    color: #373737;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.highlight {
    color: var(--wz-red);
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #696969;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-list i {
    color: var(--wz-red);
}

/* Right Form Panel */
.form-panel {
    flex: 1.2;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);

    padding: 60px;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--wz-red);
    margin-bottom: 5px;
}

.form-header p {
    color: #777;
    margin-bottom: 40px;
}

/* Modern Floating Labels */
.floating-group {
    position: relative;
    margin-bottom: 30px;
}

.floating-group input,
.floating-group select {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #ddd;
    font-size: 1rem;
    outline: none;
    background: transparent;
    transition: 0.3s;
    color: #fff;
}

.floating-group option {
    color: #000;
}

.floating-group label {
    position: absolute;
    top: 15px;
    left: 0;
    color: #999;
    pointer-events: none;
    transition: 0.3s ease all;
}

.floating-group input:focus~label,
.floating-group input:not(:placeholder-shown)~label,
.floating-group select:focus~label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--wz-red);
    font-weight: bold;
}

.floating-group input:focus {
    border-bottom-color: var(--wz-red);
}

/* The Glimmer Button */
.glimmer-btn {
    width: 100%;
    background: var(--wz-red);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.glimmer-btn:hover {
    transform: translateY(-3px);
}

.glimmer-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: 0.6s;
}

.glimmer-btn:hover::after {
    left: 120%;
}

/* footer */
:root {
    --wz-red: #a11d26;
    --wz-deep: #08090a;
    --wz-accent: rgba(255, 255, 255, 0.05);
}

.zen-footer-v3 {
    background: var(--wz-deep);
    color: #fff;
    padding: 100px 0 50px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* The requested border */
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Part 1: Top Row Branding */
.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--wz-accent);
}

.logo-white-plate {
    background: #fff;
    display: inline-flex;
    padding: 15px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.logo-white-plate img {
    height: 40px;
}

.footer-brand-hero h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
}

.red-velocity {
    color: var(--wz-red);
    text-shadow: 0 0 30px rgba(161, 29, 38, 0.2);
}

/* Part 2: Main Grid */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.col-title {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 25px;
}

.footer-address,
.phone-link {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: normal;
    color: #eee;
}

.view-map {
    display: block;
    margin-top: 10px;
    color: var(--wz-red);
    font-size: 0.9rem;
    cursor: pointer;
}

.phone-link {
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.phone-link:hover {
    color: var(--wz-red);
}

.availability {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 5px;
}

/* Social Pills */
.social-pills {
    display: flex;
    gap: 15px;
}

.pill {
    width: 50px;
    height: 50px;
    background: var(--wz-accent);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pill:hover {
    background: var(--wz-red);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 30px rgba(161, 29, 38, 0.4);
}

/* Part 3: Bottom Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

.bottom-legal a {
    color: inherit;
    text-decoration: none;
    margin-left: 20px;
}

.footer-contact-fast a {
    color: var(--wz-red);
}

.bottom-legal a:hover {
    color: #fff;
}

/* back to top */

.wz-back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    /* Hidden by default */
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.wz-back-to-top i {
    color: #a11d26;
    /* WebZen Red */
    font-size: 1.1rem;
    transition: transform 0.3s;
}

/* Visibility Toggle */
.wz-back-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 50px;
    /* Slight lift animation */
}

/* Hover Effects */
.wz-back-to-top:hover {
    background: #a11d26;
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(161, 29, 38, 0.3);
}

.wz-back-to-top:hover i {
    color: #ffffff;
    transform: translateY(-3px);
}

/* Progress Ring (Optional decoration) */
.progress-ring {
    position: absolute;
    top: 1px;
    left: 1px;
    pointer-events: none;
}

/* responsive */

/* ==========================================================================
   COMPLETE RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* --- Tablet & Small Laptops (Max 1024px) --- */
@media (max-width: 1024px) {
    .nav-container {
        width: 95%;
    }
    
    .nav-links {
        gap: 20px;
    }

    .footer-main-grid {
        grid-template-columns: 1fr 1fr; /* Stack social column below address/phone */
        gap: 40px;
    }

    .footer-brand-hero h2 {
        font-size: 2.5rem;
    }
}

/* --- Mobile Devices (Max 768px) --- */
@media (max-width: 768px) {
    /* Header Adjustments */
    .webzen-header {
        height: 70px; /* Slimmer header for mobile */
    }

    .logo-pedestal {
        padding: 15px 20px;
    }

    .logo-img {
        height: 40px;
    }

    /* Hide Desktop Nav - Suggested: Add a hamburger menu later */
    .main-nav {
        display: none; /* Mobile users usually use the 'Let's Talk' button or hamburger */
    }

   

    .contact-pill {
        padding: 8px;
    }

    /* Hero Section */
    .hero {
        padding: 0 5%;
    }

    .hero h1 {
        font-size: 2.8rem;
        margin-top: 40px;
    }

    /* About Section */
    .about-flex {
        flex-direction: column;
        gap: 40px;
    }

    .about-text, .about-visual {
        flex: none;
        width: 100%;
        min-width: 100%;
    }

    .bento-grid {
        grid-template-columns: 1fr; /* Single column stats */
    }

    .bento-box.wide {
        grid-column: span 1;
    }

    /* Callback Form */
    .callback-wrapper {
        flex-direction: column;
        border-radius: 20px;
    }

    .brand-panel, .form-panel {
        padding: 40px 30px;
    }

    .brand-panel h2 {
        font-size: 1.8rem;
    }

    /* Services Grid */
    .grid-container {
        grid-template-columns: 1fr; /* One service per row */
    }

    /* Footer */
    .footer-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-main-grid {
        grid-template-columns: 1fr; /* Stack everything */
        gap: 30px;
    }

    .footer-brand-hero h2 {
        font-size: 2rem;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* --- Tiny Screens (Max 480px) --- */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .feature-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }

    .wz-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

        .about {
        padding: 50px 5%;
    }

    .services {
    padding: 50px 5%;
    }

    .callback-hero {
    padding: 50px 20px;
    }

    .zen-footer-v3 {
        padding: 50px 0 50px;
    }

    .footer-top-row {
        padding-bottom: 0px;
    }
}