/* ---------- MOBILE FIRST ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: Inter, system-ui, Segoe UI, Arial, sans-serif;
  background-color: #fcfcf9;
  color: #1e1e1e;
  line-height: 1.5;
  padding-top: 70px;
}
.container {
  width: 100%;
  padding: 0 1.25rem;
  margin: 0 auto;
}
section {
  padding: 3rem 0;
  scroll-margin-top: 60px;
}
h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.75rem;
  position: relative;
  display: inline-block;
  letter-spacing: -0.02em;
}
h2:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #c5a267;
}
.accent-gold { color: #9e7d4e; }

/* ---------- FIXED HEADER ---------- */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.navbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem 1rem;
  gap: 0.5rem;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 1rem;
  margin: 0.25rem 0;
}
.nav-links a {
  text-decoration: none;
  color: #1e1e1e;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-links a:hover { color: #9e7d4e; }
.nav-links a.active-link {
  color: #9e7d4e !important;
  font-weight: 600;
  position: relative;
}
.nav-links a.active-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #9e7d4e;
}
.lang-switch {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.2rem;
}
.lang-btn {
  background: white;
  border: 1px solid #ddd;
  padding: 0.3rem 1.2rem;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: #1e1e1e;
}
.lang-btn.active {
  background: #e60000;
  color: white;
  border-color: #e60000;
}

/* ---------- HERO SLIDER ---------- */
.hero { padding: 0.5rem 0 2rem; }
.slider-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.15);
}
.slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-out;
}
.slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 80%);
  z-index: 1;
}
.slide-content {
  position: absolute;
  bottom: 12%;
  left: 1.5rem;
  right: 1.5rem;
  color: white;
  z-index: 3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.slide-content p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  z-index: 10;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.prev { left: 10px; }
.next { right: 10px; }

/* ---------- ABOUT ---------- */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-text p {
  font-size: 1rem;
  color: #3a3a3a;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.video-row {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 0;
}
.video-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px -5px rgba(0,0,0,0.2);
  background: #000;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.service-card {
  background: white;
  padding: 1.8rem 1.5rem;
  border-radius: 24px;
  box-shadow: 0 5px 15px -5px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.02);
}
.service-icon { font-size: 2rem; color: #9e7d4e; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.4rem; font-weight: 500; margin-bottom: 1rem; }
.service-card ul { list-style: none; }
.service-card li {
  margin-bottom: 0.6rem;
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  font-weight: 300;
  font-size: 0.95rem;
}

/* ---------- GALLERY ---------- */
.gallery-section { position: relative; }
.gallery-filter {
  position: sticky;
  top: 80px;
  z-index: 500;
  background: rgba(252, 252, 249, 0.95);
  backdrop-filter: blur(8px);
  padding: 1rem 0;
  margin-bottom: 2rem;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
@media (max-width: 767px) {
  .gallery-filter { top: 70px; }
}
.filter-btn {
  background: white;
  border: 1px solid #eaeaea;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.filter-btn.active {
  background: #1e1e1e;
  color: white;
  border-color: #1e1e1e;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #eae7e0;
  cursor: pointer;
  position: relative;
}
.gallery-item img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ---------- MODAL ---------- */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
}
.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}
.close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transition: all 0.2s;
}
.close-modal:hover {
  background: rgba(255,255,255,0.4);
  transform: scale(1.1);
}
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 40px;
  cursor: pointer;
  padding: 20px;
  z-index: 2001;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal-nav:hover { background: rgba(255,255,255,0.3); }
.modal-prev { left: 20px; }
.modal-next { right: 20px; }
.modal-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1rem;
  background: rgba(0,0,0,0.5);
  padding: 8px 16px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f4f2ed;
  border-radius: 28px;
  padding: 1.5rem;
}
.contact-info p {
  margin: 1.2rem 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  word-break: break-word;
}
.contact-info i { width: 24px; color: #9e7d4e; font-size: 1.3rem; }
.working-hours { margin-top: 1.5rem; border-top: 1px dashed #b9aa93; padding-top: 1.5rem; }
.map-placeholder {
  background: #ddd8ce;
  border-radius: 24px;
  min-height: 200px;
  background-image: url('https://images.unsplash.com/photo-1569336415962-a4bd9f69cdc1?q=80&w=1000&auto=format&fit=crop');
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slid {
  background: rgba(255, 255, 255, 0);
  padding: 0.8rem 0.8rem;
  border-radius: 0.1px;

  font-weight: 500;
  text-align: center;
  font-size: 0.95rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.2s;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background-color: #dc2626;
  color: #fff;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
}
.btn-primary:hover {
  background-color: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(220, 38, 38, 0.35);
}
.btn-ghost {
  background: transparent;
  color: #1e1e1e;
  border: 1px solid #dc2626;
}
.btn-ghost:hover {
  background: #dc2626;
  color: white;
  transform: translateY(-2px);
}

/* ---------- FOOTER ---------- */
footer {
  text-align: center;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid #eaeaea;
  color: #5c5c5c;
  font-size: 0.9rem;
}

/* ---------- RESPONSIVE ---------- */
@media (min-width: 600px) {
  .container { padding: 0 2rem; }
  h2 { font-size: 2.3rem; }
  .slider-container { height: 550px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
@media (min-width: 768px) {
  body { padding-top: 80px; }
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    padding: 0.8rem 2rem;
  }
  .nav-links { margin: 0; }
  .lang-switch { margin-top: 0; }
  .about-grid { flex-direction: column; align-items: stretch; }
  .video-row { flex-direction: row; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { flex-direction: row; }
  .gallery-filter { top: 90px; }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1280px) {
  .container { max-width: 1280px; }
}