/* Anubhuti Tours & Travels - Fully Responsive Stylesheet */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-purple: #5B2C83;
    --secondary-orange: #F28C28;
    --accent-green: #2ECC71;
    --gradient-green: linear-gradient(135deg,#2ECC71,#27AE60);
    --soft-bg: #F7F7FB;
    --text-dark: #1E1E1E;
    --text-light: #666666;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #5B2C83 0%, #8B4BA8 100%);
    --gradient-hero: linear-gradient(135deg, rgba(91, 44, 131, 0.95) 0%, rgba(242, 140, 40, 0.85) 100%);
    --gradient-card: linear-gradient(135deg, rgba(91, 44, 131, 0.05) 0%, rgba(242, 140, 40, 0.05) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 48px rgba(91, 44, 131, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
}

/* Green Accent Global */
.text-green {
    color: var(--accent-green);
}

.bg-green {
    background: var(--gradient-green);
    color: white;
}

.border-green {
    border-color: var(--accent-green);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--soft-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 2.5rem);
}

p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--gradient-green);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: #27AE60;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-outline:hover {
    background: var(--primary-purple);
    color: var(--white);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary-purple);
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-orange);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-purple);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 90px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-style: italic;
    margin-bottom: 15px;
    color: var(--secondary-orange);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-content h1 {
    max-width: 800px;
    margin-bottom: 25px;
    color: var(--white);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.hero-content p {
    max-width: 600px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.hero-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.hero-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary-purple);
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.3);
}

/* Search Bar */
.search-section {
    background: var(--white);
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin-top: -80px;
    position: relative;
    z-index: 10;
    border-radius: 20px;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    align-items: end;
}

.search-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.search-group input,
.search-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: var(--transition);
}

.search-group input:focus,
.search-group select:focus {
    outline: none;
    border-color: var(--primary-purple);
}

/* Section Styles */
section {
    padding: clamp(60px, 10vw, 100px) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 24px;
    background: var(--gradient-card);
    color: var(--primary-purple);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.1rem);
}

/* Featured Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
    gap: 35px;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.package-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    text-transform: uppercase;
}

.package-content {
    padding: 30px;
}

.package-title {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 15px;
    color: var(--primary-purple);
}

.package-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.meta-item i {
    color: var(--secondary-orange);
}

.package-description {
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
    line-height: 1.6;
    margin-bottom: 20px;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
    gap: 15px;
    flex-wrap: wrap;
}

.package-price {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--primary-purple);
    font-family: var(--font-display);
}

.package-price span {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: var(--text-light);
    font-weight: 400;
    font-family: var(--font-body);
}

/* Activities Section */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 30px;
}

.activity-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(91, 44, 131, 0.8) 100%);
    z-index: 1;
    transition: var(--transition);
}

.activity-card:hover::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(242, 140, 40, 0.9) 100%);
}

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.activity-card:hover img {
    transform: scale(1.1);
}

.activity-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    color: var(--white);
}

.activity-icon {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.activity-content h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 10px;
    color: var(--white);
}

.activity-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
}

/* Monthly Tours */
.monthly-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 25px;
}

.month-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.month-card:hover {
    border-color: var(--secondary-orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.month-name {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--primary-purple);
    font-family: var(--font-display);
    margin-bottom: 15px;
}

.month-destinations {
    color: var(--text-light);
    line-height: 1.8;
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 35px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
}

.feature-card h3 {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    margin-bottom: 15px;
    color: var(--primary-purple);
}

.feature-card p {
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
}

/* Stats Section */
.stats-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
    gap: 50px;
}

.stat-item h3 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 10px;
    color: var(--white);
}

.stat-item p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials */
.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: var(--white);
    padding: clamp(30px, 5vw, 50px);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    display: none;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.8s ease-in-out;
}

