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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 20px;
    font-weight: bold;
    color: white;
    letter-spacing: 2px;
}

.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: white;
    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: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: white;
    font-size: 13px;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: url('./imgs/1.png') center/cover no-repeat;
    position: relative;
    color: white;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
    max-width: 900px;
    font-weight: 700;
}

.hero-text {
    font-size: 14px;
    margin-bottom: 35px;
    line-height: 1.8;
    max-width: 850px;
    opacity: 0.95;
}

.hero-button {
    background: #FF6B47;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-button:hover {
    background: #ff5533;
}

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

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

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

.section-title {
    font-size: 32px;
    margin-bottom: 25px;
    color: #C17A4A;
    font-weight: 700;
}

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

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

.section-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 1000px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    align-items: center;
}

.features-grid.reverse {
    direction: rtl;
}

.features-grid.reverse .feature-item {
    direction: ltr;
}

.feature-item {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 22px;
    color: #C17A4A;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.feature-image img {
    width: 100%;
    border-radius: 10px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

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

.service-card {
    text-align: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

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

/* Collaboration Section */
.collaboration {
    padding: 80px 0;
    background: #F9F9F9;
}

.collaboration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.collaboration-item {
    margin-bottom: 30px;
}

.collaboration-title {
    font-size: 20px;
    color: #C17A4A;
    margin-bottom: 10px;
    font-weight: 600;
}

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

.collaboration-image img {
    width: 100%;
    border-radius: 10px;
}

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

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

.testimonial-card {
    background: #F9F9F9;
    padding: 30px;
    border-radius: 10px;
}

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

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

.author-name {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.testimonial-stars {
    color: #FFB800;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background: #F9F9F9;
}

.blog-header {
    margin-bottom: 50px;
}

.blog-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    max-width: 900px;
    margin-top: 20px;
}

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

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.5;
    font-weight: 600;
}

.blog-link {
    color: #C17A4A;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

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

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

.contact-info {
    margin-bottom: 40px;
}

.contact-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
}

.form-input {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

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

.form-submit:hover {
    background: #ff5533;
}

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

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

.footer-brand {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
}

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

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

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

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

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

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

    .hero-title {
        font-size: 32px;
    }

    .about-content,
    .features-grid,
    .collaboration-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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