/* Custom Premium Stylesheet for Barani Ventures */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary: #12241a;      /* Deep Forest Green */
    --primary-light: #1e3628;
    --accent: #2e7d32;       /* Industry standard green */
    --accent-glow: #388e3c;
    --accent-light: #a9cbb3; /* Sage/Light Olive Green */
    --text-dark: #2c3e35;
    --text-muted: #5c6f64;
    --bg-light: #f4f7f5;
    --bg-white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-lg: 16px;
    --border-radius-sm: 8px;
    --glass-bg: rgba(18, 36, 26, 0.65);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Header Styles */
header.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

header.site-header.sticky {
    position: fixed;
    background: rgba(18, 36, 26, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
}

.navbar-brand img {
    height: 48px;
    transition: var(--transition-smooth);
}

header.site-header.sticky .navbar-brand img {
    height: 40px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 20px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--accent-light) !important;
}

.nav-phone-btn {
    border: 2px solid var(--accent-light);
    border-radius: 30px;
    padding: 8px 20px !important;
    margin-left: 15px;
    color: #fff !important;
}

.nav-phone-btn:hover {
    background-color: var(--accent-light);
    color: var(--primary) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 95vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding-top: 100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(18, 36, 26, 0.7) 0%, rgba(18, 36, 26, 0.4) 60%, rgba(18, 36, 26, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--accent-light);
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.btn-premium {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 35px;
    border-radius: 30px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-premium-accent {
    background-color: var(--accent);
    color: #fff;
    border: 2px solid var(--accent);
}

.btn-premium-accent:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
}

.btn-premium-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-premium-outline:hover {
    background-color: #fff;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Booking Search Bar overlay */
.booking-search-bar {
    position: relative;
    margin-top: -60px;
    z-index: 10;
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 30px;
    border-top: 4px solid var(--accent);
}

/* Section Common Styling */
.section-padding {
    padding: 100px 0;
}

.section-title-wrapper {
    margin-bottom: 60px;
}

.section-tag {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 10px;
    display: inline-block;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Tour Cards */
.tour-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(18, 36, 26, 0.12);
}

.tour-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.tour-card:hover .tour-img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.tour-price-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    color: #fff;
    padding: 8px 20px;
    border-top-right-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
}

.tour-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    gap: 15px;
}

.tour-meta i {
    color: var(--accent);
}

.tour-title {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.tour-card:hover .tour-title {
    color: var(--accent);
}

.tour-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tour-btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.tour-card:hover .tour-btn {
    background-color: var(--accent);
    color: #fff;
}

/* Why Choose Us Section */
.bg-dark-forest {
    background-color: var(--primary);
    color: #fff;
}

.why-card {
    background-color: var(--primary-light);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255,255,255,0.05);
}

.why-icon {
    font-size: 2.5rem;
    color: var(--accent-light);
    margin-bottom: 20px;
}

/* Call to Action */
.cta-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding: 120px 0;
    color: #fff;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 36, 26, 0.85);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

/* Footer Section */
footer.site-footer {
    background-color: var(--primary);
    color: rgba(255,255,255,0.7);
    padding-top: 80px;
    padding-bottom: 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-widget-title {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-light);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid var(--glass-border);
}

.social-icon:hover {
    background-color: var(--accent);
    color: #fff;
    transform: scale(1.1);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

/* Glassmorphism elements */
.glass-panel {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    color: #fff;
}

/* Form Styles */
.form-control, .form-select {
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(0,0,0,0.1);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.15);
    border-color: var(--accent);
}

/* Admin Dashboard CSS overrides */
.admin-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    margin-bottom: 30px;
}

.admin-header {
    background-color: var(--primary);
    color: #fff;
    padding: 15px 30px;
}

/* Slick slider style customizations */
.slick-dots {
    display: flex !important;
    justify-content: center;
    list-style: none !important;
    padding: 0 !important;
    margin: 40px 0 0 0 !important;
    gap: 8px;
    align-items: center;
}

.slick-dots li {
    display: inline-block !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.slick-dots li button {
    font-size: 0 !important;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    cursor: pointer;
    color: transparent !important;
    border: 0 !important;
    outline: none !important;
    background: rgba(18, 36, 26, 0.2) !important;
    border-radius: 50% !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slick-dots li button:hover {
    background: var(--accent-light) !important;
}

.slick-dots li.slick-active button {
    background: var(--accent) !important;
    width: 28px;
    border-radius: 5px !important;
}

.slick-dots li button:before {
    display: none !important;
}


/* Details page elements */
.detail-meta-box {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.itinerary-step {
    border-left: 2px solid var(--accent);
    padding-left: 25px;
    position: relative;
    padding-bottom: 30px;
}

.itinerary-step::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: var(--accent);
    border-radius: 50%;
}

/* New Innovative Sections & Dividers */
.divider-banner {
    position: relative;
    height: 450px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.divider-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(18, 36, 26, 0.4) 0%, rgba(18, 36, 26, 0.1) 50%, rgba(18, 36, 26, 0.4) 100%);
    z-index: 1;
}

.divider-banner-content {
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.hands-section {
    background-color: #ecf2ef;
    padding: 90px 0;
    text-align: center;
}

.hands-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
}

.hands-desc {
    max-width: 900px;
    margin: 0 auto 50px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.hands-grid-card {
    padding: 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.hands-icon {
    font-size: 2.2rem;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.hands-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.hands-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.5;
}

.btn-hands-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 35px;
    transition: var(--transition-smooth);
    border-radius: 4px;
    margin-top: 40px;
    display: inline-block;
    text-decoration: none;
}

.btn-hands-outline:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Safari Grid Cards (Featured Safaris mockup matching) */
.featured-safaris-section {
    background-color: #ffffff;
    padding: 90px 0;
}

.safari-grid-card {
    background: #fbfdfc;
    border: 1px solid #e1e9e5;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.safari-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(18, 36, 26, 0.08);
    border-color: var(--accent-light);
}

.safari-grid-img-wrapper {
    height: 240px;
    overflow: hidden;
}

.safari-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.safari-grid-card:hover .safari-grid-img {
    transform: scale(1.08);
}

.safari-grid-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.safari-grid-category {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.safari-grid-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.safari-grid-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.safari-grid-readmore {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    margin-top: auto;
    display: inline-block;
    transition: var(--transition-smooth);
}

.safari-grid-readmore:hover {
    color: var(--primary-light);
    letter-spacing: 1.5px;
}

/* Premium Destinations Gallery Section */
.gallery-item-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-card:hover {
    transform: translateY(-8px);
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-card:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 36, 26, 0.95) 0%, rgba(18, 36, 26, 0.4) 50%, rgba(18, 36, 26, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    box-sizing: border-box;
}

.gallery-content {
    transform: translateY(35px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.gallery-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: capitalize;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.gallery-desc {
    opacity: 0;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    margin: 0;
    line-height: 1.5;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-card:hover .gallery-content {
    transform: translateY(0);
}

.gallery-item-card:hover .gallery-desc {
    opacity: 1;
}


