:root {
    --primary: #0f4c36;
    --secondary: #ff6b35;
    --accent: #f9a826;
    --dark: #0a2e1a;
    --light: #f8f9fa;
    --text: #333;
    --text-light: #666;
    --gradient-1: linear-gradient(135deg, #0f4c36, #1a6b4a);
    --gradient-2: linear-gradient(135deg, #ff6b35, #f9a826);
    --gradient-3: linear-gradient(135deg, #f9a826, #ff6b35);
    --gradient-4: linear-gradient(135deg, #1a6b4a, #0f4c36);
    --gradient-5: linear-gradient(135deg, #2a9d8f, #38b000);
    --gradient-6: linear-gradient(135deg, #e76f51, #f4a261);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark);
}

/* Navbar */
.navbar {
    background: rgba(15, 76, 54, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent) !important;
    text-shadow: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 70%;
    left: 15%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1564349683136-77e08dba1ef3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat; */
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 46, 26, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-shadow: none;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--gradient-2);
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 168, 38, 0.3);
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--gradient-2);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* History Section */
#history {
    background: linear-gradient(135deg, rgba(249, 168, 38, 0.05), rgba(255, 107, 53, 0.05));
}

.history-content {
    padding-left: 30px;
}

.history-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.stat-box {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex: 1;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text);
    font-weight: 500;
}

/* Zones Section */
#zones {
    background: white;
}

.zone-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(15, 76, 54, 0.1);
}

.zone-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.zone-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.zone-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zone-card:hover .zone-img img {
    transform: scale(1.1);
}

.zone-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    z-index: 2;
}

.zone-badge.popular {
    background: var(--gradient-2);
}

.zone-badge.scenic {
    background: var(--gradient-3);
}

.zone-badge.adventure {
    background: var(--gradient-1);
}

.zone-body {
    padding: 30px;
}

.zone-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.zone-subtitle {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.zone-text {
    color: var(--text-light);
    margin-bottom: 20px;
}

.zone-features {
    list-style: none;
    padding: 0;
}

.zone-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.zone-features i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Guidelines Section */
#guidelines {
    background: linear-gradient(135deg, rgba(15, 76, 54, 0.03), rgba(10, 46, 26, 0.08));
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guideline-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    /* height: 100; */
    border-left: 4px solid var(--secondary);
}

.guideline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.guideline-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.guideline-title {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.guideline-text {
    color: var(--text-light);
    margin-bottom: 0;
}

.guideline-alert {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid var(--secondary);
    padding: 20px;
    border-radius: 10px;
    margin-top: 40px;
    color: var(--text);
}

/* Booking Section */
#booking {
    background: linear-gradient(135deg, rgba(15, 76, 54, 0.9), rgba(10, 46, 26, 0.95)), url('/images/ranthambore/d2.jpg') center/cover no-repeat;
    position: relative;
}

.booking-title {
    color: white;
}

.booking-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.booking-steps {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.step-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    padding-top: 5px;
}

.step-title {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.step-text {
    color: var(--text-light);
    margin-bottom: 0;
}

.booking-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control,
.form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 8px;
}

.btn-submit {
    background: var(--gradient-2);
    border: none;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    color: white;
}

/* Contact Section */
#contact {
    background: white;
}

.contact-info {
    background: linear-gradient(135deg, rgba(15, 76, 54, 0.03), rgba(10, 46, 26, 0.08));
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-content h5 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(15, 76, 54, 0.3);
    color: white;
}

/* Services Section */
#services {
    background: linear-gradient(135deg, rgba(249, 168, 38, 0.05), rgba(255, 107, 53, 0.05));
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(15, 76, 54, 0.1);
    text-align: center;
    padding: 40px 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.service-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-text {
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-link {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary);
}

/* Places Section */
#places {
    background: white;
}

.place-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(15, 76, 54, 0.1);
}

.place-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.place-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.place-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.place-card:hover .place-img img {
    transform: scale(1.1);
}

.place-body {
    padding: 25px;
}

.place-title {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.place-text {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Packages Section */
#packages {
    background: linear-gradient(135deg, rgba(15, 76, 54, 0.03), rgba(10, 46, 26, 0.08));
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(15, 76, 54, 0.1);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-header {
    background: var(--gradient-1);
    color: white;
    padding: 25px;
    text-align: center;
}

.package-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.package-duration {
    font-size: 0.9rem;
    opacity: 0.8;
}

.package-body {
    padding: 25px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.package-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.package-features i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 1.1rem;
}

.package-link {
    display: block;
    text-align: center;
    background: var(--gradient-2);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.package-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    color: white;
}

/* Transportation Section */
#transportation {
    background: white;
}

.transport-card {
    background: linear-gradient(135deg, rgba(15, 76, 54, 0.03), rgba(10, 46, 26, 0.08));
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--secondary);
}

