/* Base Styles from index.css & App.css */
:root {
    --color-primary: #FF5722;
    --color-primary-hover: #E64A19;
    --color-background: #000000;
    --color-surface: #121212;
    --color-text: #FFFFFF;
    --color-text-light: #AAAAAA;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-border: #333333;
    --font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    --shadow-sm: 0 1px 2px rgba(255, 255, 255, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(255, 255, 255, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

input,
select,
textarea {
    font-family: inherit;
    background-color: var(--color-surface);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-1px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    text-align: center;
    color: var(--color-white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Header.css */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
    color: var(--color-white);

	
    height:100px;
    position: fixed;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}
.container.header-content {
    width: 100%;
}
.header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    height: 120px;
    isolation: isolate;
}

/* Adjusted height */
.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
}

.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--color-surface);
        flex-direction: column;
        padding: 2rem;
        color: var(--color-text);
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .mobile-toggle {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: inline-flex !important;
        margin-top: 1rem;
    }

    .header:not(.scrolled) .mobile-toggle {
        color: var(--color-white);
    }

    .header.scrolled .mobile-toggle {
        color: var(--color-white);
    }
}

/* Hero.css */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--color-black);
    padding-top: 80px;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.text-primary {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    color: var(--color-white);
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-mascot {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 3rem;
    }

    .hero-content {
        padding-right: 0;
        order: 1;
    }

    .hero-image-container {
        order: 2;
        margin-top: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }
}

/* Services.css */
.services-section {
    padding: var(--spacing-xl) 0;
    background-color: #FFFFFF;
    color: var(--color-black);
}

.services-section .section-title {
    color: var(--color-black);
}

.services-section .section-subtitle {
    color: var(--color-text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #F9F9F9;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #E0E0E0;
    color: var(--color-black);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background-color: #FFFFFF;
    border-color: var(--color-primary);
}

.service-icon {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: inline-flex;
    padding: 1rem;
    background-color: rgba(255, 87, 34, 0.1);
    border-radius: 50%;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-black);
}

.service-description {
    color: #666666;
    font-size: 0.95rem;
}

/* Tracking.css */
.tracking-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-background);
}

.tracking-container {
    max-width: 600px;
    margin: 0 auto;
}

.tracking-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    background: var(--color-surface);
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.tracking-input {
    flex: 1;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.tracking-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 2rem;
}

.tracking-result {
    background-color: var(--color-surface);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    animation: fadeIn 0.3s ease;
    display: none;
}

/* Hidden by default */
.tracking-result.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.status-badge {
    background-color: #E3F2FD;
    color: #1976D2;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.result-body {
    display: grid;
    gap: 1rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
}

.result-item .label {
    color: var(--color-text-light);
}

.result-item .value {
    font-weight: 600;
}

@media (max-width: 600px) {
    .tracking-form {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
    }

    .tracking-input {
        background: var(--color-white);
        border: 1px solid var(--color-border);
        border-radius: 8px;
    }

    .tracking-btn {
        width: 100%;
    }
}

/* Progress Bar */
.tracking-progress-container {
    padding: 1rem 0;
    position: relative;
}

.progress-track {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #eee;
    z-index: 0;
}

.progress-line {
    height: 100%;
    background-color: var(--color-primary);
    transition: width 0.5s ease;
    width: 0%;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-circle {
    width: 30px;
    height: 30px;
    background-color: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-item.active .step-circle,
.step-item.completed .step-circle {
    background-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.2);
}

.step-label {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}

.step-item.active .step-label {
    color: var(--color-primary);
    font-weight: 700;
}

/* Calculator.css */
.calculator-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-surface);
    display: flex;
    justify-content: center;
}

.calculator-card {
    background-color: var(--color-surface);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    width: 100%;
    border: 1px solid var(--color-border);
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--color-text);
}

