/*
Theme Name: Bali Bintang Rafting
Theme URI: https://balibintangrafting.com
Author: Bali Bintang Rafting
Author URI: https://balibintangrafting.com
Description: A custom WordPress theme for Bali Bintang Rafting, showcasing exciting rafting adventures in Bali.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8.1
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bbrtheme
*/

/* Reset and Base Styles */
:root {
    --primary-color: #008000;
    --primary-dark: #006400;
    --secondary-color: #FF0000;
    --secondary-dark: #CC0000;
    --text-color: #333333;
    --text-light: #666666;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --header-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    --container-width: 1280px;
    --container-padding: clamp(1rem, 5vw, 2rem);
    --section-spacing: clamp(3rem, 8vw, 6rem);
    --grid-gap: clamp(1.5rem, 3vw, 2.5rem);
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    width: 100%;
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
    margin-right: auto;
    margin-left: auto;
}

.container-fluid {
    width: 100%;
    padding: 0 var(--container-padding);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-1 * var(--grid-gap));
    margin-left: calc(-1 * var(--grid-gap));
}

.row > * {
    padding-right: var(--grid-gap);
    padding-left: var(--grid-gap);
    margin-top: var(--grid-gap);
}

.col {
    flex: 1 0 0%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 { flex: 0 0 auto; width: 8.333333%; }
.col-2 { flex: 0 0 auto; width: 16.666667%; }
.col-3 { flex: 0 0 auto; width: 25%; }
.col-4 { flex: 0 0 auto; width: 33.333333%; }
.col-5 { flex: 0 0 auto; width: 41.666667%; }
.col-6 { flex: 0 0 auto; width: 50%; }
.col-7 { flex: 0 0 auto; width: 58.333333%; }
.col-8 { flex: 0 0 auto; width: 66.666667%; }
.col-9 { flex: 0 0 auto; width: 75%; }
.col-10 { flex: 0 0 auto; width: 83.333333%; }
.col-11 { flex: 0 0 auto; width: 91.666667%; }
.col-12 { flex: 0 0 auto; width: 100%; }

/* Responsive Columns */
@media (min-width: 576px) {
    .col-sm-1 { flex: 0 0 auto; width: 8.333333%; }
    .col-sm-2 { flex: 0 0 auto; width: 16.666667%; }
    .col-sm-3 { flex: 0 0 auto; width: 25%; }
    .col-sm-4 { flex: 0 0 auto; width: 33.333333%; }
    .col-sm-5 { flex: 0 0 auto; width: 41.666667%; }
    .col-sm-6 { flex: 0 0 auto; width: 50%; }
    .col-sm-7 { flex: 0 0 auto; width: 58.333333%; }
    .col-sm-8 { flex: 0 0 auto; width: 66.666667%; }
    .col-sm-9 { flex: 0 0 auto; width: 75%; }
    .col-sm-10 { flex: 0 0 auto; width: 83.333333%; }
    .col-sm-11 { flex: 0 0 auto; width: 91.666667%; }
    .col-sm-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 768px) {
    .col-md-1 { flex: 0 0 auto; width: 8.333333%; }
    .col-md-2 { flex: 0 0 auto; width: 16.666667%; }
    .col-md-3 { flex: 0 0 auto; width: 25%; }
    .col-md-4 { flex: 0 0 auto; width: 33.333333%; }
    .col-md-5 { flex: 0 0 auto; width: 41.666667%; }
    .col-md-6 { flex: 0 0 auto; width: 50%; }
    .col-md-7 { flex: 0 0 auto; width: 58.333333%; }
    .col-md-8 { flex: 0 0 auto; width: 66.666667%; }
    .col-md-9 { flex: 0 0 auto; width: 75%; }
    .col-md-10 { flex: 0 0 auto; width: 83.333333%; }
    .col-md-11 { flex: 0 0 auto; width: 91.666667%; }
    .col-md-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 992px) {
    .col-lg-1 { flex: 0 0 auto; width: 8.333333%; }
    .col-lg-2 { flex: 0 0 auto; width: 16.666667%; }
    .col-lg-3 { flex: 0 0 auto; width: 25%; }
    .col-lg-4 { flex: 0 0 auto; width: 33.333333%; }
    .col-lg-5 { flex: 0 0 auto; width: 41.666667%; }
    .col-lg-6 { flex: 0 0 auto; width: 50%; }
    .col-lg-7 { flex: 0 0 auto; width: 58.333333%; }
    .col-lg-8 { flex: 0 0 auto; width: 66.666667%; }
    .col-lg-9 { flex: 0 0 auto; width: 75%; }
    .col-lg-10 { flex: 0 0 auto; width: 83.333333%; }
    .col-lg-11 { flex: 0 0 auto; width: 91.666667%; }
    .col-lg-12 { flex: 0 0 auto; width: 100%; }
}

/* Spacing Utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    margin: 0 0 1.5rem;
    line-height: 1.2;
    color: var(--text-color);
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
h2 { 
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
h3 { 
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
h4 { 
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

p {
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 1.1vw, 1.125rem);
}

/* Header Styles */
.site-header {
    background-color: var(--white);
    padding: 0.5rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    width: 100%;
    z-index: 1030;
}

.site-header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.95);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.custom-logo-link {
    display: block;
    max-width: 180px;
    margin-right: 1rem;
}

