/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

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

/* CSS Custom Properties */
:root {
    /* Colors */
    --primary-500: #0057B7;
    --primary-700: #004494;
    --primary-100: #E6F0FF;
    --neutral-0: #FFFFFF;
    --neutral-50: #F8F9FA;
    --neutral-500: #6C757D;
    --neutral-700: #343A40;
    --neutral-900: #212529;
    --success: #198754;
    --warning: #FFC107;
    --error: #DC3545;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 64px;
    --space-xxxl: 96px;
    
    /* Shadows */
    --shadow-md: 0 4px 12px rgba(0, 87, 183, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 87, 183, 0.12);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    
    /* Container */
    --container-max-width: 1280px;
    --grid-gap: 24px;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--neutral-900);
    line-height: 1.7;
    background-color: var(--neutral-50);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--neutral-700);
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 24px;
}

p {
    margin-bottom: var(--space-sm);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 52px;
}

.btn-primary {
    background-color: var(--primary-500);
    color: var(--neutral-0);
}

.btn-primary:hover {
    background-color: var(--primary-700);
    transform: scale(1.03);
}

.btn-primary:active {
    transform: scale(0.98);
}

/* Header */
.header {
    background-color: var(--neutral-0);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-500);
    text-decoration: none;
}

.nav {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav a {
    color: var(--neutral-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 200ms ease-out;
}

.nav a:hover {
    color: var(--primary-500);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--neutral-700);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%230057B7" width="1200" height="600"/><rect fill="%23E6F0FF" width="1200" height="600" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
    min-height: 550px;
    display: flex;
    align-items: center;
    color: var(--neutral-0);
    text-align: center;
}

.hero-content {
    padding: var(--space-xxxl) 0;
}

.hero h1 {
    color: var(--neutral-0);
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--primary-100);
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections */
.section {
    padding: var(--space-xxl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
}

/* Cards */
.card {
    background-color: var(--neutral-0);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card-image {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: var(--neutral-50);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-500);
    font-size: 14px;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--grid-gap);
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Portfolio Gallery */
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 4/3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(33, 37, 41, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 300ms ease-in-out;
    color: var(--neutral-0);
    text-align: center;
    padding: var(--space-md);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Process Timeline */
.process-timeline {
    position: relative;
}

.process-step {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--primary-500);
    color: var(--neutral-0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-content {
    flex: 1;
}

/* FAQ */
.faq-item {
    background-color: var(--neutral-0);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: var(--space-md);
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    color: var(--neutral-700);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--neutral-500);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Forms */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--neutral-700);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #CED4DA;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 200ms ease-out, box-shadow 200ms ease-out;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    border-width: 2px;
    box-shadow: 0 0 0 3px rgba(0, 87, 183, 0.15);
}

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

/* Contact Info */
.contact-info {
    display: grid;
    gap: var(--space-lg);
}

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

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-500);
}

/* Footer */
.footer {
    background-color: var(--neutral-700);
    color: var(--neutral-0);
    padding: var(--space-xl) 0;
    text-align: center;
}

.footer-content {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    list-style: none;
}

.footer-nav a {
    color: var(--neutral-0);
    text-decoration: none;
    transition: color 200ms ease-out;
}

.footer-nav a:hover {
    color: var(--primary-100);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .hero {
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .section {
        padding: var(--space-xl) 0;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* Animation for reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}/* Private Label Styles */

/* Header WhatsApp Button */
.header-whatsapp {
    margin-left: var(--space-sm);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 200ms ease-out;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 200ms ease-out;
}

.whatsapp-float a:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Button Variants */
.btn-secondary {
    background-color: transparent;
    color: var(--primary-500);
    border: 2px solid var(--primary-500);
}

.btn-secondary:hover {
    background-color: var(--primary-500);
    color: var(--neutral-0);
}

/* Hero Section Updated */
header > .hero-content {
    padding: var(--space-xxxl) 0;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content h1 {
    color: var(--neutral-0);
    margin-bottom: var(--space-md);
    font-size: 48px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: var(--primary-100);
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.hero-image {
    margin-top: var(--space-xl);
}

.hero-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* Performance Optimizations */
img[loading="lazy"] {
    transition: opacity 0.3s;
}

img[loading="lazy"]:not([src]) {
    opacity: 0;
}

/* Private Label Form Enhancements */
.form-group input[type="file"] {
    padding: 12px;
    background-color: var(--neutral-50);
}

.form-group input[type="file"]:focus {
    background-color: var(--neutral-0);
}

/* Testimonials and Social Proof */
.testimonial-card {
    background-color: var(--neutral-0);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 24px;
    color: var(--primary-500);
}

.client-logo {
    height: 60px;
    background-color: var(--neutral-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-500);
    font-size: 14px;
    margin-bottom: var(--space-md);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ctas .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .header-whatsapp {
        display: none;
    }
    
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
    }
}

@media (min-width: 769px) {
    .whatsapp-float {
        display: block;
    }
}

/* Additional Private Label specific styles */
.pricing-card {
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--primary-500);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: -30px;
    background-color: var(--success);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: bold;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: white;
    font-size: 32px;
}