:root {
    --navy: #1A2035;
    --orange: #FF7A00;
    --bg: #F8F9FA;
    --text: #1F2933;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* HEADER */
.header {
    background: var(--navy);
    color: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 4px 20px rgba(11, 44, 61, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
}
.logo img {
    width: 80px; /* adjust size as needed */
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}
.logo:hover {
    transform: scale(1.05);
}

.logo span {
    color: var(--orange);
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #b76309 0%, #b76309 30%, #0B2C3D 55%, #1A2035 100%);
    color: #fff;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 122, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-left {
    flex: 1 1 300px;
    max-width: 600px;
    animation: fadeInLeft 0.8s ease-out;
}

.hero-left h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 400;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* TYPING TEXT */
.typing-text {
    display: inline-block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #fff;
    border-right: 2px solid rgba(255,255,255,0.8);
    animation: blink 1.2s steps(1) infinite;
}

@keyframes blink {
    0%,50%,100% { border-color: rgba(255,255,255,0.8); }
    25%,75% { border-color: transparent; }
}

/* APP BUTTONS HERO */
.app-buttons-hero {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-store {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    background: #1A2035;
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.1);
    min-width: 250px;
    gap: 12px;
}

.btn-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.btn-text span:first-child {
    font-size: 11px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-text span.h2 {
    font-size: 1.3rem;
    font-weight: 700;
}

.btn-store:hover {
    background: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,122,0,0.4);
    border-color: var(--orange);
}

/* HERO RIGHT IMAGE */
.hero-right {
    flex: 1 1 250px;
    max-width: 400px;
    text-align: center;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-right .app-screen {
    width: 100%;
    max-width: 300px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(251,115,3,0.5);
    transform: rotate(-2deg);
    transition: all 0.4s ease;
}

.hero-right .app-screen:hover {
    transform: rotate(0deg) scale(1.08);
    box-shadow: 0 40px 80px rgba(251,115,3,0.6);
}

/* SECTIONS */
.section {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section h2 {
    margin-bottom: 32px;
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
}

/* CATEGORIES */
.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    padding: 12px;
    border-radius: 12px;
    background: #f5f5f5;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    font-weight: 600;
    color: #333;
}

.cat img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.cat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* PRODUCT CARDS */
.category-block h3 {
    margin-bottom: 24px;
    font-size: 28px;
    color: var(--navy);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cards {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
}

.card {
    background: #fff;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    animation: fadeInUp 0.5s ease forwards;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: var(--orange);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card h4 {
    font-size: 17px;
    margin: 14px 0 8px;
    font-weight: 600;
    color: var(--text);
}

.price {
    color: var(--orange);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 6px;
}

.location {
    font-size: 13px;
    opacity: 0.6;
    font-weight: 500;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: scaleIn 0.3s ease;
    position: relative;
}

.modal-content h2 {
    margin-bottom: 16px;
    color: var(--orange);
}

.modal-content p {
    margin-bottom: 24px;
    color: var(--navy);
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0;}
    to { opacity: 1;}
}

@keyframes scaleIn {
    from { transform: scale(0.8);}
    to { transform: scale(1);}
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-container { flex-direction: column-reverse; text-align: center; }
    .hero-left, .hero-right { max-width: 100%; }
    .app-buttons-hero { justify-content: center; }
}
/* WHY SECTION */
.why {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 80px 40px;
    margin: 40px 0;
}

.why h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-grid div {
    background: #fff;
    padding: 36px 28px;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: all 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    cursor: default;
}

.why-grid div:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 122, 0, 0.15);
    border-color: var(--orange);
    color: var(--orange);
}

/* FOOTER */
.footer {
    background: var(--navy);
    color: #fff;
    padding: 60px 40px 20px;
    font-size: 14px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px auto;
}

.footer-logo {
    width: 140px;
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

.app-buttons {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-block;
    padding: 12px 20px;
    background: var(--orange);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--orange);
}

.store-btn:hover {
    background: transparent;
    border-color: var(--orange);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--orange);
    transform: translateX(5px);
    opacity: 1;
}

.footer-contact p {
    margin-bottom: 12px;
    opacity: 0.9;
}

.footer-bottom {
    background: var(--orange);
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-weight: 600;
    border-radius: 10px 10px 0 0;
}

.footer-bottom strong {
    font-weight: 800;
}

/* RESPONSIVE FOOTER & WHY */
@media (max-width: 1024px) {
    .why h2 {
        font-size: 32px;
    }

    .footer-top {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .why {
        padding: 60px 20px;
    }

    .why h2 {
        font-size: 28px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .why {
        padding: 40px 16px;
    }

    .why h2 {
        font-size: 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .app-buttons {
        flex-direction: column;
    }

    .store-btn {
        width: 100%;
        text-align: center;
    }
}
/* MOBILE APP DOWNLOAD BANNER */
.app-banner {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #111;
    color: #fff;
    padding: 8px 12px;
    z-index: 9999;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.app-banner-icon {
    width: 28px;
    height: 28px;
}

.app-banner-btn {
    margin-left: auto;
    background: #00c853;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
}

.app-banner-close {
    margin-left: 8px;
    cursor: pointer;
    font-size: 18px;
}

/* SHOW ONLY ON MOBILE */
@media (max-width: 768px) {
    .app-banner {
        display: flex;
    }

    body {
        padding-top: 48px;
    }
}
