/* Global Styles */
:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e67e22;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333333;
    --background-color: #ffffff;
    --border-color: #ddd;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 5px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark-color);
}

p {
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.center {
    text-align: center;
    margin: 30px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

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

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

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

.btn-tertiary {
    background-color: var(--light-color);
    color: var(--dark-color);
    border: 1px solid var(--border-color);
}

.btn-tertiary:hover {
    background-color: #dde4e6;
    color: var(--dark-color);
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

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

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

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

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

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

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
}

/* Page Banner */
.page-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/7.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: white;
}

.page-banner p {
    font-size: 18px;
    margin-bottom: 0;
}

/* Tip of the Day */
.tip-of-the-day {
    background-color: #f8f9fa;
    padding: 30px 0;
    margin: 40px 0;
}

.tip-of-the-day h2 {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.tip-content {
    background-color: white;
    border-left: 5px solid var(--accent-color);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
}

.tip-content p {
    margin: 0;
    font-style: italic;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.feature-box:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
}

.feature-box .icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Popular Tours */
.popular-tours {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.popular-tours h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

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

.tour-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.tour-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.tour-info {
    padding: 20px;
}

.tour-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.tour-info p {
    margin-bottom: 20px;
    color: #666;
}

/* Blog Preview */
.blog-preview {
    padding: 80px 0;
}

.blog-preview h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.post {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

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

.post h3 {
    margin: 20px 20px 10px;
    font-size: 20px;
}

.post p {
    margin: 0 20px 15px;
    color: #666;
}

.read-more {
    display: inline-block;
    margin: 0 20px 20px;
    color: var(--primary-color);
    font-weight: 600;
}

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

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.testimonial {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin: 0 auto;
    max-width: 800px;
}

.testimonial .quote {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial .quote:before {
    content: '"';
    font-size: 60px;
    color: #ddd;
    position: absolute;
    left: -20px;
    top: -20px;
}

.client {
    display: flex;
    align-items: center;
}

.client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.client h4 {
    margin: 0;
    font-size: 18px;
}

.client p {
    margin: 5px 0 0;
    color: #666;
}

.feedback-btn {
    margin-top: 30px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-about .footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    margin: 0;
}

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

.footer-links ul li a,
.footer-legal ul li a {
    color: #bdc3c7;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.footer-contact p svg {
    margin-right: 10px;
}

.social-media {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 10px;
    color: white;
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    color: #bdc3c7;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    animation: slideUp 0.5s forwards;
    animation-delay: 1s;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 900px;
}

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

.cookie-policy {
    font-size: 14px;
    margin-bottom: 0;
}

.cookie-policy a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    width: 100%;
    max-width: 600px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--dark-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    outline: none;
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 4px;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
}

/* Rating */
.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating input {
    display: none;
}

.rating label {
    cursor: pointer;
    width: 30px;
    height: 30px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23ddd" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
}

.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23f39c12" stroke="%23f39c12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>');
}

/* Thank You Modal */
.thank-you {
    text-align: center;
    padding: 50px 30px;
}

.thank-you svg {
    color: var(--success-color);
    margin-bottom: 20px;
}

.thank-you h2 {
    color: var(--success-color);
    margin-bottom: 15px;
}

.thank-you p {
    margin-bottom: 30px;
}

.close-thank-you {
    margin: 0 auto;
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.blog-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

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

.blog-details {
    padding: 25px;
}

.blog-details .date {
    color: #777;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.blog-details h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.blog-details p {
    margin-bottom: 20px;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

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

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

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
    font-size: 16px;
}

.newsletter-form button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Blog Post */
.blog-post {
    padding: 60px 0;
}

.post-header {
    margin-bottom: 40px;
}

.breadcrumbs {
    margin-bottom: 15px;
    color: #777;
}

.breadcrumbs a {
    color: #777;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.post-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.post-meta {
    margin-bottom: 30px;
    color: #777;
}

.post-meta .date, 
.post-meta .author {
    margin-right: 20px;
}

.featured-image {
    margin-bottom: 40px;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

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

.post-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
}

.post-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
}

.post-content p, 
.post-content ul, 
.post-content ol {
    margin-bottom: 20px;
}

.post-content ul li, 
.post-content ol li {
    margin-bottom: 10px;
}

.post-content strong {
    font-weight: 700;
}

.conclusion {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 40px 0;
}

.share-post {
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.share-post h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.social-share {
    display: flex;
}

.social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    margin-right: 15px;
    color: var(--dark-color);
    transition: var(--transition);
}

.social-share a:hover {
    background-color: var(--primary-color);
    color: white;
}

.related-posts {
    margin-bottom: 60px;
}

.related-posts h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-post {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
}

.related-post img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-post h4 {
    padding: 0 15px;
    margin: 15px 0 10px;
    font-size: 18px;
}

.related-post a {
    display: block;
    padding: 0 15px 15px;
    color: var(--primary-color);
    font-weight: 600;
}

/* About Page */
.about-story {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-values {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-values h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

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

.value-box {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.value-box:hover {
    transform: translateY(-5px);
}

.value-box .icon {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 20px;
}

.value-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.about-team {
    padding: 80px 0;
}

.about-team h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 20px 5px;
    font-size: 20px;
}

.team-member p {
    margin: 0 20px 15px;
}

.team-member p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 600;
}

.social-links {
    display: flex;
    padding: 0 20px 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f8f9fa;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--dark-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

.about-stats {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-approach {
    padding: 80px 0;
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.approach-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.approach-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.sustainability {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.sustainability h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.sustainability-box {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.sustainability-box:hover {
    transform: translateY(-5px);
}

.sustainability-box .icon {
    color: var(--success-color);
    font-size: 36px;
    margin-bottom: 20px;
}

.sustainability-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.sustainability-note {
    text-align: center;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

.partners {
    padding: 80px 0;
}

.partners h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo img {
    max-width: 150px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.cta {
    padding: 80px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/13.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

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

.cta h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Services Page */
.services-intro {
    padding: 60px 0;
}

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

.main-services {
    padding: 40px 0 80px;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.service-card.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-card.reverse .service-content {
    direction: ltr;
}

.service-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 25px;
}

.service-features li {
    margin-bottom: 10px;
}

.additional-services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.additional-services h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.additional-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.additional-card .icon {
    color: var(--primary-color);
    font-size: 30px;
    margin-bottom: 20px;
}

.additional-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.additional-card p {
    margin-bottom: 0;
}

.service-process {
    padding: 80px 0;
}

.service-process h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.step {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: calc(25% - 30px);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

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

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.destinations {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.destinations h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.destinations-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 250px;
    box-shadow: var(--box-shadow);
}

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

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

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    color: white;
}

.overlay h3 {
    color: white;
    margin-bottom: 5px;
}

.overlay p {
    margin: 0;
    font-size: 14px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.faqs {
    padding: 80px 0;
}

.faqs h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    margin-bottom: 0;
}

/* Contact Page */
.contact-intro {
    padding: 60px 0 20px;
}

.contact-intro p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-main {
    padding: 40px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
}

.contact-form-container {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
    margin-bottom: 30px;
    font-size: 28px;
    text-align: center;
}

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

.full-width {
    grid-column: 1 / -1;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.contact-card .icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-card p {
    margin-bottom: 10px;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

.contact-card .detail {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.social-contact {
    text-align: center;
}

.social-contact h3 {
    margin-bottom: 20px;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #f8f9fa;
    border-radius: 50%;
    color: var(--dark-color);
    transition: var(--transition);
}

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

.map-section {
    padding: 0 0 80px;
}

.map-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-contact h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.feedback {
    padding: 80px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/32.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

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

.feedback h2 {
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
}

.feedback p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Feedback Button */
.feedback-button {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features .container,
    .tours-grid,
    .values-grid,
    .sustainability-grid,
    .partners-grid,
    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step {
        width: calc(33.333% - 30px);
    }
}

@media (max-width: 992px) {
    .about-content,
    .approach-content,
    .service-card,
    .service-card.reverse,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.reverse {
        direction: ltr;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    header .container {
        flex-direction: column;
        padding: 15px 20px;
    }
    
    header {
        height: auto;
        position: relative;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    nav ul li {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 768px) {
    .features .container,
    .tours-grid,
    .blog-posts,
    .blog-grid,
    .related-grid,
    .values-grid,
    .sustainability-grid,
    .stats-grid,
    .additional-grid,
    .faq-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-bottom: 15px;
        border-radius: var(--border-radius);
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius);
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .social-media a {
        margin: 0 5px;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 30px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .blog-post .post-header h1 {
        font-size: 28px;
    }
}
