:root {
    --primary: #FF5E00;
    --primary-600: #E05400;
    --secondary: #FF7A00;
    --accent: #FF9500;
    --ink: #0f172a;
    --muted: #64748b;
    --bg: #fff8f5;
    --card: #ffffff;
    --border: rgba(15, 23, 42, 0.08);
    --shadow-sm: 0 8px 24px rgba(255, 94, 0, 0.08);
    --shadow-md: 0 16px 40px rgba(255, 94, 0, 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;
}
body {
    font-family: "Source Sans Pro", sans-serif !important;
}
h1, h2, h3 {
    font-family: "Libre Baskerville", serif !important;
}


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(255, 94, 0, 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%, var(--secondary) 100%) !important;
    border: none;
    box-shadow: 0 10px 24px rgba(255, 94, 0, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(255, 94, 0, 0.3);
}

.btn-outline-primary {
    border: 1px solid rgba(255, 94, 0, 0.35);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: rgba(255, 94, 0, 0.1);
    color: var(--primary);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 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, var(--secondary) 0%, var(--primary) 35%, #D43D00 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(255, 94, 0, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(255, 94, 0, 0.18);
}

.bg-soft {
    background: rgba(255, 94, 0, 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(255, 94, 0, 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(255, 94, 0, 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(255, 94, 0, 0.12);
    color: var(--primary);
}

/* Enquiry section */
.enquiry-section {
    background: linear-gradient(135deg, rgba(255, 94, 0, 0.08) 0%, rgba(255, 149, 0, 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;
    }
}

/* Enhanced Hero Banner Section */
.hero-banner {
    position: relative;
    height: 650px;
    overflow: hidden;
    margin-top: -60px;
}

@media (max-width: 991px) {
    .hero-banner {
        height: 550px;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        height: 500px;
    }
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(255, 122, 0, 0.45) 45%,
        rgba(255, 69, 0, 0.55) 100%
    );
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 0 20px;
}

.hero-subtitle {
    display: inline-block;
    background-color: rgba(255, 122, 0, 0.18);
    border: 1px solid rgba(255, 122, 0, 0.35);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 16px 32px rgba(8, 29, 63, 0.45);
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
    line-height: 1.6;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #FF8C00, #FF5E00);
    border: none;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 24px rgba(255, 94, 0, 0.35);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(255, 94, 0, 0.45);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(5px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 10;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: rgba(255, 94, 0, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 94, 0, 0.3);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Counter Section */
.counter-section {
    background: linear-gradient(135deg, #FF5E00 0%, #FF7A00 60%, #FF9500 100%);
    padding: 60px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.counter-box {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.counter-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.counter-box:hover .counter-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(360deg);
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.counter-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Testimonial Section */
.testimonial-section {
    background: linear-gradient(to bottom, #fff5f0 0%, #ffffff 100%);
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 94, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(255, 94, 0, 0.12);
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 94, 0, 0.15);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FF5E00;
}

.author-info h6 {
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
}

.author-info .text-muted {
    font-size: 0.85rem;
}

.rating {
    color: #FF9500;
    margin-bottom: 10px;
}

/* Feature Box Section */
.feature-box {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF5E00 0%, #FF9500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 20px rgba(255, 94, 0, 0.3);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.feature-text {
    color: #6c757d;
    font-size: 0.95rem;
}

/* Instagram Section */
.instagram-section {
    background: #fff8f5;
    padding: 80px 0;
}

/* Tour Overlay */
.tour-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    color: white;
    background: linear-gradient(to top, #FF5E00, transparent);
}

.tour-overlay h5 {
    margin: 0;
    font-size: 18px;
}

.tour-card:hover {
    transform: translateY(-8px);
    transition: 0.3s ease;
}

.tour-card img {
    object-fit: cover;
}

/* Button colors and general overrides */
.bg-primary {
    background-color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

a {
    color: var(--primary);
}

a:hover {
    color: var(--secondary);
}