.transport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.transport-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.transport-title {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.transport-text {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Do's and Don'ts Section */
#dos-donts {
    background: linear-gradient(135deg, rgba(249, 168, 38, 0.05), rgba(255, 107, 53, 0.05));
}

.dos-donts-container {
    display: flex;
    gap: 30px;
}

.dos-donts-column {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dos-donts-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.dos-donts-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.dos-icon {
    background: rgba(15, 76, 54, 0.1);
    color: var(--primary);
}

.donts-icon {
    background: rgba(255, 107, 53, 0.1);
    color: var(--secondary);
}

.dos-donts-title {
    font-size: 1.5rem;
    color: var(--primary);
}

.dos-donts-list {
    list-style: none;
    padding: 0;
}

.dos-donts-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.dos-donts-list li i {
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.dos-list li i {
    color: var(--primary);
}

.donts-list li i {
    color: var(--secondary);
}

/* Footer */
footer {
    background: var(--gradient-1);
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
    display: inline-block;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    background: var(--gradient-2);
    border: none;
    color: white;
    padding: 0 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--gradient-3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Safari Timing Section */
.safari-detail-table {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.safari-detail-table table {
    margin-bottom: 0;
}

.safari-detail-table th {
    background: var(--gradient-1);
    color: white;
    font-weight: 600;
    border: none;
    padding: 15px;
}

.safari-detail-table td {
    padding: 15px;
    border-top: 1px solid rgba(15, 76, 54, 0.1);
}

.safari-detail-table tr:nth-child(even) {
    background-color: rgba(15, 76, 54, 0.03);
}

.safari-details-info {
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

/* What To Do Section */
.what-to-do-card, .place-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(15, 76, 54, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.what-to-do-card::before, .place-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.what-to-do-card:hover::before, .place-card:hover::before {
    transform: scaleX(1);
}

.what-to-do-card:hover, .place-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(15, 76, 54, 0.2);
}

.what-to-do-img, .place-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.what-to-do-img::after, .place-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 76, 54, 0.1) 0%, rgba(15, 76, 54, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.what-to-do-card:hover .what-to-do-img::after, 
.place-card:hover .place-img::after {
    opacity: 1;
}

.what-to-do-img img, .place-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1);
}

.what-to-do-card:hover .what-to-do-img img, 
.place-card:hover .place-img img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

.what-to-do-body, .place-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.what-to-do-title, .place-title {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    transition: color 0.3s ease;
    font-weight: 600;
}

.what-to-do-title::after, .place-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.what-to-do-card:hover .what-to-do-title::after,
.place-card:hover .place-title::after {
    width: 80px;
}

.what-to-do-text, .place-text {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
    flex-grow: 1;
    font-size: 0.95rem;
}

/* Add a subtle icon overlay on hover */
.what-to-do-card::after, .place-card::after {
    content: '→';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 2;
}

.what-to-do-card:hover::after, .place-card:hover::after {
    opacity: 0.7;
    transform: translateX(0);
}

/* Add a subtle shine effect on hover */
@keyframes shine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.what-to-do-card:hover, .place-card:hover {
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.7) 50%,
        transparent 60%
    );
    background-size: 200% 100%;
    animation: shine 2s ease-in-out;
}

/* Make cards slightly more compact on mobile */
@media (max-width: 767px) {
    .what-to-do-img, .place-img {
        height: 180px;
    }
    
    .what-to-do-body, .place-body {
        padding: 20px;
    }
    
    .what-to-do-title, .place-title {
        font-size: 1.2rem;
    }
    
    .what-to-do-text, .place-text {
        font-size: 0.9rem;
    }
}

/* Chambal Safari Booking Section */
#chambal-booking {
    /* background: linear-gradient(135deg, rgba(15, 76, 54, 0.9), rgba(10, 46, 26, 0.95)), url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat; */
    color: white;
    position: relative;
}

#chambal-booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(15, 76, 54, 0.7) 0%, rgba(10, 46, 26, 0.9) 100%);
    z-index: 1;
}

#chambal-booking>.container-fluid {
    position: relative;
    z-index: 2;
}

.chambal-bookoption-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    background: white;
    color: var(--text);
}

.chambal-bookoption-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.chambal-option-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.chambal-bookoption-card:hover .chambal-option-img {
    transform: scale(1.05);
}

