:root {
    --primary-color: #00bba7;
    --secondary-color: #009689;
    --text-dark: #0a0a0a;
    --text-muted: #4a5565;
    --text-light: #d1d5dc;
    --gradient-start: #00bba7;
    --gradient-end: #00b8db;
}

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

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

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand img {
    height: 60px;
}

.navbar-nav .nav-link {
    color: #364153;
    font-size: 16px;
    margin: 0 1rem;
    position: relative;
    transition: color 0.3s;
}

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

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
}

.navbar-icons .btn {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    margin-left: 12px;
    border: none;
    background: transparent;
    color: #364153;
}

.navbar-icons .btn:hover {
    background: #f3f4f6;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, #1e5f66 0%, #6b3fa0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./src/images/banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

/* Page Header for Inner Pages */
.page-header {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, #1e5f66 0%, #6b3fa0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('src/images/destination-banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p,
.page-header p {
    font-size: 20px;
    margin-bottom: 2rem;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 187, 167, 0.3);
    color: white;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.section-heading {
    font-size: 48px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-description {
    color: var(--text-muted);
    font-size: 16px;
}

/* Destination Cards */
.destination-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    margin-bottom: 24px;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
   background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgb(0 0 0 / 52%) 50%, transparent 100%);
}

.destination-card h3 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.destination-card p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* Service Cards */
.service-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    margin-bottom: 24px;
    transition: transform 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* Travel Cards (Destinations Page) */
.travel-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 32px;
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
}

.travel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.travel-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.travel-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: white;
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.rating-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: white;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
}

.travel-card-body {
    padding: 20px;
}

.location-tag {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.travel-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.travel-card-description {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.travel-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.travel-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.travel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tag {
    background: #e8f9f7;
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.btn-view-details {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-view-details:hover {
    background: var(--secondary-color);
}

/* Gallery */
.gallery-filters {
    text-align: center;
    margin-bottom: 48px;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 10px 14px;
    margin: 0 8px;
    border-radius: 24px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

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

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

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.gallery-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Trip Planning Section */
.trip-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 24px;
}

.trip-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.trip-card-body {
    padding: 20px;
}

.trip-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.trip-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Stats Section */
.stats-section {
    background: #f9fafb;
}

.stat-item {
    text-align: center;
    padding: 24px;
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 16px;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 24px;
    height: 100%;
}

.stars {
    color: #fbbf24;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-info h5 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.author-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

/* Services Page Cards */
.service-info-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 24px;
    transition: transform 0.3s;
    height: 100%;
}

.service-info-card:hover {
    transform: translateY(-8px);
}

.service-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
}

.service-info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-info-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-features li {
    color: var(--text-muted);
    font-size: 14px;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 700;
}

.btn-learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-learn-more:hover {
    gap: 8px;
    transition: gap 0.3s;
}

/* About Page */
.about-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #1e5f66 0%, #6b3fa0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./src/images/about-banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.story-section {
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Contact Page */
.contact-form {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 32px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-control,
.form-select {
    border-radius: 8px;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 187, 167, 0.25);
}

.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 16px;
}

.contact-info-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-detail {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.contact-detail:hover {
    color: var(--secondary-color);
}

.map-placeholder {
    background: #e5e7eb;
    border-radius: 16px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}
.dest-video{
    height: 86vh;
    width: 100%;
    object-fit: cover;

}
.destination-banner{
    height: 80vh;
    width: 100%;
    object-fit: cover;
    
}

/* Footer */
footer {
    background: #1a3f42;
    color: white;
    padding: 60px 0 20px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
}

.footer-description {
    color: #b0b8c1;
    font-size: 14px;
    margin-bottom: 20px;
}

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

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: #b0b8c1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #b0b8c1;
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #b0b8c1;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 12px;
}

.footer-bottom-links a {
    color: #b0b8c1;
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    transform: translateY(-2px);
    color: var(--primary-color);
}

/* Pagination */
.pagination .page-link {
    color: var(--primary-color);
    border-color: #e5e7eb;
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .section-heading {
        font-size: 32px;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 36px;
    }
}