.form-group input {
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.btn-block {
    width: 100%;
    margin-top: 1rem;
}

.calculation-result {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px dashed var(--color-border);
    text-align: center;
    animation: fadeIn 0.3s ease;
    display: none;
}

/* Hidden by default */
.calculation-result.active {
    display: block;
}

.cost-display {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0.5rem 0;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

/* Footer.css */
/* --- Footer --- */
.footer { 
    background: #000; 
    color: #f8fafc; 
    padding: 6rem 0 0; 
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1.5fr; 
    gap: 5rem; 
    padding-bottom: 4rem;
}

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}
.brand-white { color: #fff; }
.brand-orange { color: var(--color-primary); }

.footer-description { 
    color: #94a3b8; 
    line-height: 1.6; 
    font-size: 0.95rem; 
    margin-bottom: 2rem; 
    max-width: 320px; 
}

.footer-social-simple { display: flex; gap: 0.8rem; }
.social-icon-circle {
    width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center; color: #fff;
    transition: all 0.3s; text-decoration: none;
}
.social-icon-circle:hover { background: var(--color-primary); transform: translateY(-2px); }


.footer-title {
    font-size: 0.9rem; font-weight: var(--fw-semibold); color: #fff; margin-bottom: 2rem;
    text-transform: uppercase; letter-spacing: 0.08em;
    position: relative; padding-bottom: 12px;
}
.footer-title::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--color-primary);
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 1.2rem; }
.footer-links a { color: #cbd5e1; text-decoration: none; transition: all 0.2s; font-weight: var(--fw-regular); font-size: 0.9rem; }
.footer-links a:hover { color: #fff; padding-left: 5px; font-weight: var(--fw-medium); }

.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li { 
    display: flex; gap: 1rem; margin-bottom: 1.5rem; 
    color: #cbd5e1; font-size: 0.95rem; line-height: 1.5;
}
.footer-contact-list i { color: var(--color-primary); flex-shrink: 0; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: var(--sp-8) 0;
    text-align: center;
}
.footer-bottom p {
    line-height: 1.5;
}
.footer-bottom .footer-ruc {
    color: #64748b;
    font-size: var(--text-xs);
    margin-bottom: var(--sp-1);
}
.footer-bottom .footer-copy {
    color: #475569;
    font-size: var(--text-xs);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.social-link:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #aaa;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #aaa;
}

.contact-icon {
    color: var(--color-primary);
    flex-shrink: 0;
    min-width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}
/* --- WhatsApp Button --- */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-button:hover { transform: scale(1.1) rotate(5deg); }
.whatsapp-icon-bg {
    background-color: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* ===================================
   STATS STRIP â€” Premium dark section
   =================================== */
.stats-strip {
    width: 100%;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
}

.stats-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 87, 34, 0.4), transparent);
}

.stats-strip::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 87, 34, 0.2), transparent);
}

.stats-strip-inner {
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px 48px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.strip-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
}

