
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Arial, sans-serif; }
body { background: #f4f4f4; color: #222; line-height: 1.7; text-align: right; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.main-header {
    background: #fff;
    padding: 12px 0;
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
    border-bottom: 3px solid #ff7a00;
}
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 55px; width: auto; display: block; }
.main-nav ul { list-style: none; display: flex; gap: 25px; }
.main-nav a { text-decoration: none; color: #333; font-weight: 700; font-size: 15px; transition: 0.2s; }
.main-nav a:hover { color: #ff7a00; }

/* Hero */
.hero {
    padding: 120px 0;
    text-align: center;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.hero h1 { font-size: 3.2rem; margin-bottom: 15px; color: #111; }
.hero p { font-size: 1.2rem; color: #555; margin-bottom: 30px; }

/* Button */
.btn {
    background: #ff7a00; color: #fff;
    padding: 13px 38px; border: none; border-radius: 5px;
    cursor: pointer; font-weight: bold; font-size: 16px;
    text-decoration: none; display: inline-block;
    box-shadow: 0 4px 12px rgba(255,122,0,0.35);
    transition: 0.2s;
}
.btn:hover { background: #e66900; transform: translateY(-2px); }
.btn-outline {
    background: transparent; color: #ff7a00;
    border: 2px solid #ff7a00;
    box-shadow: 0 4px 12px rgba(255,122,0,0.2);
    
}
.btn-outline:hover { background: #ff7a00; color: #fff; }

/* Sections */
.section { padding: 80px 0; }
.gray-bg { background: #f0f0f0; }
.title { text-align: center; margin-bottom: 50px; font-size: 2.2rem; color: #111; }
.title::after { content: ''; display: block; width: 60px; height: 4px; background: #ff7a00; margin: 12px auto 0; border-radius: 2px; }

/* Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.card {
    background: #fff; padding: 30px;
    border-radius: 10px; text-align: center;
    border: 1px solid #e0e0e0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.09);
    transition: 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.13); }
.card h3 { color: #ff7a00; margin-bottom: 10px; font-size: 1.2rem; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.gallery-item img {
    width: 100%; height: 260px; object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.13);
    border: 2px solid #ddd;
    transition: 0.3s;
}
.gallery-item img:hover { transform: scale(1.02); box-shadow: 0 10px 30px rgba(0,0,0,0.18); }

/* About */
.about-box { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.about-text {
    background: #fff; padding: 35px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.09);
}
.about-text h3 { color: #ff7a00; margin-bottom: 8px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.highlight-card {
    background: #fff; padding: 25px;
    border-radius: 10px; text-align: center;
    border: 1px solid #e0e0e0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.09);
    display: flex; flex-direction: column; gap: 8px;
}
.highlight-card .num { font-size: 2.5rem; font-weight: 900; color: #ff7a00; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.info {
    background: #fff; padding: 35px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.09);
}
.info h3 { color: #ff7a00; margin-bottom: 5px; }
.form {
    background: #fff; padding: 35px;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}
.form input, .form textarea {
    width: 100%; padding: 12px; margin-bottom: 15px;
    border: 1px solid #ccc; border-radius: 5px;
    font-size: 15px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}
.success-box {
    background: #e6ffed; color: #1e4620;
    padding: 15px; border-radius: 5px; margin-top: 10px;
    display: flex; align-items: center; gap: 10px;
    border: 1px solid #b2f2bb; font-weight: bold;
}

/* Footer */
.footer { background: #222; color: #fff; text-align: center; padding: 30px 0; margin-top: 0; }

@media (max-width: 768px) {
    .header-flex { flex-direction: column; gap: 12px; }
    .about-box, .contact-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .main-nav ul { flex-wrap: wrap; justify-content: center; gap: 12px; }
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 600px) {
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .btn-outline {
        margin-right: 0 !important;
    }
}


/* Works gallery clickable */
#works .gallery-item img {
    cursor: zoom-in;
}

/* Lightbox */
.no-scroll { overflow: hidden; }
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
}
.lightbox.is-open { display: block; }
.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}
.lightbox__content {
    position: relative;
    max-width: min(92vw, 1000px);
    max-height: 86vh;
    margin: 7vh auto 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.lightbox__content img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 78vh;
    object-fit: contain;
    background: #111;
}
.lightbox__caption {
    padding: 10px 14px;
    font-size: 14px;
    color: #333;
}
.lightbox__close {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,0.92);
    cursor: pointer;
    font-size: 26px;
    line-height: 40px;
}
.lightbox__close:hover { background: #fff; }
