/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #93b800;
    font-size: 24px;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #93b800;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #93b800;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #93b800 0%, #b85c00 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-btn {
    display: inline-block;
    background-color: #fff;
    color: #93b800;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #93b800 0%, #b85c00 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.header-content h1 {
    font-size: 2.5rem;
    margin: 20px 0 10px;
}

.header-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin: 20px 0 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layouts */
.info-grid,
.achievements-grid,
.offers-grid,
.advantages-grid,
.faq-grid,
.categories-grid,
.features-grid,
.tips-grid,
.rules-grid,
.emergency-grid,
.contact-grid,
.hours-grid,
.steps-grid,
.alternative-grid {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

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

.achievements-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.offers-grid,
.categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

.faq-grid,
.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.tips-grid,
.rules-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.emergency-grid,
.contact-grid,
.hours-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.steps-grid,
.alternative-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Card Styles */
.info-item,
.achievement-item,
.offer-item,
.advantage-item,
.faq-item,
.category-item,
.feature-item,
.tip-item,
.rule-item,
.emergency-item,
.contact-item,
.hours-item,
.step-item,
.alternative-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover,
.category-item:hover,
.feature-item:hover,
.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.info-item h3,
.achievement-item h3,
.offer-item h3,
.advantage-item h3,
.category-item h3,
.feature-item h3,
.tip-item h3,
.rule-item h3,
.emergency-item h3,
.contact-item h3,
.hours-item h3,
.step-item h3,
.alternative-item h3 {
    color: #333;
    margin: 15px 0 10px;
    font-size: 1.3rem;
}

.faq-item h3 {
    color: #93b800;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p,
.tip-item p,
.rule-item p,
.feature-item p {
    color: #666;
    line-height: 1.7;
}

/* Special Sections */
.achievements {
    background-color: #f8f9fa;
}

.special-offers {
    background: linear-gradient(135deg, rgba(147, 184, 0, 0.05) 0%, rgba(184, 92, 0, 0.05) 100%);
}

.advantages {
    background-color: #f8f9fa;
}

.tourism-features {
    background-color: #f8f9fa;
}

.emergency-info {
    background: linear-gradient(135deg, rgba(184, 92, 0, 0.05) 0%, rgba(147, 184, 0, 0.05) 100%);
}

/* Offer Tags */
.offer-tag {
    background: linear-gradient(135deg, #93b800, #b85c00);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 15px;
    display: inline-block;
}

/* Tours Section */
.tours-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tour-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tour-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #93b800, #b85c00);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.tour-content {
    padding: 25px;
}

.tour-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

.tour-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.tour-duration,
.tour-group {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
}

.tour-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 20px;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #93b800;
}

.price-unit {
    font-size: 1rem;
    color: #666;
}

.tour-btn {
    width: 100%;
    background: linear-gradient(135deg, #93b800, #b85c00);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.tour-btn:hover {
    opacity: 0.9;
}

/* Forms */
.newsletter-form,
.contact-form,
.custom-tour-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 40px auto 0;
}

.custom-tour-form {
    max-width: 800px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #93b800;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn,
.action-btn {
    background: linear-gradient(135deg, #93b800, #b85c00);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.submit-btn:hover,
.action-btn:hover {
    opacity: 0.9;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #93b800, #b85c00);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.newsletter h2 {
    margin: 20px 0 10px;
    font-size: 2rem;
}

.newsletter p {
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    text-align: center;
    background-color: #f8f9fa;
}

.thank-you-content h1 {
    font-size: 3rem;
    color: #93b800;
    margin: 20px 0;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps {
    margin: 60px 0;
}

.next-steps h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
}

.response-time {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 50px auto;
    text-align: center;
}

.response-time h2 {
    color: #93b800;
    margin: 20px 0 15px;
}

.response-time p {
    color: #666;
    line-height: 1.8;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.action-btn.primary {
    background: linear-gradient(135deg, #93b800, #b85c00);
}

.action-btn.secondary {
    background: linear-gradient(135deg, #b85c00, #93b800);
}

.action-btn.tertiary {
    background: #333;
}

/* Contact Page */
.contact-form-section {
    background-color: #f8f9fa;
}

.contact-help {
    background: linear-gradient(135deg, #93b800, #b85c00);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.contact-content h2 {
    margin: 20px 0 15px;
    font-size: 2rem;
}

.contact-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-btn {
    background: #fff;
    color: #93b800;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease;
    display: inline-block;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

.quick-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.call-btn {
    background: #93b800;
    color: white;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.quick-btn:hover {
    transform: translateY(-2px);
}

.alt-link {
    color: #93b800;
    text-decoration: none;
    font-weight: bold;
}

.alt-link:hover {
    text-decoration: underline;
}

/* Map Section */
.map-placeholder {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-directions {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.map-directions h3 {
    color: #93b800;
    margin-bottom: 15px;
}

.map-directions ul {
    list-style: none;
}

.map-directions li {
    padding: 5px 0;
    color: #666;
}

.map-directions li::before {
    content: "✓";
    color: #93b800;
    font-weight: bold;
    margin-right: 10px;
}

/* Footer */
.footer {
    background-color: #333;
    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-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-section h3 {
    color: #93b800;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #93b800;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #93b800;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 200px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.cookie-btn.primary {
    background: #93b800;
    color: white;
}

.cookie-btn.secondary {
    background: #b85c00;
    color: white;
}

.cookie-btn.tertiary {
    background: transparent;
    color: white;
    border: 1px solid #ccc;
}

.cookie-btn:hover {
    opacity: 0.8;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    margin: 0;
    color: #333;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.modal-body {
    padding: 20px;
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.category-header {
    margin-bottom: 10px;
}

.category-header label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    cursor: pointer;
}

.cookie-category p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 15px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tours-container {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .quick-buttons {
        flex-direction: column;
        align-items: center;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .newsletter-form,
    .contact-form,
    .custom-tour-form {
        padding: 30px 20px;
    }

    .info-grid,
    .achievements-grid,
    .offers-grid,
    .advantages-grid,
    .faq-grid,
    .categories-grid,
    .features-grid,
    .tips-grid,
    .rules-grid,
    .emergency-grid,
    .contact-grid,
    .hours-grid,
    .steps-grid,
    .alternative-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    table {
    display: none;}
}

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

.info-item,
.achievement-item,
.offer-item,
.advantage-item,
.category-item,
.feature-item,
.tour-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}