:root {
    --primary: #352c91;
    --secondary: #b5179e;
    --accent: #ffbf00;
    --bg: #f5f5f7;
    --text-dark: #222;
    --text-light: #666;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Mulish", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== NAVBAR ===== */
header {
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 12px 18px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: radial-gradient(circle at 0 0, var(--accent), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text span:first-child {
    font-weight: 800;
    letter-spacing: 0.5px;
}

.brand-text span:last-child {
    font-size: 11px;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 18px;
    align-items: center;
    font-size: 14px;
}

.nav-links a {
    opacity: 0.9;
}

.nav-links a:hover {
    opacity: 1;
}

.btn-small {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-small .material-icons {
    font-size: 16px;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(140deg, #f7f6ff, #ffeefe);
    padding: 22px 18px 24px;
}

.hero-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 24px;
    align-items: center;
}

.hero-left h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-left h1 span {
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    font-size: 14px;
    color: var(--text-light);
    max-width: 420px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(53, 44, 145, 0.06);
    border: 1px dashed rgba(53, 44, 145, 0.25);
    color: var(--primary);
}

.hero-badge .material-icons {
    font-size: 14px;
}

/* Search Card */
.search-card {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 14px;
}

.search-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.search-sub {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.field {
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #e4e4e4;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.field-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(53, 44, 145, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
}

.field-icon .material-icons {
    font-size: 16px;
    color: var(--primary);
}

.field-body {
    flex: 1;
}

.field-label {
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.field-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 13px;
    padding: 0;
    outline: none;
}

/* Search Actions */
.search-actions {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    flex: 1;
    border: none;
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.btn-primary .material-icons {
    font-size: 18px;
}

.btn-ghost {
    border-radius: 999px;
    border: 1px dashed rgba(0, 0, 0, 0.18);
    padding: 8px 12px;
    font-size: 12px;
    display: inline-flex;
    gap: 4px;
    align-items: center;
    background: #ffffff;
    cursor: pointer;
}

.btn-ghost .material-icons {
    font-size: 16px;
}

/* ===== SECTIONS ===== */
.section {
    max-width: 1080px;
    margin: 16px auto;
    padding: 0 18px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
}

.section-title {
    font-size: 17px;
    font-weight: 600;
}

.section-sub {
    font-size: 11px;
    color: var(--text-light);
}

.link-small {
    font-size: 12px;
    color: var(--primary);
}

/* City Cards */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.city-card {
    background: var(--white);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.city-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.city-top {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.city-sub {
    font-size: 11px;
    color: var(--text-light);
}

.city-meta {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}

.tag-pill {
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(53, 44, 145, 0.06);
    font-size: 10px;
    color: var(--primary);
}

/* Why TripNivas */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.why-card {
    background: var(--white);
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid #eeeeee;
}

.why-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.why-title .material-icons {
    font-size: 18px;
    color: var(--primary);
}

.why-text {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

/* CTA Strip */
.cta-strip {
    margin-top: 20px;
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    border-radius: 16px;
    padding: 16px;
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
}

.cta-left {
    max-width: 420px;
}

.cta-left h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.cta-left p {
    font-size: 12px;
    opacity: 0.9;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.store-btn {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    cursor: pointer;
}

.store-btn .icon-box {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-btn .material-icons {
    font-size: 16px;
}

/* FOOTER */
footer {
    margin-top: 22px;
    padding: 16px 18px 26px;
    background: #111827;
    color: #9ca3af;
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    font-size: 11px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 14px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo .brand-logo {
    background: radial-gradient(circle at 0 0, var(--accent), var(--secondary));
}

.footer-logo .brand-text span:first-child {
    font-size: 16px;
}

.footer-links-title {
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 6px;
}

.footer-links a {
    display: block;
    margin-bottom: 4px;
    color: #9ca3af;
}

.footer-links a:hover {
    color: #e5e7eb;
}

.footer-bottom {
    border-top: 1px solid #1f2933;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-left h1 {
        font-size: 24px;
    }

    .section {
        padding: 0 14px;
    }
}
