:root {
    --primary: #1a73e8;
    --primary-600: #1558b0;
    --secondary: #ff7a00;
    --accent: #00b894;
    --ink: #0f172a;
    --muted: #64748b;
    --bg: #f5f7fb;
    --card: #ffffff;
    --border: rgba(15, 23, 42, 0.08);
    --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.14);
    --radius-lg: 18px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg);
    color: var(--ink);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
}

.page-wrapper {
    min-height: 70vh;
}

.section-title {
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--ink);
    letter-spacing: -0.3px;
}

.section-subtitle {
    color: var(--muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.section-padding {
    padding: 80px 0;
}

.badge-soft-primary {
    background: rgba(26, 115, 232, 0.12);
    color: var(--primary);
    font-weight: 600;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
}

.btn {
    border-radius: 999px;
    font-weight: 600;
    padding: 0.65rem 1.4rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #4b9bff 100%);
    border: none;
    box-shadow: 0 10px 24px rgba(26, 115, 232, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(26, 115, 232, 0.3);
}

.btn-outline-primary {
    border: 1px solid rgba(26, 115, 232, 0.35);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: rgba(26, 115, 232, 0.1);
    color: var(--primary);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, #ff9a3d 100%);
    border: none;
    color: #fff;
    box-shadow: 0 10px 24px rgba(255, 122, 0, 0.25);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(255, 122, 0, 0.3);
}

.card,
.card-tour {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--card);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.card:hover,
.card-tour:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card-title {
    font-weight: 700;
}

.price-tag {
    font-weight: 800;
    color: var(--primary);
}

.hero {
    background: radial-gradient(circle at top left, #4b9bff 0%, var(--primary) 35%, #123e7a 100%);
    color: #fff;
    padding: 5rem 0 4rem;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.85);
}

.form-control,
.form-select {
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    padding: 0.65rem 0.85rem;
    box-shadow: none;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(26, 115, 232, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(26, 115, 232, 0.18);
}

.bg-soft {
    background: rgba(26, 115, 232, 0.06);
}

.text-muted {
    color: var(--muted) !important;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: #fff;
    border-radius: 999px;
    padding: 0.7rem 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    z-index: 1050;
}

.whatsapp-float:hover {
    color: #fff;
    background: #1ebe5d;
}

.footer a {
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 3.5rem 0 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* Tour type cards */
.tour-type-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.tour-type-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.tour-type-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(26, 115, 232, 0.12);
    color: var(--primary);
    margin-bottom: 16px;
}

.tour-type-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.tour-type-text {
    color: var(--muted);
    margin-bottom: 0;
}

/* States list */
.state-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.state-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.state-pill {
    background: rgba(26, 115, 232, 0.1);
    color: var(--primary);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Places list */
.place-group {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.place-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: var(--ink);
    font-weight: 500;
    margin: 0.25rem 0.4rem 0 0;
}

.place-chip:hover {
    background: rgba(26, 115, 232, 0.12);
    color: var(--primary);
}

/* Enquiry section */
.enquiry-section {
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.08) 0%, rgba(0, 184, 148, 0.08) 100%);
    border-radius: 24px;
    padding: 40px;
}

.enquiry-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 24px;
}

@media (max-width: 768px) {
    .enquiry-section {
        padding: 24px;
    }
}

/* Global polish */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection {
    background: rgba(26, 115, 232, 0.2);
    color: var(--ink);
}

.container {
    max-width: 1240px;
}

.page-wrapper {
    padding-top: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.02em;
}

p {
    color: #334155;
}

.card,
.tour-type-card,
.state-card,
.place-group,
.enquiry-card {
    border-color: rgba(15, 23, 42, 0.08);
}

.card .card-body,
.place-group,
.enquiry-card {
    padding: 1.4rem;
}

.form-control,
.form-select,
.btn {
    min-height: 44px;
}

.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible,
a:focus-visible {
    outline: 2px solid rgba(26, 115, 232, 0.4);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    .card .card-body,
    .place-group,
    .enquiry-card {
        padding: 1.1rem;
    }
}
