* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1e1e2f;
    line-height: 1.5;
    scroll-behavior: smooth;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
.navbar {
    position: sticky;
    top: 0;
    background: rgba(23, 23, 23, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 85, 0, 0.15);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.navbar-logo {
    max-height: 56px;
    width: auto;
}
.nav-toggle {
    display: none;
}
.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #ff5e1a;
}
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}
.nav-link {
    text-decoration: none;
    font-weight: 600;
    color: #e6e6ec;
    transition: 0.2s;
}
.nav-link:hover {
    color: #ff5e1a;
}
.lang-btn {
    background: #ff5e1a;
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: 0.2s;
}
.lang-btn:hover {
    background: #e04e0e;
}
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(145deg, #fff 60%, #fff6ed 100%);
}
.hero-container {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.hero-content {
    flex: 1;
}
.hero-badge {
    background: #ffe8dd;
    color: #ff5e1a;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
}
.hero-content p {
    font-size: 1.1rem;
    color: #4a4a5a;
    max-width: 500px;
    margin-bottom: 32px;
}
.btn-primary {
    background: #ff5e1a;
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
    box-shadow: 0 6px 14px rgba(255, 94, 26, 0.25);
}
.btn-primary:hover {
    background: #e04e0e;
    transform: translateY(-2px);
}
.hero-image {
    flex: 1;
}
.hero-image img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 25px 35px -12px rgba(0,0,0,0.2);
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-tag {
    background: #fff0e6;
    color: #ff5e1a;
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 16px;
}
.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.orange-text {
    color: #ff5e1a;
}
.services {
    padding: 80px 0;
    background: white;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.service-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 32px 28px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    transition: all 0.25s ease;
    border: 1px solid #f0f0f0;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: #ffd1b6;
    box-shadow: 0 20px 35px -12px rgba(255, 94, 26, 0.15);
}
.service-icon {
    font-size: 2.8rem;
    color: #ff5e1a;
    margin-bottom: 24px;
}
.service-card h3 {
    font-size: 1.7rem;
    margin-bottom: 16px;
    font-weight: 700;
}
.service-card p {
    color: #5a5a6e;
    margin-bottom: 24px;
}
.service-tag {
    display: inline-block;
    background: #f5f5f7;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ff5e1a;
}
.testimonials {
    background: #fefaf7;
    padding: 80px 0;
}
.testimonial-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 50px;
    overflow: hidden;
}
.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.testimonial-slide {
    flex: 0 0 100%;
    background: white;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 10px 25px -8px rgba(0,0,0,0.08);
    text-align: center;
    box-sizing: border-box;
}
.stars {
    color: #ffb400;
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c2c3a;
    margin-bottom: 24px;
    font-style: italic;
}
.client-info h4 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.client-info span {
    font-size: 0.85rem;
    color: #777;
}
.testimonial-prev, .testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff5e1a;
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    z-index: 10;
}
.testimonial-prev:hover, .testimonial-next:hover {
    background: #e04e0e;
    transform: translateY(-50%) scale(1.05);
}
.testimonial-prev { left: 0; }
.testimonial-next { right: 0; }
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}
.testimonial-dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}
.testimonial-dot.active {
    background: #ff5e1a;
    transform: scale(1.2);
}
.whatsapp-button-container {
    text-align: center;
    margin-top: 56px;
}
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 14px 36px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    transition: 0.2s;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background-color: #1da959;
    transform: scale(1.02);
}
.gallery {
    padding: 80px 0;
    background: white;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.gallery-item {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 28px -8px rgba(0,0,0,0.1);
}
.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.lightbox-close:hover {
    color: #ff5e1a;
}

.footer {
    background: #0f0f14;
    color: #ddd;
    padding-top: 56px;
    margin-top: 20px;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 48px;
}
.footer-brand {
    max-width: 280px;
}
.footer-logo-placeholder {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff8c5a, #ff5e1a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}
.footer-links ul, .footer-contact p {
    list-style: none;
    margin-top: 12px;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a, .footer-contact p {
    color: #bbbbcc;
    text-decoration: none;
    transition: 0.2s;
}
.footer-links a:hover {
    color: #ff8c5a;
}
.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}
.social-icons a {
    color: #ddd;
    background: #252530;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.2s;
}
.social-icons a:hover {
    background: #ff5e1a;
    color: white;
}
.footer-bottom {
    text-align: center;
    padding: 24px;
    border-top: 1px solid #252530;
    font-size: 0.8rem;
}
@media (max-width: 992px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }
    .section-header h2 { font-size: 2rem; }
}
@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background-color: #171717;
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        padding: 30px 0;
        gap: 1.8rem;
        z-index: 999;
    }
    .nav-toggle:checked ~ .nav-menu { left: 0; }
    .nav-link { color: #e6e6ec; }
    .lang-btn { margin: 10px auto 0; }
    .services-grid, .gallery-grid { grid-template-columns: 1fr; }
    .container { padding: 0 24px; }
    .testimonial-slider-container { padding: 0 30px; }
    .testimonial-slide { padding: 24px; }
    .testimonial-prev, .testimonial-next { width: 36px; height: 36px; font-size: 1rem; }
}