/* ============================================
   N STuDiOS - Custom Printing Website Styles
   Theme: Navy Blue, White, Light Blue
   ============================================ */

/* CSS Variables */
:root {
    /* Brand Colors from Logo */
    --navy-primary: #1a237e;
    --navy-dark: #0d1642;
    --navy-light: #283593;
    --blue-accent: #3949ab;
    --blue-light: #5c6bc0;
    --sky-blue: #e8eaf6;
    --sky-light: #f5f7ff;
    --white: #ffffff;
    --off-white: #fafafa;
    --gray-light: #f0f0f0;
    --gray-medium: #9e9e9e;
    --gray-dark: #424242;
    --black: #1a1a1a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--navy-primary) 0%, var(--blue-accent) 100%);
    --gradient-hero: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 50%, var(--blue-accent) 100%);
    --gradient-card: linear-gradient(180deg, var(--white) 0%, var(--sky-light) 100%);
    
    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 35, 126, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 35, 126, 0.12);
    --shadow-lg: 0 8px 40px rgba(26, 35, 126, 0.15);
    --shadow-xl: 0 20px 60px rgba(26, 35, 126, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--blue-light) 100%);
}

.btn-secondary {
    background: var(--sky-light);
    color: var(--navy-primary);
    border-color: var(--navy-primary);
}

.btn-secondary:hover {
    background: var(--navy-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--navy-primary);
    border-color: var(--navy-primary);
}

.btn-outline:hover {
    background: var(--navy-primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--navy-primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy-primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: var(--space-xs) 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-display);
    font-weight: 800;
}

.logo-n {
    font-size: 2rem;
    color: var(--navy-primary);
    line-height: 1;
}

.logo-text {
    font-size: 1.25rem;
    color: var(--navy-primary);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--navy-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy-primary);
    cursor: pointer;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    filter: blur(60px);
}

.cloud-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.cloud-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.cloud-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 30%;
    animation: float 18s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: var(--space-xl);
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: #ffd700;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.title-line {
    display: block;
}

.title-line.accent {
    background: linear-gradient(135deg, #fff 0%, #a8b4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual - Mascot */
.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--space-xl);
}

.mascot-container {
    position: relative;
    width: 400px;
    height: 500px;
}

.mascot {
    position: relative;
    width: 100%;
    height: 100%;
    animation: mascot-bounce 3s ease-in-out infinite;
}

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

/* Cloud Character */
.mascot-cloud {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 160px;
}

.cloud-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 100%);
    border-radius: 50% 50% 45% 45%;
    position: relative;
    box-shadow: 
        inset -10px -10px 20px rgba(26, 35, 126, 0.1),
        0 10px 30px rgba(26, 35, 126, 0.2);
}

.cloud-body::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 100%);
    border-radius: 50%;
    top: -30px;
    left: 20px;
    box-shadow: inset -5px -5px 10px rgba(26, 35, 126, 0.05);
}

.cloud-body::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 100%);
    border-radius: 50%;
    top: -25px;
    right: 30px;
    box-shadow: inset -5px -5px 10px rgba(26, 35, 126, 0.05);
}

.cloud-face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    width: 120px;
    height: 60px;
}

.eye {
    position: absolute;
    width: 20px;
    height: 25px;
    background: var(--navy-dark);
    border-radius: 50%;
    top: 0;
}

.eye.left {
    left: 15px;
}

.eye.right {
    right: 15px;
}

.eye.wink::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--navy-dark);
    border-radius: 2px;
}

.blush {
    position: absolute;
    width: 25px;
    height: 15px;
    background: rgba(255, 150, 150, 0.4);
    border-radius: 50%;
    top: 30px;
}

.blush.left {
    left: 5px;
}

.blush.right {
    right: 5px;
}

.mouth {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    background: var(--navy-dark);
    border-radius: 0 0 15px 15px;
}

.mouth::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 8px;
    background: #ff9999;
    border-radius: 0 0 10px 10px;
}

/* Beanie */
.beanie {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 70px;
    background: linear-gradient(180deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
    border-radius: 70px 70px 0 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.beanie-fold {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25px;
    background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy-primary) 100%);
    border-radius: 0 0 10px 10px;
}

.beanie-patch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 3px 8px;
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--navy-dark);
    border-radius: 3px;
    letter-spacing: 1px;
}

/* Hoodie */
.mascot-hoodie {
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
}

.hoodie-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
    border-radius: 30px 30px 20px 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hoodie-logo {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.hoodie-pocket {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 60px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0 0 15px 15px;
}

.drawstring {
    position: absolute;
    top: 0;
    width: 4px;
    height: 40px;
    background: var(--white);
    border-radius: 2px;
}

.drawstring.left {
    left: 60px;
}

.drawstring.right {
    right: 60px;
}

/* Pants */
.mascot-pants {
    position: absolute;
    top: 310px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 120px;
}

.pants-left,
.pants-right {
    position: absolute;
    width: 70px;
    height: 120px;
    background: linear-gradient(180deg, var(--navy-dark) 0%, #0a0f2e 100%);
    border-radius: 0 0 15px 15px;
}

.pants-left {
    left: 5px;
}

.pants-right {
    right: 5px;
}

.pants-patch {
    position: absolute;
    top: 30px;
    left: 20px;
    width: 25px;
    height: 25px;
    background: var(--white);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--navy-dark);
}

/* Shoes */
.mascot-shoes {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 40px;
}

.shoe {
    position: absolute;
    width: 70px;
    height: 35px;
    background: linear-gradient(180deg, var(--white) 0%, #e0e0e0 100%);
    border-radius: 20px 20px 10px 10px;
    bottom: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.shoe.left {
    left: 5px;
}

.shoe.right {
    right: 5px;
}

.shoe::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 8px;
    background: var(--navy-primary);
    border-radius: 4px;
}

/* Peace Sign */
.peace-sign {
    position: absolute;
    top: 200px;
    right: 20px;
    font-size: 3rem;
    animation: wave 2s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float-item 4s ease-in-out infinite;
}

.float-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 40%;
    right: 5%;
    animation-delay: 1s;
}

.float-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.float-4 {
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes float-item {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 13px;
    position: relative;
}

.wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* ============================================
   Section Styles
   ============================================ */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue-accent);
    margin-bottom: var(--space-sm);
    padding: 0.5rem 1rem;
    background: var(--sky-light);
    border-radius: var(--radius-full);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
    color: var(--navy-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-medium);
}

