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

:root {
    --primary: #2a9d8f;
    --secondary: #264653;
    --accent: #e9c46a;
    --light: #f8f9fa;
    --dark: #212529;
    --transition: all 0.3s ease;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========== HEADER STYLES ========== */
header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 8px;
    color: var(--accent);
}

/* Desktop Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    list-style: none;
}

.mobile-nav ul li {
    margin: 10px 0;
}

.mobile-nav ul li a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.whatsapp-btn i {
    margin-right: 8px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* ========== HERO SECTION ========== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80') center/cover;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 80px;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    background: transparent;
}

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

/* ========== SECTIONS ========== */
.section {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    position: relative;
}

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

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 25px auto 0;
    line-height: 1.6;
}

/* ========== DESTINATIONS GRID ========== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
}

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

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

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 5px;
}

.rating i {
    color: var(--accent);
    font-size: 0.9rem;
}

.rating span {
    color: #666;
    font-size: 0.9rem;
    margin-left: 8px;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

/* ========== SERVICES GRID ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
}

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

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: var(--secondary);
    color: white;
}

.testimonials .section-title h2,
.testimonials .section-title p {
    color: white;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

.testimonial-content::before,
.testimonial-content::after {
    content: '"';
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    opacity: 0.3;
}

.testimonial-content::before {
    top: -20px;
    left: -10px;
}

.testimonial-content::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
}

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

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
}

.author-info p {
    color: #ccc;
    font-size: 0.9rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* ========== NEWSLETTER ========== */
.newsletter {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--accent);
    color: var(--secondary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #f4b716;
    transform: translateY(-2px);
}

/* ========== FOOTER ========== */
footer {
    background: var(--secondary);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
}

.footer-column p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-column ul li i {
    width: 20px;
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
    font-size: 0.9rem;
}

/* ========== PAGE HEADER (About/Contact/Blog) ========== */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80') center/cover;
    padding: 100px 0 60px;
    color: white;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 15px;
    font-size: 1rem;
}

.breadcrumb li {
    position: relative;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 15px;
    color: var(--accent);
}

.breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: white;
}

/* ========== ABOUT PAGE STYLES ========== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.experience-badge h4 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.experience-badge p {
    font-size: 0.9rem;
    margin: 0;
    color: white;
    opacity: 0.9;
}

/* Mission & Vision */
.mission-vision {
    background: #f8f9fa;
}

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

.mv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

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

.mv-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
}

.mv-card p {
    color: #666;
    line-height: 1.7;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    text-align: center;
}

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

.team-img {
    height: 300px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-info {
    padding: 25px 20px;
}

.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
}

.team-info p {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    color: var(--secondary);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Values Section */
.values {
    background: var(--secondary);
    color: white;
}

.values .section-title h2,
.values .section-title p {
    color: white;
}

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

.value-card {
    background: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.value-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
    font-family: 'Playfair Display', serif;
}

.value-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

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

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta .btn-outline {
    border-color: white;
    color: white;
    background: transparent;
}

.cta .btn-outline:hover {
    background: white;
    color: var(--secondary);
}

/* ========== CONTACT PAGE STYLES ========== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: grid;
    gap: 25px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    text-align: center;
    border-left: 4px solid var(--primary);
}

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

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

.form-control textarea {
    resize: vertical;
    min-height: 120px;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* ========== BLOG PAGE STYLES ========== */

/* Blog Hero Section */
.blog-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') 
                no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 60px;
}

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

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Playfair Display', serif;
}

.blog-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Blog Layout */
.blog-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: start;
}

/* Blog Posts */
.blog-posts {
    display: grid;
    gap: 40px;
}

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.post-img {
    height: 300px;
    overflow: hidden;
}

.post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.post-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
    gap: 20px;
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
}

.post-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.post-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
}

.post-content h2 a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.post-content h2 a:hover {
    color: var(--primary);
}

.post-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    align-self: flex-start;
}

.read-more:hover {
    color: var(--secondary);
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Single Post Styles */
.single-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.single-post-content {
    padding: 40px;
}

.single-post-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
}

.post-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.widget-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.widget-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--accent);
    bottom: 0;
    left: 0;
}

.recent-posts {
    list-style: none;
}

.recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-content h4 a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.recent-post-content h4 a:hover {
    color: var(--primary);
}

.recent-post-content span {
    font-size: 0.8rem;
    color: #666;
}

/* Blog content styling */
.post-description h1,
.post-description h2,
.post-description h3,
.post-description h4,
.post-description h5,
.post-description h6 {
    color: var(--secondary);
    margin: 20px 0 15px 0;
    font-family: 'Playfair Display', serif;
}

.post-description p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.post-description ul,
.post-description ol {
    margin: 15px 0;
    padding-left: 30px;
}

