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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.5;
    color: #000;
    overflow-x: hidden;
    background: #fff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

header {
    background: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.navbar ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.navbar ul li a:hover {
    color: #FFD60A;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD60A;
    transition: width 0.3s;
}

.navbar ul li a:hover::after {
    width: 100%;
}

.btn-book {
    background: #FFD60A;
    color: #000;
    border: none;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

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

.hero {
    background: #F5F5F7;
    padding: 60px 0 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-text {
    padding-top: 20px;
}

.badge {
    background: #000;
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #000;
    margin: 0;
}

.hero-image-wrapper {
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.booking-form {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

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

.form-row .full-width {
    grid-column: 1 / -1;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    background: #FFD60A;
    color: #000;
    border: none;
    padding: 16px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

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

.intro {
    padding: 100px 0;
    background: #fff;
}

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

.intro-left img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.intro-right h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #000;
}

.intro-right p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.team-avatars {
    display: flex;
    gap: 0;
}

.avatar {
    margin-left: -12px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.services {
    background: #000;
    color: #fff;
    padding: 80px 0;
}

.services-list {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-item {
    padding: 36px 0;
    border-bottom: 1px solid #333;
    font-size: 40px;
    font-weight: 400;
    transition: all 0.3s;
    cursor: pointer;
}

.service-item:hover {
    padding-left: 20px;
    color: #FFD60A;
}

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

.projects {
    padding: 100px 0;
    background: #F5F5F7;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
}

.nav-arrows {
    display: flex;
    gap: 12px;
}

.arrow-btn {
    width: 48px;
    height: 48px;
    border: 1px solid #E5E5E5;
    background: #fff;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-btn:hover {
    background: #FFD60A;
    border-color: #FFD60A;
}

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

.project-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.about-section {
    padding: 100px 0;
    background: #fff;
}

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

.about-left img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.about-right h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #000;
}

.promise {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

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

.promise h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
}

.testimonials {
    padding: 100px 0;
    background: #fff;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #000;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 32px;
}

.testimonial-card {
    background: #F5F5F7;
    padding: 40px;
    border-radius: 16px;
}

.quote-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 32px;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.client-name {
    font-weight: 700;
    font-size: 16px;
    color: #000;
    margin-bottom: 4px;
}

.client-role {
    font-size: 14px;
    color: #666;
}

.stat-card {
    background: #F5F5F7;
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: #FFD60A;
    line-height: 1;
    margin-bottom: 16px;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
}

.faq {
    padding: 100px 0;
    background: #fff;
}

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

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

.faq-item {
    background: #F5F5F7;
    padding: 32px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.4;
}

.faq-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.contact-section {
    padding: 100px 0;
    background: #F5F5F7;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-info > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-icon {
    font-size: 32px;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form-wrapper h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 32px;
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FFD60A;
}

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

.btn-submit-contact {
    width: 100%;
    background: #FFD60A;
    color: #000;
    border: none;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.btn-submit-contact:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 214, 10, 0.4);
}

footer {
    background: #1A1A1A;
    color: #fff;
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h4 {
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 700;
}

.footer-col p {
    margin-bottom: 12px;
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #FFD60A;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .navbar ul {
        gap: 20px;
    }
    
    .navbar ul li a {
        font-size: 14px;
    }
    
    .hero-content,
    .intro-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .service-item {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .navbar ul {
        display: none;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    header .container {
        gap: 10px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .intro-right h2,
    .about-right h2 {
        font-size: 32px;
    }
    
    .promise h2 {
        font-size: 36px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        font-size: 24px;
    }
}
