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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

/* Header and Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4ecdc4;
}

.logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 8px;
    color: #4ecdc4;
}

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

.nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #4ecdc4;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #4ecdc4;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #ff6b6b;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

.cta-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,107,0.6);
}

/* Page Hero */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #4ecdc4 0%, #45b7d1 100%);
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-icon {
    width: 40px;
    height: 40px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section,
.destinations-main,
.services-main,
.contact-main {
    padding: 80px 0;
}

.content-section h2,
.destinations-main h2,
.services-main h2,
.contact-main h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Grid Layouts */
.destinations-grid,
.services-grid,
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Cards */
.destination-card,
.service-card,
.category-card,
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover,
.service-card:hover,
.category-card:hover,
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.destination-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.destination-image,
.service-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.destination-image svg,
.service-image svg {
    width: 100%;
    height: 200px;
    display: block;
}

.destination-card h3,
.service-card h3,
.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.destination-icon,
.service-icon,
.category-icon {
    width: 24px;
    height: 24px;
    color: #4ecdc4;
}

.destination-card p,
.service-card p,
.category-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.destination-features,
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-tag {
    background: #4ecdc4;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Service Lists */
.service-list {
    list-style: none;
    margin-top: 1rem;
}

.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:before {
    content: '✓';
    color: #4ecdc4;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Features Lists */
.features-list {
    list-style: none;
    margin-top: 1rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: #4ecdc4;
    flex-shrink: 0;
}

/* About Sections */
.about-poland,
.about-content {
    background: #f8f9fa;
}

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

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

.about-text h3 {
    color: #4ecdc4;
    margin: 2rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inline-icon {
    width: 20px;
    height: 20px;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-visual svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Culture Grid */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.culture-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.culture-icon {
    width: 48px;
    height: 48px;
    color: #4ecdc4;
    margin: 0 auto 1rem;
}

.culture-item h4 {
    color: #333;
    margin-bottom: 1rem;
}

/* Sidebar */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.content-main {
    background: #fff;
}

.content-article {
    margin-bottom: 3rem;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
}

.content-article h2 {
    color: #333;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #4ecdc4;
    padding-bottom: 0.5rem;
}

.content-article h3 {
    color: #4ecdc4;
    margin: 2rem 0 1rem;
}

.content-sidebar {
    space: 2rem;
}

.sidebar-widget {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.facts-list {
    list-style: none;
}

.facts-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #666;
}

.fact-icon {
    width: 18px;
    height: 18px;
    color: #4ecdc4;
    flex-shrink: 0;
}

.geographic-features {
    margin-top: 1rem;
}

.geo-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #666;
}

.geo-icon {
    width: 18px;
    height: 18px;
    color: #45b7d1;
    flex-shrink: 0;
}

.widget-btn,
.learn-more-btn {
    display: inline-block;
    background: #4ecdc4;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.widget-btn:hover,
.learn-more-btn:hover {
    background: #3bb5b8;
    transform: translateY(-2px);
}

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

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

.testimonial-content {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 3rem;
    color: #4ecdc4;
    position: absolute;
    top: -10px;
    left: -20px;
}

.testimonial-author {
    margin-bottom: 1rem;
}

.testimonial-author strong {
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
}

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

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
    color: #ffc107;
}

/* Contact Sections */
.contact-preview {
    background: #f8f9fa;
}

.contact-content {

    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #4ecdc4;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item div strong {
    display: block;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item div p {
    color: #666;
    margin: 0;
}

.contact-item div small {
    color: #999;
    display: block;
    margin-top: 0.25rem;
}

.contact-btn,
.planning-btn {
    display: inline-block;
    background: #ff6b6b;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.contact-btn:hover,
.planning-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.contact-visual,
.planning-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-visual svg,
.planning-visual svg {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* Contact Form */
.contact-form-section {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.contact-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-icon {
    width: 18px;
    height: 18px;
    color: #4ecdc4;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ecdc4;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin: 2rem 0;
}

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

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #4ecdc4;
    border-color: #4ecdc4;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-text a {
    color: #4ecdc4;
    text-decoration: underline;
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.25rem;
}

.form-submit {
    background: #4ecdc4;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
}

.form-submit:hover {
    background: #3bb5b8;
    transform: translateY(-2px);
}

.button-icon {
    width: 20px;
    height: 20px;
}

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

.contact-social h3 {
    color: #333;
    margin-bottom: 1rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 25px;
    color: #666;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: #4ecdc4;
    color: #fff;
}

.social-links svg {
    width: 18px;
    height: 18px;
}

/* Services Specific */
.service-card.main-service {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.service-header h3 {
    color: #333;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.services-cta {
    background: linear-gradient(135deg, #4ecdc4 0%, #45b7d1 100%);
    color: #fff;
    padding: 4rem 0;
    margin-top: 4rem;
    border-radius: 20px;
}

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

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

.cta-content p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

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

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: #fff;
    color: #4ecdc4;
}

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

.cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-btn.secondary:hover {
    background: #fff;
    color: #4ecdc4;
    transform: translateY(-2px);
}

/* Planning Section */
.destinations-planning {
    background: #f8f9fa;
    margin-top: 4rem;
    padding: 4rem 0;
    border-radius: 20px;
}

.planning-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.planning-features {
    margin-top: 2rem;
}

.planning-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #666;
}

/* Thanks Page */
.thanks-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #4ecdc4 0%, #45b7d1 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.thanks-info {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.25rem;
    opacity: 0.9;
}

.info-item h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    opacity: 0.8;
    margin: 0;
}

.info-item a {
    color: #fff;
    text-decoration: underline;
}

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

.btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.primary {
    background: #fff;
    color: #4ecdc4;
}

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

.btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn.secondary:hover {
    background: #fff;
    color: #4ecdc4;
    transform: translateY(-2px);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.thanks-suggestions {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.thanks-suggestions h2 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.suggestion-card {
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.suggestion-icon {
    width: 48px;
    height: 48px;
    color: #4ecdc4;
    margin: 0 auto 1rem;
}

.suggestion-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.suggestion-card p {
    color: #666;
    margin-bottom: 1rem;
}

.suggestion-card a {
    color: #4ecdc4;
    font-weight: 600;
}

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

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

.footer-section h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4ecdc4;
    margin-bottom: 1rem;
}

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

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

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

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

.footer-section .social-links {
    display: flex;
    gap: 1rem;
}

.footer-section .social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #bdc3c7;
    transition: all 0.3s ease;
}

.footer-section .social-links a:hover {
    background: #4ecdc4;
    color: #fff;
    transform: translateY(-2px);
}

.footer-section .social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bdc3c7;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4ecdc4;
}

/* Cookie Management */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1.5rem;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cookie-icon {
    width: 48px;
    height: 48px;
    color: #4ecdc4;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.primary {
    background: #4ecdc4;
    color: #fff;
}

.cookie-btn.primary:hover {
    background: #3bb5b8;
}

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

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

.cookie-btn.tertiary {
    background: transparent;
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
}

.cookie-btn.tertiary:hover {
    background: #4ecdc4;
    color: #fff;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

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

.cookie-modal-content {
    background: #fff;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 0;
    border-bottom: 1px solid #e1e5e9;
    margin-bottom: 2rem;
}

.cookie-modal-header h3 {
    color: #333;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #333;
}

.cookie-modal-body {
    padding: 0 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-category-header h4 {
    color: #333;
    margin: 0;
}

.cookie-category-header input[type="checkbox"] {
    transform: scale(1.2);
    accent-color: #4ecdc4;
}

.cookie-category p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-modal-footer {
    padding: 2rem;
    border-top: 1px solid #e1e5e9;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .page-hero h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .destination-card.featured,
    .service-card.main-service {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .destinations-grid,
    .services-grid,
    .categories-grid,
    .testimonials-grid,
    .suggestions-grid {
        grid-template-columns: 1fr;
    }

    .cookie-modal {
        padding: 1rem;
    }

    .cookie-modal-content {
        max-height: 90vh;
    }

    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1.5rem;
    }
}

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

    .page-hero {
        padding: 2rem 0;
        background: none !important;
        color: #333 !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
        background: none !important;
    }

    .hero-content {
        color: #333 !important;
    }

    a {
        color: #333 !important;
        text-decoration: underline;
    }

    .btn,
    .cta-button,
    .contact-btn {
        border: 2px solid #333 !important;
        background: none !important;
        color: #333 !important;
    }
}

/* Legal Pages Styling */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-article {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.legal-article h2 {
    color: #333;
    border-bottom: 3px solid #4ecdc4;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.legal-article h3 {
    color: #4ecdc4;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.legal-article h4 {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.legal-article p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-article ul,
.legal-article ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
}

.legal-article li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-article strong {
    color: #333;
}

.legal-article a {
    color: #4ecdc4;
    text-decoration: underline;
}

.legal-article a:hover {
    color: #3bb5b8;
}

.update-date {
    background: #f8f9fa;
    padding: 1rem;
    border-left: 4px solid #4ecdc4;
    border-radius: 0 8px 8px 0;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Cookie Table Styling */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th {
    background: #4ecdc4;
    color: #fff;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #e1e5e9;
    color: #666;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Cookie Settings Panel */
.cookie-settings-panel {
    background: linear-gradient(135deg, #4ecdc4 0%, #45b7d1 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
}

.cookie-settings-panel h4 {
    color: #fff !important;
    margin-bottom: 1rem;
}

.cookie-settings-panel p {
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 1.5rem;
}

.cookie-settings-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: #4ecdc4;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-settings-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cookie-settings-btn svg {
    width: 20px;
    height: 20px;
}

/* Enhanced Cookie Banner */
.cookie-banner {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
    border-top: 3px solid #4ecdc4;
}

.cookie-banner.show {
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Enhanced Cookie Modal */
.cookie-modal {
    backdrop-filter: blur(5px);
}

.cookie-modal.show {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cookie-modal-content {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-category {
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 1.5rem;
    background: #f8f9fa;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero {
        background: #000 !important;
        color: #fff !important;
    }

    .page-hero {
        background: #000 !important;
        color: #fff !important;
    }

    .card,
    .destination-card,
    .service-card,
    .testimonial-card {
        border: 2px solid #333;
    }
}

/* Focus Styles */
*:focus {
    outline: 2px solid #4ecdc4;
    outline-offset: 2px;
}

button:focus,
.btn:focus,
.cta-button:focus,
.contact-btn:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

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

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

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

/* Smooth Scrolling Enhancement */
html {
    scroll-padding-top: 80px;
}

/* Performance Optimizations */
.hero-svg,
.destination-image svg,
.service-image svg {
    will-change: transform;
}

.destination-card:hover,
.service-card:hover,
.testimonial-card:hover {
    will-change: transform;
}