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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #fff9e6 0%, #ffeaa7 100%);
    overflow-x: hidden;
}

/* Hand-drawn style elements */
.hand-drawn {
    border: 3px solid #e17055;
    border-radius: 15px;
    position: relative;
    background: #fff;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.hand-drawn::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px dashed #fdcb6e;
    border-radius: 18px;
    z-index: -1;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2d3436;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h1 { font-size: 2.5rem; transform: rotate(-1deg); }
h2 { font-size: 2rem; transform: rotate(0.5deg); }
h3 { font-size: 1.5rem; transform: rotate(-0.3deg); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #636e72;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: 3px solid;
    transition: all 0.3s ease;
    position: relative;
    background: #fff;
    transform: rotate(-1deg);
}

.btn:hover {
    transform: rotate(1deg) scale(1.05);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #e17055, #d63031);
    color: white;
    border-color: #d63031;
}

.btn-secondary {
    background: linear-gradient(135deg, #fdcb6e, #e84393);
    color: white;
    border-color: #e84393;
}

.btn-outline {
    background: transparent;
    color: #e17055;
    border-color: #e17055;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #fff, #ffeaa7);
    padding: 1rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #fdcb6e;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #d63031;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

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

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

.nav-menu a {
    text-decoration: none;
    color: #2d3436;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #fdcb6e;
    border-color: #e17055;
    transform: rotate(-2deg);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #d63031;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fff9e6, #ffeaa7, #fdcb6e);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fdcb6e' fill-opacity='0.1'%3E%3Cpath d='m0 40l40-40h-40z'/%3E%3Cpath d='m0 40l40-40h-40z'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3rem;
    color: #d63031;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
}

.hero-text p {
    font-size: 1.3rem;
    color: #636e72;
    margin-bottom: 2rem;
}

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

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

.hero-banner {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.2));
}

/* Page Hero */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #e17055, #d63031);
    color: white;
    text-align: center;
}

.page-hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

/* Destinations */
.destinations {
    background: linear-gradient(135deg, #fff, #f8f9fa);
}

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

.destination-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #fdcb6e;
    transition: transform 0.3s ease;
    position: relative;
}

.destination-card:hover {
    transform: rotate(2deg) translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.destination-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed #e17055;
    border-radius: 25px;
    z-index: -1;
}

.destination-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.destination-card h3 {
    color: #d63031;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.destination-highlights {
    list-style: none;
    margin-top: 1rem;
}

.destination-highlights li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.destination-highlights li::before {
    content: '✨';
    position: absolute;
    left: 0;
}

/* Services */
.services {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
}

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

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

.service-card:hover {
    transform: rotate(-1deg) scale(1.05);
}

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

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

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #fff, #e8f4f8);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #74b9ff;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #74b9ff;
    font-weight: bold;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.testimonial-rating {
    margin: 1rem 0;
    font-size: 1.2rem;
}

.testimonial-location {
    font-style: italic;
    color: #636e72;
    font-size: 0.9rem;
}

/* Blog */
.blog-preview {
    background: linear-gradient(135deg, #f8f9fa, #fff);
}

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

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

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

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

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    background: #fd79a8;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.blog-card h3 a {
    text-decoration: none;
    color: #2d3436;
}

.blog-card h3 a:hover {
    color: #d63031;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #636e72;
    margin-top: 1rem;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Contact */
.contact {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
}

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

.contact-info h3,
.contact-form h3 {
    color: white;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 30px;
}

.contact-item h4 {
    color: #fdcb6e;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: rgba(255,255,255,0.9);
}

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

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2) rotate(-10deg);
}

/* Forms */
.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #fdcb6e;
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e17055;
    transform: scale(1.02);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d3436, #636e72);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: bold;
}

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

.footer-section h4 {
    color: #fdcb6e;
    margin-bottom: 1rem;
    border-bottom: 2px dashed #fdcb6e;
    padding-bottom: 0.5rem;
}

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

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

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2d3436, #636e72);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    border-top: 3px solid #fdcb6e;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content h3 {
    color: #fdcb6e;
    margin-bottom: 1rem;
}

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

