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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

p { margin-bottom: 1rem; }

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(46, 125, 50, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand .logo {
    height: 50px;
    width: auto;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: #2e7d32;
}

.nav-link:hover::after,
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2e7d32;
}

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

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

/* Hero Section */
.hero {
    padding: 8rem 2rem 5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 4rem;
    color: #1b5e20;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: #2e7d32;
    color: white;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    background: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.btn-secondary {
    background: #5a6c7d;
    color: white;
}

.btn-secondary:hover {
    background: #455a64;
    transform: translateY(-2px);
}

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

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

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: #1b5e20;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    padding: 8rem 2rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    text-align: center;
    margin-top: 80px;
}

.page-title {
    font-size: 3.5rem;
    color: #1b5e20;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    font-weight: 300;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: #1b5e20;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
}

.about-img {
    max-width: 100%;
    height: auto;
}

/* Services Section */
.services {
    background: white;
}

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

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

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    color: #1b5e20;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    background: #f8f9fa;
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #5a6c7d;
}

.testimonial-card cite {
    color: #2e7d32;
    font-weight: 600;
    font-style: normal;
}

/* Blog Section */
.blog {
    background: white;
}

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

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

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
}

.blog-content h3 a {
    text-decoration: none;
    color: #1b5e20;
    transition: color 0.3s ease;
}

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

.read-more {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1b5e20;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #1b5e20;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.social-links {
    margin-top: 3rem;
}

.social-links h4 {
    color: #1b5e20;
    margin-bottom: 1rem;
}

.social-links a {
    color: #2e7d32;
    text-decoration: none;
    margin-right: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #1b5e20;
}

/* Forms */
.contact-form,
.newsletter-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.newsletter-form{
    padding: 15px;
    background: #ffffff30;
}
.newsletter-form input{
    padding: 10px !important;
}
.newsletter-form .btn-primary{
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2e7d32;
}

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

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

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

.checkbox-label a {
    color: #2e7d32;
    text-decoration: none;
}

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

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: #2e7d32;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

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

/* Cookie Management */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

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

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

.cookie-content h3 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

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

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

.cookie-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    margin: 2rem;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #5a6c7d;
    margin-left: 2rem;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Article Styles */
.article-hero {
    padding: 8rem 2rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    margin-top: 80px;
}

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

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #5a6c7d;
}

.article-category {
    background: #2e7d32;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-title {
    font-size: 3rem;
    color: #1b5e20;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.article-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    font-weight: 300;
}

.article-img {
    max-width: 100%;
    height: auto;
}

.article-content {
    background: white;
}

.article-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-body h2 {
    color: #1b5e20;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.article-body h3 {
    color: #2e7d32;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-body blockquote {
    background: #f8f9fa;
    border-left: 4px solid #2e7d32;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
}

.article-body blockquote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #2e7d32;
}

.article-body ul, .article-body ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.article-sidebar {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    margin-bottom: 3rem;
}

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