.strip-icon {
    background: #281a17;
    border: 1px solid rgba(255, 87, 34, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF5722;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatIcon 4s ease-in-out infinite;
}

.strip-stat:nth-child(2) .strip-icon { animation-delay: 0.5s; }
.strip-stat:nth-child(4) .strip-icon { animation-delay: 1s; }
.strip-stat:nth-child(6) .strip-icon { animation-delay: 1.5s; }
.strip-stat:nth-child(8) .strip-icon { animation-delay: 2s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.strip-stat:hover .strip-icon {
    transform: scale(1.1) translateY(-8px);
    background: #32211d;
    border-color: rgba(255, 87, 34, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.strip-number {
    font-size: 2rem;
    font-weight: var(--fw-extrabold);
    color: #ffffff;
    line-height: 1;
    display: block;
}

.strip-label {
    font-size: 0.68rem;
    color: #94a3b8;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
    display: block;
    margin-top: 2px;
}

.strip-divider {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 0 8px;
}
section.favorite-stores-section{background:#fff}
/* --- Carousel Banner --- */
.carousel-banner-section {
    padding: 0;
    background-color: #fff;
}

.carousel-banner-section .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.carousel-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.carousel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 460px;
}

.carousel-split {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--bg-color, #0a0a0a);
}

.slide-bg-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0; transition: transform 8s ease;
}

.slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, var(--bg-color, #0a0a0a) 0%, rgba(0,0,0,0.88) 28%, rgba(0,0,0,0.55) 52%, transparent 100%);
    z-index: 1;
}

.promo-side {
    position: relative;
    z-index: 2;
    width: 56%;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    height: 100%;
}

.badge-live {
    background: var(--accent-color, #60a5fa);
    color: #000; font-size: 0.68rem; font-weight: 800; padding: 5px 14px; border-radius: 4px; text-transform: uppercase;
}

.promo-store-label {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 4px; color: var(--accent-color, #60a5fa); margin: 1rem 0 0.5rem;
}

.promo-side h2 {
    font-size: 3rem; font-weight: 900; line-height: 1.0; margin-bottom: 0.6rem;
}

.promo-subtitle {
    font-size: 0.78rem; font-weight: 700; letter-spacing: 3px; color: rgba(255, 255, 255, 0.55); text-transform: uppercase;
}

/* --- Navigation Buttons --- */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
}

.carousel-btn:hover {
    background: rgba(255, 87, 34, 0.85);
    border-color: var(--color-primary);
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }

/* --- Numeric Counter Removed in favor of Dots --- */
.carousel-counter {
    display: none;
}

/* --- Favorite Stores --- */
.favorite-stores-section { padding: 3rem 0; background-color: var(--color-background); }
.stores-title { font-size: 1.5rem; font-weight: 700; color: #1976D2; margin-bottom: 1.5rem; }
.stores-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1rem; margin-bottom: 2rem; }
.store-card { background: #fff; border: 1px solid var(--color-border); border-radius: 8px; height: 60px; display: flex; align-items: center; justify-content: center; padding: 0.5rem; transition: all 0.2s; }
.store-card:hover { transform: translateY(-2px); border-color: #1976D2; box-shadow: var(--shadow-md); }
.store-logo { max-width: 100%; max-height: 35px; object-fit: contain; }
.stores-disclaimer { background: #E3F2FD; padding: 1rem; border-radius: 4px; text-align: center; color: #1976D2; font-weight: 500; font-size: 0.9rem; }

/* --- Refined Tracking --- */
.tracking-progress-container { margin-top: 2rem; position: relative; }
.progress-track { height: 6px; background: #eee; border-radius: 10px; position: relative; margin-bottom: 2rem; }
.progress-line { height: 100%; background: var(--color-primary); border-radius: 10px; }
.progress-steps { display: flex; justify-content: space-between; position: absolute; top: -8px; width: 100%; }
.step-item { display: flex; flex-direction: column; align-items: center; }
.step-circle { width: 22px; height: 22px; border-radius: 50%; background: #eee; border: 4px solid #fff; z-index: 10; }
.step-item.active .step-circle { background: var(--color-primary); }
.step-label { font-size: 0.75rem; color: #888; margin-top: 8px; font-weight: 600; }
.step-item.active .step-label { color: var(--color-black); }

/* --- Services --- */
.services-section { padding: var(--spacing-xl) 0; background: #fff; }
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 1.5rem; 
    margin-bottom: 5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.service-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px 24px 0 0;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { 
    color: var(--color-primary); 
    margin-bottom: 2rem; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    background: #fff5f2;
    border-radius: 50%;
    width: 64px;
    height: 64px;
}
.service-title { font-size: 1.2rem; font-weight: var(--fw-semibold); margin-bottom: 1rem; color: var(--color-black); letter-spacing: -0.01em; }
.service-description { 
    font-size: 0.95rem; 
    color: var(--color-text-light); 
    margin-bottom: 1.5rem; 
    text-align: center;
    line-height: 1.6;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}
.service-stat { 
    font-size: 0.85rem; 
    font-weight: 700; 
    color: #e64a19; 
    background: #fff5f2;
    padding: 8px 16px;
    border: 1px solid #ffebea;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: auto auto 0;
}
.service-stat i {
    width: 14px;
    height: 14px;
    stroke-width: 3;
}

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
}
@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
}
.header.scrolled {
    background-color: #000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 0.6rem 0;
    height: 90px;
}
.logo-img {
    height: auto;
    width: 250px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.1));
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.calculator-section { padding: var(--spacing-xl) 0; background: #fff; }
.calculator-card {
    background: #fff; padding: 3rem 4rem; border-radius: 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04); max-width: 1000px; margin: 0 auto;
    border: 1px solid #f0f0f0;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.calculator-inputs .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.calculator-inputs label {
    font-weight: var(--fw-semibold);
    color: #1a202c;
    font-size: 0.875rem;
}

.calculator-inputs input {
    padding: 1.25rem;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    font-size: 1rem;
    font-weight: var(--fw-regular);
    color: #4a5568;
    background: #fff;
    transition: all 0.3s;
}

.calculator-inputs input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.1);
    outline: none;
}

.calculator-results-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
}
.section-title {
    text-align: center;
    color: #000;
}
section#calculator {
    color: #636e72;
}
.calculator-header {
    text-align: center;
    margin-bottom: 3rem;
}
.results-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: #4a5568;
}

.results-divider {
    border-top: 2px dashed #e2e8f0;
    margin: 2rem 0;
}

.total-section {
    margin-bottom: 1.5rem;
}

.total-label {
    display: block;
    font-weight: var(--fw-semibold);
    font-size: var(--text-sm);
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.total-price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}

.results-note {
    font-size: 0.85rem;
    color: #718096;
    line-height: 1.5;
    margin-top: 1rem;
}