.chambal-option-card {
    padding: 12px 20px;
    font-weight: 600;
    text-align: center;
    border-radius: 0;
    transition: all 0.3s ease;
}

.chambal-option-btn {
    transition: all 0.3s ease;
    font-weight: 600;
    border-radius: 50px;
}

.chambal-option-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Chambal Gharial Safari Section */
#chambal-gharial {
    color: #333;
    position: relative;
    overflow: hidden;
}



.feature-icon {
    transition: all 0.3s ease;
}

.card:hover .feature-icon {
    transform: scale(1.1);
}

/* National Chambal Sanctuary Section */
#chambal-sanctuary {
    background: #f8f9fa;
}

.custom-list {
    padding-left: 0;
    list-style: none;
}

.custom-list li {
    padding: 15px;
    border-radius: 10px;
    background-color: rgba(15, 76, 54, 0.03);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.custom-list li:hover {
    background-color: rgba(15, 76, 54, 0.08);
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .history-stats {
        flex-direction: column;
    }

    .zone-img {
        height: 180px;
    }

    .dos-donts-container {
        flex-direction: column;
    }

    .chambal-option-img {
        height: 150px;
    }

    .feature-icon {
        width: 60px !important;
        height: 60px !important;
    }

    .feature-icon i {
        font-size: 1.5rem !important;
    }
}

/* Scroll Animation */
.scroll-animate {
    opacity: 0;
    transition: all 0.8s ease;
}

.scroll-animate.show {
    opacity: 1;
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/*--------------------------------------------------------------
>>> Whatsapp Floating Footer 
----------------------------------------------------------------*/
.whatsapp-float {
    position: fixed;
    right: 10px;
    bottom: 50px;
    display: flex;
    align-items: center;
    padding: 5px;
    z-index: 1;
}

.whatsapp-float a {
    display: flex;
    margin-left: 4px;
}

/*-----------------------------------*\
 *   Chambal Hero Section
\*-----------------------------------*/
.package-card-unique {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
}

.package-card-unique img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 4s ease;
}

.package-card-unique:hover img {
    transform: scale(1.08);
}

.package-card-unique::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.chambal-overlay-text {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 90%;
}

.h1-chambal {
    font-size: 4rem;
    font-weight: bold;
}

.p1-chambal {
    font-size: 1.5rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .package-card-unique {
        height: 40vh;
    }

    .h1-chambal {
        font-size: 2.2rem;
    }

    .p1-chambal {
        font-size: 1rem;
    }

}
/*-----------------------------------*\
 * Important Information & Booking Procedure
\*-----------------------------------*/
.bg-brown {
    background-color: #1B5540;
}

.bg-dark {
    background-color: #0d1321;
}

.safari-info-title,
.safari-proc-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.safari-info-underline,
.safari-proc-underline {
    height: 4px;
    width: 80px;
    border-radius: 2px;
}

/* Important Information Styles */
.safari-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.safari-info-card {
    display: flex;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.safari-info-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.safari-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.safari-info-icon i {
    font-size: 1.5rem;
    color: #fff3b0;
}

.safari-info-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff3b0;
}

.safari-info-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Booking Procedure Styles */
.safari-proc-timeline {
    position: relative;
    padding-left: 2rem;
}

.safari-proc-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.3);
}

.safari-proc-step {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.safari-proc-step-number {
    position: absolute;
    left: -2rem;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e09f3e;
    color: #0d1321;
    font-weight: bold;
    z-index: 1;
}

.safari-proc-step-content {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
}

.safari-proc-step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #e09f3e;
}

.safari-proc-step-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.safari-proc-booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.safari-proc-option-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
}

.safari-proc-option-card h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #fff3b0;
}

.safari-proc-option-card p {
    font-size: 0.9rem;
    margin: 0;
}

.safari-proc-cta-container {
    margin-top: 2rem;
}

.safari-proc-cta-container p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.safari-proc-btn {
    background-color: #e09f3e;
    border-color: #e09f3e;
    color: #0d1321;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.safari-proc-btn:hover {
    background-color: #fff3b0;
    border-color: #fff3b0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(224, 159, 62, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .safari-info-grid {
        grid-template-columns: 1fr;
    }

    .safari-proc-timeline {
        padding-left: 1rem;
    }

    .safari-proc-timeline::before {
        left: 8px;
    }

    .safari-proc-step-number {
        left: -1.5rem;
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }

    .safari-proc-step {
        padding-left: 1.5rem;
    }
}

.headerlogo {
    width: 310px;
}

@media (max-width: 576px) {
    .headerlogo {
        width: 200px;
    }
}