.post-description li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.post-description strong {
    font-weight: 600;
    color: var(--secondary);
}

.post-description em {
    font-style: italic;
}

.post-description img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.post-description blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #666;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
}

/* No Posts Message */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.no-posts i {
    font-size: 64px;
    color: #dee2e6;
    margin-bottom: 20px;
}

.no-posts h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.no-posts p {
    color: #666;
}

/* ========== ANIMATIONS ========== */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

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

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

/* ========== RESPONSIVE DESIGN ========== */

/* Improved Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
        margin-top: 70px;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2.2rem !important;
        padding: 0 15px;
    }
    
    .hero p {
        font-size: 1rem !important;
        padding: 0 15px;
    }
    
    /* Mobile menu button fix for all pages */
    .mobile-menu {
        display: block !important;
    }
    
    /* Hide desktop nav on mobile */
    nav ul {
        display: none !important;
    }
    
    /* Mobile nav styling */
    .mobile-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 20px;
        z-index: 999;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .mobile-nav ul {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        list-style: none;
    }
    
    .mobile-nav ul li {
        margin: 10px 0;
    }
    
    .mobile-nav ul li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        text-decoration: none;
        color: var(--dark);
        font-weight: 500;
    }

    /* Section adjustments */
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .destinations-grid,
    .services-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-img {
        height: 200px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .whatsapp-btn {
        display: none;
    }
    
    /* Page Header Mobile */
    .page-header {
        padding: 80px 0 40px;
        margin-top: 70px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    /* About Page Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px;
    }
    
    .experience-badge h4 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .mv-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Contact Page Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    /* Blog Mobile */
    .blog-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-hero {
        height: 50vh;
        margin-top: 70px;
        margin-bottom: 40px;
    }
    
    .blog-hero h1 {
        font-size: 2.2rem;
    }
    
    .blog-hero p {
        font-size: 1rem;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .single-post-content {
        padding: 30px 20px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .post-img {
        height: 250px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 50vh;
    }
    
    .hero h1 {
        font-size: 1.8rem !important;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .card-img {
        height: 180px;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .btn-outline {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Page Header Mobile Small */
    .page-header h1 {
        font-size: 2rem;
    }
    
    /* About Mobile Small */
    .about-image img {
        height: 300px;
    }
    
    .experience-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
        display: inline-block;
    }
    
    /* Contact Mobile Small */
    .contact-form {
        padding: 25px 20px;
    }
    
    /* Blog Mobile Small */
    .blog-hero h1 {
        font-size: 1.8rem;
    }
    
    .post-img {
        height: 200px;
    }
    
    .post-content h2 {
        font-size: 1.5rem;
    }
    
    .single-post-content h1 {
        font-size: 1.8rem;
    }
    
    .recent-post {
        flex-direction: column;
        gap: 10px;
    }
    
    .recent-post-img {
        width: 100%;
        height: 150px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .team-img {
        height: 250px;
    }
}

/* Responsive Blog Styles */
@media (max-width: 992px) {
    .blog-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .single-post-content h1 {
        font-size: 2rem;
    }
}

/* Animation delays for staggered effects */
.about-content .animate,
.mv-card.animate,
.team-card.animate,
.value-card.animate,
.contact-card.animate,
.contact-form.animate,
.blog-post.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.about-content .animate.show,
.mv-card.animate.show,
.team-card.animate.show,
.value-card.animate.show,
.contact-card.animate.show,
.contact-form.animate.show,
.blog-post.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.mv-card.animate:nth-child(1) { transition-delay: 0.1s; }
.mv-card.animate:nth-child(2) { transition-delay: 0.2s; }
.mv-card.animate:nth-child(3) { transition-delay: 0.3s; }

.team-card.animate:nth-child(1) { transition-delay: 0.1s; }
.team-card.animate:nth-child(2) { transition-delay: 0.2s; }
.team-card.animate:nth-child(3) { transition-delay: 0.3s; }
.team-card.animate:nth-child(4) { transition-delay: 0.4s; }

.value-card.animate:nth-child(1) { transition-delay: 0.1s; }
.value-card.animate:nth-child(2) { transition-delay: 0.2s; }
.value-card.animate:nth-child(3) { transition-delay: 0.3s; }
.value-card.animate:nth-child(4) { transition-delay: 0.4s; }

.contact-card.animate:nth-child(1) { transition-delay: 0.1s; }
.contact-card.animate:nth-child(2) { transition-delay: 0.2s; }
.contact-card.animate:nth-child(3) { transition-delay: 0.3s; }
.contact-card.animate:nth-child(4) { transition-delay: 0.4s; }

.blog-post.animate:nth-child(1) { transition-delay: 0.1s; }
.blog-post.animate:nth-child(2) { transition-delay: 0.2s; }
.blog-post.animate:nth-child(3) { transition-delay: 0.3s; }