* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    margin-top: 120px;
    padding-bottom: 120px;
}

header {
    background: #000;
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

.hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    padding: 80px 20px;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #000;
}

.hero-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    background: #333;
}

.btn-secondary {
    background: #fff;
    color: #000;
    border: 2px solid #000;
}

.btn-secondary:hover {
    background: #f5f5f5;
}

.hero-image {
    text-align: center;
    display: flex;
}

.hero-image img {
    max-width: 100%;
    /* height: auto; */
}

.features {
    padding: 60px 20px;
    background: #fff;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #000;
}

.feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.showcase {
    padding: 60px 20px;
    background: #f0f0f0;
}

.showcase-content {
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.showcase-item:nth-child(even) {
    direction: rtl;
}

.showcase-item:nth-child(even)>* {
    direction: ltr;
}

.showcase-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #000;
}

.showcase-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.showcase-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.about {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.locations,
.reviews,
.faq,
.contact {
    padding: 60px 20px;
}

.locations-content,
.reviews-content,
.faq-content,
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.locations h2,
.reviews h2,
.faq h2,
.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.locations-grid,
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.location-card,
.review-card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-card {
    font-style: italic;
    color: #666;
}

.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    border-left: 4px solid #007bff;
    background: #f9f9f9;
}

.faq-question {
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply fade-in to sections */
section {
    animation: fadeIn 0.8s ease-in-out forwards;
    opacity: 0;
    scroll-margin-top: 120px;
}

section:nth-child(1) { animation-delay: 0.1s; }
section:nth-child(2) { animation-delay: 0.2s; }
section:nth-child(3) { animation-delay: 0.3s; }
section:nth-child(4) { animation-delay: 0.4s; }
section:nth-child(5) { animation-delay: 0.5s; }
section:nth-child(6) { animation-delay: 0.6s; }
section:nth-child(7) { animation-delay: 0.7s; }
.main-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 180px;
    padding-bottom: 100px;
}

.header-label {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    border-bottom: 2px solid #ddd;
}

.header-label h1 {
    font-size: 28px;
    font-weight: bold;
}

.main-content h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: rgb(235, 97, 29);
}

.main-content h3 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c2c2c;
}

.main-content p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.8;
    margin-left: 20px;
}

.div-footer {
    margin-top: 50px;
    padding: 30px 20px 20px;
    border-top: 2px solid #ddd;
}

.div-footer h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.div-footer p {
    font-size: 14px;
    margin-bottom: 10px;
}
.hero-img-1{
    height: 386px;
}
.hero-img-2{
    margin-left: -50px;
    margin-top: -25px;
    height: 386px;
}
@media (max-width: 768px) {

    .hero-content,
    .showcase-item,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .showcase-item:nth-child(even) {
        direction: ltr;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    nav {
        gap: 15px;
        font-size: 12px;
    }
}