/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mobile menu improvements: slide-down, scrollable, show social icons */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        padding: 2rem 1rem 1.5rem 1rem;
        z-index: 9999;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(.77,0,.18,1.1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-bottom-left-radius: 2.5rem;
        border-bottom-right-radius: 2.5rem;
        box-shadow: 0 16px 48px 0 rgba(60,40,120,0.22);
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        animation: menuFadeIn 0.5s cubic-bezier(.77,0,.18,1.1);
    }

    @keyframes menuFadeIn {
        0% { opacity: 0; filter: blur(8px) brightness(1.2); }
        100% { opacity: 1; filter: blur(0) brightness(1); }
    }

    .nav-links li {
        margin: 0.7rem 0;
        width: 100%;
        text-align: left;
        transition: background 0.2s, box-shadow 0.2s;
        border-radius: 1.2rem;
    }

    .nav-links li a {
        display: block;
        padding: 0.75rem 0.9rem;
        color: #000;
        font-size: 1rem;
        font-weight: 600;
        background: transparent;
        transition: color 0.2s;
        border-radius: 1.2rem;
    }

    .nav-links li a:hover, .nav-links li a:focus {
        color: #ffe066;
        background: rgba(255, 224, 102, 0.1);
    }

    .nav-social {
        display: flex;
        gap: 0.8rem;
        justify-content: flex-start;
        margin-top: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0,0,0,0.1);
    }

    .nav-social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: linear-gradient(135deg, #ffe066 0%, #ffb347 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(255,224,102,0.18);
        transition: transform 0.2s, box-shadow 0.2s;
        border: 2px solid #fff;
        margin-right: 0.2rem;
    }

    .nav-social a:hover {
        transform: scale(1.1) rotate(-6deg);
        box-shadow: 0 6px 18px rgba(255,224,102,0.28);
        background: linear-gradient(135deg, #ffb347 0%, #ffe066 100%);
    }

    .menu-toggle {
        display: flex !important;
        z-index: 10001;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, #ffe066 0%, #ffb347 100%);
        box-shadow: 0 2px 8px rgba(255,224,102,0.18);
        border: 2px solid #fff;
        transition: background 0.2s, box-shadow 0.2s;
        cursor: pointer;
    }

    .menu-toggle.active {
        background: linear-gradient(135deg, #764ba2 0%, #ffe066 100%);
        box-shadow: 0 4px 16px rgba(118,75,162,0.18);
    }

    .menu-toggle span {
        width: 28px;
        height: 4px;
        background: #764ba2;
        margin: 3px 0;
        border-radius: 2px;
        transition: 0.3s;
        box-shadow: 0 1px 4px rgba(118,75,162,0.12);
    }

    .menu-toggle.active span {
        background: #ffe066;
        box-shadow: 0 2px 8px rgba(255,224,102,0.18);
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow-x: hidden;
    padding-top: 80px; /* Account for fixed navigation */
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.sticky {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-social {
    display: flex;
    gap: 1rem;
    margin-left: auto;
}

.nav-social a {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-social a:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Mobile Menu */
.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 6rem;
    padding: 2rem 1rem;
}

.hero::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 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="1000" height="1000" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    flex: 1;
    padding: 2rem;
    z-index: 2;
    animation: slideInFromLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
    animation: fadeInUp 1s ease-out 0.5s both;
    white-space: normal;
    overflow: hidden;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
        padding: 0.5rem 0.2rem;
        color: #fff;
    }
    .hero-subtitle {
        font-size: 1rem;
        padding: 0.2rem 0.1rem;
        color: #fff;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn.primary {
    background: linear-gradient(45deg, #fff, #f0f0f0);
    color: #667eea;
    border: 2px solid #fff;
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn.secondary:hover {
    background: #fff;
    color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

.floating-elements {
    position: relative;
    height: 400px;
}

.element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element.circle {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.element.square {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    top: 60%;
    right: 20%;
    border-radius: 10px;
    animation-delay: 2s;
}

.element.triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(255,255,255,0.1);
    top: 40%;
    left: 60%;
    animation-delay: 4s;
}

/* Stats Section */
.stats-section {
    background: #fff;
    padding: 4rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: -4rem auto 4rem;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item h3 {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    color: #6c757d;
    font-weight: 500;
}

/* Content Sections */
.content {
    background: #fff;
    margin: 4rem auto 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 3rem;
    animation: fadeInUp 1s ease-out;
    max-width: 1200px;
}

.content h2 {
    color: #667eea;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Service Grid */
.service-grid, .photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card, .photo-item {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card:hover, .photo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-card h3, .photo-item h4 {
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p, .photo-item p {
    color: #6c757d;
}

/* Photography Section */
.photography {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.photography h2 {
    color: white;
}

.photography .photo-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.photography .photo-item h4 {
    color: white;
}

.photography .photo-item p {
    color: rgba(255,255,255,0.8);
}

/* Testimonials */
.testimonials {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: #667eea;
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial cite {
    color: #667eea;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Services Page Specific Styles */
.services-hero {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    min-height: 80vh;
    padding: 4rem 2rem;
    margin-bottom: 6rem;
}

.services-overview {
    margin-top: 6rem;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.icon-circle {
    text-align: center;
    animation: pulse 2s infinite;
}

.icon-circle span {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.icon-circle p {
    font-weight: 600;
    color: white;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-showcase-item {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.service-showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.service-showcase-item h3 {
    color: #4facfe;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-showcase-item ul {
    text-align: left;
    margin-top: 1rem;
}

.service-showcase-item li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Process Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    z-index: -1;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

.step h4 {
    color: #4facfe;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step p {
    color: #666;
}

/* Pricing Section */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border-color: #4facfe;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(79, 172, 254, 0.2);
}

.pricing-card h3 {
    color: #4facfe;
    margin-bottom: 1rem;
    font-weight: 700;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #4facfe;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.pricing-card li:last-child {
    border-bottom: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::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 1000 1000"><circle cx="100" cy="100" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="200" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="500" cy="800" r="4" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.contact-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-stat {
    text-align: center;
    animation: fadeInUp 1s ease-out 2s both;
}

.contact-stat span {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-stat p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.contact-bg-elements {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    pointer-events: none;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 20%;
    animation-delay: 3s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    right: 30%;
    animation-delay: 6s;
}

/* Contact Info Section */
.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}

.contact-item {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 107, 107, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.05), transparent);
    transition: left 0.6s;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.3);
}

.contact-icon {
    font-size: 3.5rem;
    margin-right: 2rem;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.contact-item h4 {
    color: #ff6b6b;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.contact-item:hover h4 {
    color: #ee5a24;
}

.contact-item p {
    color: #666;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

/* Contact Form Section */
.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Sidebar */
.contact-sidebar {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-sidebar h3 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-sidebar ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.contact-sidebar li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #dee2e6;
}

.contact-sidebar li:last-child {
    border-bottom: none;
}

.social-links h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #ff6b6b;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Map Section */
.map-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.map-content span {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.map-content p {
    color: #666;
    margin-bottom: 0.5rem;
}

.map-content small {
    color: #999;
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::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 1000 1000"><circle cx="200" cy="200" r="4" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="600" cy="700" r="5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.about-stat {
    text-align: center;
    animation: fadeInUp 1s ease-out 2s both;
}

.about-stat span {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.about-stat p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.about-bg-elements {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    pointer-events: none;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 8s ease-in-out infinite;
}

.about-shape.shape-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    right: 15%;
    animation-delay: 0s;
}

.about-shape.shape-2 {
    width: 70px;
    height: 70px;
    top: 60%;
    right: 25%;
    animation-delay: 4s;
}

.about-shape.shape-3 {
    width: 50px;
    height: 50px;
    bottom: 25%;
    right: 35%;
    animation-delay: 8s;
}

/* About Story Section */
.about-story {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #9c27b0, #673ab7);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-year {
    position: absolute;
    left: -25px;
    top: 0;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

.timeline-content h4 {
    color: #9c27b0;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    margin: 0;
}

/* Mission and Vision */
.about-mission {
    background: white;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.mission-card h3 {
    color: #9c27b0;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-card p {
    color: #555;
    line-height: 1.7;
}

/* Values Grid */
.about-values {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    color: #9c27b0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.about-team {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.team-member h4 {
    color: #9c27b0;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-role {
    color: #666;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}


/* Animations */
.animate {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.animate.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.animate.slide-in-from-left {
    animation: slideInFromLeft 1s ease-out forwards;
}

.animate.slide-in-from-right {
    animation: slideInFromRight 1s ease-out forwards;
}

.animate.zoom-in {
    animation: zoomIn 1s ease-out forwards;
}

.animate.rotate-in {
    animation: rotateIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-15deg);
    }
    to {
        opacity: 1;
        transform: rotate(0);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Tourism Page Keyframes */
@keyframes tourismTitleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes tourismTitleGlow {
    from {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.6);
    }
}

@keyframes tourismSubtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tourismBtnBounce {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatingPlane {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

@keyframes floatingMap {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(2deg);
    }
    66% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

@keyframes floatingCompass {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(5deg);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
    50% {
        transform: translateY(-40px) translateX(0px);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-20px) translateX(-10px);
        opacity: 0.9;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    border-top: 1px solid #666;
    margin-top: 4rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info {
    flex: 1;
    text-align: left;
}

.footer-info p {
    margin: 0;
}

.social-links {
    flex-shrink: 0;
}

.social-links h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.language-selector {
    margin-left: 2rem;
}

.language-selector select {
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .language-selector {
        margin-left: 0;
    }

    .language-selector select {
        padding: 0.7rem 0.9rem;
        border-radius: 1rem;
        border: 2px solid rgba(255,255,255,0.2);
        background: linear-gradient(135deg, rgba(255,224,102,0.1), rgba(255,224,102,0.05));
        color: #000;
        font-weight: 600;
        font-size: 1rem;
        width: 100%;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(118,75,162,0.08);
    }

    .language-selector select option {
        background: #fff;
        color: #000;
    }
}

.tourism {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
}

.tourism h2 {
    color: white;
}

.tourism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tourism-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tourism-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.tourism-item h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tourism-item p {
    color: rgba(255,255,255,0.8);
}

/* Tourism Page Specific Styles - Jungle & Ruins Theme */
.tourism-hero {
    background: linear-gradient(135deg, #1a3a1a 0%, #2d5a2d 50%, #1a3a1a 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tourism-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
    animation: junglePulse 8s ease-in-out infinite;
    opacity: 0.6;
}

/* Tourism Hero Animations */
.tourism-title {
    animation: tourismTitleSlideIn 1.5s ease-out, tourismTitleGlow 2s ease-in-out infinite alternate;
}

.tourism-subtitle {
    animation: tourismSubtitleFadeIn 2s ease-out 0.5s both;
}

.tourism-explore-btn {
    animation: tourismBtnBounce 1s ease-out 1s both;
}

.floating-plane {
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 3rem;
    animation: floatingPlane 8s ease-in-out infinite;
}

.floating-map {
    position: absolute;
    top: 60%;
    left: 15%;
    font-size: 2.5rem;
    animation: floatingMap 6s ease-in-out infinite reverse;
}

.floating-compass {
    position: absolute;
    bottom: 20%;
    right: 25%;
    font-size: 2rem;
    animation: floatingCompass 7s ease-in-out infinite;
}

.travel-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    font-size: 1.5rem;
    animation: particleFloat 10s ease-in-out infinite;
}

.particle-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.particle-2 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.particle-3 {
    top: 50%;
    left: 10%;
    animation-delay: 4s;
}

.particle-4 {
    bottom: 30%;
    right: 20%;
    animation-delay: 6s;
}

.particle-5 {
    bottom: 10%;
    left: 30%;
    animation-delay: 8s;
}

.tourism-services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tourism-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tourism-service-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.tourism-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.tourism-service-card .service-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.tourism-service-card h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tourism-service-card ul {
    text-align: left;
    margin-top: 1rem;
    list-style: none;
    padding: 0;
}

.tourism-service-card li {
    margin-bottom: 0.5rem;
    color: #555;
    padding-left: 1rem;
    position: relative;
}

.tourism-service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.tourism-destinations {
    background: white;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destination-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.destination-image {
    height: 200px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.destination-card h3 {
    color: #4CAF50;
    margin: 1.5rem 1rem 0.5rem;
    font-weight: 700;
}

.destination-card p {
    margin: 0 1rem 1rem;
    color: #555;
    line-height: 1.6;
}

.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 1rem 1rem;
    font-size: 0.9rem;
    color: #666;
}

.destination-highlights span {
    background: rgba(76, 175, 80, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.tourism-why-choose {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.why-choose-item h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-choose-item p {
    color: #666;
    line-height: 1.6;
}

.tourism-cta, .cta-guatemala {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.tourism-cta h2, .cta-guatemala h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.tourism-cta p, .cta-guatemala p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 8s ease-in-out infinite;
}

.cta-shape.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cta-shape.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.cta-shape.shape-3 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

.tourism-bg-elements {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .content {
        padding: 2.5rem;
    }

    .contact-form-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 30vh;
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 80%;
        text-align: center;
    }

    .stats-section {
        margin: -2rem auto 2rem;
        padding: 2rem 1rem;
    }

    .container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .content {
        padding: 2rem 1rem;
        margin: 2rem auto;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

.tourism-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 8s ease-in-out infinite;
}

.tourism-shape.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.tourism-shape.shape-2 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 20%;
    animation-delay: 3s;
}

.tourism-shape.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    right: 30%;
    animation-delay: 6s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 300px;
        height: calc(100vh - 80px);
        background: white;
        backdrop-filter: blur(15px);
        box-shadow: 2px 0 20px rgba(0,0,0,0.1);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 2rem;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateX(0);
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
        width: 100%;
    }

    .nav-links a {
        color: #333;
        font-size: 1.2rem;
        padding: 0.5rem 0;
        display: block;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: #667eea;
    }

    .menu-toggle {
        display: flex !important;
        z-index: 1001;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 5rem 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .floating-elements {
        display: none;
    }

    .content {
        padding: 2rem 1rem;
        margin: 2rem 1rem;
    }

    .service-grid, .photo-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .stats-section {
        padding: 2rem 1rem;
    }

    .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    /* Contact Form Responsive */
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-sidebar {
        padding: 2rem;
    }

    /* About Story Responsive */
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline {
        padding-left: 1rem;
    }

    .timeline-item {
        padding-left: 1rem;
    }

    .timeline-year {
        left: -20px;
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    /* Mission Vision Responsive */
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-card {
        padding: 2rem 1.5rem;
    }

    /* Contact Stats Responsive */
    .contact-stats, .about-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-stat, .about-stat {
        text-align: center;
    }

    /* Process Steps Responsive */
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .step::after {
        display: none;
    }

    /* Pricing Cards Responsive */
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    /* Services Showcase Responsive */
    .services-showcase {
        grid-template-columns: 1fr;
    }

    .service-showcase-item {
        padding: 2rem;
    }

    /* Values Grid Responsive */
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* Team Grid Responsive */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Details Responsive */
    .contact-details {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .contact-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .container {
        grid-template-columns: 1fr;
    }

    .content h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

/* ======== ENHANCED TOURISM PAGE ANIMATIONS ======== */

/* Jungle Pulse Animation */
@keyframes junglePulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.9;
    }
}

/* Vines Swing Animation */
@keyframes vineSwing {
    0%, 100% {
        transform: rotate(0deg);
        transform-origin: top center;
    }
    25% {
        transform: rotate(2deg);
    }
    75% {
        transform: rotate(-2deg);
    }
}

/* Ruins Crumble Animation */
@keyframes ruinsCrumble {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

/* Ancient Stone Glow */
@keyframes stoneGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(76, 175, 80, 0.5),
                    0 0 20px rgba(139, 69, 19, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(76, 175, 80, 0.8),
                    0 0 40px rgba(139, 69, 19, 0.5);
    }
}

/* Jungle Mist Animation */
@keyframes jungleMist {
    0%, 100% {
        opacity: 0.2;
        transform: translateY(0);
    }
    50% {
        opacity: 0.4;
        transform: translateY(-10px);
    }
}

/* Explorer Movement */
@keyframes explorerMove {
    0% {
        transform: translateX(-100px) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100px) rotate(0deg);
        opacity: 0;
    }
}

/* Card Flip Animation */
@keyframes cardFlip {
    0%, 10%, 90%, 100% {
        transform: rotateY(0);
    }
    50% {
        transform: rotateY(180deg);
    }
}

/* Bounce with Delay */
@keyframes bounceWithDelay {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Enhanced Tourism Hero Title */
.tourism-title {
    font-size: 4rem;
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    animation: stoneGlow 3s ease-in-out infinite, ruinsCrumble 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

/* Enhanced Tourism Subtitle */
.tourism-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeInUp 1.5s ease-out 0.5s both;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

/* Enhanced Explore Button */
.tourism-explore-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    animation: tourismBtnBounce 1.2s ease-out 1s both;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

.tourism-explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
}

.tourism-explore-btn:hover::before {
    left: 100%;
}

.tourism-explore-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.6);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Floating Elements - Enhanced */
.floating-plane, .floating-map, .floating-compass {
    position: absolute;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.floating-plane {
    top: 15%;
    right: 8%;
    font-size: 4rem;
    animation: floatingPlane 10s ease-in-out infinite;
}

.floating-map {
    top: 65%;
    left: 5%;
    font-size: 3.5rem;
    animation: floatingMap 8s ease-in-out infinite reverse;
}

.floating-compass {
    bottom: 15%;
    right: 15%;
    font-size: 3rem;
    animation: floatingCompass 7s ease-in-out infinite;
}

/* Travel Particles - Enhanced */
.travel-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    font-size: 2rem;
    animation: particleFloat 15s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.particle-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle-2 {
    top: 25%;
    right: 10%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.particle-3 {
    top: 55%;
    left: 8%;
    animation-delay: 4s;
    animation-duration: 13s;
}

.particle-4 {
    bottom: 25%;
    right: 8%;
    animation-delay: 6s;
    animation-duration: 15s;
}

.particle-5 {
    bottom: 10%;
    left: 20%;
    animation-delay: 8s;
    animation-duration: 12s;
}

/* Tourism Services - Enhanced Animations */
.tourism-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.tourism-service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(76, 175, 80, 0.1);
    animation: fadeInUp 1s ease-out forwards;
}

.tourism-service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    animation: jungleMist 6s ease-in-out infinite;
    pointer-events: none;
}

.tourism-service-card:nth-child(1) { animation-delay: 0.1s; }
.tourism-service-card:nth-child(2) { animation-delay: 0.3s; }
.tourism-service-card:nth-child(3) { animation-delay: 0.5s; }
.tourism-service-card:nth-child(4) { animation-delay: 0.7s; }

.tourism-service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.3);
}

.service-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: bounceWithDelay 2s ease-in-out infinite;
}

.tourism-service-card:hover .service-icon {
    animation: spin 0.6s ease-in-out;
}

.tourism-service-card h3 {
    color: #1a3a1a;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.tourism-service-card p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.tourism-service-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.tourism-service-card li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    color: #666;
    position: relative;
    transition: all 0.3s ease;
}

.tourism-service-card li::before {
    content: '🌿';
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

.tourism-service-card:hover li {
    transform: translateX(5px);
    color: #1a3a1a;
}

/* Destinations Grid - Enhanced */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.destination-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: ruinsCrumble 0.8s ease-out forwards;
    position: relative;
}

.destination-card:nth-child(1) { animation-delay: 0.1s; }
.destination-card:nth-child(2) { animation-delay: 0.3s; }
.destination-card:nth-child(3) { animation-delay: 0.5s; }
.destination-card:nth-child(4) { animation-delay: 0.7s; }

.destination-card:hover {
    transform: translateY(-20px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(76, 175, 80, 0.25);
}

.destination-image {
    height: 220px;
    background: linear-gradient(135deg, #1a3a1a 0%, #2d5a2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.destination-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: jungleMist 5s ease-in-out infinite;
}

.destination-emoji {
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.destination-card h3 {
    color: #1a3a1a;
    margin: 1.5rem 1rem 0.5rem;
    font-weight: 700;
    font-size: 1.6rem;
}

.destination-card p {
    margin: 0 1rem 1rem;
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 0 1rem 1.5rem;
    font-size: 0.95rem;
}

.destination-highlights span {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    color: #555;
    transition: all 0.3s ease;
}

.destination-card:hover .destination-highlights span {
    background: rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.4);
    transform: translateY(-2px);
}

/* Why Choose Section - Enhanced */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-choose-item {
    background: white;
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 5px solid #4CAF50;
    animation: slideInFromLeft 0.8s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.why-choose-item:nth-child(1) { animation-delay: 0.1s; }
.why-choose-item:nth-child(2) { animation-delay: 0.3s; }
.why-choose-item:nth-child(3) { animation-delay: 0.5s; }
.why-choose-item:nth-child(4) { animation-delay: 0.7s; }

.why-choose-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
    animation: junglePulse 6s ease-in-out infinite;
}

.why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(76, 175, 80, 0.2);
    border-left-color: #2d5a2d;
}

.why-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 5s ease-in-out infinite;
}

.why-choose-item:hover .why-icon {
    animation: spin 0.6s ease-in-out;
}

.why-choose-item h3 {
    color: #1a3a1a;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.4rem;
}

.why-choose-item p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* CTA Section - Enhanced */
.tourism-cta, .cta-guatemala {
    background: linear-gradient(135deg, #1a3a1a 0%, #2d5a2d 50%, #1a3a1a 100%);
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.tourism-cta::before, .cta-guatemala::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
    animation: junglePulse 8s ease-in-out infinite;
    pointer-events: none;
}

.tourism-cta h2, .cta-guatemala h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    animation: stoneGlow 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.tourism-cta p, .cta-guatemala p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.tourism-cta .btn.primary, .cta-guatemala .btn.primary {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    animation: bounceWithDelay 2s ease-in-out infinite;
}

.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    animation: float 8s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

.cta-shape.shape-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.cta-shape.shape-2 {
    width: 90px;
    height: 90px;
    top: 60%;
    right: 12%;
    animation-delay: 3s;
}

.cta-shape.shape-3 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    left: 15%;
    animation-delay: 6s;
}

/* New Enhanced Animations */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design for Tourism */
@media (max-width: 1024px) {
    .tourism-title {
        font-size: 3rem;
    }

    .tourism-subtitle {
        font-size: 1.2rem;
    }

    .floating-plane {
        font-size: 3rem;
    }

    .floating-map {
        font-size: 2.5rem;
    }

    .floating-compass {
        font-size: 2rem;
    }

    .tourism-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .service-icon {
        font-size: 4rem;
    }

    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .why-icon {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .tourism-hero {
        min-height: 80vh;
        padding: 3rem 1rem;
    }

    .tourism-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .tourism-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .floating-plane, .floating-map, .floating-compass {
        display: none;
    }

    .particle {
        font-size: 1.5rem;
    }

    .tourism-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tourism-service-card {
        padding: 2rem;
    }

    .service-icon {
        font-size: 3.5rem;
    }

    .tourism-service-card h3 {
        font-size: 1.3rem;
    }

    .tourism-service-card p {
        font-size: 0.95rem;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .destination-image {
        height: 180px;
        font-size: 4rem;
    }

    .destination-card h3 {
        font-size: 1.4rem;
        margin: 1rem 1rem 0.5rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-icon {
        font-size: 3rem;
    }

    .why-choose-item h3 {
        font-size: 1.2rem;
    }

    .why-choose-item p {
        font-size: 0.95rem;
    }

    .tourism-cta, .cta-guatemala {
        padding: 4rem 1rem;
    }

    .tourism-cta h2, .cta-guatemala h2 {
        font-size: 2rem;
    }

    .tourism-cta p, .cta-guatemala p {
        font-size: 1.1rem;
    }

    .cta-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .tourism-hero {
        min-height: 60vh;
        padding: 2rem 1rem;
    }

    .tourism-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .tourism-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .tourism-explore-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .travel-particles {
        display: none;
    }

    .tourism-services-grid {
        gap: 1rem;
    }

    .tourism-service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .tourism-service-card h3 {
        font-size: 1.1rem;
    }

    .tourism-service-card p {
        font-size: 0.9rem;
    }

    .tourism-service-card li {
        padding: 0.5rem 0 0.5rem 1.2rem;
        font-size: 0.9rem;
    }

    .destination-image {
        height: 150px;
        font-size: 3rem;
    }

    .destination-card h3 {
        font-size: 1.2rem;
        margin: 0.8rem 0.8rem 0.3rem;
    }

    .destination-card p {
        margin: 0 0.8rem 0.8rem;
        font-size: 0.9rem;
    }

    .destination-highlights {
        gap: 0.4rem;
        margin: 0 0.8rem 1rem;
        font-size: 0.85rem;
    }

    .destination-highlights span {
        padding: 0.3rem 0.6rem;
    }

    .why-choose-grid {
        gap: 1rem;
    }

    .why-choose-item {
        padding: 1.5rem;
        border-left-width: 4px;
    }

    .why-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .why-choose-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }

    .why-choose-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .tourism-cta, .cta-guatemala {
        padding: 3rem 1rem;
    }

    .tourism-cta h2, .cta-guatemala h2 {
        font-size: 1.6rem;
    }

    .tourism-cta p, .cta-guatemala p {
        font-size: 1rem;
    }
}
