/* Minimalist Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #ffffff;
    color: #2c2c2c;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid #e8e8e8;
}

.navbar {
    padding: 1.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #2c2c2c;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: #666;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #2c2c2c;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #2c2c2c;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    margin-top: 100px;
    padding: 6rem 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    padding: 0 3rem;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #2c2c2c;
    line-height: 1.1;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid #2c2c2c;
}

.cta-button:hover {
    background: transparent;
    color: #2c2c2c;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: 60vh;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.1);
}

/* Featured Tours */
.featured-tours {
    padding: 6rem 0;
    background: #f8f8f8;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #2c2c2c;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1rem;
    color: #666;
    font-weight: 300;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.tour-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.tour-image {
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.tour-card:hover .tour-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.tour-content {
    padding: 2rem;
}

.tour-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 400;
    letter-spacing: 1px;
}

.tour-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.tour-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e8e8e8;
}

.duration {
    color: #999;
    font-size: 0.9rem;
    font-weight: 300;
}

.price {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c2c2c;
}

.book-button {
    display: block;
    width: 100%;
    background: transparent;
    color: #2c2c2c;
    padding: 0.8rem;
    text-decoration: none;
    text-align: center;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid #2c2c2c;
}

.book-button:hover {
    background: #2c2c2c;
    color: #ffffff;
}

/* Values */
.values {
    padding: 6rem 0;
    background: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-weight: 300;
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 400;
    letter-spacing: 1px;
}

.value-item p {
    color: #666;
    line-height: 1.7;
    font-weight: 300;
}

/* Blog */
.blog {
    padding: 6rem 0;
    background: #f8f8f8;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.blog-item {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.blog-image {
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.blog-item:hover .blog-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 400;
    letter-spacing: 1px;
}

.blog-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.read-more {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #666;
}

/* Contact Form */
.contact-form {
    padding: 6rem 0;
    background: #ffffff;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #2c2c2c;
    letter-spacing: 1px;
}

.form-header p {
    font-size: 1rem;
    color: #666;
    font-weight: 300;
}

.form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f8f8;
    padding: 3rem;
    border: 1px solid #e8e8e8;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #2c2c2c;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e8e8e8;
    border-radius: 0;
    font-size: 1rem;
    background: #ffffff;
    color: #2c2c2c;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c2c2c;
}

.submit-button {
    width: 100%;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.submit-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #f8f8f8;
    color: #666;
    padding: 4rem 0 2rem;
    border-top: 1px solid #e8e8e8;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2c2c2c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
    color: #999;
    font-weight: 300;
}

/* Page Hero Styles */
.page-hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    color: #2c3e50;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.8;
    color: #6c757d;
}

/* About Story Styles */
.about-story {
    padding: 4rem 0;
    background: #ffffff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #6c757d;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Values Styles */
.values {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Team Styles */
.team {
    padding: 4rem 0;
    background: #ffffff;
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: #6c757d;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #2c3e50;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.position {
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bio {
    color: #6c757d;
    line-height: 1.6;
}

/* Achievements Styles */
.achievements {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.achievements h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.achievement-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.achievement-text {
    color: #6c757d;
    font-weight: 600;
}

/* Certificates Styles */
.certificates {
    padding: 4rem 0;
    background: #ffffff;
}

.certificates h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.certificates p {
    text-align: center;
    margin-bottom: 3rem;
    color: #6c757d;
    font-size: 1.1rem;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.certificate-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.certificate-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.certificate-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.certificate-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Blog Styles */
.blog-categories {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 1px solid #e9ecef;
    color: #6c757d;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: #2c3e50;
    color: white;
    border-color: #2c3e50;
    transform: translateY(-2px);
}

.blog-grid {
    padding: 4rem 0;
    background: #ffffff;
}

.blog-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.blog-category {
    background: #2c3e50;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.blog-item h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.blog-item p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #6c757d;
}

/* Blog Authors Styles */
.blog-authors {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.author-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.author-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #2c3e50;
}

.author-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.author-title {
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 1rem;
}

.author-bio {
    color: #6c757d;
    line-height: 1.6;
}

/* Newsletter Styles */
.newsletter {
    padding: 4rem 0;
    background: #ffffff;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.newsletter p {
    margin-bottom: 2rem;
    color: #6c757d;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #6c757d;
}

/* Contact CTA Styles */
.contact-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-cta p {
    margin-bottom: 2rem;
    color: #6c757d;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background: #6c757d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Brightmill Special Effects */
.minimal-shadow {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.minimal-shadow:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.clean-line {
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.clean-line::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c3e50;
    transition: width 0.3s ease;
}

.clean-line:hover::after {
    width: 100%;
}

.breathing-animation {
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.typography-focus {
    letter-spacing: 0.5px;
    line-height: 1.8;
}

/* Contact Page Special Styles for Brightmill */
.contact-info {
    padding: 4rem 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #2c3e50;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-item p {
    color: #6c757d;
    line-height: 1.6;
}

.contact-form {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #2c3e50;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c3e50;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6c757d;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.submit-btn:hover {
    background: #6c757d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.map-container {
    padding: 4rem 0;
    background: #ffffff;
}

.map-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .form {
        padding: 2rem;
    }
}
