/* 
  A1 ONE DIGITALS & Stickering - Ultra Premium Bright UI 
  Theme: Vibrant, Clean, Engaging (White, Navy Blue, Crimson Red)
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Brand Colors based on the Logo */
    --primary-blue: #0b1f4b; /* Deep Navy from "ONE" text */
    --primary-red: #ea232a;  /* Bright Red from "A1" */
    --light-blue: #00a4e4;   /* Cyan from the 3D logo */
    
    /* UI Colors */
    --bg-base: #f4f7fb;      /* Very soft, cool tinted white body */
    --bg-surface: #ffffff;   /* Pure white cards */
    --bg-element: #f8fafc;
    
    /* Typography */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    /* Accent & Action */
    --wa-green: #25D366;
    --wa-green-hover: #1ea952;
    
    /* Neumorphic / Glass effects for Light Theme */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    
    /* Soft Premium Shadows */
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 15px 35px rgba(11, 31, 75, 0.08); /* Tinted shadow */
    --shadow-hover: 0 25px 50px rgba(11, 31, 75, 0.12), 0 0 20px rgba(234, 35, 42, 0.08);
    
    --border-radius: 24px;
    --transition-fast: all 0.25s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 85px; /* Mobile nav space */
}

/* Background Abstract Shapes for Lively Feel */
.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
    background: var(--bg-base);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: floatOrb 25s infinite alternate ease-in-out;
}

.orb-1 {
    top: -15%; left: -10%;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(0,164,228,0.15) 0%, transparent 70%);
}

.orb-2 {
    bottom: -10%; right: -10%;
    width: 70vw; height: 70vw;
    background: radial-gradient(circle, rgba(234,35,42,0.1) 0%, transparent 70%);
    animation-delay: -5s;
}

.orb-3 {
    top: 40%; left: 40%;
    width: 40vw; height: 40vw;
    background: radial-gradient(circle, rgba(11,31,75,0.08) 0%, transparent 70%);
    animation-delay: -10s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(3%, 8%) scale(1.1); }
    100% { transform: translate(-3%, -5%) scale(0.9); }
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 3.2rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.primary-text {
    color: var(--primary-red);
    position: relative;
    display: inline-block;
}

.primary-text::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0;
    width: 100%; height: 8px;
    background: rgba(234,35,42,0.2);
    z-index: -1;
    border-radius: 4px;
    transform: rotate(-1deg);
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
}

/* Bright Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 1.05rem;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-fast);
    z-index: -1;
}

.btn:hover::after {
    left: 100%;
    transition: left 0.6s ease;
}

.btn-lg {
    padding: 18px 46px;
    font-size: 1.15rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), #c81d24);
    color: white;
    box-shadow: 0 10px 25px rgba(234,35,42,0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(234,35,42,0.4);
}

.btn-glass {
    background: white;
    color: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(11,31,75,0.1);
    border: 2px solid transparent;
}

.btn-glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(11,31,75,0.15);
    color: var(--primary-red);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--wa-green), #1bb846);
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-outline {
    background: white;
    color: var(--wa-green);
    border: 2px solid var(--wa-green);
    padding: 10px 24px;
    border-radius: 30px;
    width: 100%;
}

.btn-whatsapp-outline:hover {
    background: var(--wa-green);
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    border-color: transparent;
}

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

/* Bright Top Contact Bar */
.top-bar {
    background: var(--primary-blue);
    color: white;
    font-size: 0.9rem;
    padding: 12px 0;
    font-weight: 500;
}

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

.top-bar i {
    color: var(--light-blue);
    margin-right: 8px;
    font-size: 1.1rem;
}

.top-bar-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.social-icons a {
    color: white;
    margin-left: 15px;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    color: var(--light-blue);
    transform: translateY(-3px) scale(1.1);
}

/* Light Glassmorphism Header */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255,255,255,0.6);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 45px;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: var(--transition-fast);
    position: relative;
    font-size: 1.05rem;
}

.desktop-nav a:hover, .desktop-nav a.active {
    color: var(--primary-red);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--primary-red);
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.desktop-nav a:hover::after, .desktop-nav a.active::after {
    width: 100%;
}

/* Engaging Hero Section - Bright & Vibrant */
.hero {
    position: relative;
    height: 90vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1600861195091-690c90f3c6ce?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-subtitle {
    display: inline-block;
    padding: 10px 28px;
    background: white;
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 35px;
    box-shadow: 0 10px 25px rgba(11,31,75,0.08);
}

.hero h2 {
    font-size: 5.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--primary-blue);
}

.gradient-text {
    background: linear-gradient(to right, var(--primary-red), var(--light-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.45rem;
    margin-bottom: 50px;
    color: var(--text-secondary);
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(11,31,75,0.1);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-blue);
    background: white;
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(11,31,75,0.05);
}

.badge-item i {
    color: var(--primary-red);
    font-size: 1.4rem;
}

/* Beautiful Floating Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--bg-surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.8);
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    z-index: 2;
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f8fafc;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 2;
}

.product-badge.hot { background: var(--primary-red); }
.product-badge.premium { background: var(--primary-blue); margin-right: 20px; }
.product-badge.new { background: var(--light-blue); }

.product-details {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    background: white;
}

.product-category {
    font-size: 0.85rem;
    color: var(--light-blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.product-details h3 {
    font-size: 1.6rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.product-details p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    flex-grow: 1;
    margin-bottom: 30px;
    line-height: 1.7;
}

.product-footer {
    border-top: 1px solid rgba(11,31,75,0.05);
    padding-top: 25px;
}

/* Call to Action Banner - Rich & Engaging */
.banner-section {
    margin: 60px 24px;
    border-radius: 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a8a 100%);
    padding: 90px 60px;
    color: white;
    box-shadow: 0 25px 50px rgba(11,31,75,0.25);
    position: relative;
    overflow: hidden;
}

