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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2D2D2D;
    background: #F5F5F7;
}

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

/* Header */
.header {
    padding: 20px 0;
    background: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #5B4FFF;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #2D2D2D;
    transition: all 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #5B4FFF;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #FFFFFF;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
}

.hero-title {
    font-size: 40px;
    color: #2D2D2D;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-button {
    background: #5B4FFF;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
}

.hero-button:hover {
    background: #4A3FE6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #F5F5F7;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 36px;
    color: #2D2D2D;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-button {
    background: #5B4FFF;
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
    margin-top: 15px;
}

.about-button:hover {
    background: #4A3FE6;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #FFFFFF;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #F5F5F7;
    padding: 35px;
    border-radius: 12px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #E8E6FF;
    color: #5B4FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    color: #2D2D2D;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Rooms Section */
.rooms {
    padding: 80px 0;
    background: #F5F5F7;
}

.rooms-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

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

.room-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.room-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-content {
    padding: 25px;
}

.room-title {
    font-size: 22px;
    color: #2D2D2D;
    margin-bottom: 12px;
    font-weight: 600;
}

.room-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.rooms-button {
    background: #5B4FFF;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
    display: block;
    margin: 0 auto;
}

.rooms-button:hover {
    background: #4A3FE6;
}

/* Commitment Section */
.commitment {
    padding: 80px 0;
    background: #FFFFFF;
}

.commitment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.commitment-image img {
    width: 100%;
    border-radius: 15px;
}

.commitment-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #F5F5F7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #2D2D2D;
    font-size: 14px;
}

.testimonial-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 16px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #FFFFFF;
}

.contact-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

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

.contact-info-item {
    text-align: center;
}

.info-label {
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 8px;
    font-size: 14px;
}

.info-value {
    font-size: 14px;
    color: #666;
}

.contact-form-section {
    max-width: 700px;
    margin: 0 auto;
}

.form-title {
    font-size: 28px;
    color: #2D2D2D;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

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

.form-input,
.form-textarea {
    padding: 15px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    background: #F5F5F7;
}

.form-textarea {
    resize: vertical;
    font-family: inherit;
}

.form-submit {
    background: #5B4FFF;
    color: white;
    border: none;
    padding: 15px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: #4A3FE6;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #2D2D2D;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand {
    font-size: 24px;
    font-weight: bold;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
}

.footer-copyright {
    font-size: 12px;
    opacity: 0.7;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 968px) {
    .burger-menu {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

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

    .hero-content,
    .about-content,
    .commitment-content {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .rooms-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 28px;
    }
}