/* ============================================
   ARMAN GRAPHICS - Printing & Branding
   CMYK Theme Stylesheet

   ✏️ HOW TO EDIT:
   - Colors: Change CSS variables in :root below
   - Fonts: Update font-family values
   - Spacing: Adjust padding/margin values
   
   CMYK COLOR GUIDE:
   Cyan:    #00B5E2
   Magenta: #D6007F
   Yellow:  #FFD100
   Black:   #1A1A1A
   White:   #FFFFFF
   ============================================ */

/* ---- CMYK COLOR & THEME VARIABLES ---- */
/* ✏️ Change these to customize your website colors */
:root {
    /* CMYK Core Colors */
    --cyan: #00B5E2;
    --magenta: #D6007F;
    --yellow: #FFD100;
    --black: #1A1A1A;

    /* Primary = Cyan */
    --primary: #00B5E2;
    --primary-dark: #0095BC;
    --primary-light: #33C4E8;

    /* Accent = Magenta */
    --accent: #D6007F;
    --accent-dark: #B0006A;
    --accent-light: #E6339F;

    /* Highlight = Yellow */
    --highlight: #FFD100;

    --success: #10b981;
    --danger: #ef4444;

    /* Light Backgrounds */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F7FA;
    --bg-tertiary: #EEF1F6;

    /* Light Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.07);
    --glass-hover: rgba(0, 181, 226, 0.06);

    /* Text Colors (dark text on light bg) */
    --text-white: #1A1A1A;
    --text-light: #2D3748;
    --text-muted: #718096;
    --text-dark: #A0AEC0;

    /* CMYK Gradients */
    --gradient-primary: linear-gradient(135deg, #00B5E2, #D6007F);
    --gradient-accent: linear-gradient(135deg, #D6007F, #FFD100);
    --gradient-cmyk: linear-gradient(90deg, #00B5E2, #D6007F, #FFD100, #1A1A1A);
    --gradient-hero: linear-gradient(135deg, #FFFFFF 0%, #E8F7FC 30%, #FFF0F7 60%, #FFFEF5 100%);

    /* Shadows (lighter for light theme) */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(0, 181, 226, 0.15);

    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---- CMYK TOP BAR (printing industry style) ---- */
/* ✏️ This bar gives a printing/CMYK identity to the site */
.cmyk-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        #00B5E2 0%, #00B5E2 25%,
        #D6007F 25%, #D6007F 50%,
        #FFD100 50%, #FFD100 75%,
        #1A1A1A 75%, #1A1A1A 100%);
    z-index: 10001;
}

/* ---- LOADING SCREEN ---- */
.loader {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-primary);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-spinner {
    width: 50px; height: 50px;
    border: 3px solid var(--bg-tertiary);
    border-top-color: var(--cyan);
    border-right-color: var(--magenta);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
.loader-text {
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- HEADER / NAVIGATION ---- */
.header {
    position: fixed; top: 4px; left: 0;
    width: 100%; z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; }

/* ---- LOGO (Image) ---- */
/* ✏️ Adjust logo size here */
.logo { display: flex; align-items: center; gap: 8px; }
.logo-img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}
.header.scrolled .logo-img { height: 38px; }
/* Fallback text logo if image fails */
.logo-fallback {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem; font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: none;
}
.logo-fallback span { -webkit-text-fill-color: var(--accent); }

.nav-links { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-links a {
    color: var(--text-muted); font-size: 0.9rem;
    font-weight: 500; position: relative; padding: 5px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-white); }
.nav-links a::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 5px; z-index: 1001;
    background: none; border: none;
}
.hamburger span {
    width: 25px; height: 2px;
    background: var(--text-white);
    transition: var(--transition);
    display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-overlay {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 998; opacity: 0;
    visibility: hidden; transition: var(--transition);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ---- HERO SECTION ---- */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    background: var(--gradient-hero);
    position: relative; overflow: hidden; padding-top: 84px;
}
.hero::before {
    content: ''; position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0, 181, 226, 0.08), transparent 70%);
    top: 5%; right: 5%;
    animation: heroFloat 8s ease-in-out infinite;
}
.hero::after {
    content: ''; position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(214, 0, 127, 0.06), transparent 70%);
    bottom: 5%; left: 5%;
    animation: heroFloat 10s ease-in-out infinite reverse;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; max-width: 850px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0, 181, 226, 0.1);
    border: 1px solid rgba(0, 181, 226, 0.2);
    padding: 8px 20px; border-radius: 50px;
    font-size: 0.85rem; color: var(--primary-dark);
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease;
}
.hero h1 {
    font-size: 3.5rem; margin-bottom: 20px;
    color: var(--text-white);
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero h1 .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.15rem; color: var(--text-muted);
    margin-bottom: 35px; max-width: 600px;
    margin-left: auto; margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-buttons {
    display: flex; gap: 15px;
    justify-content: center; flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-stats {
    display: flex; justify-content: center; gap: 50px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease 0.8s both;
}
.hero-stat { text-align: center; }
.hero-stat .number {
    font-size: 2rem; font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-stat .label { font-size: 0.85rem; color: var(--text-muted); }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 50px;
    font-weight: 600; font-size: 0.95rem;
    cursor: pointer; border: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    text-align: center; justify-content: center;
}
.btn-primary {
    background: var(--gradient-primary); color: white;
    box-shadow: 0 4px 15px rgba(0, 181, 226, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(0, 181, 226, 0.4); }
.btn-accent {
    background: var(--gradient-accent); color: white;
    box-shadow: 0 4px 15px rgba(214, 0, 127, 0.3);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(214, 0, 127, 0.4); }
.btn-outline {
    background: transparent; color: var(--text-white);
    border: 2px solid var(--glass-border);
}
.btn-outline:hover { background: var(--glass-hover); border-color: var(--primary); transform: translateY(-2px); color: var(--primary); }
.btn-whatsapp {
    background: #25D366; color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-highlight {
    background: var(--highlight); color: var(--black);
    box-shadow: 0 4px 15px rgba(255, 209, 0, 0.3);
    font-weight: 700;
}
.btn-highlight:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(255, 209, 0, 0.4); }

/* ---- GRADIENT TEXT ---- */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- OFFER BANNER ---- */
.offer-banner {
    background: var(--gradient-primary);
    padding: 20px 0; text-align: center;
    position: relative; overflow: hidden;
}
.offer-banner::before {
    content: ''; position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.04) 10px, rgba(255,255,255,0.04) 20px);
    animation: moveStripes 20s linear infinite;
}
@keyframes moveStripes { 0% { transform: translate(0,0); } 100% { transform: translate(28px,0); } }
.offer-content {
    position: relative; z-index: 2;
    display: flex; align-items: center;
    justify-content: center; gap: 25px; flex-wrap: wrap;
}
.offer-content h3 { font-size: 1.1rem; color: white; }
.offer-price {
    font-size: 2.2rem; font-weight: 800; color: var(--highlight);
    animation: pulse 2s infinite;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.countdown { display: flex; gap: 10px; }
.countdown-item {
    background: rgba(0,0,0,0.15);
    padding: 8px 12px; border-radius: 8px;
    text-align: center; min-width: 60px;
}
.countdown-item .number {
    font-size: 1.4rem; font-weight: 700;
    color: white; display: block;
}
.countdown-item .label {
    font-size: 0.6rem; color: rgba(255,255,255,0.8);
    text-transform: uppercase; letter-spacing: 1px;
}

/* ---- SECTION STYLES ---- */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.2rem; color: var(--text-white); margin-bottom: 15px; }
.section-header h2 .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-header p { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* ---- SEARCH & FILTER ---- */
.search-filter {
    display: flex; gap: 15px; margin-bottom: 40px;
    flex-wrap: wrap; justify-content: center; align-items: center;
}
.search-box { position: relative; flex: 1; max-width: 400px; min-width: 250px; }
.search-box input {
    width: 100%; padding: 12px 20px 12px 45px;
    background: white; border: 1px solid var(--glass-border);
    border-radius: 50px; color: var(--text-white);
    font-size: 0.9rem; outline: none;
    transition: var(--transition); font-family: 'Inter', sans-serif;
    box-shadow: var(--shadow-sm);
}
.search-box input:focus { border-color: var(--primary); box-shadow: 0 0 20px rgba(0, 181, 226, 0.12); }
.search-box input::placeholder { color: var(--text-dark); }
.search-box i {
    position: absolute; left: 18px; top: 50%;
    transform: translateY(-50%); color: var(--text-dark);
}
.filter-btns { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.filter-btn {
    padding: 8px 18px; background: white;
    border: 1px solid var(--glass-border); border-radius: 50px;
    color: var(--text-muted); font-size: 0.85rem;
    cursor: pointer; transition: var(--transition);
    font-family: 'Inter', sans-serif;
    box-shadow: var(--shadow-sm);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active {
    background: var(--gradient-primary); color: white;
    border-color: transparent; box-shadow: 0 4px 15px rgba(0, 181, 226, 0.25);
}

/* ---- PRODUCT CARDS ---- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
.product-card {
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden; transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 181, 226, 0.15);
    border-color: rgba(0, 181, 226, 0.3);
}

/* ---- PRODUCT IMAGE & HOVER EFFECT ---- */
/* ✏️ Images swap on hover after 1.5 seconds delay */
.product-image {
    height: 220px; display: flex;
    align-items: center; justify-content: center;
    position: relative; overflow: hidden; cursor: pointer;
}
.product-image .img-primary,
.product-image .img-alt {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    transition: opacity 0.8s ease, transform 0.5s ease;
}
.product-image .img-alt {
    opacity: 0;
}
/* JS adds 'show-alt' class after 1.5s hover delay */
.product-card.show-alt .product-image .img-primary {
    opacity: 0;
    transform: scale(1.05);
}
.product-card.show-alt .product-image .img-alt {
    opacity: 1;
}
/* Regular hover zoom (before alt image swap) */
.product-card:hover .product-image .img-primary:not(.fading) {
    transform: scale(1.08);
}
/* Hover hint indicator */
.product-image .hover-hint {
    position: absolute;
    bottom: 10px; left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white; font-size: 0.7rem;
    padding: 4px 12px; border-radius: 20px;
    opacity: 0; transition: opacity 0.3s ease;
    z-index: 4; white-space: nowrap;
    backdrop-filter: blur(5px);
}
.product-card:hover .product-image .hover-hint {
    opacity: 1;
}
.product-card.show-alt .product-image .hover-hint {
    opacity: 0;
}
/* Placeholder icon fallback when no image */
.product-image .placeholder-icon { font-size: 3.5rem; color: rgba(255,255,255,0.6); z-index: 2; }
/* Offer badge on card */
.product-offer-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--gradient-accent); color: white;
    padding: 4px 14px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 700;
    z-index: 5; animation: pulse 2s infinite;
}

/* ---- PRODUCT INFO ---- */
.product-info { padding: 20px; }
.product-category {
    font-size: 0.75rem; color: var(--primary);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
    font-weight: 600;
}
.product-name { font-size: 1.1rem; font-weight: 600; color: var(--text-white); margin-bottom: 8px; }
.product-description { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 15px; line-height: 1.5; }
.product-footer {
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
/* Order Now button - Full width, no price */
.btn-order {
    width: 100%;
    padding: 10px 18px; background: #25D366; color: white;
    border: none; border-radius: 25px; font-size: 0.85rem;
    font-weight: 600; cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; gap: 6px;
    font-family: 'Inter', sans-serif;
    justify-content: center;
}
.btn-order:hover { background: #128C7E; transform: scale(1.03); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }

/* ---- WHY CHOOSE US ---- */
.why-section { background: var(--bg-secondary); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}
.feature-card {
    background: white; border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg); padding: 30px;
    text-align: center; transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 181, 226, 0.3);
    box-shadow: 0 8px 30px rgba(0, 181, 226, 0.12);
}
.feature-icon {
    width: 65px; height: 65px;
    background: var(--gradient-primary); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 1.5rem; color: white;
}
.feature-card h3 { font-size: 1.1rem; color: var(--text-white); margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ---- PORTFOLIO ---- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.portfolio-item {
    height: 250px; border-radius: var(--radius-lg);
    overflow: hidden; position: relative;
    cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.portfolio-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.portfolio-item .portfolio-icon {
    font-size: 3rem; color: rgba(255,255,255,0.3);
    transition: var(--transition);
}
.portfolio-item:hover .portfolio-icon { transform: scale(1.2); color: rgba(255,255,255,0.5); }
.portfolio-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 25px; transform: translateY(100%);
    transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { transform: translateY(0); }
.portfolio-overlay h4 { color: white; font-size: 1rem; margin-bottom: 4px; }
.portfolio-overlay p { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--bg-secondary); }
.testimonials-slider { overflow: hidden; position: relative; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card { min-width: 100%; padding: 0 20px; }
.testimonial-content {
    background: white; border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg); padding: 40px;
    text-align: center; max-width: 700px;
    margin: 0 auto; box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: var(--highlight); font-size: 1.2rem; margin-bottom: 20px; }
.testimonial-text {
    font-size: 1.05rem; color: var(--text-light);
    line-height: 1.8; margin-bottom: 20px; font-style: italic;
}
.testimonial-author { font-weight: 600; color: var(--text-white); font-size: 1rem; }
.testimonial-role { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.testimonial-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--bg-tertiary); cursor: pointer;
    transition: var(--transition); border: none;
}
.testimonial-dot.active { background: var(--primary); width: 30px; border-radius: 5px; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 25px; }
.contact-item { display: flex; gap: 15px; align-items: flex-start; }
.contact-icon {
    width: 50px; height: 50px; min-width: 50px;
    background: var(--gradient-primary); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.1rem;
}
.contact-item h4 { font-size: 0.95rem; color: var(--text-white); margin-bottom: 4px; }
.contact-item p { font-size: 0.85rem; color: var(--text-muted); }
.contact-form {
    background: white; border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg); padding: 35px;
    box-shadow: var(--shadow-md);
}
.contact-form h3 { color: var(--text-white); margin-bottom: 25px; font-size: 1.2rem; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.85rem;
    color: var(--text-muted); margin-bottom: 8px; font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius); color: var(--text-white);
    font-size: 0.9rem; outline: none;
    transition: var(--transition); font-family: 'Inter', sans-serif;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 181, 226, 0.12);
    background: white;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dark); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: white; color: var(--text-light); }

