* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: white;
}

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

/* Header */
.header {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #6366f1;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #6366f1;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 80px 0 0;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(99, 102, 241, 0.1);
}

.hero .container {
    position: relative;
    text-align: center;
    max-width: 900px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero > .container > p {
    font-size: 14px;
    margin-bottom: 35px;
    line-height: 1.8;
    opacity: 0.95;
}

.btn-hero {
    background: #fbbf24;
    color: #1a1a1a;
    border: none;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 40px;
}

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

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
}

/* Types Section */
.types {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.types-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.types h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.types-intro {
    font-size: 14px;
    max-width: 900px;
    margin: 0 auto 35px;
    line-height: 1.8;
    color: #666;
}

.btn-secondary {
    background: #fbbf24;
    color: #1a1a1a;
    border: none;
    padding: 14px 35px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 40px;
}

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

.types-image {
    max-width: 800px;
    margin: 0 auto;
}

.types-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-align: center;
}

.advantages-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.advantages h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.advantage-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.advantage-card h3 {
    font-size: 16px;
    font-weight: 600;
}

.advantages-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.advantages-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

/* Hotels Section */
.hotels {
    padding: 80px 0;
    background: white;
}

.hotels-icon {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.hotels h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

.hotels-intro {
    font-size: 14px;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

.hotel-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.hotel-item.reverse {
    direction: rtl;
}

.hotel-item.reverse > * {
    direction: ltr;
}

.hotel-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.hotel-content h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #6366f1;
    font-weight: 600;
}

.hotel-content p {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #666;
}

.btn-hotel {
    background: #fbbf24;
    color: #1a1a1a;
    border: none;
    padding: 14px 35px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.hotel-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-align: center;
}

.stats-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.stats h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.stats-intro {
    font-size: 14px;
    margin-bottom: 50px;
    opacity: 0.95;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.stat-card p {
    font-size: 13px;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-icon {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.faq h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #6366f1;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #4f46e5;
}

.faq-toggle {
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.contact-intro {
    font-size: 14px;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
    text-align: center;
    opacity: 0.95;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon-small {
    font-size: 20px;
}

.contact-item p {
    font-size: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    background: #fbbf24;
    color: #1a1a1a;
    border: none;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer > .container > p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 13px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-links span {
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 968px) {
    .nav {
        display: none;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-images {
        grid-template-columns: 1fr;
    }
    
    .hotel-item,
    .hotel-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
}