/* ===== AIDA AND AZZY TOUR COMPANY - PREMIUM STYLING ===== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Brand Colors - Professional & Modern */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --primary-50: #eef2ff;
    --primary-100: #e0e7ff;
    
    /* Secondary Colors */
    --secondary-color: #64748b;
    --secondary-light: #94a3b8;
    --secondary-dark: #475569;
    
    /* Accent Colors */
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    --accent-dark: #d97706;
    
    /* Success & Info Colors */
    --success-color: #10b981;
    --info-color: #06b6d4;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    
    /* Neutral Colors - Professional Grays */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Base Colors */
    --white: #ffffff;
    --black: #000000;
    
    /* Custom Brand Colors */
    --brand-blue: #3b82f6;
    --brand-indigo: #6366f1;
    --brand-purple: #8b5cf6;
    --brand-pink: #ec4899;
    --brand-rose: #f43f5e;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 6rem 0;
    --container-padding: 1.5rem;
    
    /* Shadows - Professional & Subtle */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== BASIC IMAGE STYLES ===== */
img {
    max-width: 100%;
    height: auto;
}

/* Hero image styles */
.hero-section img {
    object-fit: cover;
    object-position: center;
}

/* Featured destination images - minimal fix for quality */
.featured-destination-img {
    min-height: 150px;
    object-fit: cover;
}

/* Village slideshow - ensure sharp image quality */
.village-hero-slide {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    min-height: 400px;
    background-attachment: scroll !important;
}

/* Ensure village carousel displays normally without blur */
.village-carousel .carousel-item {
    transition: none !important;
}

.village-carousel .carousel-item.active {
    opacity: 1 !important;
    transform: none !important;
}



html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--gray-700);
    overflow-x: hidden;
    background-color: var(--white);
    font-size: 16px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--gray-900);
}

.display-3 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--gray-900);
}

.display-5 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
}

.display-6 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--gray-900);
}

.lead {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-600);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--brand-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NAVIGATION ===== */
.navbar {
    transition: all var(--transition-normal);
    background: var(--white) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--gray-200);
    padding: 1.25rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: var(--primary-color) !important;
    color: var(--white);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 2rem);
    letter-spacing: -0.01em;
    color: var(--primary-color) !important;
    text-decoration: none;
}

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

.navbar-nav .nav-link {
    color: var(--gray-700) !important;
    font-weight: 600;
    padding: 0.75rem 1.25rem !important;
    margin: 0 0.25rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    position: relative;
    font-size: 1rem;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--white) !important;
}

.navbar.scrolled .navbar-brand {
    color: var(--white) !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--primary-color) !important;
    background: var(--primary-50);
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--brand-purple));
    transition: all var(--transition-normal);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 0.5rem;
    border-radius: var(--radius-md);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: none;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding-top: 90px;
}

.hero-slide {
    height: 100vh;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    background-attachment: scroll;
    background-color: #f8f9fa;
}

/* Force hero slide backgrounds to be visible */
.carousel-item .hero-slide {
    min-height: 100vh;
    background-size: cover !important;
    background-position: center center !important;
}

/* Fallback background for hero slides */
.hero-slide:not([style*="background-image"]) {
    background: linear-gradient(45deg, #6366f1, #8b5cf6) !important;
}

/* Ensure background images display properly */
.hero-slide[style*="background-image"] {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    display: flex;
    align-items: center;
    z-index: 5;
}

.hero-section h1 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 8px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1.2s ease-out;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-section .lead {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 1px 2px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1.2s ease-out 0.3s both;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-section .btn {
    animation: fadeInUp 1.2s ease-out 0.5s both;
    border-radius: var(--radius-xl);
    padding: 1.5rem 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--white);
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    font-size: 1.1rem;
}

.hero-section .btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ===== CAROUSEL CONTROLS ===== */
.carousel-indicators {
    bottom: 3rem;
    z-index: 10;
}

.carousel-indicators button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 3px solid var(--white);
    transition: all var(--transition-normal);
    margin: 0 0.5rem;
}

.carousel-indicators button.active {
    background: var(--accent-color);
    border-color: var(--white);
    transform: scale(1.3);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5rem;
    height: 5rem;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 2rem;
    transition: all var(--transition-normal);
    border: 3px solid var(--white);
    z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

/* ===== SECTIONS ===== */
section {
    padding: var(--section-padding);
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--brand-purple));
    border-radius: 2px;
}

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

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-title .subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.bg-light {
    background: var(--gray-50) !important;
}

/* ===== SECTION BACKGROUNDS ===== */
.bg-light h2,
.bg-light h3,
.bg-light h4,
.bg-light h5,
.bg-light h6 {
    color: var(--gray-900) !important;
}