/* ---- FOOTER (Dark section for contrast) ---- */
.footer {
    background: var(--black);
    border-top: none;
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 40px;
}
.footer-brand h3 {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 15px;
}
.footer-brand p { color: #A0AEC0; font-size: 0.9rem; margin-bottom: 20px; line-height: 1.7; }
.social-links { display: flex; gap: 10px; }
.social-link {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; display: flex;
    align-items: center; justify-content: center;
    color: #A0AEC0; transition: var(--transition);
    font-size: 1rem;
}
.social-link:hover {
    background: var(--gradient-primary); color: white;
    border-color: transparent; transform: translateY(-3px);
}
.footer-col h4 { font-size: 1rem; color: white; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #A0AEC0; font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--primary-light); padding-left: 5px; }
.footer-bottom {
    text-align: center; padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #718096; font-size: 0.85rem;
}
.footer-bottom a { color: var(--primary-light); }
.footer-bottom a:hover { color: var(--primary); }

/* ---- FLOATING BUTTONS ---- */
.floating-whatsapp {
    position: fixed; bottom: 25px; right: 25px;
    width: 58px; height: 58px; background: #25D366;
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    color: white; font-size: 1.6rem;
    cursor: pointer; z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
    border: none;
}
.floating-whatsapp:hover { transform: scale(1.1); }
@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.back-to-top {
    position: fixed; bottom: 25px; left: 25px;
    width: 45px; height: 45px;
    background: var(--gradient-primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.1rem;
    cursor: pointer; z-index: 999;
    opacity: 0; visibility: hidden;
    transition: var(--transition); border: none;
    box-shadow: 0 4px 15px rgba(0, 181, 226, 0.3);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

/* ---- LIGHTBOX / IMAGE POPUP ---- */
.lightbox {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.92);
    display: flex; align-items: center; justify-content: center;
    z-index: 10000; opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
    max-width: 90%; max-height: 85vh;
    border-radius: var(--radius); object-fit: contain;
}
.lightbox-close {
    position: absolute; top: 20px; right: 25px;
    color: white; font-size: 1.5rem; cursor: pointer;
    width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255,255,255,0.1);
    transition: var(--transition); border: none;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ---- SCROLL ANIMATIONS ---- */
.animate-on-scroll {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }

/* Staggered animations for grid children */
.products-grid .product-card:nth-child(1) { transition-delay: 0.05s; }
.products-grid .product-card:nth-child(2) { transition-delay: 0.1s; }
.products-grid .product-card:nth-child(3) { transition-delay: 0.15s; }
.products-grid .product-card:nth-child(4) { transition-delay: 0.2s; }
.products-grid .product-card:nth-child(5) { transition-delay: 0.25s; }
.products-grid .product-card:nth-child(6) { transition-delay: 0.3s; }

/* ---- NO PRODUCTS ---- */
.no-products {
    text-align: center; padding: 60px 20px;
    color: var(--text-muted); grid-column: 1 / -1;
}
.no-products i { font-size: 3rem; margin-bottom: 15px; display: block; color: var(--text-dark); }
.no-products h3 { color: var(--text-muted); margin-bottom: 8px; }

/* ============================================
   ADMIN PAGE STYLES (CMYK Theme)
   ============================================ */
.admin-login {
    min-height: 100vh; display: flex;
    align-items: center; justify-content: center; padding: 20px;
    background: var(--bg-secondary);
}
.login-card {
    background: white; border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg); padding: 40px;
    width: 100%; max-width: 420px;
    box-shadow: var(--shadow-md); text-align: center;
}
.login-card .login-icon {
    width: 70px; height: 70px;
    background: var(--gradient-primary); border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 1.8rem; color: white;
}
.login-card h2 { font-size: 1.5rem; color: var(--text-white); margin-bottom: 8px; }
.login-card > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 30px; }
.login-error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--danger); padding: 10px;
    border-radius: var(--radius); margin-bottom: 20px;
    font-size: 0.85rem; display: none;
}
.admin-header {
    background: white;
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0; position: sticky; top: 0; z-index: 100;
    box-shadow: var(--shadow-sm);
}
.admin-header .container {
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.admin-header .logo-fallback { display: inline; font-size: 1.3rem; }
.admin-nav { display: flex; align-items: center; gap: 15px; }
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px; margin-bottom: 30px;
}
.stat-card {
    background: white; border: 1px solid var(--glass-border);
    border-radius: var(--radius); padding: 25px; text-align: center;
    box-shadow: var(--shadow-sm);
}
.stat-card .stat-icon {
    width: 45px; height: 45px;
    background: var(--gradient-primary); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px; color: white; font-size: 1.1rem;
}
.stat-card .stat-number {
    font-size: 2rem; font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-card .stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 5px; }
