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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: #0b2600;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    color: #d98600;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0b2600;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-tertiary,
.btn-hero,
.btn-package,
.btn-custom,
.btn-contact,
.btn-newsletter,
.btn-book,
.btn-send-message {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #d98600;
    color: white;
}

.btn-primary:hover {
    background-color: #b8730a;
    color: white;
}

.btn-secondary {
    background-color: #0b2600;
    color: white;
}

.btn-secondary:hover {
    background-color: #1a4800;
    color: white;
}

.btn-tertiary {
    background-color: transparent;
    color: #d98600;
    border: 2px solid #d98600;
}

.btn-tertiary:hover {
    background-color: #d98600;
    color: white;
}

.btn-hero {
    background-color: #d98600;
    color: white;
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 8px;
}

.btn-hero:hover {
    background-color: #b8730a;
    color: white;
    transform: translateY(-2px);
}

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

.navbar {
    padding: 1rem;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #0b2600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #d98600;
    background-color: rgba(217, 134, 0, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0b2600 0%, #1a4800 50%, #d98600 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

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

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

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Company Section */
.company-section {
    background-color: #f8f9fa;
}

.company-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.company-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.company-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #d98600;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

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

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: #0b2600;
}

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

/* Packages Section */
.packages-section {
    background-color: #f8f9fa;
}

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

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.package-card.featured {
    border: 3px solid #d98600;
    transform: scale(1.05);
}

.package-card.featured::before {
    content: "RECOMANDAT";
    position: absolute;
    top: 20px;
    right: -30px;
    background: #d98600;
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    z-index: 1;
}

.package-icon {
    width: 80px;
    height: 80px;
    margin: 30px auto 20px;
    display: block;
}

.package-card h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #0b2600;
}

.package-price {
    text-align: center;
    margin-bottom: 30px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d98600;
}

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

.package-features {
    list-style: none;
    padding: 0 30px;
    margin-bottom: 30px;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d98600;
    font-weight: bold;
}

.package-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.btn-package {
    width: 100%;
    background-color: #0b2600;
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
}

.btn-package:hover {
    background-color: #1a4800;
    color: white;
}

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

.achievement-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #d98600;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

/* Reviews Section */
.reviews-section {
    background-color: #f8f9fa;
}

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