.banner-section::after {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,164,228,0.4) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 0;
}

.banner-section::before {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(234,35,42,0.4) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 0;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.banner-text h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 900;
    letter-spacing: -1px;
}

.banner-text p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 650px;
    font-weight: 500;
}

.banner-action .btn {
    background: white;
    color: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.banner-action .btn:hover {
    background: var(--primary-red);
    color: white;
    box-shadow: 0 15px 35px rgba(234,35,42,0.4);
}

/* Enhanced Contact Section - Bright & Trustworthy */
.contact-card {
    background: white;
    border-radius: 40px;
    box-shadow: var(--shadow-md);
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(11,31,75,0.05);
}

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background: #fdfdfd;
    color: var(--primary-blue);
    position: relative;
}

.contact-badge {
    display: inline-block;
    background: rgba(0,164,228,0.1);
    color: var(--light-blue);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info h2 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    font-weight: 900;
    letter-spacing: -1px;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-size: 1.25rem;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 45px;
    transition: var(--transition-fast);
}

.info-list li:hover {
    transform: translateX(10px);
}

.icon-box {
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-red);
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(234,35,42,0.15);
    transition: var(--transition-smooth);
}

.info-list li:hover .icon-box {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.wa-icon {
    color: var(--wa-green);
    box-shadow: 0 10px 25px rgba(37,211,102,0.15);
}

.info-list li:hover .wa-icon {
    background: var(--wa-green);
    color: white;
}

.info-list strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--primary-blue);
    font-weight: 800;
}

.info-list p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    position: relative;
    min-height: 600px;
}

/* Bright Footer */
.footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    margin-top: 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 50px;
}

.footer-brand h2 {
    font-weight: 900;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -1px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 350px;
    font-size: 1.15rem;
}

.footer-links {
    min-width: 200px;
}

.footer-links h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 800;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 1.15rem;
}

.footer-links a:hover {
    color: var(--light-blue);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 1.05rem;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
}

.float-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.float-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

.wa-btn {
    background: linear-gradient(135deg, var(--wa-green), #1ea952);
}

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

.call-btn:hover {
    background: var(--primary-blue);
    color: white;
}

/* Mobile Bottom Navigation - Bright UI */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(11,31,75,0.15);
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
    padding: 15px 10px;
    border-radius: 40px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition-fast);
    flex: 1;
    position: relative;
}

.nav-item i {
    font-size: 1.5rem;
    margin-bottom: 6px;
    transition: var(--transition-fast);
}

.nav-item.active {
    color: var(--primary-blue);
}

.nav-item.active i {
    color: var(--primary-red);
    transform: translateY(-4px) scale(1.1);
}

.m-wa-btn {
    flex: 0.8;
    position: relative;
    top: -30px;
}

.center-btn {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--wa-green), #1ea952);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    border: 6px solid var(--bg-surface);
    transition: var(--transition-smooth);
}

.center-btn i {
    font-size: 2.2rem;
    margin: 0;
}

/* Responsive Masterclass */
@media (max-width: 1200px) {
    .hero h2 { font-size: 4.8rem; }
}

@media (max-width: 1024px) {
    .contact-card { flex-direction: column; }
    .contact-map { min-height: 400px; }
    .hero h2 { font-size: 4.2rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .top-bar, .desktop-only, .floating-actions, .desktop-nav { display: none; }
    
    .logo-container { padding: 5px 15px !important; }
    .logo { height: 75px !important; }
    
    .hero { height: 85vh; min-height: 650px; }
    .hero h2 { font-size: 3.2rem; letter-spacing: -0.5px; }
    .hero p { font-size: 1.25rem; }
    
    .hero-buttons { flex-direction: column; width: 100%; max-width: 350px; margin: 0 auto 50px auto; }
    .trust-badges { flex-direction: column; gap: 20px; align-items: center; }
    
    .mobile-bottom-bar { display: flex; }
    
    .banner-section { margin: 40px 15px; padding: 60px 40px; border-radius: 30px; }
    .banner-content { flex-direction: column; text-align: center; }
    .banner-text h2 { font-size: 2.5rem; }
    
    .section { padding: 90px 0; }
    .section-title h2 { font-size: 2.8rem; }
    
    .contact-info { padding: 60px 40px; }
    .contact-info h2 { font-size: 2.6rem; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; }
    .hero h2 { font-size: 2.6rem; }
    .banner-text h2 { font-size: 2rem; }
    .contact-info { padding: 50px 25px; }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-up {
    animation: fadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.pulse-anim {
    animation: pulse 2.5s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
