/* KIZMEDS MOBILE-FIRST SKY BLUE THEME */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f4f9ff;
    color: #333;
}

/* ============================================
   NAVBAR - MOBILE FIRST
   ============================================ */
.navbar {
    background: #0ea5e9;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.logo {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 32px;
    width: auto;
}

/* HAMBURGER BUTTON - Hidden by default (mobile-first: shown on mobile) */
.menu-toggle {
    display: flex;                    /* ✅ SHOW on mobile */
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    cursor: pointer;
    background: none;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    padding: 8px 10px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.menu-toggle:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
}

/* NAV LINKS - Mobile: Hidden by default, slides down when active */
.nav-links {
    display: none;                    /* ✅ HIDDEN on mobile by default */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0284c7;
    padding: 15px 20px;
    gap: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-top: 2px solid rgba(255,255,255,0.1);
}

/* ✅ ACTIVE STATE - When hamburger is clicked */
.nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: block;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.15);
    padding-left: 20px;
}

/* Auth buttons inside mobile menu */
.nav-links .nav-auth {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.nav-links .nav-auth a {
    text-align: center;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
}

.nav-links .nav-auth a.btn-nav-login {
    background: white;
    color: #0ea5e9;
    font-weight: bold;
}

.nav-links .nav-auth a.btn-nav-login:hover {
    background: #f0f9ff;
    padding-left: 15px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 60px 20px;
    text-align: center;
    background: #0ea5e9;
    color: white;
}

.hero h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 10px 20px;
    border: none;
    background: white;
    color: #0ea5e9;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #0284c7;
    color: white;
}

.btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 40px 20px;
    text-align: center;
}

.section h2 {
    font-size: 26px;
    color: #0ea5e9;
    margin-bottom: 15px;
}

.section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-4px);
}

.card h3 {
    color: #0ea5e9;
    margin-bottom: 10px;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust {
    background: #f8fafc;
    padding: 30px 20px;
    text-align: center;
}

.trust h3 {
    margin-bottom: 15px;
    color: #333;
}

.trust-logos {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: bold;
    color: #555;
    font-size: 14px;
}

/* ============================================
   CTA
   ============================================ */
.cta {
    background: #0ea5e9;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

/* ============================================
   SEARCH BOX
   ============================================ */
.search-box {
    background: white;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
    margin: 20px auto 0;
}

.search-box input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.search-box button {
    background: #0ea5e9;
    border: none;
    color: white;
    padding: 12px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.search-box button:hover {
    background: #0284c7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0ea5e9;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* ============================================
   TABLET BREAKPOINT (768px+)
   ============================================ */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        width: calc(50% - 15px);
    }

    .trust-logos {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .search-box {
        flex-direction: row;
    }

    .section h2 {
        font-size: 30px;
    }
}

/* ============================================
   DESKTOP BREAKPOINT (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    /* ✅ HIDE hamburger on desktop */
    .menu-toggle {
        display: none !important;
    }

    /* ✅ SHOW nav links horizontally on desktop */
    .nav-links {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: transparent;
        padding: 0;
        gap: 20px;
        box-shadow: none;
        border: none;
        align-items: center;
    }

    .nav-links a {
        padding: 8px 12px;
        font-size: 14px;
    }

    .nav-links a:hover {
        padding-left: 12px;
        background: rgba(255,255,255,0.15);
    }

    /* Desktop auth buttons */
    .nav-links .nav-auth {
        flex-direction: row;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        gap: 10px;
    }

    .navbar {
        padding: 15px 60px;
    }

    .hero {
        padding: 100px 20px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .cards {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 25px;
    }

    .card {
        width: auto;
        flex: 1;
        max-width: 260px;
    }

    .section {
        padding: 70px 20px;
    }

    .section h2 {
        font-size: 34px;
    }

    .cta h2 {
        font-size: 36px;
    }
}