/* ============================================
   Products Section
   ============================================ */
.products {
    padding: var(--space-3xl) 0;
    background: var(--off-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-light);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-card-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.product-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-card-wide .product-image {
    height: auto;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.product-badges {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    display: flex;
    gap: var(--space-xs);
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-hot {
    background: #ff4757;
    color: var(--white);
}

.badge-new {
    background: #2ed573;
    color: var(--white);
}

.badge-bestseller {
    background: #ffa502;
    color: var(--white);
}

.badge-custom {
    background: var(--white);
    color: var(--navy-primary);
}

.product-content {
    padding: var(--space-lg);
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--navy-dark);
}

.product-desc {
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.product-features {
    margin-bottom: var(--space-md);
}

.product-features li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.product-features i {
    color: var(--blue-accent);
    font-size: 0.75rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-light);
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-primary);
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.services-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy-primary), var(--blue-accent));
    transform: translateY(-50%);
}

.service-step {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    position: relative;
}

.service-step:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--sky-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--navy-primary);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--navy-dark);
}

.step-content p {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

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

.feature-box {
    text-align: center;
    padding: var(--space-xl);
    background: var(--off-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin: 0 auto var(--space-md);
}

.feature-box h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--navy-dark);
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: var(--space-3xl) 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-container {
    position: relative;
}

.about-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-mascot {
    position: relative;
    z-index: 2;
}

.mascot-small {
    width: 200px;
    height: 200px;
    position: relative;
}

.cloud-body-small {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 100%);
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.cloud-body-small::before,
.cloud-body-small::after {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 100%);
    border-radius: 50%;
}

.cloud-body-small::before {
    width: 100px;
    height: 100px;
    top: -30px;
    left: -20px;
}

.cloud-body-small::after {
    width: 80px;
    height: 80px;
    top: -20px;
    right: -10px;
}

.beanie-small {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 50px;
    background: var(--navy-primary);
    border-radius: 60px 60px 0 0;
}

.about-badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy-primary);
    box-shadow: var(--shadow-md);
    animation: float-badge 3s ease-in-out infinite;
}

.about-badge:nth-child(1) {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.about-badge:nth-child(2) {
    top: 10%;
    right: -10px;
    animation-delay: 0.5s;
}

.about-badge:nth-child(3) {
    bottom: 30%;
    left: -30px;
    animation-delay: 1s;
}

.about-badge:nth-child(4) {
    bottom: 20%;
    right: -20px;
    animation-delay: 1.5s;
}

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

.about-content {
    padding: var(--space-lg);
}

.about-content .section-tag {
    margin-bottom: var(--space-md);
}

.about-content .section-title {
    margin-bottom: var(--space-lg);
}

.about-text {
    font-size: 1.05rem;
    color: var(--gray-dark);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.value-item {
    text-align: center;
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: var(--sky-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--navy-primary);
    margin: 0 auto var(--space-sm);
}

.value-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--navy-dark);
}

.value-text p {
    font-size: 0.8rem;
    color: var(--gray-medium);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: var(--space-3xl) 0;
    background: var(--off-white);
}

.cta-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.cta-decoration {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-cloud {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-card {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--off-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.info-card:hover {
    background: var(--sky-light);
    transform: translateX(10px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--navy-dark);
}

.info-content p {
    font-size: 0.9rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--off-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--navy-primary);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form-container {
    background: var(--off-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-dark);
    background: var(--white);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-accent);
    box-shadow: 0 0 0 4px rgba(57, 73, 171, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-display);
    font-weight: 800;
    margin-bottom: var(--space-sm);
}

.footer-logo .logo-n {
    color: var(--white);
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 0.875rem;
    color: var(--blue-light);
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

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

.footer-links a:hover {
    color: var(--white);
}

.footer-newsletter h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-newsletter p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
}

.newsletter-form {
    display: flex;
    gap: var(--space-xs);
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: none;
    border-radius: var(--radius-md);
    color: var(--navy-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--blue-light);
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: var(--space-lg);
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: transform var(--transition-normal);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .stat-item {
        text-align: center;
    }
    
    .product-card-wide {
        grid-template-columns: 1fr;
    }
    
    .product-card-wide .product-image {
        height: 200px;
    }
    
    .services-timeline {
        padding: 0 var(--space-md);
    }
    
    .timeline-line {
        display: none;
    }
    
    .service-step,
    .service-step:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .services-features {
        grid-template-columns: 1fr;
    }
}

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scroll offset for fixed header */
html {
    scroll-padding-top: 80px;
}