*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root { --gold: #C49A3C; --gold-dark: #a07d28; --dark: #1a1a1a; --dark-navy: #1e2535; --light-bg: #f4f4f4; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; overflow-x: hidden; color: #333; }

/* TOP BAR */
.top-bar { background: #2a2a2a; color: #bbb; padding: 9px 60px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; letter-spacing: 0.3px; }
.top-bar-left { display: flex; gap: 28px; align-items: center; }
.top-bar-left span { display: flex; align-items: center; gap: 7px; }
.top-bar-left i { color: var(--gold); }
.top-bar-right { display: flex; gap: 6px; }
.top-bar-right a { color: #aaa; width: 30px; height: 30px; border: 1px solid #444; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 12px; transition: all .3s; }
.top-bar-right a:hover { background: var(--gold); border-color: var(--gold); color: white; }

/* NAVBAR */
.navbar { background: white; padding: 0 60px; display: flex; align-items: center; justify-content: space-between; height: 78px; position: sticky; top: 0; z-index: 999; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.logo { text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > a, .dropdown > a { text-decoration: none; color: #333; font-size: 13px; font-weight: 600; padding: 10px 14px; letter-spacing: 0.5px; transition: color .3s; display: flex; align-items: center; gap: 5px; }
.nav-links > a:hover, .nav-links > a.active, .dropdown > a:hover { color: var(--gold); }
.nav-links .btn-profile { background: var(--gold); color: white !important; padding: 13px 24px; margin-left: 12px; font-size: 12px; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; }
.nav-links .btn-profile:hover { background: var(--gold-dark); }
.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: white; min-width: 230px; box-shadow: 0 8px 25px rgba(0,0,0,.12); z-index: 100; }
.dropdown-menu a { display: block; padding: 12px 22px; border-bottom: 1px solid #f0f0f0; font-size: 13px; color: #444; text-decoration: none; font-weight: 500; transition: all .3s; }
.dropdown-menu a:hover, .dropdown-menu a.active { color: var(--gold); padding-left: 28px; }
.dropdown:hover .dropdown-menu { display: block; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 3px; background: #333; border-radius: 2px; transition: .3s; }

/* LANGUAGE SWITCHER */
.lang-switcher { position: relative; margin-left: 8px; }
.lang-btn { background: none; border: 1px solid #ddd; padding: 7px 13px; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; color: #333; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; letter-spacing: 0.5px; transition: all .3s; height: 36px; }
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-btn .fa-globe { font-size: 14px; color: var(--gold); }
.lang-menu { display: none; position: absolute; top: calc(100% + 4px); right: 0; background: white; min-width: 140px; box-shadow: 0 8px 25px rgba(0,0,0,.12); z-index: 10000; border-top: 2px solid var(--gold); }
.lang-menu.open { display: block; }
.lang-menu a { display: block; padding: 11px 18px; font-family: 'Montserrat', sans-serif; font-size: 13px; color: #444; font-weight: 500; cursor: pointer; transition: all .3s; border-bottom: 1px solid #f0f0f0; text-decoration: none; }
.lang-menu a:last-child { border-bottom: none; }
.lang-menu a:hover, .lang-menu a.lang-active { color: var(--gold); background: #fafafa; padding-left: 24px; }
[dir="rtl"] .lang-switcher { margin-left: 0; margin-right: 8px; }
[dir="rtl"] .lang-menu { right: auto; left: 0; }
[dir="rtl"] .lang-menu a:hover, [dir="rtl"] .lang-menu a.lang-active { padding-left: 18px; padding-right: 24px; }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg,#0d1e38 0%,#1a3555 60%,#0e2440 100%); padding: 80px 60px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: rgba(8,18,38,.5); }
.page-hero > * { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { color: var(--gold); font-size: 12px; font-weight: 600; text-decoration: none; letter-spacing: 1px; }
.breadcrumb span { color: #aaa; font-size: 12px; }
.gold-line { width: 65px; height: 4px; background: var(--gold); margin-bottom: 20px; }
.page-hero h1 { font-size: 38px; font-weight: 800; color: white; margin-bottom: 14px; }
.page-hero p { font-size: 14px; line-height: 1.9; color: rgba(255,255,255,.75); max-width: 720px; }

/* SERVICE BODY */
.page-bg { background: #f9f9f9; }
.service-body { display: grid; grid-template-columns: 1fr 300px; gap: 0; max-width: 1200px; margin: 0 auto; padding: 80px 60px; align-items: start; }
.service-main { padding-right: 60px; }
.service-main img { width: 100%; height: 360px; object-fit: cover; display: block; margin-bottom: 40px; }
.service-main h2 { font-size: 26px; font-weight: 700; color: #1a1a1a; margin-bottom: 18px; }
.service-main p { font-size: 14px; line-height: 1.95; color: #555; margin-bottom: 18px; }

.feature-list { list-style: none; margin: 24px 0 32px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid #f0f0f0; font-size: 13px; color: #555; line-height: 1.6; }
.feature-list li i { color: var(--gold); font-size: 14px; margin-top: 2px; flex-shrink: 0; }

.highlight-box { background: var(--light-bg); border-left: 4px solid var(--gold); padding: 22px 24px; margin: 28px 0; }
.highlight-box p { font-size: 13px; line-height: 1.85; color: #555; font-style: italic; }

.info-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0 32px; }
.info-box { background: var(--light-bg); border-top: 3px solid var(--gold); padding: 22px; }
.info-box h3 { font-size: 13px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.info-box h3 i { color: var(--gold); }
.info-box p { font-size: 12px; line-height: 1.75; color: #666; }

.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0 32px; }
.product-card { background: var(--light-bg); border-left: 4px solid var(--gold); padding: 20px 22px; }
.product-card h3 { font-size: 13px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.product-card h3 i { color: var(--gold); }
.product-card p { font-size: 12px; line-height: 1.7; color: #666; }

/* SIDEBAR */
.sidebar { position: sticky; top: 100px; }
.sidebar-nav { background: var(--dark-navy); overflow: hidden; margin-bottom: 24px; }
.sidebar-nav h4 { background: var(--gold); color: white; padding: 18px 22px; font-size: 13px; font-weight: 700; letter-spacing: 1px; }
.sidebar-nav a { display: flex; align-items: center; justify-content: space-between; padding: 13px 22px; border-bottom: 1px solid rgba(255,255,255,.06); color: #aaa; text-decoration: none; font-size: 13px; font-weight: 500; transition: all .3s; }
.sidebar-nav a:hover, .sidebar-nav a.active { color: var(--gold); background: rgba(196,154,60,.08); padding-left: 26px; }
.sidebar-nav a i { font-size: 10px; opacity: .5; }
.sidebar-cta { background: var(--gold); padding: 32px 26px; text-align: center; }
.sidebar-cta h4 { font-size: 16px; font-weight: 700; color: white; margin-bottom: 12px; }
.sidebar-cta p { font-size: 12px; line-height: 1.7; color: rgba(255,255,255,.85); margin-bottom: 22px; }

/* BUTTONS */
.btn-gold { display: inline-flex; align-items: center; padding: 14px 32px; background: var(--gold); color: white; text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: 2px; transition: background .3s; }
.btn-gold:hover { background: var(--gold-dark); }
.btn-dark { display: inline-flex; align-items: center; justify-content: center; padding: 13px 26px; background: #1a1a1a; color: white; text-decoration: none; font-size: 11px; font-weight: 700; letter-spacing: 2px; transition: background .3s; width: 100%; }
.btn-dark:hover { background: #333; }
.btn-dark-outline { display: inline-flex; align-items: center; padding: 16px 36px; background: #1a1a1a; color: white; text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: 2px; white-space: nowrap; transition: all .3s; }
.btn-dark-outline:hover { background: #333; }

/* CTA BANNER */
.cta-banner { background: #1e2535; padding: 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-banner h2 { font-size: 22px; font-weight: 700; color: white; line-height: 1.5; max-width: 600px; }

/* WORK TOGETHER */
.work-together { background: var(--gold); padding: 65px 60px; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.work-together h2 { font-size: 28px; font-weight: 800; color: white; margin-bottom: 14px; }
.work-together p { font-size: 13px; line-height: 1.9; color: rgba(255,255,255,.88); max-width: 620px; }

/* FOOTER */
footer { background: #1a1a1a; padding: 65px 60px 0; position: relative; overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 60px; padding-bottom: 45px; border-bottom: 1px solid #2e2e2e; position: relative; }
.footer-col h4 { color: white; font-size: 13px; font-weight: 700; letter-spacing: 2px; margin-bottom: 14px; }
.footer-divider { width: 38px; height: 3px; background: var(--gold); margin-bottom: 22px; }
.footer-col > p { color: #777; font-size: 13px; line-height: 1.9; }
.contact-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.contact-row i { color: var(--gold); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.contact-row p { color: #777; font-size: 13px; line-height: 1.6; }
.contact-row strong { color: #bbb; }
.hours-row { display: flex; justify-content: space-between; margin-bottom: 13px; }
.hours-row .day { color: #bbb; font-size: 13px; font-weight: 600; }
.hours-row .time { color: var(--gold); font-size: 13px; }
.hours-row .closed { color: #777; }
.footer-middle { padding: 25px 0; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #2e2e2e; position: relative; }
.footer-social { display: flex; align-items: center; gap: 8px; }
.footer-social span { color: #888; font-size: 13px; margin-right: 6px; }
.footer-social a { color: #888; width: 34px; height: 34px; border: 1px solid #444; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 13px; transition: all .3s; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: white; }
.btn-pdf { display: flex; align-items: center; gap: 10px; padding: 12px 22px; background: var(--gold); color: white; text-decoration: none; font-size: 12px; font-weight: 600; letter-spacing: 1px; transition: background .3s; }
.btn-pdf:hover { background: var(--gold-dark); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; position: relative; }
.footer-bottom p { color: #555; font-size: 12px; }
.footer-bottom a { color: var(--gold); text-decoration: none; }
.footer-links { display: flex; align-items: center; gap: 14px; }
.footer-links a { color: #777; font-size: 12px; text-decoration: none; transition: color .3s; }
.footer-links a:hover { color: var(--gold); }
.footer-links .divider { color: #444; }
.btn-scroll-top { width: 36px; height: 36px; background: var(--gold); border: none; color: white; cursor: pointer; font-size: 13px; display: flex; align-items: center; justify-content: center; transition: background .3s; }
.btn-scroll-top:hover { background: var(--gold-dark); }

/* RESPONSIVE */
@media (max-width: 1100px) {
    .top-bar, .navbar, .page-hero, .service-body, .cta-banner, .work-together, footer { padding-left: 30px; padding-right: 30px; }
}
@media (max-width: 900px) {
    .service-body { grid-template-columns: 1fr; }
    .service-main { padding-right: 0; }
    .sidebar { position: static; }
    .info-boxes, .product-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 35px; }
    .work-together { flex-direction: column; text-align: center; }
    .cta-banner { flex-direction: column; }
}
@media (max-width: 768px) {
    .top-bar-left { display: none; }
    .nav-links { display: none; flex-direction: column; position: fixed; top: 78px; left: 0; right: 0; background: white; padding: 20px 30px 30px; box-shadow: 0 8px 25px rgba(0,0,0,.12); z-index: 998; }
    .nav-links.open { display: flex; }
    .nav-links .btn-profile { margin-left: 0; margin-top: 10px; }
    .dropdown-menu { position: static; box-shadow: none; background: #f9f9f9; }
    .hamburger { display: flex; }
    .page-hero { padding: 60px 30px; }
    .page-hero h1 { font-size: 26px; }
    .footer-middle { flex-direction: column; gap: 20px; }
    .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}
