/* 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: #e0e0e0;
    background-color: #0a0a0a;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    color: #b0b0b0;
}

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

a:hover {
    color: #ff70f0;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #f255ea, #ff70f0);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(242, 85, 234, 0.3);
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #f255ea;
    padding: 12px 30px;
    border: 2px solid #f255ea;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-secondary:hover {
    background: #f255ea;
    color: #0a0a0a;
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

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

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

.logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

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

.nav-menu a {
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f255ea;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    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, #0a0a0a 0%, #1a1a1a 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
}

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

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #f255ea);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.hero-small {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: #111111;
}

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

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(242, 85, 234, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(242, 85, 234, 0.2);
}

.stat h3 {
    font-size: 2rem;
    color: #f255ea;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #b0b0b0;
    margin: 0;
}

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

.service-card {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(242, 85, 234, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

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

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

.advantage-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.advantage-card:hover {
    transform: translateY(-3px);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    color: #f255ea;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

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

.review-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    position: relative;
}

.review-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.stars {
    color: #f255ea;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #d0d0d0;
}

.review-card cite {
    color: #f255ea;
    font-weight: 600;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-item h3 {
    color: #f255ea;
    margin-bottom: 0.5rem;
}

/* Forms */
.contact-form {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 8px;
    background: #0a0a0a;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #f255ea;
    box-shadow: 0 0 0 2px rgba(242, 85, 234, 0.2);
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #b0b0b0;
}

.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-radius: 4px;
    position: relative;
}

input[type="checkbox"]:checked + .checkmark {
    background: #f255ea;
    border-color: #f255ea;
}

input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
}

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

/* History Timeline */
.history-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #f255ea;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    border: 3px solid #f255ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.timeline-image {
    width: 40px;
    height: 40px;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 15px;
    margin: 0 2rem;
    border: 1px solid #333;
}

.timeline-date {
    color: #f255ea;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.route-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

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

.route-image {
    width: 100%;
    height: 200px;
}

.route-content {
    padding: 2rem;
}

.route-highlights {
    list-style: none;
    margin: 1rem 0;
}

.route-highlights li {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.route-highlights li::before {
    content: '•';
    color: #f255ea;
    position: absolute;
    left: 0;
}

.route-duration {
    color: #f255ea;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Destinations Ranking */
.destinations-ranking {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.destination-card {
    display: grid;
    grid-template-columns: auto 200px 1fr;
    gap: 2rem;
    background: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #333;
    transition: transform 0.3s ease;
    align-items: center;
}

.destination-card:hover {
    transform: translateX(10px);
}

.destination-rank {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f255ea;
    min-width: 80px;
    text-align: center;
}

.destination-image {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
}

.dest-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-rating {
    color: #f255ea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.highlight {
    background: rgba(242, 85, 234, 0.2);
    color: #f255ea;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(242, 85, 234, 0.3);
}

.destination-info {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #b0b0b0;
}

/* Contact Page */
.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

.contact-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #f255ea;
    margin-bottom: 1rem;
}

.contact-hours {
    color: #888;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.contact-form-page {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

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

.service-contact-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.service-contact-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.service-contact-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-contact-card li {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.service-contact-card li::before {
    content: '✓';
    color: #f255ea;
    position: absolute;
    left: 0;
}

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

.faq-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.faq-item h3 {
    color: #f255ea;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-section {
    padding: 8rem 0 5rem;
    background: #0a0a0a;
}

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

.legal-updated {
    color: #888;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-text {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid #333;
    margin-bottom: 2rem;
}

.legal-text h2 {
    color: #f255ea;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #333;
    padding-bottom: 0.5rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    color: #ffffff;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

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

.legal-navigation {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-nav-link {
    background: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.legal-nav-link:hover {
    background: #f255ea;
    color: #0a0a0a;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #333;
}

.cookie-table th {
    background: #333;
    color: #f255ea;
    font-weight: 600;
}

.cookie-table td {
    color: #b0b0b0;
}

/* Thank You Page */
.thank-you-section {
    padding: 8rem 0 5rem;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thanks-icon {
    width: 80px;
    height: 80px;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #b0b0b0;
}

.response-info {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 1px solid #333;
}

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

.response-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #f255ea;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    text-align: left;
}

.step-content h3 {
    color: #f255ea;
    margin-bottom: 0.5rem;
}

.contact-reminder {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 1px solid #333;
}

.urgent-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.urgent-item {
    color: #b0b0b0;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.suggestion-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
}

.suggestion-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.suggestion-link {
    display: inline-block;
    margin-top: 1rem;
    color: #f255ea;
    font-weight: 600;
}

.social-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.proof-stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f255ea;
}

.stat-label {
    color: #b0b0b0;
    margin-top: 0.5rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #f255ea;
    color: #0a0a0a;
}

.social-icon {
    font-size: 1.5rem;
}

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

.planning-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.planning-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.planning-card h3 {
    color: #f255ea;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    text-align: center;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-section a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f255ea;
}

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

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

.social-links a:hover {
    transform: scale(1.2);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    z-index: 1001;
    border-top: 1px solid #333;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    color: #b0b0b0;
}

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

.cookie-buttons button {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept-all {
    background: #f255ea;
    color: #ffffff;
}

.btn-accept-all:hover {
    background: #ff70f0;
}

.btn-necessary {
    background: transparent;
    color: #f255ea;
    border: 1px solid #f255ea;
}

.btn-necessary:hover {
    background: #f255ea;
    color: #0a0a0a;
}

.btn-settings {
    background: #333;
    color: #ffffff;
}

.btn-settings:hover {
    background: #555;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    border: 1px solid #333;
}

.cookie-modal-content h3 {
    color: #f255ea;
    margin-bottom: 1.5rem;
}

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

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #b0b0b0;
}

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

.cookie-option span {
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

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

.btn-save {
    background: #f255ea;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.btn-cancel {
    background: transparent;
    color: #f255ea;
    border: 1px solid #f255ea;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-proof {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .destination-card {
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }
    
    .destination-image {
        grid-column: 1 / -1;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .urgent-contact {
        flex-direction: column;
        gap: 1rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-item {
        flex-direction: column !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        text-align: center;
    }
    
    .timeline-content {
        margin: 1rem 0 0 0;
    }
    
    .history-timeline::before {
        left: 20px;
    }
    
    .timeline-icon {
        position: absolute;
        left: -20px;
    }
    
    .destination-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .destination-rank {
        grid-row: 1;
        font-size: 3rem;
    }
    
    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .social-links-large {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .service-card,
    .advantage-card,
    .review-card {
        padding: 1.5rem;
    }
    
    .legal-text {
        padding: 2rem;
    }
    
    .proof-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
    .cookie-table {
        display: none;
    }
}