.custom-logo {
    width: 100%;
    height: auto;
    display: block;
}

.site-title {
    font-size: 1.8rem;
    margin: 0;
}

.site-title a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 1rem;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    transition: var(--transition);
}

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

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

/* Features Section */
.features-section {
    padding: var(--section-spacing) 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--grid-gap);
}

.feature-item {
    height: 100%;
    padding: 2rem;
    text-align: center;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Packages Section */
.packages-section {
    padding: var(--section-spacing) 0;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--grid-gap);
}

.package-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.package-card .card-img-overlay-wrap {
    position: relative;
    padding-top: 66.67%; /* 3:2 Aspect Ratio */
    overflow: hidden;
}

.package-card .card-img-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.package-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-card .btn {
    margin-top: auto;
}

/* CTA Section */
.cta-section {
    padding: var(--section-spacing) 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer Styles */
.site-footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-widget-area h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-info i {
    margin-right: 1rem;
    color: var(--primary-color);
}

.site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright a {
    color: var(--primary-color);
    text-decoration: none;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: var(--transition);
}

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

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .col-half {
        grid-column: span 12;
    }
}

@media screen and (max-width: 992px) {
    .col-third {
        grid-column: span 6;
    }
    
    .col-quarter {
        grid-column: span 6;
    }
}

@media screen and (max-width: 768px) {
    .col-third,
    .col-quarter {
        grid-column: span 12;
    }
    
    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .hero-content p {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 1rem;
        box-shadow: var(--box-shadow);
        display: none;
    }
    
    .main-navigation.toggled {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-color);
        cursor: pointer;
    }
    
    .site-info {
        flex-direction: column;
        text-align: center;
        padding: var(--container-padding);
    }
    
    .social-links {
        margin-top: 1rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: var(--grid-gap);
        padding: var(--container-padding);
    }
}

@media screen and (max-width: 576px) {
    :root {
        --container-padding: 1rem;
        --section-spacing: 3rem;
        --grid-gap: 1.5rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

/* Package Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.package-card.pulse {
    animation: pulse 0.5s ease-in-out;
}

.package-content.hover h3 {
    color: var(--primary-color);
}

.package-content.hover .btn {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Section Layouts */
.section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.section-light {
    background-color: var(--light-bg);
}

.section-dark {
    background-color: var(--text-color);
    color: var(--white);
}

.features-section,
.packages-section,
.cta-section {
    padding: var(--section-spacing) 0;
}

/* Page Template Styles */
.page-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 0;
    margin-top: 0;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}

.page-hero .page-title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header {
    background-color: var(--light-bg);
    padding: 3rem 0;
    margin-top: 0;
}

.page-header .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.content-wrapper {
    position: relative;
    overflow: hidden;
}

.content-wrapper .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-wrapper .entry-content p {
    margin-bottom: 1.5rem;
}

.content-wrapper .entry-content h2,
.content-wrapper .entry-content h3,
.content-wrapper .entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-wrapper .entry-content ul,
.content-wrapper .entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-wrapper .entry-content li {
    margin-bottom: 0.5rem;
}

.content-wrapper .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.content-wrapper .entry-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
}

.page-links {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--light-bg);
    border-bottom: 1px solid var(--light-bg);
}

.page-links .page-number {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 4px;
    background-color: var(--light-bg);
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-links .page-number:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.comments-wrapper {
    margin-top: 2rem;
}

.comments-wrapper .comment-list {
    list-style: none;
    padding: 0;
}

.comments-wrapper .comment {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-bg);
}

.comments-wrapper .comment:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comments-wrapper .comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.comments-wrapper .comment-author img {
    border-radius: 50%;
    margin-right: 1rem;
}

