/* Global Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    line-height: 1.6;
    width: 100%;
    position: relative;
    color: #1d1d1f;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--bs-primary) !important;
}

/* Logo Size Limitation */
.navbar-brand img,
footer img {
    max-width: 150px;
    width: auto;
    height: auto;
}

/* Footer Logo White Color */
.footer-logo {
    filter: brightness(0) invert(1);
}

/* Hero Section - Apple.com Style */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: var(--bs-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1d1d1f;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bs-primary);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: #6e6e73;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image {
    animation: fadeInRight 1.2s ease-out 0.5s both;
}

.macbook-mockup {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.macbook-mockup .screen {
    width: 100%;
    height: 300px;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: 12px 12px 0 0;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.macbook-mockup .keyboard {
    width: 100%;
    height: 20px;
    background: #d1d5db;
    border-radius: 0 0 12px 12px;
    margin-top: 8px;
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    transition: border 0.3s ease;
    animation: fadeInUp 1s ease-out both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card:hover {
    border: 0.5px solid var(--bs-primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1d1d1f;
}

.feature-text {
    color: #6e6e73;
    line-height: 1.6;
}

/* Product Cards - Apple.com Style */
.product-card {
    background: #f5f5ff;
    border-radius: 16px;
    overflow: hidden;
    transition: border 0.3s ease;
    animation: fadeInUp 1s ease-out both;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }

.product-image {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px 16px 0 0;
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.product-content {
    padding: 2rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1d1d1f;
}

.product-specs {
    color: #6e6e73;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.product-price {
    margin-bottom: 1.5rem;
}

.original-price {
    text-decoration: line-through;
    color: #6e6e73;
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.sale-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bs-primary);
}

/* Store Info */
.store-info, .contact-info {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Buttons */
.btn {
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--bs-primary);
    border: none;
    padding: 0.75rem 2rem;
}

.btn-primary:hover {
    background: #0c0a8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 14, 213, 0.3);
}

.btn-outline-primary {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}

.btn-outline-primary:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 5rem 0;
}

/* Process Section */
.process-step {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    transition: border 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }

.process-step:hover {
    border: 0.5px solid var(--bs-primary);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #130ed5, #1a0eff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(19, 14, 213, 0.3);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    transition: border 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
    border: 0.5px solid var(--bs-primary);
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    color: #333;
}

.testimonial-author strong {
    color: #130ed5;
}

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

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

/* Primary Color */
:root {
    --bs-primary: #130ed5;
    --bs-primary-rgb: 19, 14, 213;
    --bs-secondary: #000;
    --bs-secondary-rgb: 0, 0, 0;
}

/* Media Elements */
img, svg, video, canvas, audio, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Text Wrapping */
h1, h2, h3, h4, h5, h6, p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Contact Section */
#contact {
    background: var(--bs-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.contact-card-modern:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: white;
}

.contact-icon-modern {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.contact-card-modern:hover .contact-icon-modern {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.contact-icon-modern.whatsapp-modern {
    background: #25d366;
}

.contact-title-modern {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-text-modern {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-link-modern {
    text-decoration: none;
    display: block;
    margin-bottom: 0;
}

.contact-number-modern,
.contact-address-modern {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    transition: color 0.3s ease;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1050;
    animation: pulse 2s infinite;
}

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

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #25d366;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #25d366;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
}

.contact-link-modern:hover .contact-number-modern,
.contact-link-modern:hover .contact-address-modern {
    color: #ffffff;
}