.testimonial-image {
    width: clamp(80px, 15vw, 100px);
    height: clamp(80px, 15vw, 100px);
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
    border: 4px solid var(--secondary-orange);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
    font-family: var(--font-accent);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-purple);
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.testimonial-role {
    color: var(--text-light);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-nav button {
    width: clamp(45px, 8vw, 50px);
    height: clamp(45px, 8vw, 50px);
    border-radius: 50%;
    background: var(--soft-bg);
    color: var(--primary-purple);
    font-size: clamp(1rem, 2vw, 1.2rem);
    transition: var(--transition);
}

.testimonial-nav button:hover {
    background: var(--primary-purple);
    color: var(--white);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 25px;
}

.cta-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    background: #611387;
    color: white;
    padding: clamp(60px, 10vw, 80px) 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.footer-links a:hover {
    color: var(--accent-green);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.social-links a:hover {
    background: var(--accent-green);
    transform: translateY(-3px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.contact-info i {
    color: var(--accent-green);
    margin-top: 3px;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(204, 186, 186, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* Admin Icon */
.admin-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}

.admin-link:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { 
        transform: rotate(360deg); 
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    padding: 150px 0 100px;
    text-align: center;
    color: var(--white);
    margin-top: 90px;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
    flex-wrap: wrap;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    color: var(--secondary-orange);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

/* Desktop & Laptop (1024px - 1199px) */
@media (max-width: 1199px) {
    .nav-menu {
        gap: 30px;
    }
    
    .packages-grid,
    .activities-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .search-form {
        gap: 25px;
    }
}

/* Tablet Landscape (900px - 1024px) */
@media (max-width: 1024px) {
    nav {
        padding: 15px 0;
    }
    
    .logo img {
        height: 60px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .hero {
        min-height: 550px;
    }
    
    .search-section {
        padding: 30px;
        margin-top: -60px;
    }
    
    .search-form {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .packages-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .monthly-tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        gap: 40px;
    }
}

/* Tablet Portrait (768px - 899px) */
@media (max-width: 899px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 10px;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 1.1rem;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .hero {
        margin-top: 90px;
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .slider-controls {
        bottom: 20px;
    }
    
    .search-section {
        padding: 25px 20px;
        margin-top: -50px;
        border-radius: 15px;
    }
    
    .search-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-card {
        height: 350px;
    }
    
    .monthly-tours-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .page-header {
        padding: 120px 0 80px;
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
    
    nav {
        padding: 12px 0;
    }
    
    .logo img {
        height: 50px;
    }
    
    header {
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .hero {
        margin-top: 75px;
        height: 65vh;
        min-height: 450px;
    }
    
    .hero-subtitle {
        margin-bottom: 10px;
    }
    
    .hero-content h1 {
        margin-bottom: 15px;
    }
    
    .hero-content p {
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        gap: 15px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .slider-controls {
        bottom: 15px;
        gap: 10px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .search-section {
        padding: 20px 15px;
        margin-top: -40px;
        border-radius: 12px;
    }
    
    .search-group input,
    .search-group select {
        padding: 12px 15px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-label {
        padding: 6px 20px;
        margin-bottom: 15px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .package-card {
        border-radius: 15px;
    }
    
    .package-image {
        height: 220px;
    }
    
    .package-content {
        padding: 20px;
    }
    
    .package-badge {
        top: 15px;
        right: 15px;
        padding: 6px 15px;
    }
    
    .package-meta {
        gap: 15px;
    }
    
    .package-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .package-footer .btn {
        width: 100%;
    }
    
    .activity-card {
        height: 320px;
    }
    
    .activity-content {
        padding: 20px;
    }
    
    .month-card {
        padding: 25px 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-nav {
        gap: 10px;
    }
    
    .cta-content p {
        margin-bottom: 30px;
    }
    
    footer {
        padding: 50px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 35px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 25px 0;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .page-header {
        padding: 110px 0 70px;
        margin-top: 75px;
    }
    
    .breadcrumb {
        gap: 8px;
    }
}

/* Mobile Medium (480px - 575px) */
@media (max-width: 575px) {
    .logo {
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .menu-toggle span {
        width: 25px;
        height: 2.5px;
    }
    
    .nav-menu {
        top: 75px;
        height: calc(100vh - 75px);
        padding: 30px 15px;
    }
    
    .nav-menu a {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .search-section {
        padding: 18px 12px;
        margin-top: -35px;
    }
    
    .search-group label {
        margin-bottom: 6px;
    }
    
    .search-group input,
    .search-group select {
        padding: 11px 14px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    section {
        padding: 45px 0;
    }
    
    .section-label {
        padding: 6px 18px;
        font-size: 0.75rem;
    }
    
    .package-image {
        height: 200px;
    }
    
    .package-content {
        padding: 18px;
    }
    
    .package-badge {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    .activity-card {
        height: 280px;
    }
    
    .activity-content {
        padding: 18px;
    }
    
    .month-card {
        padding: 20px 18px;
    }
    
    .feature-card {
        padding: 25px 18px;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
    }
    
    .testimonial-image {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 18px;
        right: 18px;
    }
    
    .admin-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

/* Mobile Small (360px - 479px) */
@media (max-width: 479px) {
    .container {
        padding: 0 12px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo {
        font-size: 0.9rem;
    }
    
    .menu-toggle span {
        width: 22px;
    }
    
    .hero {
        height: 55vh;
        min-height: 380px;
    }
    
    .search-section {
        padding: 15px 10px;
        margin-top: -30px;
    }
    
    .btn {
        padding: 11px 22px;
        font-size: 0.85rem;
        letter-spacing: 0.3px;
    }
    
    .package-image {
        height: 180px;
    }
    
    .package-content {
        padding: 16px;
    }
    
    .activity-card {
        height: 260px;
    }
    
    .activity-content {
        padding: 16px;
    }
    
    .month-card {
        padding: 18px 15px;
    }
    
    .feature-card {
        padding: 22px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }
    
    .admin-link {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
}

/* Mobile Extra Small (below 360px) */
@media (max-width: 359px) {
    .container {
        padding: 0 10px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .logo {
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .nav-menu {
        padding: 25px 12px;
    }
    
    .nav-menu a {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .search-section {
        padding: 12px 8px;
    }
    
    .search-group input,
    .search-group select {
        padding: 10px 12px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .section-label {
        padding: 5px 15px;
        font-size: 0.7rem;
    }
    
    .package-image {
        height: 160px;
    }
    
    .package-content {
        padding: 14px;
    }
    
    .package-badge {
        padding: 4px 10px;
        font-size: 0.65rem;
    }
    
    .activity-card {
        height: 240px;
    }
    
    .month-card,
    .feature-card {
        padding: 16px 12px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .testimonial-card {
        padding: 20px 12px;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
}

/* Landscape Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: auto;
    }
    
    .hero-content {
        justify-content: flex-start;
        padding-top: 60px;
    }
    
    .slider-controls {
        bottom: 10px;
    }
    
    .nav-menu {
        height: auto;
        max-height: calc(100vh - 75px);
    }
}

/* Print Styles */
@media print {
    header,
    .menu-toggle,
    .whatsapp-float,
    .admin-link,
    .slider-controls,
    .testimonial-nav,
    .hero-buttons,
    footer {
        display: none !important;
    }
    
    .hero {
        margin-top: 0;
        height: auto;
        min-height: auto;
    }
    
    section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
    
    .package-card,
    .activity-card,
    .feature-card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img,
    .package-image img,
    .activity-card img,
    .testimonial-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .whatsapp-float {
        animation: none;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* You can add dark mode styles here if needed */
}