.comments-wrapper .comment-metadata {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.comments-wrapper .comment-content {
    font-size: 1rem;
    line-height: 1.6;
}

.comments-wrapper .comment-respond {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-bg);
}

.comments-wrapper .comment-form {
    margin-top: 1rem;
}

.comments-wrapper .comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.comments-wrapper .comment-form input[type="text"],
.comments-wrapper .comment-form input[type="email"],
.comments-wrapper .comment-form input[type="url"],
.comments-wrapper .comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--light-bg);
    border-radius: 4px;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.comments-wrapper .comment-form textarea {
    height: 150px;
}

@media (max-width: 768px) {
    .page-hero {
        height: 300px;
        padding-top: 0;
        margin-top: 0;
    }

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

    .page-header {
        padding: 2rem 0;
        margin-top: 0;
    }

    .page-header .page-title {
        font-size: 2rem;
    }

    .content-wrapper {
        padding: 1.5rem !important;
    }
}

/* Bootstrap Overrides */
.navbar-brand img {
    max-height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

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

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

/* Card Hover Effects */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 128, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.hover-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Package Cards */
.card-img-overlay-wrap {
    position: relative;
    overflow: hidden;
}

.card-img-overlay-wrap img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.card-img-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    transition: opacity 0.3s ease;
}

.hover-card:hover .card-img-overlay {
    opacity: 1;
}

/* Background Gradient */
.bg-gradient {
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__delay-1s {
    animation-delay: 0.2s;
}

.animate__delay-2s {
    animation-delay: 0.4s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        margin-top: -56px;
    }
    
    .display-3 {
        font-size: calc(1.8rem + 1.5vw) !important;
    }
    
    .display-5 {
        font-size: calc(1.5rem + 1vw) !important;
    }
    
    .card-img-overlay-wrap img {
        height: 200px;
    }
}

/* Bootstrap Overrides */
.btn-primary {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 128, 0, 0.3);
}

.card {
    border: none;
    overflow: hidden;
}