.bg-light .lead {
    color: var(--gray-700) !important;
}

.bg-light .text-muted {
    color: var(--gray-600) !important;
}

/* ===== ABOUT SECTION ===== */
.about-content {
    padding-right: 3rem;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-normal);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.feature-item {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    height: 100%;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--brand-purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

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

.feature-item h5 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== DESTINATIONS SECTION ===== */
.destination-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    height: 100%;
    position: relative;
    border: 1px solid var(--gray-200);
}

/* ===== DESTINATION HIGHLIGHT CARDS ===== */
.destination-highlight-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.destination-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.destination-highlight-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.destination-highlight-card p {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.destination-highlight-card .text-muted {
    color: var(--gray-600) !important;
}

.destination-highlight-card .destination-features .badge {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--brand-purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.destination-card:hover::before {
    transform: scaleX(1);
}

.destination-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.destination-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-normal);
}

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

.destination-content {
    padding: 2rem;
}

.destination-content h5 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 1rem;
}

.destination-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.destination-features .badge {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    background: var(--primary-50);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* ===== VILLAGES SECTION ===== */
.village-carousel {
    margin-bottom: 4rem;
}

.village-hero-slide {
    height: 70vh;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.village-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.8) 0%, 
        rgba(118, 75, 162, 0.7) 100%);
    display: flex;
    align-items: center;
}

.village-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.village-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.village-card h5 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 1rem;
}

.village-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ===== PACKAGES SECTION ===== */
.package-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    height: 100%;
    position: relative;
    border: 1px solid var(--gray-200);
}

/* Enhanced package card styling */
.package-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-50) 100%);
}

.package-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-50) 100%);
    box-shadow: var(--shadow-xl);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: var(--shadow-2xl);
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.package-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.package-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 10;
}

.package-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--brand-purple) 50%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.package-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.package-header h5 {
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
}

.price .currency {
    font-size: 1.8rem;
    vertical-align: top;
}

.price .period {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
}

.package-body {
    padding: 2.5rem;
}

.package-body ul {
    list-style: none;
    padding: 0;
}

.package-body ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-600);
    position: relative;
    padding-left: 2rem;
}

/* Package list items - no double checkmarks */
.package-body ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-600);
    position: relative;
    list-style: none;
}

.package-body ul li:last-child {
    border-bottom: none;
}

.package-body ul li i.fas.fa-check {
    color: var(--success-color);
    margin-right: 0.75rem;
    font-size: 1rem;
}

.package-body ul li:last-child {
    border-bottom: none;
}

.package-body .btn {
    border-radius: var(--radius-lg);
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary-color);
    border: none;
    color: var(--white);
    transition: all var(--transition-normal);
}

.package-body .btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== CONTACT SECTION ===== */
.contact-info {
    padding-right: 3rem;
}

.contact-item {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    margin-bottom: 2rem;
    border: 1px solid var(--gray-200);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--brand-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--white);
}

/* Enhanced contact item styling */
.contact-item {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    margin-bottom: 2rem;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--brand-purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.contact-item h5 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-item p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-200);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all var(--transition-normal);
    background: var(--white);
    color: var(--gray-700);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
    background: var(--white);
    color: var(--gray-700);
}

.contact-form .btn {
    border-radius: var(--radius-lg);
    padding: 1.25rem 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary-color);
    border: none;
    color: var(--white);
    transition: all var(--transition-normal);
}

.contact-form .btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900) !important;
    color: var(--white);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--brand-purple), var(--accent-color));
}

.footer h5, .footer h6 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Enhanced footer company name visibility */
.footer .navbar-brand {
    color: var(--white) !important;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: block;
}

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

/* Footer text enhancement */
.footer p {
    color: var(--gray-300);
    line-height: 1.6;
}

.footer .text-muted {
    color: var(--gray-400) !important;
}

.footer-link {
    transition: all var(--transition-normal);
    color: var(--gray-300) !important;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
}

.footer-link:hover {
    color: var(--white) !important;
    transform: translateX(5px);
}

.social-link {
    transition: all var(--transition-normal);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 1rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    color: var(--white);
}

/* WhatsApp and social media link enhancement */
.whatsapp-link,
.social-link.whatsapp {
    background: #25d366 !important;
    color: var(--white) !important;
}

.whatsapp-link:hover,
.social-link.whatsapp:hover {
    background: #128c7e !important;
    transform: translateY(-3px);
    color: var(--white) !important;
}

/* Enhanced link visibility */
.footer a,
.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer a:hover,
.contact-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Contact section link enhancement */
.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

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

