/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1410;
    color: #f0ece6;
    overflow-x: hidden;
    line-height: 1.7;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1a1410;
}
::-webkit-scrollbar-thumb {
    background: #c9a84c;
    border-radius: 10px;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(70px) scale(0.96);
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-card.reveal,
.project-item.reveal {
    transition-delay: 0.1s;
}
.service-card.reveal:nth-child(2),
.project-item.reveal:nth-child(2) {
    transition-delay: 0.2s;
}
.service-card.reveal:nth-child(3),
.project-item.reveal:nth-child(3) {
    transition-delay: 0.3s;
}
.service-card.reveal:nth-child(4) {
    transition-delay: 0.4s;
}

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

/* ===== HEADER ===== */
header {
    background: rgba(26, 20, 16, 0.95);
    backdrop-filter: blur(12px);
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid #c9a84c22;
}

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

.logo-wrapper {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.logo-main {
    font-size: 24px;
    font-weight: 800;
    color: #f0ece6;
    letter-spacing: 1px;
}
.logo-main span {
    color: #c9a84c;
}
.logo-sub {
    font-size: 13px;
    font-weight: 600;
    color: #c9a84c;
    letter-spacing: 3px;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: #f0ece6;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c9a84c;
    transition: 0.3s;
}
.nav-links a:hover {
    color: #c9a84c;
}
.nav-links a:hover::after {
    width: 100%;
}

.lang-toggle {
    background: transparent;
    color: #c9a84c;
    border: 1px solid #c9a84c44;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.lang-toggle:hover {
    background: #c9a84c;
    color: #1a1410;
    border-color: #c9a84c;
}
.lang-toggle i {
    font-size: 14px;
}

.hamburger {
    display: none;
    font-size: 26px;
    color: #f0ece6;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(145deg, #1a1410 0%, #2d231d 100%);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #c9a84c10 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    animation: floatGlow 8s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(40px, 40px) scale(1.2);
    }
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}
.hero h1 span {
    color: #c9a84c;
    background: linear-gradient(135deg, #c9a84c, #e6d09c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero .hero-subtitle {
    font-size: 18px;
    letter-spacing: 6px;
    color: #c9a84c;
    font-weight: 300;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero p {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto 35px;
    color: #d4cdc4;
}

.btn-gold {
    display: inline-block;
    background: #c9a84c;
    color: #1a1410;
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 8px 30px #c9a84c33;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-gold:hover {
    background: #dfc06a;
    transform: scale(1.05);
    box-shadow: 0 12px 40px #c9a84c55;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}
.hero-stats div {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-stats h3 {
    font-size: 48px;
    color: #c9a84c;
    font-weight: 800;
}
.hero-stats p {
    font-size: 14px;
    color: #b0a79a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-stats div .stat-icon {
    font-size: 32px;
    color: #c9a84c;
    margin-bottom: 8px;
    display: block;
}

section {
    padding: 100px 0;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}
.section-title span {
    color: #c9a84c;
}
.section-sub {
    text-align: center;
    color: #b0a79a;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img {
    background: #2d231d;
    height: 400px;
    border-radius: 30px;
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=600&auto=format');
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid #c9a84c33;
}
.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.about-text h2 span {
    color: #c9a84c;
}
.about-text ul {
    list-style: none;
    margin-top: 20px;
}
.about-text ul li {
    padding: 10px 0;
    border-bottom: 1px solid #3a2e26;
    display: flex;
    align-items: center;
    gap: 15px;
}
.about-text ul li i {
    color: #c9a84c;
    font-size: 20px;
    width: 30px;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}
.service-card {
    background: #221b16;
    padding: 40px 25px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid #3a2e26;
    transition: all 0.4s;
    cursor: default;
}
.service-card:hover {
    transform: translateY(-15px);
    border-color: #c9a84c;
    box-shadow: 0 20px 40px #00000055;
}
.service-card i {
    font-size: 52px;
    color: #c9a84c;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}
.service-card p {
    color: #b0a79a;
    font-size: 14px;
}

/* ===== PROJECTS ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}
.project-item {
    background: #221b16;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #3a2e26;
    transition: 0.4s;
}
.project-item:hover {
    transform: scale(1.02);
    border-color: #c9a84c;
}
.project-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.project-info {
    padding: 25px;
}
.project-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}
.project-info p {
    color: #b0a79a;
    font-size: 14px;
}
.badge {
    display: inline-block;
    background: #c9a84c22;
    color: #c9a84c;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== CONTACT ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
}
.contact-info i {
    color: #c9a84c;
    width: 40px;
    font-size: 22px;
}
.contact-info p {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-info a {
    color: #f0ece6;
    text-decoration: none;
    transition: color 0.3s;
}
.contact-info a:hover {
    color: #c9a84c;
}

/* ===== MAP ===== */
.map-container {
    margin-top: 25px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #c9a84c33;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    transition: 0.3s;
}
.map-container:hover {
    border-color: #c9a84c;
    box-shadow: 0 8px 40px #c9a84c22;
}
.map-container iframe {
    display: block;
    width: 100%;
    height: 280px;
    border: none;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 20px;
    background: #221b16;
    border: 1px solid #3a2e26;
    border-radius: 16px;
    color: #f0ece6;
    font-size: 16px;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c9a84c;
    box-shadow: 0 0 0 4px #c9a84c22;
}
.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}
.contact-form button {
    background: #c9a84c;
    color: #1a1410;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.contact-form button:hover:not(:disabled) {
    background: #dfc06a;
    transform: scale(1.02);
    box-shadow: 0 8px 30px #c9a84c55;
}
.contact-form button:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

/* ===== BUTTON SUCCESS EFFECT ===== */
.contact-form button.success {
    background: #2e7d32 !important;
    color: #ffffff !important;
    transform: scale(1) !important;
    box-shadow: 0 0 30px #2e7d3266 !important;
}
.contact-form button.success i {
    animation: checkPop 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes checkPop {
    0% {
        transform: scale(0) rotate(-20deg);
        opacity: 0;
    }
    60% {
        transform: scale(1.3) rotate(5deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* ===== FOOTER ===== */
footer {
    background: #0f0b09;
    padding: 60px 0 30px;
    border-top: 1px solid #c9a84c15;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand .logo-main {
    font-size: 26px;
    display: block;
    margin-bottom: 4px;
}
.footer-brand .logo-sub {
    font-size: 12px;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 16px;
}
.footer-brand p {
    color: #b0a79a;
    font-size: 14px;
    max-width: 350px;
    line-height: 1.8;
}

.footer-nav h4,
.footer-contact h4 {
    color: #f0ece6;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-nav ul {
    list-style: none;
}
.footer-nav ul li {
    margin-bottom: 10px;
}
.footer-nav ul li a {
    color: #b0a79a;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.footer-nav ul li a:hover {
    color: #c9a84c;
}

.footer-contact p {
    color: #b0a79a;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-contact p i {
    color: #c9a84c;
    width: 20px;
    font-size: 16px;
}
.footer-contact a {
    color: #b0a79a;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-contact a:hover {
    color: #c9a84c;
}

.footer-bottom {
    border-top: 1px solid #c9a84c15;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-bottom p {
    color: #6a625a;
    font-size: 13px;
}
.footer-bottom .location-tag {
    color: #c9a84c;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}
.footer-bottom .location-tag i {
    margin-left: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid,
    .contact-wrapper,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 44px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        background: #1a1410;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        padding: 30px;
        gap: 18px;
        border-bottom: 1px solid #c9a84c22;
    }
    .nav-links.open {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .hero-stats {
        gap: 30px;
    }
    .hero-stats h3 {
        font-size: 34px;
    }
    .footer-grid {
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .map-container iframe {
        height: 220px;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 32px;
    }
    .section-title {
        font-size: 30px;
    }
    .logo-main {
        font-size: 20px;
    }
    .logo-sub {
        font-size: 10px;
        letter-spacing: 2px;
    }
    .nav-links a {
        font-size: 13px;
    }
    .lang-toggle {
        font-size: 11px;
        padding: 4px 12px;
    }
    .map-container iframe {
        height: 180px;
    }
    .contact-form button {
        font-size: 14px;
        padding: 14px 20px;
    }
}

/* ===== LTR (English) ===== */
body.en {
    direction: ltr;
    text-align: left;
}
body.en .hero,
body.en .about-text,
body.en .contact-info {
    text-align: left;
}
body.en .section-title,
body.en .section-sub {
    text-align: center;
}
body.en .about-text ul li {
    flex-direction: row-reverse;
}
body.en .footer-contact p {
    flex-direction: row;
}