.cookie-buttons .btn {
    transform: none;
    font-size: 0.9rem;
    padding: 8px 16px;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.cookie-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border: 3px solid #fdcb6e;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close:hover {
    color: #d63031;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 2px solid #e8f4f8;
    border-radius: 10px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

/* About Page Styles */
.about-content {
    padding: 60px 0;
}

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

.about-text h2 {
    color: #d63031;
    margin-bottom: 1.5rem;
}

.team-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-values {
    background: linear-gradient(135deg, #f8f9fa, #e8f4f8);
    padding: 60px 0;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #74b9ff;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.value-card ul {
    text-align: left;
    list-style: none;
}

.value-card ul li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.value-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00b894;
    font-weight: bold;
}

.services-overview {
    padding: 60px 0;
}

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

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature h4 {
    color: #d63031;
    margin-bottom: 1rem;
}

.stats {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #fdcb6e;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

.team {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff, #f8f9fa);
}

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: #636e72;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #fd79a8;
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.member-role {
    color: #fd79a8;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-cta {
    background: linear-gradient(135deg, #e17055, #d63031);
    color: white;
    text-align: center;
    padding: 60px 0;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

/* Thanks Page */
.thanks-page {
    padding: 120px 0 80px;
    text-align: center;
}

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

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.thanks-content h1 {
    color: #d63031;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #636e72;
}

.next-steps {
    margin-bottom: 4rem;
}

.next-steps h3 {
    color: #d63031;
    margin-bottom: 2rem;
}

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

.step {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #fdcb6e;
}

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

.step h4 {
    color: #d63031;
    margin-bottom: 1rem;
}

.while-you-wait {
    margin-bottom: 4rem;
}

.while-you-wait h3 {
    color: #d63031;
    margin-bottom: 2rem;
}

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

.suggestion-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #74b9ff;
}

.suggestion-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.suggestion-card h4 {
    color: #d63031;
    margin-bottom: 1rem;
}

.contact-urgency {
    background: linear-gradient(135deg, #fd79a8, #e84393);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.contact-urgency h3 {
    color: white;
    margin-bottom: 1rem;
}

.urgent-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-method h4 {
    color: #fdcb6e;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: white;
    margin-bottom: 0.25rem;
}

.contact-method small {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.back-to-home {
    margin-top: 3rem;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
}

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

.legal-content h1 {
    color: #d63031;
    margin-bottom: 1rem;
}

.last-updated {
    font-style: italic;
    color: #636e72;
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #2d3436;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #fdcb6e;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: #636e72;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

.contact-info {
    background: #1accbe;
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #fdcb6e;
    margin-top: 1rem;
}

/* Blog Listing */
.blog-listing {
    padding: 60px 0;
}

.blog-categories {
    margin-bottom: 3rem;
    text-align: center;
}

.blog-categories h3 {
    color: #d63031;
    margin-bottom: 1.5rem;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 2px solid #fdcb6e;
    color: #636e72;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: #fdcb6e;
    color: #2d3436;
    transform: scale(1.05);
}

.blog-tags {
    margin-top: 1rem;
}

.blog-tags .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #e8f4f8;
    color: #636e72;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    border: 1px solid #74b9ff;
}

.newsletter-signup {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
}

.newsletter-content h3 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
}

.related-content {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa, #fff);
}

.related-content h2 {
    text-align: center;
    color: #d63031;
    margin-bottom: 3rem;
}

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

.related-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #00cec9;
}

.related-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.related-item h4 {
    color: #d63031;
    margin-bottom: 1rem;
}

/* Article Styles */
.article-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
}

.article-breadcrumb {
    margin-bottom: 1rem;
}

.article-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.article-breadcrumb a:hover {
    color: white;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-category {
    background: #fd79a8;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.article-date,
.article-reading-time {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.article-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.article-hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.article-content {
    padding: 60px 0;
}

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

.article-body {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #fdcb6e;
}

.article-intro {
    font-size: 1.2rem;
    color: #636e72;
    font-style: italic;
    border-left: 4px solid #fdcb6e;
    padding-left: 1rem;
    margin-bottom: 2rem;
    background: #fff9e6;
    padding: 1rem 1rem 1rem 2rem;
    border-radius: 10px;
}

.article-body h2 {
    color: #d63031;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #fdcb6e;
    padding-bottom: 0.5rem;
}

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

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

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

.article-cta {
    background: linear-gradient(135deg, #e17055, #d63031);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
}

.article-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.article-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.related-articles,
.article-tags {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #74b9ff;
}

.related-articles h4,
.article-tags h4 {
    color: #d63031;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #fdcb6e;
    padding-bottom: 0.5rem;
}

.related-article {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f4f8;
}

.related-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.related-article img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.related-article h5 {
    margin-bottom: 0.5rem;
}

.related-article h5 a {
    text-decoration: none;
    color: #2d3436;
    font-size: 0.9rem;
}

.related-article h5 a:hover {
    color: #d63031;
}

.related-article span {
    font-size: 0.8rem;
    color: #636e72;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        border-radius: 0 0 15px 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .article-content .container {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid,
    .services-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .destination-card,
    .service-card,
    .testimonial-card,
    .blog-card {
        margin-bottom: 1rem;
    }
    
    .article-body {
        padding: 2rem 1.5rem;
    }
    
    .steps-grid,
    .suggestions {
        grid-template-columns: 1fr;
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #d63031;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal,
    .social-links,
    .btn {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero,
    .contact,
    .footer {
        background: white !important;
        color: black !important;
    }
}
