/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

ul {
    list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: #b82921;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-outline {
    background-color: transparent;
    color: #d73527;
    border: 2px solid #d73527;
}

.btn-outline:hover {
    background-color: #d73527;
    color: white;
}

.section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.section-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
}

.bg-light {
    background-color: #f8f9fa;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 14px;
}

/* ===== COOKIE MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #000;
}

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

.cookie-category label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 8px;
}

.cookie-category input[type="checkbox"] {
    margin-right: 12px;
    transform: scale(1.2);
}

.cookie-category p {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
}

/* ===== HEADER ===== */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d73527;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    font-weight: 500;
    color: #2c3e50;
    padding: 8px 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #d73527;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d73527;
    transition: width 0.3s ease;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-banner {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    gap: 30px;
}

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

.stat h4 {
    font-size: 2.5rem;
    color: #d73527;
    margin-bottom: 8px;
}

.stat p {
    color: #6c757d;
    font-weight: 500;
}

/* ===== DESTINATIONS SECTION ===== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

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

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.destination-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-content {
    padding: 24px;
}

.destination-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 12px;
}

.destination-content p {
    color: #6c757d;
    margin-bottom: 16px;
    line-height: 1.6;
}

.destination-location {
    display: inline-block;
    background-color: #d73527;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 16px;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #6c757d;
    line-height: 1.6;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: #d73527;
    position: absolute;
    top: -10px;
    left: -20px;
    line-height: 1;
}

.testimonial-author strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #6c757d;
    font-size: 0.9rem;
}

/* ===== BLOG SECTION ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

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

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

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

.blog-content {
    padding: 24px;
}

.blog-content h3 {
    margin-bottom: 12px;
}

.blog-content h3 a {
    color: #2c3e50;
    font-size: 1.2rem;
}

.blog-content h3 a:hover {
    color: #d73527;
}

.blog-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.blog-date {
    color: #6c757d;
}

.blog-category {
    color: #d73527;
    font-weight: 500;
}

.read-more {
    color: #d73527;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

.blog-cta {
    text-align: center;
}

/* ===== SUBSCRIBE SECTION ===== */
.subscribe-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.subscribe-section .section-header h2,
.subscribe-section .section-header p {
    color: white;
}

.subscribe-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

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

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #d73527;
}

.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    color: #2c3e50;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 12px;
    margin-top: 2px;
    transform: scale(1.2);
}

.checkbox-label a {
    color: #d73527;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* ===== CONTACT SECTION ===== */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

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

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.contact-details p {
    color: #6c757d;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo {
    width: 32px;
    height: 32px;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover,
.footer-section ul li a.active {
    color: white;
}

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

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

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

/* ===== BLOG PAGE STYLES ===== */
.blog-hero {
    padding: 120px 0 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.blog-hero h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 16px;
}

.blog-hero p {
    font-size: 1.2rem;
    color: #6c757d;
}

.blog-section {
    padding: 60px 0;
}

.blog-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card.featured .blog-image {
    height: 300px;
}

.blog-card.featured h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.blog-featured {
    background-color: #d73527;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.blog-sidebar {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
}

.sidebar-section {
    margin-bottom: 40px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.category-list li,
.destination-list li {
    margin-bottom: 8px;
}

.category-list a,
.destination-list a {
    color: #6c757d;
    padding: 8px 0;
    display: block;
    border-bottom: 1px solid #e9ecef;
}

.category-list a:hover,
.destination-list a:hover {
    color: #d73527;
}

.newsletter-signup {
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

.newsletter-signup p {
    color: #6c757d;
    margin-bottom: 20px;
}

/* ===== ARTICLE PAGE STYLES ===== */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 20px 0;
    margin-top: 70px;
}

.breadcrumb a {
    color: #d73527;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #6c757d;
}

.article {
    padding: 60px 0;
}

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

.article-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto 24px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.article-date,
.article-read-time {
    color: #6c757d;
}

.article-category {
    color: #d73527;
    font-weight: 500;
}

.article h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 16px;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.article-content h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.article-content p {
    margin-bottom: 20px;
    color: #495057;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content ul {
    list-style: disc;
}

.article-content ol {
    list-style: decimal;
}

.article-content li {
    margin-bottom: 8px;
    color: #495057;
}

.article-content strong {
    color: #2c3e50;
}

.article-footer {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
}

.article-tags {
    margin-bottom: 30px;
}

.tag {
    display: inline-block;
    background-color: #e9ecef;
    color: #6c757d;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 8px;
    margin-bottom: 8px;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.related-articles {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.related-articles h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
}

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

/* ===== THANK YOU PAGE STYLES ===== */
.thank-you-section {
    padding: 120px 0 80px;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.thank-you-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 24px;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thank-you-content > p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 50px;
    line-height: 1.6;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    color: #2c3e50;
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.step {
    background-color: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #d73527;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 16px;
}

.step h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.step p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.contact-info-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-box h3 {
    color: #2c3e50;
    margin-bottom: 16px;
    text-align: center;
}

.contact-info-box > p {
    color: #6c757d;
    margin-bottom: 20px;
    text-align: center;
}

.contact-details p {
    color: #495057;
    margin-bottom: 8px;
}

/* ===== LEGAL PAGES STYLES ===== */
.legal-page {
    padding: 120px 0 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 16px;
}

.last-updated {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 40px 0 16px;
}

.legal-content h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 30px 0 12px;
}

.legal-content h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin: 20px 0 8px;
}

.legal-content p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0;
    padding-left: 30px;
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 8px;
}

.legal-content strong {
    color: #2c3e50;
}

.legal-content a {
    color: #d73527;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

.cookie-table {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 16px 0;
}

.cookie-table h4 {
    color: #2c3e50;
    margin-bottom: 12px;
}

.cookie-settings-link {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
}

#update-cookie-preferences {
    margin-top: 16px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        gap: 16px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .blog-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-card.featured {
        grid-template-columns: 1fr;
    }
    
    .article h1 {
        font-size: 2rem;
    }
    
    .article-navigation {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .destinations-grid,
    .services-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .subscribe-form {
        padding: 24px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #d73527;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .destination-card,
    .service-card,
    .testimonial-card,
    .blog-card {
        border: 2px solid #2c3e50;
    }
}