/* ===== BUTTONS ===== */
.btn {
    border-radius: var(--radius-lg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2.5rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .hero-section .lead {
        font-size: clamp(1rem, 2.5vw, 1.3rem);
    }
    
    .navbar-brand {
        font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    }
}

@media (max-width: 991.98px) {
    .navbar-nav {
        background: var(--white);
        padding: 2rem;
        border-radius: var(--radius-xl);
        margin-top: 1rem;
        border: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
    }
    
    .hero-section h1 {
        font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    }
    
    .navbar-brand {
        font-size: clamp(1.1rem, 3vw, 1.5rem);
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: clamp(1.5rem, 4vw, 2rem);
        line-height: 1.2;
    }
    
    .hero-section .lead {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        line-height: 1.5;
    }
    
    .hero-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: clamp(1rem, 2.5vw, 1.3rem);
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 4rem;
        height: 4rem;
        margin: 0 1rem;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: clamp(1.25rem, 3.5vw, 1.75rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-section .lead {
        font-size: clamp(0.8rem, 2vw, 1rem);
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .navbar-brand {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }
    
    .display-3 {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
    }
    
    .display-5 {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .village-hero-slide {
        height: 40vh;
    }
    
    .hero-section .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-primary {
    color: var(--primary-color) !important;
}

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

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

/* ===== TEXT COLOR UTILITIES ===== */
.text-muted {
    color: var(--gray-600) !important;
}

.text-dark {
    color: var(--gray-900) !important;
}

.text-light {
    color: var(--gray-400) !important;
}

/* ===== ENHANCED TEXT CONTRAST ===== */
.fw-bold.text-primary {
    color: var(--primary-color) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 800 !important;
}

.text-primary {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Enhanced text visibility for all sections */
.bg-light .text-primary {
    color: var(--primary-color) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.bg-light .lead {
    color: var(--gray-700) !important;
    font-weight: 500;
}

/* Package section text enhancement */
.package-body h5 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-body p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Address and contact info enhancement */
.contact-item address,
.contact-item .contact-details {
    color: var(--gray-700);
    font-style: normal;
    line-height: 1.6;
}

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

.contact-item .contact-details a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===== BADGE STYLING ===== */
.badge {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
}

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

.badge.bg-success {
    background-color: var(--success-color) !important;
    color: var(--white) !important;
}

.badge.bg-info {
    background-color: var(--info-color) !important;
    color: var(--white) !important;
}

.badge.bg-warning {
    background-color: var(--accent-color) !important;
    color: var(--white) !important;
}

.badge.bg-danger {
    background-color: var(--danger-color) !important;
    color: var(--white) !important;
}

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

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

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

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

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

.shadow-xl {
    box-shadow: var(--shadow-xl) !important;
}

.rounded-sm {
    border-radius: var(--radius-sm) !important;
}

.rounded-md {
    border-radius: var(--radius-md) !important;
}

.rounded-lg {
    border-radius: var(--radius-lg) !important;
}

.rounded-xl {
    border-radius: var(--radius-xl) !important;
}

.rounded-2xl {
    border-radius: var(--radius-2xl) !important;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== LOADING ANIMATIONS ===== */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HOVER EFFECTS ===== */
.hover-lift {
    transition: all var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.hover-scale {
    transition: all var(--transition-normal);
}

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

.hover-glow {
    transition: all var(--transition-normal);
}

.hover-glow:hover {
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.4);
}

/* ===== GRADIENT BACKGROUNDS ===== */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--brand-purple)) !important;
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--brand-purple)) !important;
}

.bg-gradient-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--brand-rose)) !important;
}

/* ===== CUSTOM SCROLL ANIMATIONS ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PREMIUM CUSTOM STYLES ===== */
.glass-morphism {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-2xl);
    backdrop-filter: blur(20px);
}