.admin-section { margin-bottom: 30px; }
.admin-table-wrapper {
    background: white; border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.admin-table-header {
    display: flex; align-items: center;
    justify-content: space-between; padding: 20px 25px;
    border-bottom: 1px solid var(--glass-border);
    flex-wrap: wrap; gap: 15px;
}
.admin-table-header h3 { font-size: 1.1rem; color: var(--text-white); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
    text-align: left; padding: 12px 20px;
    font-size: 0.78rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1px;
    border-bottom: 1px solid var(--glass-border);
    font-weight: 600; font-family: 'Inter', sans-serif;
    background: var(--bg-secondary);
}
.admin-table td {
    padding: 15px 20px; font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    vertical-align: middle;
}
.admin-table tr:hover td { background: var(--bg-secondary); }
.admin-table .product-thumb {
    width: 50px; height: 50px;
    border-radius: 10px; object-fit: cover;
}
.admin-table .product-thumb-placeholder {
    width: 50px; height: 50px;
    border-radius: 10px; display: flex;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 1.1rem;
}
.admin-table .actions { display: flex; gap: 8px; }
.admin-table .actions button {
    padding: 6px 14px; border: none; border-radius: 8px;
    cursor: pointer; font-size: 0.8rem; font-weight: 500;
    transition: var(--transition); font-family: 'Inter', sans-serif;
    display: inline-flex; align-items: center; gap: 5px;
}
.btn-edit { background: rgba(0, 181, 226, 0.1); color: var(--primary); }
.btn-edit:hover { background: var(--primary); color: white; }
.btn-delete { background: rgba(239, 68, 68, 0.1); color: var(--danger); }
.btn-delete:hover { background: var(--danger); color: white; }

/* Admin Modal */
.modal-overlay {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center;
    z-index: 1000; opacity: 0; visibility: hidden;
    transition: var(--transition); padding: 20px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    width: 100%; max-width: 550px;
    max-height: 90vh; overflow-y: auto;
    padding: 30px; box-shadow: var(--shadow-lg);
}
.modal::-webkit-scrollbar { width: 6px; }
.modal::-webkit-scrollbar-thumb { background: var(--bg-tertiary); border-radius: 3px; }
.modal-header {
    display: flex; align-items: center;
    justify-content: space-between; margin-bottom: 25px;
}
.modal-header h3 { font-size: 1.2rem; color: var(--text-white); margin: 0; }
.modal-close {
    width: 35px; height: 35px;
    background: var(--bg-secondary); border: 1px solid var(--glass-border);
    border-radius: 8px; color: var(--text-muted);
    cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    transition: var(--transition); font-size: 1rem;
}
.modal-close:hover { background: var(--danger); color: white; border-color: transparent; }
.image-upload {
    border: 2px dashed var(--glass-border);
    border-radius: var(--radius); padding: 30px;
    text-align: center; cursor: pointer;
    transition: var(--transition);
}
.image-upload:hover { border-color: var(--primary); background: rgba(0, 181, 226, 0.03); }
.image-upload i { font-size: 2rem; color: var(--text-dark); margin-bottom: 10px; display: block; }
.image-upload p { font-size: 0.85rem; color: var(--text-muted); }
.image-preview-wrapper { position: relative; margin-top: 10px; display: none; }
.image-preview-wrapper.active { display: block; }
.image-preview-wrapper img {
    max-height: 150px; border-radius: var(--radius);
    margin: 0 auto; display: block;
}
.image-preview-wrapper .remove-img {
    position: absolute; top: 5px; right: 5px;
    width: 28px; height: 28px;
    background: var(--danger); border: none; border-radius: 50%;
    color: white; cursor: pointer; font-size: 0.8rem;
    display: flex; align-items: center; justify-content: center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-check {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 20px;
}
.form-check input[type="checkbox"] {
    width: 18px; height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}
.form-check label { color: var(--text-muted); font-size: 0.9rem; cursor: pointer; }

/* Offer Management Section */
.offer-management {
    background: white; border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg); padding: 25px; margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}
.offer-management h3 {
    font-size: 1.1rem; color: var(--text-white); margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
}
.offer-form-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; align-items: end; }

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.8rem; }
    .hero-stats { gap: 30px; }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px; gap: 15px;
        transition: right 0.3s ease;
        border-left: 1px solid var(--glass-border);
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }
    .nav-links.open { right: 0; }
    .hamburger { display: flex; }
    .hero { padding-top: 100px; min-height: auto; padding-bottom: 60px; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 0.95rem; }
    .hero-stats { gap: 25px; }
    .hero-stat .number { font-size: 1.5rem; }
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 1.7rem; }
    .offer-content { flex-direction: column; gap: 15px; }
    .footer-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .admin-table-wrapper { overflow-x: auto; }
    .admin-table { min-width: 550px; }
    .admin-stats { grid-template-columns: 1fr 1fr; }
    .offer-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.7rem; }
    .products-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; }
    .search-filter { flex-direction: column; }
    .search-box { max-width: 100%; width: 100%; }
    .hero-stats { flex-direction: column; gap: 15px; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .admin-stats { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .countdown { gap: 6px; }
    .countdown-item { min-width: 50px; padding: 6px 8px; }
}
