/* =====================================================
   SASWORK.IN - Printing & IT Solution
   Black and Yellow Theme
   ===================================================== */

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

:root {
    --primary-color: #0a0e27;
    --secondary-color: #00ff41;
    --accent-color: #00ffff;
    --text-color: #e0e0e0;
    --light-bg: #0f1419;
    --white: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --neon-pink: #ff006e;
    --neon-purple: #8338ec;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--primary-color);
    cursor: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   NAVIGATION BAR
   ===================================================== */

.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    border-bottom: 2px solid var(--secondary-color);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
}

.logo h1 span {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 5px 0;
    transition: var(--transition);
    box-shadow: 0 0 10px var(--accent-color);
}

/* =====================================================
   STICKY BUTTONS
   ===================================================== */

.sticky-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    animation: bounce 2s infinite;
    border: 2px solid var(--secondary-color);
}

.sticky-btn svg {
    width: 30px;
    height: 30px;
}

.call-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.call-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.8);
}

.whatsapp-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.whatsapp-btn:hover {
    background-color: #00ffff;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f1419 100%);
    color: var(--white);
    padding: 150px 20px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: inset 0 0 50px rgba(0, 255, 65, 0.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 600px;
    height: 600px;
    background-color: var(--secondary-color);
    opacity: 0.08;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 0 0 20px var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.8);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
    border-color: var(--accent-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.8);
}

/* =====================================================
   SECTIONS
   ===================================================== */

section {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.6), 0 0 15px rgba(0, 255, 255, 0.3);
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */

.about {
    background-color: var(--light-bg);
}

.about-text {
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: rgba(0, 255, 65, 0.05);
    border-radius: var(--border-radius);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
    border-left: 3px solid var(--secondary-color);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
}

/* =====================================================
   SERVICES OVERVIEW
   ===================================================== */

.services-overview {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, rgba(0, 255, 255, 0.05) 100%);
    color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
    border-top: 4px solid var(--secondary-color);
    border: 2px solid rgba(0, 255, 65, 0.3);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.5), 0 0 20px rgba(0, 255, 255, 0.3);
    border-color: var(--secondary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
}

.service-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* =====================================================
   DETAILED SERVICES SECTION
   ===================================================== */

.printing-section,
.design-section,
.online-services {
    background-color: var(--light-bg);
}

.services-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-item {
    background-color: rgba(0, 255, 65, 0.05);
    padding: 25px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.4);
    background-color: rgba(0, 255, 65, 0.1);
    border-left-color: var(--accent-color);
}

.service-item h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.4);
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */

.contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f1419 100%);
    color: var(--white);
    box-shadow: inset 0 0 50px rgba(0, 255, 65, 0.1);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.info-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
    text-shadow: 0 0 10px var(--secondary-color);
}

.info-item a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
    text-shadow: 0 0 10px var(--secondary-color);
}

.contact-form {
    background-color: rgba(0, 255, 65, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(0, 255, 65, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: var(--border-radius);
    background-color: rgba(0, 255, 65, 0.05);
    color: var(--text-color);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
}

.form-group select option {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background-color: #050810;
    color: var(--text-color);
    padding: 50px 20px 20px;
    border-top: 2px solid var(--secondary-color);
    box-shadow: inset 0 20px 40px rgba(0, 255, 65, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    padding-bottom: 30px;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-shadow: 0 0 10px var(--secondary-color);
}

.footer-section a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    color: var(--text-color);
    font-size: 0.9rem;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        padding: 20px;
        gap: 10px;
    }

    .hero {
        padding: 100px 20px;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    section {
        padding: 50px 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .sticky-buttons {
        right: 10px;
        bottom: 10px;
        gap: 10px;
    }

    .sticky-btn {
        width: 50px;
        height: 50px;
    }

    .sticky-btn svg {
        width: 25px;
        height: 25px;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

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

    .services-detailed {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .sticky-buttons {
        right: 10px;
        bottom: 10px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */

.text-center {
    text-align: center;
}

.mt {
    margin-top: 20px;
}

.hidden {
    display: none;
}

/* =====================================================
   NEON CURSOR CIRCLE
   ===================================================== */

.cursor-circle {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    box-shadow: 0 0 15px var(--secondary-color), inset 0 0 10px rgba(0, 255, 65, 0.3);
    transform: translate(-50%, -50%);
}

.cursor-circle.active {
    box-shadow: 0 0 25px var(--secondary-color), inset 0 0 15px rgba(0, 255, 65, 0.5);
}