.lead {
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Section Spacing */
section {
    position: relative;
    overflow: hidden;
}

.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.py-4 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Custom Utilities */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.bg-overlay {
    position: relative;
}

.bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.bg-overlay > * {
    position: relative;
    z-index: 2;
}

/* Flexbox Utilities */
.d-flex { display: flex !important; }
.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }
.justify-content-start { justify-content: flex-start !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around { justify-content: space-around !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.align-items-center { align-items: center !important; }
.align-items-stretch { align-items: stretch !important; }

/* Spacing Utilities */
.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.ml-0 { margin-left: 0 !important; }
.mr-0 { margin-right: 0 !important; }

.m-1 { margin: 0.25rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.ml-1 { margin-left: 0.25rem !important; }
.mr-1 { margin-right: 0.25rem !important; }

.m-2 { margin: 0.5rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.ml-2 { margin-left: 0.5rem !important; }
.mr-2 { margin-right: 0.5rem !important; }

.m-3 { margin: 1rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.ml-3 { margin-left: 1rem !important; }
.mr-3 { margin-right: 1rem !important; }

.m-4 { margin: 1.5rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.ml-4 { margin-left: 1.5rem !important; }
.mr-4 { margin-right: 1.5rem !important; }

.m-5 { margin: 3rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.ml-5 { margin-left: 3rem !important; }
.mr-5 { margin-right: 3rem !important; }

.p-0 { padding: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.pl-0 { padding-left: 0 !important; }
.pr-0 { padding-right: 0 !important; }

.p-1 { padding: 0.25rem !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pl-1 { padding-left: 0.25rem !important; }
.pr-1 { padding-right: 0.25rem !important; }

.p-2 { padding: 0.5rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pl-2 { padding-left: 0.5rem !important; }
.pr-2 { padding-right: 0.5rem !important; }

.p-3 { padding: 1rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pl-3 { padding-left: 1rem !important; }
.pr-3 { padding-right: 1rem !important; }

.p-4 { padding: 1.5rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pl-4 { padding-left: 1.5rem !important; }
.pr-4 { padding-right: 1.5rem !important; }

.p-5 { padding: 3rem !important; }
.pt-5 { padding-top: 3rem !important; }
.pb-5 { padding-bottom: 3rem !important; }
.pl-5 { padding-left: 3rem !important; }
.pr-5 { padding-right: 3rem !important; }

/* Gap Utilities */
.gap-0 { gap: 0 !important; }
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gap-5 { gap: 3rem !important; }

/* Text Utilities */
.text-center { text-align: center !important; }
.text-start { text-align: left !important; }
.text-end { text-align: right !important; }

/* Display Utilities */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }

@media (min-width: 576px) {
    .d-sm-none { display: none !important; }
    .d-sm-block { display: block !important; }
    .d-sm-inline { display: inline !important; }
    .d-sm-inline-block { display: inline-block !important; }
}

@media (min-width: 768px) {
    .d-md-none { display: none !important; }
    .d-md-block { display: block !important; }
    .d-md-inline { display: inline !important; }
    .d-md-inline-block { display: inline-block !important; }
}

@media (min-width: 992px) {
    .d-lg-none { display: none !important; }
    .d-lg-block { display: block !important; }
    .d-lg-inline { display: inline !important; }
    .d-lg-inline-block { display: inline-block !important; }
}

/* Responsive Spacing */
:root {
    --section-spacing-sm: 3rem;
    --section-spacing-md: 4rem;
    --section-spacing-lg: 6rem;
    --container-padding-sm: 1rem;
    --container-padding-md: 2rem;
    --grid-gap-sm: 1rem;
    --grid-gap-md: 1.5rem;
    --grid-gap-lg: 2rem;
}

@media (max-width: 768px) {
    :root {
        --section-spacing: var(--section-spacing-sm);
        --container-padding: var(--container-padding-sm);
        --grid-gap: var(--grid-gap-sm);
    }

    .row {
        margin-right: calc(-0.5 * var(--grid-gap));
        margin-left: calc(-0.5 * var(--grid-gap));
    }

    .row > * {
        padding-right: calc(0.5 * var(--grid-gap));
        padding-left: calc(0.5 * var(--grid-gap));
    }

    .packages-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    :root {
        --section-spacing: var(--section-spacing-md);
        --container-padding: var(--container-padding-md);
        --grid-gap: var(--grid-gap-md);
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    :root {
        --section-spacing: var(--section-spacing-lg);
        --grid-gap: var(--grid-gap-lg);
    }
}

/* Packages Archive Styles */
.packages-archive-section {
    background-color: var(--light-bg);
}

.package-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.package-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-content {
    background: #fff;
}

.package-title {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.package-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.package-meta {
    font-size: 1rem;
    color: var(--text-color);
}

.package-meta .price,
.package-meta .duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    padding: 0.75rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 128, 0, 0.2);
}

.page-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.page-header .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.page-header .lead {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .package-image {
        height: 250px;
    }
    
    .package-title {
        font-size: 1.5rem;
    }
    
    .page-header .page-title {
        font-size: 2rem;
    }
    
    .page-header .lead {
        font-size: 1.1rem;
    }
}

/* Single Package Styles */
.package-hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.package-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
}

.package-hero-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.package-hero-meta {
    display: flex;
    gap: 2rem;
    color: var(--white);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
}

.meta-item i {
    font-size: 1.4rem;
}

.package-detail {
    font-size: 1.1rem;
    line-height: 1.8;
}

.package-detail p {
    margin-bottom: 1.5rem;
}

.package-includes {
    border-top: 1px solid var(--light-bg);
    padding-top: 2rem;
}

.includes-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-content li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.includes-content li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.booking-card {
    margin-bottom: 2rem;
}

.price-large {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-large .label {
    font-size: 1rem;
    color: var(--text-light);
}

.price-large .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.duration-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.duration-info .label {
    font-size: 1rem;
    color: var(--text-light);
}

.duration-info .value {
    font-size: 1.2rem;
    font-weight: 500;
}

.btn-block {
    width: 100%;
}

.contact-info {
    border-top: 1px solid var(--light-bg);
    padding-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.gallery-preview .gallery-item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-preview .gallery-item:hover {
    transform: scale(1.05);
}

.gallery-preview img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .package-sidebar {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .package-hero {
        height: 400px;
    }

    .package-hero-title {
        font-size: 2.5rem;
    }

    .package-hero-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .meta-item {
        font-size: 1.1rem;
    }

    .gallery-preview img {
        height: 120px;
    }
}

/* Location Info Styles */
.location-info {
    margin-bottom: 2rem;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
}

.address-item i {
    font-size: 1.4rem;
    margin-top: 0.2rem;
}

.address-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

.location-content .btn-outline-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.location-content .btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 128, 0, 0.1);
}

/* WhatsApp Button Styles */
.whatsapp-button .btn-success {
    background-color: #25D366;
    border-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-button .btn-success:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.contact-item .fa-whatsapp {
    color: #25D366;
} 