.modern-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--brand-purple), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.modern-card:hover::before {
    transform: scaleX(1);
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.neon-glow {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--brand-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.morphing-border {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.premium-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.premium-button {
    background: var(--primary-color);
    border: none;
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.premium-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

/* ===== IMAGE FALLBACK STYLES ===== */
.hero-slide,
.village-hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Remove the ::before pseudo-element that was breaking the slideshow */
/* The overlay will handle the gradient effect */

/* Fallback image styling */
.img-fallback {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 1.5rem;
    min-height: 200px;
    border-radius: var(--radius-lg);
    border: 2px dashed var(--gray-300);
}

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

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators,
    .btn,
    .social-links {
        display: none !important;
    }
    
    .hero-section {
        height: auto;
        min-height: 300px;
    }
    
    section {
        padding: 2rem 0;
    }
}

/* Custom Styles for Aida & Azzy Tour Company */

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Navigation Styles */
.navbar {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
    width: 100%;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937 !important;
    margin-right: 0;
}

.navbar-collapse {
    flex-grow: 1;
    justify-content: flex-end;
}

.navbar-nav {
    margin-left: auto;
    align-items: center;
}

.navbar-nav .nav-link {
    color: #374151 !important;
    font-weight: 500;
    padding: 12px 20px !important;
    border-radius: 8px;
    margin: 0 4px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: #2563eb !important;
    background-color: #f3f4f6;
    transform: none;
}

/* Authentication Links Styling */
.navbar-nav .nav-item:last-child .nav-link {
    background-color: #2563eb;
    color: #ffffff !important;
    border: 2px solid #2563eb;
    border-radius: 8px;
    padding: 10px 20px !important;
    font-weight: 600;
    transition: all 0.2s ease;
}

.navbar-nav .nav-item:last-child .nav-link:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff !important;
    transform: none;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Dropdown Styling */
.dropdown-menu {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
}

.dropdown-item {
    color: #374151;
    padding: 10px 20px;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f3f4f6;
    color: #2563eb;
    transform: none;
}

.dropdown-divider {
    border-color: #e5e7eb;
    margin: 8px 0;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
    margin-top: 76px; /* Account for fixed navbar */
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
    transition: all 0.5s ease;
}

/* Default Tourism Backgrounds for each slide */
.hero-slide[data-slide="1"] {
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2073&q=80');
}

.hero-slide[data-slide="2"] {
    background-image: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.hero-slide[data-slide="3"] {
    background-image: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.hero-slide[data-slide="4"] {
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2073&q=80');
}

.hero-slide[data-slide="5"] {
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2073&q=80');
}

/* Fallback for when images don't load */
.hero-slide {
    background-color: #1e3a8a;
    background-image: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #22c55e 100%);
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tourism" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23tourism)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Hero Content Styling */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #f3f4f6;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Carousel Controls Styling */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

/* Carousel Indicators Styling */
.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #ffffff;
    border-color: #ffffff;
    transform: scale(1.2);
}

.carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-outline-light {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

/* Footer Styles */
.footer-link {
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffc107 !important;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffc107;
    color: #000 !important;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .hero-slide {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Mobile Navigation */
    .navbar-nav .nav-item {
        margin: 8px 0;
    }
    
    .navbar-nav .nav-item:last-child .nav-link {
        background-color: #2563eb;
        color: #ffffff !important;
        border: 2px solid #2563eb;
        text-align: center;
        margin: 10px 0;
        width: 100%;
    }
    
    .navbar-nav .nav-item:last-child .nav-link:hover {
        background-color: #1d4ed8;
        border-color: #1d4ed8;
        color: #ffffff !important;
        transform: none;
        box-shadow: none;
    }
    
    .dropdown-menu {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e40af;
}

/* ===== TOURISM PLACES ENHANCEMENTS ===== */
.destinations-container .carousel-item {
    transition: transform 0.3s ease;
}

.destinations-container .carousel-control-prev,
.destinations-container .carousel-control-next {
    width: 8%;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
}

.destinations-container .carousel-control-prev-icon,
.destinations-container .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.destinations-container .carousel-indicators {
    bottom: -40px;
}

.destinations-container .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

.destination-card {
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.destination-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

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

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

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.destination-highlight-card {
    transition: all 0.3s ease;
}

.destination-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Image Loading States */
.destination-image img.loading {
    opacity: 0.6;
    filter: blur(2px);
    transition: all 0.3s ease;
}

.destination-image img.loaded {
    opacity: 1;
    filter: none;
    transition: all 0.3s ease;
}

.destination-image img.error {
    opacity: 0.9;
    filter: grayscale(0.2);
}

.destination-image img.fallback-image {
    border: 2px solid #e2e8f0;
    opacity: 0.95;
}

/* Fallback Image Indicator */
.fallback-indicator {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 0.8; transform: scale(1); }
}

/* Loading Shimmer Effect */
.destination-image img.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Category-specific image borders for fallbacks */
.destination-image img[data-fallback-applied="true"] {
    border-left: 4px solid var(--primary-color);
}

.destination-highlight-card img[data-fallback-applied="true"] {
    border-radius: 8px;
    border: 2px solid rgba(99, 102, 241, 0.2);
}

@media (max-width: 768px) {
    .destination-image {
        height: 220px;
    }
    
    .destinations-container .carousel-control-prev,
    .destinations-container .carousel-control-next {
        display: flex !important;
        width: 50px;
        height: 50px;
    }
    
    .destination-highlight-card .row .col-md-4 {
        margin-bottom: 1rem;
    }
    
    .fallback-indicator {
        font-size: 0.6rem !important;
        top: 4px !important;
        right: 4px !important;
    }
}
