:root { --primary-color: #0F172A; --secondary-color: #1E293B; --accent-color: #D4AF37; --accent-hover: #B5952F; --text-dark: #334155; --text-light: #94A3B8; --white: #ffffff; --off-white: #F8FAFC; --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { font-family: 'Montserrat', sans-serif; line-height: 1.7; color: var(--text-dark); background-color: var(--white); overflow-x: hidden; }
h1, h2, h3 { font-family: 'Cinzel', serif; color: var(--primary-color); font-weight: 700; }
h2 { font-size: 2.5rem; } h3 { font-size: 1.35rem; margin-bottom: 10px; }
p { margin-bottom: 15px; } a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
.container { width: 92%; max-width: 1280px; margin: 0 auto; }
.section { padding: 80px 0; }
.bg-light { background-color: var(--off-white); }
.section-header { text-align: center; margin-bottom: 50px; }
.line { width: 80px; height: 3px; background: var(--accent-color); margin: 15px auto 20px; }
.btn { display: inline-block; padding: 14px 35px; border-radius: 0; font-weight: 600; text-transform: uppercase; cursor: pointer; transition: var(--transition); border: 2px solid transparent; font-size: 0.9rem; }
.btn-primary { background: var(--accent-color); color: var(--primary-color); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--accent-color); color: var(--accent-color); }
.btn-outline:hover { background: var(--accent-color); color: var(--primary-color); }
header { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); position: fixed; width: 100%; top: 0; z-index: 1000; height: 90px; display: flex; align-items: center; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { flex-shrink: 0; filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3)); }
.logo-text { display: flex; flex-direction: column; justify-content: center; line-height: 1.1; }
.brand-name { font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 700; color: var(--primary-color); }
.brand-tagline { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; color: var(--accent-color); }
.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a { font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.nav-links a:hover { color: var(--accent-color); }
.controls { display: flex; gap: 20px; align-items: center; }
#lang-selector { padding: 8px; border: 1px solid #e2e8f0; font-family: 'Montserrat', sans-serif; }
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 6px; }
.hamburger span { width: 30px; height: 2px; background: var(--primary-color); }
.hero { height: 90vh; min-height: 600px; background: url('../images/hero_bg.jpg') no-repeat center center/cover; position: relative; display: flex; align-items: center; }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(45deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.5)); }
.hero-content { position: relative; z-index: 2; max-width: 800px; color: white; }
.hero h1 { font-size: 3.5rem; margin-bottom: 25px; color: var(--white); text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.hero-btns { display: flex; gap: 20px; }
.trust-bar { background: var(--secondary-color); color: var(--white); padding: 25px 0; border-bottom: 3px solid var(--accent-color); }
.badges { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; font-weight: 600; }
.grid-8 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.card { background: var(--white); border-radius: 0; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.1); transition: all 0.3s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
.img-box { height: 200px; overflow: hidden; }
.img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; background: #ddd; }
.card:hover .img-box img { transform: scale(1.1); }
.card-content { padding: 20px; flex-grow: 1; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portfolio-item { position: relative; height: 300px; overflow: hidden; cursor: pointer; background: #ddd; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.4s; }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 { color: white; border-bottom: 2px solid var(--accent-color); padding-bottom: 5px; }
.split-layout { display: flex; gap: 50px; align-items: center; }
.text-block, .image-block { flex: 1; }
.check-list { list-style: none; margin-top: 20px; }
.check-list li { margin-bottom: 10px; display: flex; align-items: center; font-weight: 500; }
.check-list li::before { content: '✓'; color: var(--accent-color); margin-right: 10px; font-weight: bold; }
.dark-section { background: var(--primary-color); color: white; }
.contact-wrapper { display: flex; gap: 50px; }
.contact-info, .contact-form { flex: 1; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #334155; background: var(--secondary-color); color: white; }
footer { background: #050d1a; color: #888; text-align: center; padding: 30px 0; }
.loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--primary-color); display: flex; justify-content: center; align-items: center; z-index: 9999; transition: opacity 0.5s; }
.spinner { width: 50px; height: 50px; border: 4px solid rgba(212, 175, 55, 0.2); border-radius: 50%; border-top-color: var(--accent-color); animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 1024px) { .grid-8 { grid-template-columns: repeat(2, 1fr); } .portfolio-grid { grid-template-columns: repeat(2, 1fr); } .hero h1 { font-size: 2.5rem; } }
@media (max-width: 768px) { .nav-links { display: none; position: absolute; top: 90px; left: 0; width: 100%; background: white; flex-direction: column; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); } .nav-links.active { display: flex; } .hamburger { display: flex; } .grid-8, .portfolio-grid { grid-template-columns: 1fr; } .split-layout, .contact-wrapper { flex-direction: column; } .hidden-mobile { display: none; } }
