* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.6;
  color: #2c3e50;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(75, 0, 0, 0.98);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-bottom: 2px solid #4b0000;
  padding: 0;
  margin: 0;
}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  margin: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
  flex: 1;
}

.logo-icon {
  font-size: 2.2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  margin-right: 20px;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #ecf0f1;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 6px;
  position: relative;
}

.nav-menu a:hover {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-menu a:hover::after {
  width: 80%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  margin-right: 20px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #ecf0f1;
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Language Selector */
.language-selector {
  position: relative;
  margin-left: auto;
  margin-right: 60px; /* Pozicionoj edhe pak më në të djathtë */
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #ecf0f1;
  padding: 8px 1px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.language-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #d4af37;
  color: #d4af37;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.language-btn.active .dropdown-arrow {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(75, 0, 0, 0.98);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 160px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.language-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 12px 16px;
  color: #ecf0f1;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
}

.language-option.active {
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
}

.language-option .flag {
  font-size: 1.2rem;
}

.language-option span:last-child {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 60px;
  background: linear-gradient(
    135deg,
    #2c0000 0%,
    #4b0000 30%,
    #660000 70%,
    #2c0000 100%
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #ecf0f1;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.highlight {
  color: #d4af37;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #daa520);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #bdc3c7;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.btn {
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #4b0000, #660000);
  color: white;
  box-shadow: 0 6px 20px rgba(75, 0, 0, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #660000, #4b0000);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(75, 0, 0, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-secondary:hover {
  background: #d4af37;
  color: #2c0000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(212, 175, 55, 0.3);
}

/* Section Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #daa520);
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.3rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Section */
.about {
  padding: 120px 0;
  background: linear-gradient(135deg, #fff8dc 0%, #f5f5dc 50%, #fffaf0 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.about-text p {
  font-size: 1.2rem;
  color: #5d6d7e;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 12px;
  border-left: 4px solid #d4af37;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 1.8rem;
}

.feature span:last-child {
  font-weight: 600;
  color: #2c3e50;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.about-image img {
  height: 180px;
  width: 180px;
  max-width: 90vw;
  max-height: 180px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border: 4px solid #d4af37;
  display: block;
  margin: 0 auto;
  background: #fff;
}

/* Services Section */
.services {
  padding: 120px 0;
  background: linear-gradient(135deg, #f0e68c 0%, #ddd8c0 50%, #e6e6fa 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #4b0000;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4b0000, #660000);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.service-card p {
  color: #5d6d7e;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.service-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #4b0000;
  background: rgba(75, 0, 0, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
}

/* Service button styling */
.service-btn {
  background: linear-gradient(135deg, #4b0000, #660000);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-btn:hover {
  background: linear-gradient(135deg, #660000, #4b0000);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75, 0, 0, 0.4);
}

/* Services Section - Button Only Version */
.services-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-btn-large {
  background: rgba(255, 255, 255, 0.9);
  color: #000000;
  border: 2px solid #d4af37;
  padding: 15px 30px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  min-width: 200px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.service-btn-large:hover {
  background: #d4af37;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Hide old service cards if they exist */
.services-grid {
  display: none;
}

/* Gallery */
.gallery {
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-category-title {
  font-size: 1.8rem;
  color: #d4af37;
  margin-bottom: 1.5rem;
  text-align: center;
}

.gallery-click-hint {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.9rem;
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-style: italic;
  padding: 6px 12px;
  opacity: 0.9;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  user-select: none;
  transition: all 0.3s ease;
  z-index: 5;
}

.gallery-item:hover .gallery-click-hint {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

/* Gallery Click Hint - Mobile Only */
.gallery-click-hint-mobile {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 6px 10px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  font-weight: 500;
  z-index: 2;
  opacity: 0.9;
  backdrop-filter: blur(5px);
  transition: opacity 0.3s ease;
}

/* Hide click hint on desktop */
@media (min-width: 1024px) {
  .gallery-click-hint-mobile {
    display: none;
  }
}

/* Show and style click hint on mobile and tablet */
@media (max-width: 1023px) {
  .gallery-click-hint-mobile {
    display: block;
    font-size: 0.65rem;
    padding: 5px 8px;
    border-radius: 12px;
  }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
  .gallery-click-hint-mobile {
    font-size: 0.6rem;
    padding: 4px 7px;
    border-radius: 10px;
    top: 8px;
    right: 8px;
  }
}

/* Fade out click hint on hover (for touch devices that support hover) */
.gallery-item:hover .gallery-click-hint-mobile {
  opacity: 0.6;
}

/* Contact Section */
.contact {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    #2c0000 0%,
    #4b0000 30%,
    #660000 70%,
    #2c0000 100%
  );
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.contact .section-header {
  position: relative;
  z-index: 2;
}

.contact .section-header h2 {
  color: #ecf0f1;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.contact .section-header p {
  color: #bdc3c7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.contact-form,
.contact-info {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-form {
  background: rgba(255, 255, 255, 0.15);
}

.contact-form h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  text-align: center;
  color: #d4af37;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-form p {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  text-align: center;
  color: #ecf0f1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #d4af37;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  color: #2c3e50;
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #d4af37;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  outline: none;
}

.contact-table {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.contact-table-title {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  text-align: center;
  color: #d4af37;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 120px;
  font-weight: 600;
  color: #d4af37;
  font-size: 0.98rem;
}

.contact-value {
  flex: 1;
}

.contact-text {
  color: #ecf0f1;
  font-size: 0.97rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.5;
  margin-bottom: 0.3rem;
}

.contact-actions,
.social-actions {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}

.contact-btn,
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 7px 13px;
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  text-decoration: none;
  border-radius: 13px;
  font-size: 0.92rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.2s;
  backdrop-filter: blur(10px);
}

.contact-btn:hover,
.social-btn:hover {
  background: #d4af37;
  color: #2c0000;
}

.email-link {
  color: #d4af37 !important;
  font-weight: 500;
  text-decoration: underline;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.email-link:hover {
  color: #fff !important;
}

/* Success Message */
.success-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.success-message.show {
  opacity: 1;
  visibility: visible;
}

.success-content {
  background: white;
  padding: 3.5rem;
  border-radius: 20px;
  text-align: center;
  max-width: 450px;
  margin: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border-top: 4px solid #2c0000;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: #27ae60;
}

.success-content h3 {
  margin-bottom: 1rem;
  color: #2c3e50;
  font-size: 1.8rem;
}

.success-content p {
  color: #5d6d7e;
  font-size: 1.2rem;
}

/* Mobile Styles - Modern, Simple, and Clean */
@media (max-width: 768px) {
  /* Hamburger Menu */
  .hamburger {
    display: flex !important;
    z-index: 1003 !important;
  }

  /* Language Selector Mobile */
  .language-selector {
    order: 2;
    position: absolute;
    left: 60%; /* Pozicionoj më në të djathtë se qendra */
    transform: translateX(-50%);
    margin: 0;
  }

  .language-btn {
    padding: 6px 10px;
    font-size: 0.8rem;
    border-color: rgba(212, 175, 55, 0.5);
  }

  .language-dropdown {
    right: auto;
    left: 0;
    min-width: 140px;
  }

  .language-option {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .nav-menu {
    position: fixed !important;
    left: -100% !important;
    top: 70px !important;
    flex-direction: column !important;
    background: rgba(75, 0, 0, 0.98) !important;
    width: 100% !important;
    text-align: center !important;
    transition: left 0.3s ease !important;
    z-index: 1002 !important;
    height: calc(100vh - 70px) !important;
    overflow-y: auto !important;
  }

  .nav-menu.active {
    left: 0 !important;
  }

  .nav-menu li {
    margin: 1.5rem 0;
  }

  /* Hero Section Mobile */
  .hero {
    min-height: auto;
    padding: 80px 10px 30px;
    background: linear-gradient(135deg, #4b0000 0%, #660000 100%);
  }

  .hero-content {
    display: flex !important;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    max-width: 100%;
    padding: 0;
    grid-template-columns: none !important;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    order: 1;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    order: 2;
  }

  .hero-image {
    order: 3;
    margin-bottom: 1.5rem;
  }

  .hero-image img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

  .hero-buttons {
    order: 4;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
  }

  /* About Mobile */
  .about {
    padding: 40px 0;
    background: #fff;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 10px;
  }

  .about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .about-image img {
    height: 180px;
    width: 180px;
    max-width: 90vw;
    max-height: 180px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border: 4px solid #d4af37;
    display: block;
    margin: 0 auto;
    background: #fff;
  }

  /* Services Mobile */
  .services {
    padding: 40px 0;
    background: #f8f9fa;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .services-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0 10px;
  }

  .service-btn-large {
    width: 100%;
    max-width: 320px;
    font-size: 1rem;
    padding: 14px 20px;
    border-radius: 15px;
    margin: 0 auto;
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.1);
  }

  /* Gallery Mobile */
  .gallery {
    padding: 40px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 10px;
  }

  .gallery-item {
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  }

  .gallery-item img {
    height: 220px;
    border-radius: 12px;
  }

  .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    padding: 1rem;
    font-size: 0.95rem;
  }

  .gallery-category-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding: 0 10px;
  }

  @media (max-width: 768px) {
    /* Contact Mobile Design */
    .contact {
      padding: 40px 0;
      background: #4b0000;
    }

    .contact-content {
      display: flex;
      flex-direction: column-reverse;
      gap: 1.5rem;
      padding: 0 10px;
      align-items: stretch;
    }

    .contact-form,
    .contact-info {
      flex: none;
      max-width: 100%;
      margin: 0;
      padding: 1.5rem;
      border-radius: 15px;
      background: #5c0a0a;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      border: none;
    }

    .contact-form h3 {
      font-size: 1.3rem;
      margin-bottom: 0.8rem;
      text-align: center;
      color: #ffffff;
    }

    .contact-form p {
      font-size: 1rem;
      margin-bottom: 1.2rem;
      text-align: center;
      color: #f8d7da;
    }

    .form-group {
      margin-bottom: 1rem;
    }

    .form-group label {
      font-size: 1rem;
      color: #ffecec;
      font-weight: 600;
      margin-bottom: 0.5rem;
      display: block;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #aa4646;
      border-radius: 8px;
      font-size: 1rem;
      background: #fff;
      color: #2c2c2c;
      transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: #d4af37;
      outline: none;
    }

    .contact-table {
      padding: 1.5rem;
      border-radius: 15px;
      background: #3a0101;
    }

    .contact-table-title {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      text-align: center;
      color: #ffffff;
    }

    .contact-row {
      flex-direction: column;
      gap: 0.5rem;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-row:last-child {
      border-bottom: none;
    }

    .contact-label {
      font-size: 1rem;
      color: #f1cfcf;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .contact-text {
      font-size: 0.95rem;
      color: #f0e0e0;
      margin-bottom: 0.3rem;
    }

    .contact-actions,
    .social-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.5rem;
    }

    .contact-btn,
    .social-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 10px 15px;
      background: #a30000;
      color: #fff;
      border-radius: 10px;
      font-size: 0.9rem;
      text-decoration: none;
      flex: 1 1 45%;
      text-align: center;
      transition: background 0.3s ease;
    }

    .contact-btn:hover,
    .social-btn:hover {
      background: #7d0000;
    }

    .social-btn {
      background: #d4af37;
      color: #4b0000;
      font-weight: bold;
    }

    .social-btn:hover {
      background: #b8941f;
    }

    .email-link {
      color: #d4af37;
      font-weight: 500;
      text-decoration: underline;
    }

    .email-link:hover {
      color: #fff;
    }

    /* Privacy Consent */
    #privacyConsent {
      width: 22px;
      height: 22px;
      accent-color: #d4af37;
      vertical-align: middle;
    }

    label[for="privacyConsent"] {
      font-size: 1.13em;
      font-weight: 500;
      margin-left: 8px;
      color: #fff;
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 15px;
    }

    .nav-logo {
      order: 1;
      flex: 0 0 auto;
      margin-left: 0px; /* Pozicionoj titullin pak më në të djathtë */
    }

    .logo-text {
      font-size: 1.2rem; /* Zvogëlo titullin */
    }

    .language-selector {
      order: 2;
      position: absolute;
      left: 72%; /* Pozicionoj më në të djathtë se qendra */
      transform: translateX(-50%);
      margin: 0;
    }

    .hamburger {
      order: 3;
      flex: 0 0 auto;
    }
  }
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .gallery-item {
    animation: fadeInUp 0.6s ease forwards;
  }

  /* Lightbox Styles */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
  }

  .lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .lightbox img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    /* Shto z-index më të ulët që butonat të jenë sipër */
    z-index: 1;
    position: relative;
  }

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
  }

  .lightbox-close:hover,
  .lightbox-close:focus {
    color: #d4af37;
    text-decoration: none;
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.8);
    color: white;
    border: none;
    font-size: 24px;
    font-weight: bold;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10002; /* Shto z-index më të lartë që të jenë klikueshëm */
    /* Shto touch-action për mobile */
    touch-action: manipulation;
  }

  .lightbox-nav:active {
    background: rgba(212, 175, 55, 1);
  }

  .lightbox-nav:hover {
    background: rgba(212, 175, 55, 1);
    transform: translateY(-50%) scale(1.1);
  }

  .lightbox-prev {
    left: 30px;
  }

  .lightbox-next {
    right: 30px;
  }

  .lightbox-info {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 25px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
  }

  .lightbox-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: #d4af37;
  }

  .lightbox-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .lightbox-content {
      padding: 10px;
    }

    .lightbox img {
      max-height: 70vh;
    }

    .lightbox-close {
      top: 10px;
      right: 20px;
      font-size: 30px;
    }

    .lightbox-nav {
      font-size: 20px;
      padding: 12px 16px;
      /* Shto background më të dukshëm për mobile */
      background: rgba(212, 175, 55, 0.95);
      z-index: 10002;
      /* Shto border më të trashë për prekje më të lehtë */
      border: 2px solid #fff;
    }

    .lightbox-prev {
      left: 10px;
    }

    .lightbox-next {
      right: 10px;
    }

    .lightbox-info {
      bottom: 10px;
      padding: 10px 15px;
    }

    .lightbox-info h3 {
      font-size: 1rem;
    }

    .lightbox-info p {
      font-size: 0.8rem;
    }
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #2c0000 0%, #4b0000 50%, #660000 100%);
  color: #ffffff;
  padding: 80px 0 30px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.footer-section h3 {
  color: #d4af37;
  font-size: 1.6rem;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, transparent);
  border-radius: 2px;
}

.footer-section p {
  color: #e8e8e8;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.footer-section ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 14px;
  top: 2px;
}

.footer-section ul li a {
  color: #e8e8e8;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
}

.footer-section ul li a:hover {
  color: #d4af37;
  padding-left: 5px;
}

.footer-link {
  color: #e8e8e8;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  border-bottom: 1px solid transparent;
}

.footer-link:hover {
  color: #d4af37;
  border-bottom-color: #d4af37;
}

.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.social-icon:hover {
  background: #d4af37;
  color: #2c0000;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  border-color: #d4af37;
}

.social-icon:hover::before {
  left: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 30px;
  text-align: center;
  position: relative;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: #d4af37;
}

.footer-bottom p {
  color: #b8b8b8;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-section h3 {
    font-size: 1.4rem;
  }

  .footer-section ul li {
    padding-left: 0;
  }

  .footer-section ul li::before {
    display: none;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom p {
    font-size: 0.9rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section h3 {
    font-size: 1.3rem;
  }
}

/* Gallery clickable fix for desktop */
@media (min-width: 769px) {
  .gallery-item {
    cursor: pointer;
    position: relative;
    z-index: 1;
  }
  .gallery-item img,
  .gallery-item .gallery-overlay,
  .gallery-item .gallery-click-hint {
    pointer-events: none;
  }
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
}

/* Large Gallery Items for Desktop */
@media (min-width: 1024px) {
  .gallery-grid-large {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .gallery-item-large {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
  }

  .gallery-item-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .gallery-item-large:hover img {
    transform: scale(1.05);
  }

  .gallery-item-large .gallery-overlay {
    padding: 25px;
  }

  .gallery-item-large .gallery-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .gallery-item-large .gallery-overlay p {
    font-size: 1rem;
  }
}

/* Extra Large Desktop Screens */
@media (min-width: 1440px) {
  .gallery-grid-large {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .gallery-item-large {
    height: 500px;
  }

  .gallery-item-large .gallery-overlay {
    padding: 30px;
  }

  .gallery-item-large .gallery-overlay h3 {
    font-size: 1.6rem;
  }

  .gallery-item-large .gallery-overlay p {
    font-size: 1.1rem;
  }
}

/* Ultra Wide Screens */
@media (min-width: 1920px) {
  .gallery-grid-large {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }

  .gallery-item-large {
    height: 600px;
  }
}

/* Lightbox improvements for larger images */
@media (min-width: 1024px) {
  .lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
  }

  #lightbox-image {
    max-width: 80vw;
    max-height: 80vh;
  }
}

/* Disable click functionality on desktop */
@media (min-width: 1024px) {
  .gallery-item-desktop-static {
    pointer-events: none;
    cursor: default;
  }

  .gallery-item-desktop-static img {
    cursor: default;
  }

  .gallery-item-desktop-static .gallery-overlay {
    pointer-events: none;
  }
}

/* Enable click functionality on mobile and tablet */
@media (max-width: 1023px) {
  .gallery-item-desktop-static {
    pointer-events: auto;
    cursor: pointer;
  }

  .gallery-item-desktop-static img {
    cursor: pointer;
  }

  .gallery-item-desktop-static .gallery-overlay {
    pointer-events: auto;
  }
}

/* Gallery overlay always visible on desktop */
@media (min-width: 1024px) {
  .gallery-item .gallery-overlay {
    opacity: 1 !important;
    transform: none !important;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    pointer-events: auto;
    transition: none !important;
    display: block !important;
    z-index: 2;
  }
  .gallery-item:hover .gallery-overlay {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Remove transform from overlay for desktop */
@media (min-width: 1024px) {
  .gallery-overlay {
    transform: none !important;
  }
}
@media (min-width: 1440px) {
  .gallery-grid-large {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .gallery-item-large {
    height: 500px;
  }

  .gallery-item-large .gallery-overlay {
    padding: 30px;
  }

  .gallery-item-large .gallery-overlay h3 {
    font-size: 1.6rem;
  }

  .gallery-item-large .gallery-overlay p {
    font-size: 1.1rem;
  }
}

/* Ultra Wide Screens */
@media (min-width: 1920px) {
  .gallery-grid-large {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }

  .gallery-item-large {
    height: 600px;
  }
}

/* Lightbox improvements for larger images */
@media (min-width: 1024px) {
  .lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
  }

  #lightbox-image {
    max-width: 80vw;
    max-height: 80vh;
  }
}

/* Disable click functionality on desktop */
@media (min-width: 1024px) {
  .gallery-item-desktop-static {
    pointer-events: none;
    cursor: default;
  }

  .gallery-item-desktop-static img {
    cursor: default;
  }

  .gallery-item-desktop-static .gallery-overlay {
    pointer-events: none;
  }
}

/* Enable click functionality on mobile and tablet */
@media (max-width: 1023px) {
  .gallery-item-desktop-static {
    pointer-events: auto;
    cursor: pointer;
  }

  .gallery-item-desktop-static img {
    cursor: pointer;
  }

  .gallery-item-desktop-static .gallery-overlay {
    pointer-events: auto;
  }
}
