:root {
    --primary: #D97706;
    --primary-dark: #B45309;
    --secondary: #0891B2;
    --secondary-dark: #0E7490;
    --accent: #DC2626;
    --dark: #1E293B;
    --light: #F8FAFC;
    --gray: #64748B;
    --success: #10B981;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-tropical: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.4s ease;
    background: #1d57b1;
}

.navbar.scrolled {
    background: rgba(30, 41, 59, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff !important;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    margin: 0 0.2rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.btn-book {
    background: var(--gradient-tropical) !important;
    color: #fff !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
}

.btn-book::after {
    display: none;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: var(--gradient-tropical);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(217, 119, 6, 0.3), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(8, 145, 178, 0.3), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease 0.2s backwards;
}

.hero-title {
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-title .highlight {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(217, 119, 6, 0.5);
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.btn-primary-custom {
    background: #fff;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--light);
    color: var(--primary-dark);
}

.btn-outline-custom {
    background: transparent;
    color: #fff;
    padding: 1rem 2.5rem;
    border: 2px solid #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    color: #fff;
    font-size: 2rem;
}

/* Section Styling */
section {
    padding: 6rem 0;
}

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

.section-title {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Vehicle Booking Section */
.vehicle-booking-section {
    background: linear-gradient(180deg, var(--light) 0%, #fff 100%);
}

.vehicle-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-tropical);
}

.vehicle-card.featured {
    background: var(--gradient-tropical);
    color: #fff;
    transform: scale(1.05);
}

.vehicle-card.featured h3,
.vehicle-card.featured p,
.vehicle-card.featured li {
    color: #fff;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: -2rem;
    background: var(--accent);
    color: #fff;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.vehicle-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-tropical);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
}

.vehicle-card.featured .vehicle-icon {
    background: rgba(255, 255, 255, 0.3);
}

.vehicle-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.vehicle-capacity {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.vehicle-card.featured .vehicle-capacity {
    color: rgba(255, 255, 255, 0.9);
}

.vehicle-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.vehicle-features li {
    padding: 0.5rem 0;
    color: var(--gray);
}

.vehicle-features i {
    color: var(--success);
    margin-right: 0.5rem;
}

.vehicle-card.featured .vehicle-features i {
    color: rgba(255, 255, 255, 0.9);
}

.vehicle-price {
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.vehicle-card.featured .vehicle-price {
    border-color: rgba(255, 255, 255, 0.3);
}

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

.vehicle-card.featured .price {
    color: #fff;
}

.period {
    color: var(--gray);
    font-size: 0.95rem;
}

.vehicle-card.featured .period {
    color: rgba(255, 255, 255, 0.9);
}

.btn-vehicle {
    background: var(--gradient-tropical);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
}

.vehicle-card.featured .btn-vehicle {
    background: #fff;
    color: var(--primary);
}

.btn-vehicle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.booking-features {
    margin-top: 4rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

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

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--gray);
}

/* Destinations Section */
.destinations-section {
    background: #fff;
}

.destination-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.destination-image {
    height: 300px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    overflow: hidden;
}

.destination-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.destination-overlay {
    position: relative;
    z-index: 2;
}

.destination-overlay h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.destination-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.destination-overlay i {
    margin-right: 0.5rem;
}

.destination-content {
    padding: 1.5rem;
}

.destination-content p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.destination-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.destination-link:hover {
    color: var(--primary-dark);
    gap: 0.5rem;
}

.destination-link i {
    transition: all 0.3s ease;
}

.destination-link:hover i {
    transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.why-choose-content .section-tag {
    color: rgba(255, 255, 255, 0.9);
}

.why-choose-content .section-title {
    color: #fff;
}

.why-choose-content .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.why-features {
    margin-top: 2rem;
}

.why-feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.why-feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.why-text p {
    margin: 0;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
    background: var(--light);
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #FFA500;
    font-size: 1.2rem;
    margin-right: 0.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-tropical);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.author-info h5 {
    margin: 0;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-tropical);
    color: #fff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

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

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-light {
    background: #fff !important;
    color: var(--primary) !important;
    border: none;
}

.btn-light:hover {
    background: var(--light) !important;
    transform: translateY(-3px);
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff !important;
}

.btn-outline-light:hover {
    background: #fff !important;
    color: var(--primary) !important;
}

/* Footer */
.footer {
    background: var(--dark);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer h3, .footer h4 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

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

.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 0.2rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Page Header */
.page-header {
    background: var(--gradient-tropical);
    padding: 10rem 0 6rem;
    text-align: center;
    color: #fff;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Tour Packages Page */
.packages-section {
    padding: 4rem 0;
}

.package-category {
    margin-bottom: 5rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.category-header h2 i {
    color: var(--primary);
    margin-right: 1rem;
}

.category-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

.package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 2rem;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.package-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--accent);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    z-index: 2;
}

.package-image {
    height: 250px;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    position: relative;
}

.package-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.package-image h3 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 2rem;
}

.package-content {
    padding: 2.5rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}

.price-per {
    color: var(--gray);
}

.package-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.package-highlights h5,
.package-includes h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.package-highlights ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.package-highlights li {
    padding: 0.5rem 0;
    color: var(--gray);
}

.package-highlights i {
    color: var(--success);
    margin-right: 0.8rem;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.includes-grid span {
    background: var(--light);
    padding: 0.8rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.includes-grid i {
    color: var(--primary);
}

.btn-package {
    background: var(--gradient-tropical);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-package:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.featured-package {
    border: 3px solid var(--primary);
}

.custom-tours-section {
    background: var(--light);
    padding: 3rem 0;
}

.custom-tours-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Gallery Page */
.gallery-filter-section {
    padding: 2rem 0 3rem;
    background: #fff;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: #fff;
}

.gallery-section {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-card {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-card:hover {
    transform: scale(1.02);
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-card:hover::before {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    transform: translateY(50%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-info h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.gallery-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
}

.gallery-stats-section {
    background: var(--light);
    padding: 4rem 0;
}

.stat-item {
    padding: 2rem;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* About Page */
.about-story-section {
    padding: 5rem 0;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    height: 500px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.badge-content h3 {
    font-size: 3rem;
    color: var(--primary);
    margin: 0;
}

.badge-content p {
    margin: 0;
    color: var(--gray);
    font-weight: 600;
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 15px;
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: var(--gray);
    margin: 0;
}

.mission-vision-section {
    background: var(--light);
    padding: 4rem 0;
}

.mission-card {
    background: #fff;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-tropical);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.mission-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mission-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.why-us-section {
    padding: 5rem 0;
}

.why-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-card .why-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-tropical);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--gray);
    line-height: 1.8;
}

.team-section {
    background: var(--light);
    padding: 5rem 0;
}

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.team-image {
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social a {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--gray);
    line-height: 1.6;
}

.values-section {
    padding: 5rem 0;
}

.value-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-tropical);
}

.value-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.value-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--light);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.value-card p {
    color: var(--gray);
    line-height: 1.8;
}

.certifications-section {
    background: var(--light);
    padding: 4rem 0;
}

.certification-item {
    padding: 2rem;
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-tropical);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #fff;
}

.certification-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.certification-item p {
    color: var(--gray);
}

/* Book Now Page */
.booking-form-section {
    padding: 4rem 0;
}

.booking-form-card {
    background: #fff;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light);
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.form-section h3 i {
    color: var(--primary);
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    padding: 0.8rem 1.2rem;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.booking-type-options,
.accommodation-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-check {
    padding: 1rem 1.5rem;
    background: var(--light);
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.form-check:has(.form-check-input:checked) {
    background: rgba(217, 119, 6, 0.1);
    border-color: var(--primary);
}

.form-check-label {
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.form-check-label i {
    color: var(--primary);
}

.form-submit {
    margin-top: 2rem;
    text-align: center;
}

.form-note {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.booking-summary {
    background: #fff;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.booking-summary h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 10px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-tropical);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--gray);
    margin: 0;
}

.why-book {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 15px;
}

.why-book h4 {
    margin-bottom: 1rem;
}

.why-book ul {
    list-style: none;
    padding: 0;
}

.why-book li {
    padding: 0.5rem 0;
    color: var(--gray);
}

.why-book i {
    color: var(--success);
    margin-right: 0.8rem;
}

.payment-methods {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light);
}

.payment-methods h4 {
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.payment-icons i {
    font-size: 2.5rem;
    color: var(--primary);
}

.quick-contact-section {
    background: var(--light);
    padding: 3rem 0;
}

.quick-contact-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.quick-contact-card h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.quick-contact-card p {
    color: var(--gray);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