.review-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.star-icon {
    width: 20px;
    height: 20px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.review-author strong {
    color: #0b2600;
}

.review-author span {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-item h3 {
    background: #f8f9fa;
    padding: 20px 30px;
    margin: 0;
    color: #0b2600;
    border-bottom: 1px solid #eee;
}

.faq-item p {
    padding: 20px 30px;
    margin: 0;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #0b2600, #1a4800);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.newsletter-text {
    text-align: center;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.newsletter-text h2 {
    color: white;
    margin-bottom: 15px;
}

.newsletter-text p {
    color: rgba(255,255,255,0.9);
}

.newsletter-form {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

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

.form-row:last-child .form-input {
    margin-right: 15px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    background: rgba(255,255,255,0.9);
    color: #333;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.btn-newsletter {
    background-color: #d98600;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-newsletter:hover {
    background-color: #b8730a;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    space-y: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 10px;
    color: #0b2600;
}

.contact-details p {
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: #d98600;
    font-weight: 500;
}

.social-links {
    margin-top: 40px;
}

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

.social-link {
    display: block;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #d98600;
    transform: translateY(-2px);
}

.social-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

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

.contact-form .form-input,
.contact-form .form-textarea {
    background: white;
    border: 2px solid #eee;
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
    outline: none;
    border-color: #d98600;
}

.btn-contact {
    background-color: #d98600;
    color: white;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.btn-contact:hover {
    background-color: #b8730a;
}

/* Footer */
.footer {
    background-color: #0b2600;
    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;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: bold;
}

.footer-description {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d98600;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0b2600, #1a4800);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Legal Pages */
.legal-page {
    padding: 40px 0;
    margin-top: 70px;
    word-break: break-word;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 0;
    background: #f8f9fa;
    border-radius: 15px;
}

.legal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.legal-subtitle {
    color: #666;
    font-style: italic;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.legal-section h2 {
    color: #0b2600;
    border-bottom: 3px solid #d98600;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.legal-section h3 {
    color: #0b2600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-section ul, 
.legal-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.legal-footer {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    font-style: italic;
    color: #666;
}

/* Cookie Management */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0b2600;
    color: white;
    padding: 20px;
    z-index: 1001;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}
.cookie-banner p {
    color: white;
    margin-bottom: 0;
}
footer p {
    color: white;
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
}

.cookie-category {
    margin-bottom: 20px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cookie-category label:hover {
    background-color: #f8f9fa;
}

.cookie-modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.cookie-table {
    margin: 20px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #0b2600;
}

.cookie-controls {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.cookie-preference {
    margin-bottom: 15px;
}

.cookie-preference label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cookie-preference label:hover {
    background-color: rgba(217, 134, 0, 0.1);
}

/* About Page Specific */
.company-story {
    background-color: #f8f9fa;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.story-stats {
    display: grid;
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 80px;
    height: 80px;
    margin: 30px auto 20px;
    display: block;
    border-radius: 50%;
}

.team-info {
    padding: 0 30px 30px;
    text-align: center;
}

.team-position {
    color: #d98600;
    font-weight: bold;
    margin-bottom: 15px;
}

.team-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.specialty {
    background: #f8f9fa;
    color: #0b2600;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #d98600;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

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

.certification-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #0b2600;
}

.cert-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.contact-cta {
    background: linear-gradient(135deg, #0b2600, #1a4800);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Tours Page Specific */
.filters-section {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.filters-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-weight: bold;
    color: #0b2600;
}

.filter-select {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    background: white;
    font-size: 16px;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: #d98600;
}

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

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.tour-image {
    position: relative;
    padding: 30px;
    background: #f8f9fa;
    text-align: center;
}

.tour-icon {
    width: 80px;
    height: 80px;
}

.tour-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tour-rating .star {
    width: 12px;
    height: 12px;
}

.rating-text {
    font-weight: bold;
    color: #d98600;
    font-size: 0.9rem;
}

.tour-content {
    padding: 30px;
}

.tour-title {
    margin-bottom: 15px;
    color: #0b2600;
}

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

.tour-duration,
.tour-region {
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 15px;
}

.tour-description {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.feature {
    background: rgba(217, 134, 0, 0.1);
    color: #d98600;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.tour-price {
    text-align: left;
}

.tour-price .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #d98600;
}

.tour-price .price-period {
    color: #666;
    font-size: 0.9rem;
}

.btn-book {
    background-color: #0b2600;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-book:hover {
    background-color: #1a4800;
}

.custom-tours-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.custom-tours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.custom-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.custom-features {
    list-style: none;
    margin: 20px 0;
}

.custom-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.custom-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d98600;
    font-weight: bold;
}

.custom-tour-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.custom-tour-form h3 {
    margin-bottom: 30px;
    color: #0b2600;
    text-align: center;
}

/* Contact Page Specific */
.contact-content-section {
    padding: 40px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-detailed {
    space-y: 40px;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.contact-details-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-detail-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.detail-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.detail-content h3 {
    margin-bottom: 10px;
    color: #0b2600;
}

.detail-content small {
    color: #666;
    font-size: 0.9rem;
}

.emergency-contact {
    background: #fff3e0;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #d98600;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.emergency-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.emergency-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: #d98600;
}

.social-links-detailed {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link-detailed {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    color: #333;
}

.social-link-detailed:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    color: #333;
}

.social-icon-detailed {
    width: 30px;
    height: 30px;
}

.social-text strong {
    display: block;
    color: #0b2600;
}

.social-text small {
    color: #666;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.detailed-contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #0b2600;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 3px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background-color: #d98600;
    border-color: #d98600;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.btn-send-message {
    width: 100%;
    background-color: #d98600;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-send-message:hover {
    background-color: #b8730a;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.contact-faq-section {
    background-color: #f8f9fa;
}

.faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-column {
    space-y: 20px;
}

.faq-item-contact {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.faq-item-contact h3 {
    color: #0b2600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-item-contact p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Thanks Page Specific */
.thanks-section {
    padding: 100px 0;
    margin-top: 70px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.thanks-title {
    font-size: 3rem;
    color: #0b2600;
    margin-bottom: 20px;
}

.thanks-message {
    margin-bottom: 40px;
}

.thanks-message .lead {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0b2600;
    margin-bottom: 15px;
}

.thanks-details {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.thanks-next-steps {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.thanks-next-steps h3 {
    margin-bottom: 20px;
    color: #0b2600;
}

.steps-list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.step-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.step-item:last-child {
    border-bottom: none;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.emergency-info {
    background: #fff3e0;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #d98600;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.emergency-info .emergency-icon {
    width: 40px;
    height: 40px;
}

.emergency-info h4 {
    margin-bottom: 10px;
    color: #0b2600;
}

.emergency-info .emergency-phone {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

.additional-info-section {
    background-color: #f8f9fa;
}

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

.info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.social-follow-section {
    background: white;
}

.social-follow-content {
    text-align: center;
}

.social-follow-content h2 {
    margin-bottom: 15px;
    color: #0b2600;
}

.social-follow-content p {
    margin-bottom: 30px;
    color: #666;
}

.social-links-thanks {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link-thanks {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #333;
    min-width: 120px;
}

.social-link-thanks:hover {
    background: #d98600;
    color: white;
    transform: translateY(-5px);
}

.social-icon-thanks {
    width: 30px;
    height: 30px;
}

/* 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;
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

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

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

    .section {
        padding: 60px 0;
    }

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

    .company-content,
    .story-content,
    .newsletter-content,
    .contact-content,
    .custom-tours-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .faq-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

    .social-links-thanks {
        flex-direction: column;
        align-items: center;
    }

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

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

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

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

    .package-card.featured {
        transform: none;
    }

    .tour-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .legal-section {
        padding: 20px;
    }

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

    .emergency-info {
        flex-direction: column;
        text-align: center;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .social-links,
    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        display: none;
    }

    .page-header {
        margin-top: 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .legal-section {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary,
    .btn-secondary {
        border: 2px solid;
    }

    .package-card,
    .tour-card,
    .benefit-card {
        border: 2px solid #333;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Accessibility */
.nav-link:focus,
.btn-primary:focus,
.btn-secondary:focus,
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: 3px solid #d98600;
    outline-offset: 2px;
}

/* Screen Reader Only Text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