.sidebar-widget h3 {
    color: #1b5e20;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.related-articles,
.quick-facts,
.conservation-partners {
    list-style: none;
}

.related-articles li,
.conservation-partners li {
    margin-bottom: 0.75rem;
}

.related-articles a {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.related-articles a:hover {
    color: #1b5e20;
    text-decoration: underline;
}

.quick-facts li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.quick-facts li:last-child {
    border-bottom: none;
}

/* Package Styles */
.packages-overview {
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-img {
    max-width: 100%;
    height: auto;
}

.packages-grid {
    background: #f8f9fa;
}

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

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border: 3px solid #2e7d32;
}

.package-card.premium {
    border: 3px solid #ff6f00;
    background: linear-gradient(135deg, #fff 0%, #fff8e1 100%);
}

.package-header {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: #f8f9fa;
    gap: 1.5rem;
}

.package-icon {
    width: 60px;
    height: 60px;
}

.package-title-group {
    flex: 1;
}

.package-title {
    color: #1b5e20;
    margin-bottom: 0.5rem;
}

.package-duration {
    color: #5a6c7d;
    font-size: 0.9rem;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2e7d32;
}

.package-content {
    padding: 2rem;
}

.package-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

.package-includes,
.package-locations {
    list-style: none;
    margin: 1rem 0 2rem;
}

.package-includes li,
.package-locations li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.package-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}

.package-locations li::before {
    content: '📍';
    position: absolute;
    left: 0;
}

.package-highlights {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.highlight {
    background: #e8f5e8;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #1b5e20;
}

/* Add-on Services */
.addon-services {
    background: white;
}

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

.addon-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.addon-card h3 {
    color: #1b5e20;
    margin-bottom: 1rem;
}

.addon-price {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    color: #2e7d32;
    font-size: 1.25rem;
}

/* Booking Information */
.booking-info {
    background: #f8f9fa;
}

.booking-content {
    text-align: center;
}

.booking-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 3rem 0;
    text-align: left;
}

.booking-detail h4 {
    color: #1b5e20;
    margin-bottom: 1.5rem;
}

.booking-detail ol,
.booking-detail ul {
    margin-left: 1.5rem;
}

.booking-detail li {
    margin-bottom: 0.75rem;
}

.booking-cta {
    margin-top: 3rem;
}

.booking-note {
    margin-top: 1rem;
    color: #5a6c7d;
    font-style: italic;
}

/* About Page Styles */
.about-page {
    background: white;
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-hero-img {
    max-width: 100%;
    height: auto;
}

.values-section {
    margin-bottom: 5rem;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    color: #1b5e20;
    margin-bottom: 1rem;
}

.team-section {
    margin-bottom: 5rem;
}

.expertise-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.expertise-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat {
    text-align: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #2e7d32;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: #5a6c7d;
    font-size: 0.9rem;
    font-weight: 600;
}

.commitment-section {
    background: #f8f9fa;
    padding: 4rem;
    border-radius: 15px;
}

.commitment-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.commitment-point h4 {
    color: #1b5e20;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.cta-buttons .btn-outline{
    color: white;
    border: 1px solid #fff;
}

/* Thanks Page */
.thanks-section {
    padding: 8rem 2rem;
    text-align: center;
    background: white;
}

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

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

.thanks-title {
    color: #1b5e20;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.thanks-info,
.thanks-contact {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-info h3,
.thanks-contact h3 {
    color: #1b5e20;
    margin-bottom: 1rem;
}

.thanks-steps {
    list-style: decimal;
    margin-left: 1.5rem;
}

.thanks-steps li {
    margin-bottom: 0.75rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Legal Content */
.legal-content {
    background: white;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
}

.legal-text h2 {
    color: #1b5e20;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-text h3 {
    color: #2e7d32;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text ul,
.legal-text ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content,
    .about-content,
    .contact-content,
    .overview-content,
    .about-hero,
    .article-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .cta-buttons,
    .thanks-actions,
    .article-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .package-header {
        flex-direction: column;
        text-align: center;
    }

    .package-highlights {
        justify-content: center;
    }

    .booking-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .commitment-points {
        grid-template-columns: 1fr;
    }

    .article-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-sidebar {
        position: static;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookie-buttons,
    .cookie-modal-buttons {
        flex-direction: column;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title,
    .page-title,
    .article-title {
        font-size: 2rem;
    }

    .hero,
    .page-header,
    .article-hero {
        padding: 6rem 1rem 3rem;
    }

    .package-header {
        padding: 1.5rem;
    }

    .package-content {
        padding: 1.5rem;
    }

    .contact-form,
    .newsletter-form {
        padding: 1.5rem;
    }

    .expertise-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .nav-toggle {
        display: none;
    }

    .section {
        page-break-inside: avoid;
    }

    .article-content {
        background: white;
    }

    .article-sidebar {
        display: none;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

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

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #2e7d32;
    outline-offset: 2px;
}

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

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