/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    
}

.cookie-consent.hidden {
    opacity: 0;
    visibility: hidden;
}

.cookie-modal {
    background: white;
    border-radius: 8px;
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cookie-consent.hidden .cookie-modal {
    transform: scale(0.9);
}

.cookie-header {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

.cookie-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.usercentrics-logo {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cookiebot-text {
    font-size: 0.7rem;
    color: #666;
    margin-top: -2px;
}

.cookie-content {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cookie-tabs {
    display: flex;
    border-bottom: 1px solid #e9ecef;
    flex-shrink: 0;
}

.cookie-tab {
    flex: 1;
    padding: 1rem;
    border: none;
    background: #f8f9fa;
    color: #666;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.cookie-tab.active {
    background: white;
    color: #2563eb;
    border-bottom-color: #2563eb;
}

.cookie-tab:hover {
    background: #e9ecef;
}

.cookie-tab.active:hover {
    background: white;
}

.cookie-tab-content {
    position: relative;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tab-panel {
    padding: 1.5rem;
    display: none;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-panel.active {
    display: flex;
    opacity: 1;
}

.tab-panel h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.tab-panel h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 1.5rem 0 0.5rem 0;
}

.tab-panel p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* About tab specific styles */
.about-content-text {
    flex: 1;
    overflow-y: auto;
}

.about-content-text p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.about-content-text p:last-child {
    margin-bottom: 0;
}

/* Consent tab specific styles */
.consent-description {
    color: #333 !important;
    line-height: 1.6;
    margin-bottom: 2rem !important;
    font-size: 0.9rem;
}

.cookie-toggles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.toggle-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.toggle-label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.toggle-switch-large {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-switch-large input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch-large label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    border-radius: 30px;
    transition: 0.3s;
}

.toggle-switch-large label:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch-large input:checked + label {
    background-color: #333;
}

.toggle-switch-large input:checked + label:before {
    transform: translateX(30px);
}

.toggle-switch-large.disabled {
    opacity: 1;
    pointer-events: none;
}

.toggle-switch-large.disabled label {
    background-color: #ccc;
    cursor: not-allowed;
}

.toggle-switch-large.disabled input:checked + label {
    background-color: #ccc;
}

/* Mobile adjustments for consent tab */
@media (max-width: 968px) {
    .cookie-toggles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 580px) {
    .cookie-toggles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .toggle-group {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 1rem;
    }
    
    .toggle-switch-large {
        flex-shrink: 0;
    }
    
    .toggle-label {
        margin-bottom: 0;
    }
}

/* Custom scrollbar for tab panels */
.tab-panel::-webkit-scrollbar {
    width: 6px;
}

.tab-panel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.tab-panel::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.tab-panel::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Custom scrollbar for about content */
.about-content-text::-webkit-scrollbar {
    width: 6px;
}

.about-content-text::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.about-content-text::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.about-content-text::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.cookie-options {
    margin-top: 2rem;
    space-y: 1rem;
    flex-shrink: 0;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.cookie-option:last-child {
    border-bottom: none;
}

.option-label {
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 25px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 25px;
    transition: 0.3s;
}

.toggle-switch label:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + label {
    background-color: #2563eb;
}

.toggle-switch input:checked + label:before {
    transform: translateX(25px);
}

.toggle-switch.disabled {
    opacity: 0.6;
    pointer-events: none;
}

.toggle-switch.disabled label {
    background-color: #2563eb;
    cursor: not-allowed;
}

.cookie-buttons {
    padding: 1.5rem;
    background: #f8f9fa;
    display: flex;
    gap: 0.75rem;
    border-top: 1px solid #e9ecef;
    flex-shrink: 0;
    margin-top: auto;
}

.cookie-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-btn.deny {
    background: #6b7280;
    color: white;
}

.cookie-btn.deny:hover {
    background: #4b5563;
}

.cookie-btn.allow-selection {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.cookie-btn.allow-selection:hover {
    background: #f0f4ff;
}

.cookie-btn.allow-all {
    background: #2563eb;
    color: white;
}

.cookie-btn.allow-all:hover {
    background: #1d4ed8;
}

.cookie-details h3:first-of-type {
    margin-top: 0;
}

/* Mobile styles for cookie consent */
@media (max-width: 768px) {
    .cookie-modal {
        width: 95%;
        max-height: 90vh;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .cookie-tabs {
        font-size: 0.8rem;
    }
    
    .cookie-tab {
        padding: 0.75rem 0.5rem;
    }
    
    .tab-panel {
        padding: 1rem;
    }
    
    .cookie-header {
        padding: 0.75rem 1rem;
    }
    
    .about-content-text p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .cookie-modal {
        width: 98%;
        margin: 1%;
        max-height: 95vh;
    }
    
    .tab-panel h2 {
        font-size: 1.1rem;
    }
    
    .cookie-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .toggle-switch {
        align-self: flex-end;
    }
    
    .about-content-text p {
        font-size: 0.8rem;
        line-height: 1.6;
    }
}

/* Additional cookie consent styles */
.cookie-consent .cookie-buttons {
    flex-wrap: wrap;
}

/* Cookie Details Accordion Styles */
.cookie-categories {
    margin-top: 1rem;
    flex: 1;
    overflow-y: auto;
}

/* Custom scrollbar for cookie categories */
.cookie-categories::-webkit-scrollbar {
    width: 6px;
}

.cookie-categories::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.cookie-categories::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.cookie-categories::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Firefox scrollbar styling */
.tab-panel, .cookie-categories, .about-content-text {
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
}

.cookie-category {
    border: 1px solid #e9ecef;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #e9ecef;
}

.category-header:hover {
    background: #e9ecef;
}

.category-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.category-icon {
    color: #666;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    font-family: monospace;
}

.category-header[data-category].collapsed .category-icon {
    transform: rotate(-90deg);
}

.category-name {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.cookie-count {
    background: #666;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.75rem;
    min-width: 18px;
    text-align: center;
}

.category-toggle .toggle-switch {
    width: 40px;
    height: 20px;
}

.category-toggle .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.category-toggle .toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 20px;
    transition: 0.3s;
}

.category-toggle .toggle-switch label:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.category-toggle .toggle-switch input:checked + label {
    background-color: #2563eb;
}

.category-toggle .toggle-switch input:checked + label:before {
    transform: translateX(20px);
}

.category-toggle .toggle-switch.disabled {
    opacity: 0.6;
    pointer-events: none;
}

.category-toggle .toggle-switch.disabled label {
    background-color: #2563eb;
    cursor: not-allowed;
}

.category-content {
    padding: 16px;
    border-top: 1px solid #e9ecef;
    display: none;
}

.category-content.active {
    display: block;
}

.category-description {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.cookie-provider {
    border: 1px solid #e9ecef;
    border-radius: 4px;
    margin-bottom: 12px;
}

.provider-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #f8f9fa;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.provider-header:hover {
    background: #e9ecef;
}

.provider-icon {
    color: #666;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    font-family: monospace;
}

.provider-header.collapsed .provider-icon {
    transform: rotate(-90deg);
}

.provider-name {
    font-weight: 500;
    color: #333;
    font-size: 0.85rem;
    flex: 1;
}

.provider-info {
    color: #666;
    font-size: 0.8rem;
}

.provider-content {
    padding: 12px;
    background: white;
    display: none;
}

.provider-content.active {
    display: block;
}

.cookie-list {
    space-y: 12px;
}

.cookie-item {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.cookie-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cookie-name {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #333;
    display: inline-block;
    margin-bottom: 8px;
    border: 1px solid #e9ecef;
}

.cookie-details {
    margin-left: 0;
}

.cookie-detail {
    margin-bottom: 6px;
    font-size: 0.8rem;
    line-height: 1.4;
}

.cookie-detail:first-child .detail-label {
    color: #666;
    font-style: italic;
}

.detail-key {
    font-weight: 600;
    color: #333;
    margin-right: 8px;
}

.detail-value {
    color: #666;
    margin-right: 16px;
}

.no-cookies {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.no-cookies-icon {
    color: #666;
    font-size: 0.7rem;
    font-family: monospace;
}

.no-cookies-text {
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
}

.declaration-info {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
    font-size: 0.75rem;
    color: #666;
    text-align: center;
    flex-shrink: 0;
}

.cookiebot-link {
    color: #2563eb;
    text-decoration: none;
}

.cookiebot-link:hover {
    text-decoration: underline;
}

/* Ensure Details tab content can scroll properly */
#details-panel {
    display: flex;
    flex-direction: column;
}

.details-header {
    flex-shrink: 0;
    margin-bottom: 0;
}

.details-header h2 {
    margin-bottom: 1rem;
}

.details-header p {
    margin-bottom: 0;
}

.details-footer {
    flex-shrink: 0;
}

.details-footer .declaration-info {
    margin-top: 16px;
    margin-bottom: 0;
}

@media (max-width: 360px) {
    .cookie-buttons {
        gap: 0.5rem;
    }
    
    .cookie-btn {
        font-size: 0.8rem;
        padding: 10px 15px;
    }
    
    .category-header {
        padding: 10px 12px;
    }
    
    .category-name {
        font-size: 0.8rem;
    }
    
    .cookie-count {
        font-size: 0.7rem;
        padding: 1px 4px;
    }
    
    .provider-header {
        padding: 8px 10px;
    }
    
    .provider-name {
        font-size: 0.8rem;
    }
    
    .cookie-name {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .cookie-detail {
        font-size: 0.75rem;
    }
    
    .detail-key, .detail-value {
        display: block;
        margin-right: 0;
    }
    
    .detail-value {
        margin-bottom: 8px;
    }
}

/* Mobile styles for cookie details */
@media (max-width: 768px) {
    .category-content {
        padding: 12px;
    }
    
    .provider-content {
        padding: 10px;
    }
    
    .cookie-categories {
        margin-top: 0.5rem;
    }
    
    .category-description {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .declaration-info {
        font-size: 0.7rem;
        margin-top: 16px;
        padding-top: 12px;
    }
    
    .details-footer .declaration-info {
        margin-top: 12px;
    }
    
    /* Ensure proper scrolling on mobile */
    .tab-panel {
        max-height: none;
    }
    
    .cookie-categories {
        max-height: none;
    }
}

body.menu-open {
    overflow: hidden;
}

/* 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: #333;
    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.section-title.center {
    text-align: center;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
   
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
border: 1px solid #4754FF;
background: linear-gradient(180deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.01) 100%), #9097FF;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #667eea;
}

/* Burger Button */
.burger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    justify-content: space-between;
}

.burger-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* Hero Section */
.hero {
    background: url('../images/hero.png') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-description {
    font-size: 1.2rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

/* Hotels Section */
.hotels {
    padding: 100px 0;
    background: white;
}

.hotel-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.hotel-card.reverse {
    direction: rtl;
}

.hotel-card.reverse > * {
    direction: ltr;
}

.hotel-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hotel-info h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.hotel-subtitle {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hotel-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 0.5rem;
    color: #333;
}

.service-subtitle {
    color: #667eea;
    font-weight: 600;
    margin: 0 1.5rem 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin: 0 1.5rem 2rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.contact-info h3 {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    space-y: 1rem;
}

.contact-item {
    margin-bottom: 1rem;
    color: #666;
}

.contact-item strong {
    color: #333;
    display: inline-block;
    width: 80px;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
border: 1px solid #000;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: #222;
    color: #ccc;
    padding: 2rem 0;
    text-align: center;
}

.footer a {
    color: #667eea;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content,
    .hotel-card,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hotel-card.reverse {
        direction: ltr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .about,
    .hotels,
    .services,
    .contact {
        padding: 90px 0 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hotel-info h3 {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        min-width: auto;
    }
}

/* Thank You Page Styles */
.thank-you {
    padding: 150px 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-you h1 {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thank-you p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you .btn-primary {
    background: white;
    color: #667eea;
}

.thank-you .btn-primary:hover {
    background: #f8f9fa;
}
              .page {
                padding: 180px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                