
.references-section[data-v-2aaa2970] {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.container[data-v-2aaa2970] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Header */
.section-header[data-v-2aaa2970] {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title[data-v-2aaa2970] {
  font-size: 2.8rem;
  font-weight: 800;
  color: #2c3e50;
  margin: 0 0 1rem 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.section-subtitle[data-v-2aaa2970] {
  font-size: 1.1rem;
  color: #7f8c8d;
  font-weight: 400;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

/* References Slider */
.references-slider[data-v-2aaa2970] {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slider-wrapper[data-v-2aaa2970] {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.slider-track[data-v-2aaa2970] {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}
.reference-slide[data-v-2aaa2970] {
  flex: 0 0 200px;
  margin-right: 0;
  position: relative;
}

/* Reference Card - Sabit Yapı */
.reference-card[data-v-2aaa2970] {
  width: 180px;
  height: 280px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 20px;
  margin: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.reference-card[data-v-2aaa2970]:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #4CAF50;
}

/* Center Card Highlight */
.reference-slide:nth-child(3) .reference-card[data-v-2aaa2970] {
  border: 2px solid #FFD700;
  background: linear-gradient(145deg, #ffffff 0%, #fffef8 100%);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}
.reference-slide:nth-child(3) .reference-card[data-v-2aaa2970]:hover {
  transform: scale(1.05) translateY(-5px);
  border-color: #FFA500;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Logo Container */
.logo-container[data-v-2aaa2970] {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  background: #f9f9f9;
  border-radius: 6px;
  padding: 10px;
}
.reference-logo[data-v-2aaa2970] {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
.reference-card:hover .reference-logo[data-v-2aaa2970] {
  transform: scale(1.05);
}

/* Company Title */
.company-title[data-v-2aaa2970] {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
  line-height: 1.3;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Company Content */
.company-content[data-v-2aaa2970] {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Card Overlay */
.card-overlay[data-v-2aaa2970] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 165, 0, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}
.reference-card:hover .card-overlay[data-v-2aaa2970] {
  opacity: 1;
  visibility: visible;
}
.overlay-content[data-v-2aaa2970] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}
.overlay-content i[data-v-2aaa2970] {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

/* Slider Navigation Dots */
.slider-dots[data-v-2aaa2970] {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}
.dot[data-v-2aaa2970] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active[data-v-2aaa2970] {
  background: #4CAF50;
  transform: scale(1.2);
}
.dot[data-v-2aaa2970]:hover {
  background: #4CAF50;
  transform: scale(1.1);
}

/* Loading & Error States */
.loading-state[data-v-2aaa2970],
.error-state[data-v-2aaa2970] {
  text-align: center;
  padding: 4rem 2rem;
  color: #666;
}
.spinner[data-v-2aaa2970] {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #4CAF50;
  border-radius: 50%;
  animation: spin-2aaa2970 1s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin-2aaa2970 {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
.error-state i[data-v-2aaa2970] {
  font-size: 2.5rem;
  color: #f44336;
  margin-bottom: 1rem;
}
.retry-btn[data-v-2aaa2970] {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
}
.retry-btn[data-v-2aaa2970]:hover {
  background: #45a049;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
.references-section[data-v-2aaa2970] {
    padding: 40px 0;
}
.container[data-v-2aaa2970] {
    padding: 0 1rem;
}
.section-title[data-v-2aaa2970] {
    font-size: 2rem;
}
.reference-slide[data-v-2aaa2970] {
    flex: 0 0 180px;
}
.reference-card[data-v-2aaa2970] {
    width: 160px;
    height: 260px;
    padding: 15px;
    margin: 0 5px;
}
.company-title[data-v-2aaa2970] {
    font-size: 1rem;
    min-height: 40px;
}
.company-content[data-v-2aaa2970] {
    font-size: 0.8rem;
}
.overlay-content[data-v-2aaa2970] {
    font-size: 0.8rem;
}
.overlay-content i[data-v-2aaa2970] {
    font-size: 1.3rem;
}
}
@media (max-width: 480px) {
.section-title[data-v-2aaa2970] {
    font-size: 1.8rem;
}
.reference-slide[data-v-2aaa2970] {
    flex: 0 0 160px;
}
.reference-card[data-v-2aaa2970] {
    width: 140px;
    height: 240px;
    padding: 12px;
}
.logo-container[data-v-2aaa2970] {
    height: 60px;
}
.reference-logo[data-v-2aaa2970] {
    max-height: 45px;
}
.company-title[data-v-2aaa2970] {
    font-size: 0.9rem;
    min-height: 36px;
}
.company-content[data-v-2aaa2970] {
    font-size: 0.75rem;
}
}

/* Slider pause on hover */
.references-slider:hover .slider-track[data-v-2aaa2970] {
  animation-play-state: paused;
}

/* Featured Reference Card */
.featured-reference[data-v-2aaa2970] {
  margin-top: 3rem;
  padding: 0 2rem;
}
.featured-card[data-v-2aaa2970] {
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.featured-card[data-v-2aaa2970]:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.featured-logo-section[data-v-2aaa2970] {
  flex: 0 0 350px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}
.featured-logo[data-v-2aaa2970] {
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.featured-logo-img[data-v-2aaa2970] {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
.featured-card:hover .featured-logo-img[data-v-2aaa2970] {
  transform: scale(1.05);
}
.featured-content-section[data-v-2aaa2970] {
  flex: 1;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  position: relative;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  padding-left: 4rem;
}
.featured-content[data-v-2aaa2970] {
  padding: 2rem 2rem 2rem 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.featured-title[data-v-2aaa2970] {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.featured-description[data-v-2aaa2970] {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.featured-btn[data-v-2aaa2970] {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  backdrop-filter: blur(10px);
}
.featured-btn[data-v-2aaa2970]:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

/* Featured Card Responsive */
@media (max-width: 768px) {
.featured-reference[data-v-2aaa2970] {
    margin-top: 2rem;
    padding: 0 1rem;
}
.featured-card[data-v-2aaa2970] {
    flex-direction: column;
    max-width: 100%;
}
.featured-logo-section[data-v-2aaa2970] {
    flex: none;
    width: 100%;
    padding: 1.5rem;
}
.featured-logo[data-v-2aaa2970] {
    width: 150px;
    height: 80px;
}
.featured-logo-img[data-v-2aaa2970] {
    max-height: 60px;
}
.featured-content-section[data-v-2aaa2970] {
    clip-path: none;
    padding-left: 0;
}
.featured-content[data-v-2aaa2970] {
    padding: 1.5rem;
    text-align: center;
}
.featured-title[data-v-2aaa2970] {
    font-size: 1.4rem;
}
.featured-description[data-v-2aaa2970] {
    font-size: 0.9rem;
}
.featured-btn[data-v-2aaa2970] {
    align-self: center;
}
}
@media (max-width: 480px) {
.featured-logo-section[data-v-2aaa2970] {
    padding: 1rem;
}
.featured-logo[data-v-2aaa2970] {
    width: 120px;
    height: 70px;
}
.featured-content[data-v-2aaa2970] {
    padding: 1rem;
}
.featured-title[data-v-2aaa2970] {
    font-size: 1.2rem;
}
.featured-description[data-v-2aaa2970] {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
.featured-btn[data-v-2aaa2970] {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
}
}


.machinery-section[data-v-38c4272d] {
  padding: 60px 0;
  background: linear-gradient(135deg, #f1f3f4 0%, #e8eaf6 100%);
  position: relative;
  overflow: hidden;
}
.machinery-section[data-v-38c4272d]::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 1000 100\" fill=\"%23ffffff\" opacity=\"0.05\"><polygon points=\"0,0 1000,30 1000,100 0,70\"/></svg>");
  pointer-events: none;
}
.container[data-v-38c4272d] {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Section Header */
.section-header[data-v-38c4272d] {
  margin-bottom: 50px;
}
.section-title[data-v-38c4272d] {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 15px;
  position: relative;
}
.section-title[data-v-38c4272d]::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  border-radius: 2px;
}
.section-subtitle[data-v-38c4272d] {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Machinery Grid */
.machinery-grid[data-v-38c4272d] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
.machinery-card[data-v-38c4272d] {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}
.machinery-card[data-v-38c4272d]:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}



/* Machine Image */
.machine-image-container[data-v-38c4272d] {
  position: relative;
  height: 220px;
  overflow: hidden;
}

/* Image Slider */
.image-slider[data-v-38c4272d] {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide[data-v-38c4272d] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.slide.active[data-v-38c4272d] {
  opacity: 1;
}
.machine-image[data-v-38c4272d] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.machinery-card:hover .machine-image[data-v-38c4272d] {
  transform: scale(1.1);
}

/* Slider Controls */
.slider-controls[data-v-38c4272d] {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.machinery-card:hover .slider-controls[data-v-38c4272d] {
  opacity: 1;
  pointer-events: auto;
}
.slider-btn[data-v-38c4272d] {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.slider-btn[data-v-38c4272d]:hover {
  background: white;
  transform: scale(1.1);
}
.slider-btn[data-v-38c4272d]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.slider-btn i[data-v-38c4272d] {
  color: #1a365d;
  font-size: 12px;
}

/* Slider Indicators */
.slider-indicators[data-v-38c4272d] {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.indicator[data-v-38c4272d] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.indicator.active[data-v-38c4272d] {
  background: white;
  transform: scale(1.2);
}
.indicator[data-v-38c4272d]:hover {
  background: rgba(255, 255, 255, 0.8);
}
.image-overlay[data-v-38c4272d] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 54, 93, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.machinery-card:hover .image-overlay[data-v-38c4272d] {
  opacity: 1;
}
.overlay-content[data-v-38c4272d] {
  text-align: center;
  color: white;
}
.overlay-content i[data-v-38c4272d] {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}
.overlay-content span[data-v-38c4272d] {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Machine Info */
.machine-info[data-v-38c4272d] {
  padding: 25px;
}
.machine-brand[data-v-38c4272d] {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
}
.machine-model[data-v-38c4272d] {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 5px;
}
.machine-type[data-v-38c4272d] {
  color: #4a5568;
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-style: italic;
}

/* Specifications */
.machine-specs[data-v-38c4272d] {
  margin-bottom: 20px;
}
.spec-item[data-v-38c4272d] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}
.spec-item[data-v-38c4272d]:last-child {
  border-bottom: none;
}
.spec-label[data-v-38c4272d] {
  font-weight: 500;
  color: #4a5568;
  font-size: 0.9rem;
}
.spec-value[data-v-38c4272d] {
  font-weight: 600;
  color: #1a365d;
  font-size: 0.9rem;
}

/* Features */
.machine-features[data-v-38c4272d] {
  margin-bottom: 20px;
}
.machine-features h4[data-v-38c4272d] {
  font-size: 1rem;
  color: #1a365d;
  margin-bottom: 10px;
  font-weight: 600;
}
.machine-features ul[data-v-38c4272d] {
  list-style: none;
  padding: 0;
  margin: 0;
}
.machine-features li[data-v-38c4272d] {
  padding: 4px 0;
  font-size: 0.85rem;
  color: #4a5568;
  position: relative;
  padding-left: 15px;
}
.machine-features li[data-v-38c4272d]::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
}





/* Responsive Design */
@media (max-width: 1200px) {
.machinery-grid[data-v-38c4272d] {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
}
@media (max-width: 768px) {
.machinery-section[data-v-38c4272d] {
    padding: 40px 0;
}
.section-title[data-v-38c4272d] {
    font-size: 2rem;
}
.machinery-grid[data-v-38c4272d] {
    grid-template-columns: 1fr;
    gap: 20px;
}
.machine-info[data-v-38c4272d] {
    padding: 20px;
}
}
@media (max-width: 480px) {
.machine-image-container[data-v-38c4272d] {
    height: 180px;
}
}


/* Hero Slider Section */
.hero-slider[data-v-6e8836ee] {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
}
.slider-container[data-v-6e8836ee] {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual Slide */
.slide[data-v-6e8836ee] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.05);
}
.slide.active[data-v-6e8836ee] {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* Slide Overlay */
.slide-overlay[data-v-6e8836ee] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

/* Slide Content */
.slide-content[data-v-6e8836ee] {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}
.slide-text[data-v-6e8836ee] {
  max-width: 1200px;
  text-align: center;
  color: white;
  animation: slideInUp-6e8836ee 1s ease-out 0.5s both;
}
.slide-title[data-v-6e8836ee] {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  background: linear-gradient(135deg, #F7C52D 0%, #FFD700 50%, #F7C52D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.slide-description[data-v-6e8836ee] {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.95);
}

/* Slide Actions */
.slide-actions[data-v-6e8836ee] {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.cta-btn[data-v-6e8836ee] {
  padding: 1rem 2rem;
  border: 2px solid #F7C52D;
  background: linear-gradient(135deg, rgba(247, 197, 45, 0.1) 0%, rgba(247, 197, 45, 0.2) 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.cta-btn[data-v-6e8836ee]::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;
}
.cta-btn[data-v-6e8836ee]:hover::before {
  left: 100%;
}
.cta-btn[data-v-6e8836ee]:hover {
  background: linear-gradient(135deg, #F7C52D 0%, #FFD700 100%);
  color: #2C3E50;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(247, 197, 45, 0.4);
  border-color: #FFD700;
}
.cta-btn[data-v-6e8836ee]:active {
  transform: translateY(0);
}

/* Slider Arrows */
.slider-arrow[data-v-6e8836ee] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.3);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.slider-arrow[data-v-6e8836ee]:hover {
  background: rgba(247, 197, 45, 0.8);
  border-color: #F7C52D;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 20px rgba(247, 197, 45, 0.4);
}
.slider-arrow.prev[data-v-6e8836ee] {
  left: 2rem;
}
.slider-arrow.next[data-v-6e8836ee] {
  right: 2rem;
}
.slider-arrow span[data-v-6e8836ee] {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}



/* Animations */
@keyframes slideInUp-6e8836ee {
from {
    opacity: 0;
    transform: translateY(50px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes fadeInScale-6e8836ee {
from {
    opacity: 0;
    transform: scale(0.9);
}
to {
    opacity: 1;
    transform: scale(1);
}
}

/* Responsive Design */
@media (max-width: 1200px) {
.slide-title[data-v-6e8836ee] {
    font-size: 3rem;
}
.slide-description[data-v-6e8836ee] {
    font-size: 1.1rem;
}
.slide-actions[data-v-6e8836ee] {
    gap: 0.8rem;
}
.cta-btn[data-v-6e8836ee] {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
}
}
@media (max-width: 768px) {
.hero-slider[data-v-6e8836ee] {
    min-height: 500px;
}
.slide-content[data-v-6e8836ee] {
    padding: 0 1rem;
}
.slide-title[data-v-6e8836ee] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.slide-description[data-v-6e8836ee] {
    font-size: 1rem;
    margin-bottom: 2rem;
}
.slide-actions[data-v-6e8836ee] {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}
.cta-btn[data-v-6e8836ee] {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    min-width: 200px;
}
.slider-arrow[data-v-6e8836ee] {
    width: 50px;
    height: 50px;
}
.slider-arrow.prev[data-v-6e8836ee] {
    left: 1rem;
}
.slider-arrow.next[data-v-6e8836ee] {
    right: 1rem;
}
.slider-arrow span[data-v-6e8836ee] {
    font-size: 1.5rem;
}
}
@media (max-width: 480px) {
.slide-title[data-v-6e8836ee] {
    font-size: 2rem;
}
.slide-description[data-v-6e8836ee] {
    font-size: 0.95rem;
}
.cta-btn[data-v-6e8836ee] {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    min-width: 180px;
}
.hero-slider[data-v-6e8836ee] {
    min-height: 450px;
}
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
.slide-overlay[data-v-6e8836ee] {
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.5) 30%,
      rgba(0, 0, 0, 0.3) 60%,
      rgba(0, 0, 0, 0.6) 100%
    );
}
}

/* High performance transitions */
.slide[data-v-6e8836ee],
.cta-btn[data-v-6e8836ee],
.slider-arrow[data-v-6e8836ee] {
  will-change: transform, opacity;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
.slide[data-v-6e8836ee],
  .cta-btn[data-v-6e8836ee],
  .slider-arrow[data-v-6e8836ee] {
    transition-duration: 0.1s;
}
@keyframes slideInUp-6e8836ee {
from, to {
      transform: translateY(0);
}
}
}

:root {
  /* Modern Golden Theme - Primary Colors */
  --primary-gold: #F7C52D;
  --primary-gold-light: #F9D55A;
  --primary-gold-dark: #E6B800;
  --primary-gold-darker: #CC9900;
  
  /* Secondary Colors */
  --secondary-dark: #2C3E50;
  --secondary-light: #34495E;
  --accent-green: #27AE60;
  --accent-orange: #F39C12;
  
  /* Background Colors */
  --bg-primary: #FFFFFF;
  --bg-secondary: #FEFCF7;
  --bg-accent: #FFF9E6;
  --bg-dark: #1A1A1A;
  
  /* Text Colors */
  --text-primary: #2C3E50;
  --text-secondary: #5D6D7E;
  --text-light: #FFFFFF;
  --text-muted: #85929E;
  
  /* Border & Shadow */
  --border-light: #F7C52D33;
  --border-medium: #F7C52D66;
  --border-dark: #F7C52D;
  --border-color: #E5E5E5;
  --shadow: rgba(44, 62, 80, 0.1);
  --shadow-light: rgba(247, 197, 45, 0.1);
  --shadow-medium: rgba(247, 197, 45, 0.2);
  --shadow-dark: rgba(44, 62, 80, 0.15);
  
  /* Card Styles */
  --card-bg: #FFFFFF;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-light) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(247, 197, 45, 0.9) 0%, rgba(44, 62, 80, 0.8) 100%);
}

:root.dark-mode {
  --bg-primary: #1A1A1A;
  --bg-secondary: #2C2C2C;
  --bg-accent: #3A3A3A;
  --text-primary: #FFFFFF;
  --text-secondary: #E5E5E5;
  --text-muted: #CCCCCC;
  --border-color: #444444;
  --shadow: rgba(0, 0, 0, 0.3);
  --shadow-light: rgba(247, 197, 45, 0.05);
  --shadow-medium: rgba(247, 197, 45, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.3);
  --card-bg: #2C2C2C;
}

body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Global Header Fix - ALWAYS VISIBLE */
* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  padding-top: 96px !important;
  margin: 0 !important;
}

/* Hero slider'ı header'a yapıştır */
.home-container {
  margin-top: -96px !important;
  padding-top: 96px !important;
}

@media (max-width: 768px) {
  body {
    padding-top: 84px !important;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 78px !important;
  }
}

/* Force header to always stay visible */
.yeo-header,
.yeo-header.header-scrolled,
header.yeo-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(25px) !important;
  transform: none !important;
  transition: all 0.3s ease !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
  pointer-events: auto !important;
  box-shadow: 0 4px 30px var(--shadow-medium) !important;
  border-bottom: 2px solid var(--primary-gold) !important;
}

.scroll-to-top {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 10000 !important;
  display: flex !important;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffd600 0%, #ff9800 50%, #388e3c 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

}

.loading-content {
  text-align: center;
  color: white;
}

.solar-loader {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
}

.sun {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s ease-in-out infinite;
}

.rays {
  position: absolute;
  width: 100%;
  height: 100%;
}

.ray {
  position: absolute;
  width: 4px;
  height: 20px;
  background: #fff;
  border-radius: 2px;
  top: 0;
  left: 50%;
  transform-origin: 2px 40px;
  animation: rotate 2s linear infinite;
}

.ray:nth-child(1) { transform: rotate(0deg); animation-delay: 0s; }
.ray:nth-child(2) { transform: rotate(45deg); animation-delay: 0.25s; }
.ray:nth-child(3) { transform: rotate(90deg); animation-delay: 0.5s; }
.ray:nth-child(4) { transform: rotate(135deg); animation-delay: 0.75s; }
.ray:nth-child(5) { transform: rotate(180deg); animation-delay: 1s; }
.ray:nth-child(6) { transform: rotate(225deg); animation-delay: 1.25s; }
.ray:nth-child(7) { transform: rotate(270deg); animation-delay: 1.5s; }
.ray:nth-child(8) { transform: rotate(315deg); animation-delay: 1.75s; }

@keyframes rotate {
  0% { opacity: 1; transform: scale(1) rotate(var(--rotation)); }
  50% { opacity: 0.7; transform: scale(1.2) rotate(var(--rotation)); }
  100% { opacity: 1; transform: scale(1) rotate(var(--rotation)); }
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.loading-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.loading-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Loading Screen - Full Background */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fullscreen-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(247, 197, 45, 0.7) 0%, 
    rgba(44, 62, 80, 0.6) 50%, 
    rgba(0, 0, 0, 0.8) 100%);
}

.loading-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 500px;
  padding: 0 20px;
}

.brand-section {
  margin-bottom: 50px;
}

.brand-title {
  font-size: 4rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  letter-spacing: 2px;
}

.brand-subtitle {
  font-size: 1.5rem;
  margin: 0;
  opacity: 0.9;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: 300;
}

.progress-container {
  width: 100%;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 10px;
  transition: width 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(247, 197, 45, 0.4);
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent);
  animation: progressShine 2s ease-in-out infinite;
}

.loading-text {
  font-size: 1.2rem;
  margin: 0;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  font-weight: 500;
}

@keyframes progressShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.rays {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 3s linear infinite;
}

.ray {
  position: absolute;
  width: 4px;
  height: 20px;
  background: #fff;
  border-radius: 2px;
  top: 10px;
  left: 50%;
  transform-origin: 2px 50px;
  opacity: 0.8;
}

.ray:nth-child(1) { transform: translate(-50%, 0) rotate(0deg); }
.ray:nth-child(2) { transform: translate(-50%, 0) rotate(45deg); }
.ray:nth-child(3) { transform: translate(-50%, 0) rotate(90deg); }
.ray:nth-child(4) { transform: translate(-50%, 0) rotate(135deg); }
.ray:nth-child(5) { transform: translate(-50%, 0) rotate(180deg); }
.ray:nth-child(6) { transform: translate(-50%, 0) rotate(225deg); }
.ray:nth-child(7) { transform: translate(-50%, 0) rotate(270deg); }
.ray:nth-child(8) { transform: translate(-50%, 0) rotate(315deg); }

.loading-content h2 {
  font-size: 2.5rem;
  margin: 0 0 10px 0;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.loading-content p {
  font-size: 1.2rem;
  margin: 0;
  opacity: 0.9;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.home-container {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  opacity: 1;
  transform: none;
}

.home-container.page-loaded {
  opacity: 1;
  transform: none;
}

/* Hero Slider Styles - Directly under header with no gap */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  margin-top: -96px !important;
  padding-top: 96px !important;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: slideInUp 1s ease-out 0.3s both;
}

.slide-description {
  font-size: 1.4rem;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  animation: slideInUp 1s ease-out 0.5s both;
}

.slide-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
  animation: slideInUp 1s ease-out 0.7s both;
}

.cta-btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn.primary {
  background: var(--gradient-primary);
  color: var(--text-primary);
  font-weight: 600;
  box-shadow: 0 4px 20px var(--shadow-medium);
  border: 2px solid transparent;
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow-medium);
  background: var(--primary-gold-light);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid var(--primary-gold);
}

.cta-btn.secondary:hover {
  background: var(--primary-gold);
  color: var(--text-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px var(--shadow-medium);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.nav-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: white;
  transform: scale(1.2);
}

.nav-dot:hover {
  background: rgba(255,255,255,0.7);
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.4);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

/* Slide Counter */
.slide-counter {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 10;
}

/* Slide Animations */
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.custom-header {
  background: var(--bg-primary);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px var(--shadow);
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.language-switcher {
  display: flex;
  gap: 5px;
}

.lang-btn {
  background: var(--bg-primary);
  border: 2px solid var(--border-medium);
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: var(--primary-gold);
  color: var(--text-primary);
  border-color: var(--primary-gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--shadow-light);
}

.lang-btn.active {
  background: var(--primary-gold);
  color: var(--text-primary);
  border-color: var(--primary-gold-dark);
  box-shadow: 0 4px 12px var(--shadow-medium);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--text-primary);
  border: 2px solid var(--primary-gold-dark);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-medium);
  z-index: 1000;
}

.back-to-top:hover {
  background: var(--primary-gold-light);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px var(--shadow-medium);
  border-color: var(--primary-gold);
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-color);
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-color-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: var(--bg-color-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-color);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.service-card p {
  color: var(--text-color-secondary);
  line-height: 1.6;
}

.service-features {
  margin-top: 15px;
}

.service-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 5px 0;
  color: var(--text-color-secondary);
  font-size: 0.9rem;
  position: relative;
  padding-left: 20px;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-gold-dark);
  font-weight: bold;
}

.service-price {
  margin-top: 15px;
  padding: 10px;
  background: var(--bg-accent);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-label {
  font-weight: 500;
  color: var(--text-color);
}

.price-value {
  font-weight: bold;
  color: var(--primary-gold-dark);
  font-size: 1.1rem;
}

/* About Section - Modern Corporate Design */
.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-header {
  text-align: center;
  margin-bottom: 80px;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
}

.about-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Logo specific styling for About section */
.about-logo {
  width: 100%;
  height: 300px;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 30px;
  transition: transform 0.3s ease;
}

.about-image:hover .about-logo {
  transform: scale(1.02);
}

.about-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 40px 30px;
}

.about-stats {
  display: flex;
  justify-content: space-around;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.about-text {
  padding-left: 20px;
}

.about-intro h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-gold-dark);
  line-height: 1.2;
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-color-secondary);
  margin-bottom: 40px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-gold);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 12px;
  color: var(--text-primary);
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow-light);
}

.feature-icon-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.feature-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-color);
}

.feature-content p {
  color: var(--text-color-secondary);
  line-height: 1.5;
  font-size: 0.95rem;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 60px;
}

.mission-card,
.vision-card,
.values-card {
  position: relative;
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  cursor: pointer;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}

.mission-card:hover .card-background,
.vision-card:hover .card-background,
.values-card:hover .card-background {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(0, 0, 0, 0.6) 50%, 
    rgba(0, 0, 0, 0.8) 100%);
  transition: opacity 0.3s ease;
}

.card-content {
  position: relative;
  z-index: 2;
  padding: 30px 25px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.card-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.card-icon-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-card h4,
.vision-card h4,
.values-card h4 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff !important;
  text-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.9),
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 1px 2px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.mission-card p,
.vision-card p,
.values-card p {
  color: #ffffff !important;
  line-height: 1.8;
  font-size: 1.1rem;
  text-shadow: 
    0 3px 6px rgba(0, 0, 0, 0.9),
    0 1px 3px rgba(0, 0, 0, 0.8),
    0 0 1px rgba(0, 0, 0, 1);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
  .about-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-text {
    padding-left: 0;
  }
  
  .about-intro h3 {
    font-size: 1.8rem;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image img {
    height: 300px;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* News Section */
.news-section {
  padding: 80px 0;
  background: var(--bg-color-secondary);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.news-card {
  background: var(--bg-color);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s ease;
}

.news-image[data-src] {
  opacity: 0.5;
  filter: blur(2px);
}

.project-image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s ease;
}

.project-image[data-src] {
  opacity: 0.5;
  filter: blur(2px);
}

.news-content {
  padding: 25px;
}

.news-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.news-date {
  font-size: 0.9rem;
  color: var(--text-color-secondary);
  margin-bottom: 15px;
}

.news-content p {
  color: var(--text-color-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.news-btn {
  background: var(--primary-gold);
  color: var(--text-primary);
  border: 2px solid var(--primary-gold);
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.news-btn:hover {
  background: var(--secondary-dark);
  color: var(--text-light);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow-medium);
}

.dark-mode-toggle {
  background: none;
  border: 2px solid var(--primary-gold);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: var(--text-primary);
}

.dark-mode-toggle:hover {
  background: var(--primary-gold);
  color: var(--text-primary);
  transform: scale(1.1);
  box-shadow: 0 4px 15px var(--shadow-medium);
}

.logo img {
  height: 48px;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

/* Navigation Menu */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #388e3c 0%, #4caf50 100%);
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 9999;
  padding-top: 80px;
  box-shadow: -5px 0 20px rgba(0,0,0,0.2);
}

.nav-menu.nav-open {
  right: 0;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-menu a {
  display: block;
  padding: 20px 30px;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-menu a:hover {
  background: rgba(255,255,255,0.1);
  padding-left: 40px;
  color: #ffd600;
}

.menu-bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.3s ease;
  position: relative;
  z-index: 10000;
}

.menu-bar:hover {
  background: var(--bg-accent);
}

.menu-bar span {
  display: block;
  width: 32px;
  height: 4px;
  background: #222;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

.menu-bar.menu-active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  background: var(--primary-gold-dark);
}

.menu-bar.menu-active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.menu-bar.menu-active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
  background: var(--primary-gold-dark);
}

.nav-menu {
  position: fixed;
  top: 80px;
  right: -100%;
  width: 300px;
  height: calc(100vh - 80px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-left: 3px solid var(--primary-gold);
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1000;
  box-shadow: -5px 0 30px var(--shadow-medium);
}

.nav-menu.nav-open {
  right: 0;
}

.nav-menu ul {
  list-style: none;
  padding: 40px 0;
  margin: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  display: block;
  padding: 20px 32px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  background: var(--gradient-primary);
  color: var(--text-primary);
  padding-left: 40px;
  font-weight: 600;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-gold-dark);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.nav-menu a:hover::before {
  transform: scaleY(1);
}
.header {
  background: var(--gradient-primary);
  padding: 40px 20px;
  text-align: center;
  color: var(--text-primary);
  box-shadow: 0 4px 20px var(--shadow-medium);
}
.header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.header p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  opacity: 0.9;
}
.cta-btn {
  background: var(--gradient-secondary);
  color: var(--text-light);
  border: none;
  padding: 12px 32px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-dark);
}
.info-section {
  background: var(--bg-primary);
  padding: 40px 0 20px 0;
  text-align: center;
  transition: background-color 0.3s ease;
}
.info-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 36px;
  color: var(--text-primary);
  font-family: 'Arial', sans-serif;
  transition: color 0.3s ease;
}
.info-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.info-card {
  width: 380px;
  min-height: 220px;
  border-radius: 4px;
  padding: 32px 28px 28px 28px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 16px;
  position: relative;
}
.yellow-card {
  background: var(--gradient-primary);
  color: var(--text-primary);
  box-shadow: 0 8px 25px var(--shadow-medium);
}
.black-card {
  background: var(--gradient-secondary);
  color: var(--text-light);
  box-shadow: 0 8px 25px var(--shadow-dark);
}
.image-card {
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}
.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34,34,34,0.45);
  border-radius: 4px;
}
.image-card h3,
.image-card p,
.image-card .info-btn {
  position: relative;
  z-index: 1;
}
.info-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 18px;
}
.info-card p {
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.info-btn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 1px;
}
.yellow-card .info-btn {
  border: 2px solid var(--text-primary);
  color: var(--text-primary);
  background: transparent;
}
.yellow-card .info-btn:hover {
  background: var(--text-primary);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow-medium);
}
.black-card .info-btn {
  border: 2px solid var(--text-light);
  color: var(--text-light);
  background: transparent;
}
.black-card .info-btn:hover {
  background: var(--text-light);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}
.image-card .info-btn:hover {
  background: #fff;
  color: #222;
}
.features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.feature-card {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 2px 8px var(--shadow);
  padding: 24px;
  width: 260px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.placeholder-img {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 8px;
  margin: 0 auto 16px auto;
  box-shadow: 0 4px 15px var(--shadow-light);
}
.feature-card h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--primary-gold-dark);
  transition: color 0.3s ease;
}
.feature-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}
/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
  margin-top: 40px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-info > p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd600, #ff9800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1.3rem;
  color: var(--primary-gold-dark);
  margin: 0 0 8px 0;
  font-weight: 600;
}

.contact-text p {
  font-size: 1rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 1px solid #eee;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffd600;
  box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Phone Input Styles */
.phone-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.phone-prefix {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2;
  pointer-events: none;
}

.phone-input {
  padding-left: 60px !important;
}

.phone-input-wrapper .floating-label {
  left: 60px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #388e3c, #2e7031);
  color: #fff;
  border: none;
  padding: 18px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #2e7031, #1b5e20);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(56, 142, 60, 0.3);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Statistics Section */
.statistics-section {
  background: var(--gradient-secondary);
  padding: 60px 20px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.statistics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--primary-gold) 0%, transparent 100%);
  opacity: 0.1;
  z-index: 0;
}

.stats-container {
  position: relative;
  z-index: 1;
}

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

.stats-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 50px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
}

.stat-item {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
  min-width: 200px;
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  color: var(--primary-gold);
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-gold);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.9;
}

.stat-item.animate-stat {
  animation: statSlideUp 0.8s ease-out;
}

@keyframes statSlideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-info p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--text-primary);
  box-shadow: 0 4px 15px var(--shadow-medium);
}

.contact-text h4 {
  margin: 0 0 8px 0;
  font-size: 1.3rem;
  color: var(--primary-gold-dark);
  font-weight: 600;
}

.contact-text p {
  margin: 0;
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #388e3c;
  box-shadow: 0 0 0 3px rgba(56, 142, 60, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: var(--gradient-primary);
  color: var(--text-primary);
  border: 2px solid var(--primary-gold-dark);
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-medium);
  background: var(--primary-gold-light);
  border-color: var(--primary-gold);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-btn.loading {
  color: transparent;
}

.submit-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Contact */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-form {
    padding: 30px 25px;
  }
  
  .contact-info h2 {
    font-size: 2rem;
  }
}

/* Modern Footer Styles */
.modern-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  padding: 60px 0 0;
  margin-top: 80px;
}

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

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

.footer-grid-4col {
  grid-template-columns: 1.2fr 1.32fr 1.56fr 0.7fr;
  gap: 25px;
}

.footer-section {
  padding: 0 10px;
}

/* Company Contact Section - Left Side */
.company-contact-section {
  max-width: 450px;
}

.company-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  border: 2px solid var(--primary-gold-dark);
  border-radius: 10px;
  background: rgba(247, 197, 45, 0.05);
}

.footer-logo {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  background: #f5f5f5;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.company-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.company-description {
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

/* Simple Contact Information - No Boxes */
.simple-contact-item {
  margin-bottom: 8px;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(247, 197, 45, 0.3);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.simple-contact-item:hover {
  border-color: var(--primary-gold-dark);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

/* Bordered Sections for Footer */
.bordered-section {
  border: 1px solid rgba(247, 197, 45, 0.3);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.bordered-section:hover {
  border-color: var(--primary-gold-dark);
  background: rgba(255, 255, 255, 0.05);
}

/* Branches Section */
.branches-section .branch-item {
  margin-bottom: 20px;
}

.branches-section .branch-item:last-child {
  margin-bottom: 0;
}

.branches-section .branch-title {
  display: block;
  margin-bottom: 5px;
}

.branches-section .branch-address {
  display: block;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Social Media Grid */
.social-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
}

.social-media-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  background: #4a4a4a;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.social-media-link:hover {
  background: #5a5a5a;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(247, 197, 45, 0.3);
}

.social-media-link i {
  font-size: 1.1rem;
  margin-right: 2px;
  color: var(--primary-color);
}

/* Tüm sosyal medya butonları aynı gri renk */

.contact-name {
  color: var(--primary-gold-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-phone,
.contact-email {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.contact-phone:hover,
.contact-email:hover {
  color: var(--primary-gold-dark);
}

.branch-title {
  color: var(--primary-gold-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.branch-address {
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 400;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  height: 150px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(247, 197, 45, 0.3);
}

/* Section Titles */
.footer-section .section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 25px;
  position: relative;
}

.footer-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

/* Contact Info Section */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item i {
  width: 20px;
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-label {
  font-size: 0.85rem;
  color: #999999;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: var(--primary-color);
}

/* Quick Links Section */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 20px;
}

.footer-links a:hover::before {
  transform: translateX(3px);
}

/* Footer Contact Form Section */
.contact-form-section {
  max-width: 400px;
}

/* Success Message Styles */
.success-message {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  display: flex;
  Align-items: center;
  gap: 15px;
  color: white;
  animation: successSlideIn 0.6s ease-out, successPulse 2s ease-in-out;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.success-icon {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.9);
  animation: successIconBounce 0.8s ease-out 0.3s;
}

.success-text h5 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.success-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

@keyframes successSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes successPulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
  }
  50% {
    box-shadow: 0 8px 35px rgba(34, 197, 94, 0.5);
  }
}

@keyframes successIconBounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.form-description {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.footer-contact-form .form-group {
  margin-bottom: 15px;
}

.footer-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.footer-input::-moz-placeholder {
  color: #aaaaaa;
}

.footer-input::placeholder {
  color: #aaaaaa;
}

.footer-input:focus {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px rgba(247, 197, 45, 0.2);
}

.footer-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  cursor: pointer;
}

.footer-select option {
  background: #2a2a2a;
  color: #ffffff;
  padding: 8px;
}

.footer-select:focus {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px rgba(247, 197, 45, 0.2);
}

.footer-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
  resize: vertical;
  font-family: inherit;
  box-sizing: border-box;
}

.footer-textarea::-moz-placeholder {
  color: #aaaaaa;
}

.footer-textarea::placeholder {
  color: #aaaaaa;
}

.footer-textarea:focus {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px rgba(247, 197, 45, 0.2);
}

.phone-group .phone-wrapper {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.phone-group .phone-prefix {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 12px 10px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.phone-group .phone-input {
  border: none;
  background: transparent;
  flex: 1;
}

.phone-group .phone-input:focus {
  box-shadow: none;
}

.phone-group .phone-wrapper:focus-within {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px rgba(247, 197, 45, 0.2);
}

.footer-submit-btn {
  width: 100%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border: 2px solid var(--primary-gold-dark);
  padding: 12px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  margin-top: 10px;
}

.footer-submit-btn:hover:not(:disabled) {
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(247, 197, 45, 0.3);
}

.footer-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.footer-submit-btn i {
  margin-right: 8px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  margin-top: 40px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  margin: 0;
  color: #cccccc;
  font-size: 0.9rem;
}

.copyright strong {
  color: var(--primary-color);
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
  .footer-grid,
  .footer-grid-4col {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  
  .company-contact-section {
    max-width: none;
    grid-column: span 2;
  }
  
  .branches-section {
    grid-column: span 1;
  }
  
  .quick-links {
    grid-column: span 1;
  }
  
  .footer-section {
    padding: 0 5px;
  }
}

@media (max-width: 768px) {
  .modern-footer {
    padding: 40px 0 0;
    margin-top: 60px;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-grid,
  .footer-grid-4col {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-section {
    padding: 0;
    text-align: center;
  }
  
  .company-contact-section {
    grid-column: span 1;
    max-width: none;
    text-align: center;
  }
  
  .company-logo {
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .map-container iframe {
    height: 120px;
  }
  
  .branches-section,
  .quick-links {
    grid-column: span 1;
    max-width: none;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-bottom-links {
    gap: 15px;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: #aaaaaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 10px;
  }
  
  .footer-grid,
  .footer-grid-4col {
    gap: 20px;
  }
  
  .bordered-section {
    padding: 15px;
    border-radius: 6px;
  }
  
  .simple-contact-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 5px;
    padding: 6px 10px;
  }
  
  .company-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .section-title {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .map-container iframe {
    height: 100px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .modern-footer {
    padding: 40px 0 0;
    margin-top: 60px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .company-info {
    max-width: 100%;
    text-align: center;
  }
  
  .company-logo {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-bottom-links {
    gap: 20px;
  }
}
.projects-section {
  background: var(--bg-primary);
  padding: 40px 0 30px 0;
  text-align: center;
  margin: 0 60px; /* Sağ ve sol boşluk 60px */
  border-radius: 16px;
  transition: background-color 0.3s ease;
}
.projects-title {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 36px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px; /* Kartlar arası mesafe 50px */
  justify-items: stretch;
  padding: 0 32px; /* Sağ ve sol padding artırıldı */
}
.project-card {
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: 0 4px 16px var(--shadow);
  overflow: hidden;
  max-width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1), box-shadow 0.3s, background-color 0.3s ease;
  border: 1px solid var(--border-color);
}
.project-card.show-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.project-card:hover {
  box-shadow: 0 12px 40px var(--shadow-medium);
  transform: scale(1.08);
  z-index: 2;
}
.project-card-bordered {
  border: 2px solid var(--border-light);
}
.project-image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #eee;
}
.project-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.project-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--primary-gold-dark);
  font-weight: bold;
}
.project-card p {
  font-size: 0.98rem;
  color: #555;
  margin-bottom: 12px;
}
.project-btn {
  background: var(--primary-gold);
  color: var(--text-primary);
  border: none;
  padding: 8px 20px;
  font-size: 0.98rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  border: 2px solid var(--primary-gold);
}
.project-btn:hover {
  background: var(--secondary-dark);
  color: var(--text-light);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow-medium);
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.project-capacity,
.project-location {
  color: #666;
  display: flex;
  align-items: center;
  gap: 4px;
}

.project-capacity {
  color: var(--primary-gold-dark);
  font-weight: 500;
}

.project-location {
  color: #555;
}

.project-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.project-card:hover .project-hover-overlay {
  opacity: 1;
}

.project-details-btn {
  background: var(--primary-gold);
  color: var(--text-primary);
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.project-details-btn:hover {
  background: var(--primary-gold-dark);
  transform: translateY(-2px);
}

.projects-footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px 0;
}

.all-projects-btn {
  background: var(--primary-gold);
  color: var(--text-primary);
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(247, 197, 45, 0.3);
}

.all-projects-btn:hover {
  background: var(--primary-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 197, 45, 0.4);
}

.all-projects-btn i {
  transition: transform 0.3s ease;
}

.all-projects-btn:hover i {
  transform: translateX(3px);
}

/* Enhanced Animations */
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Hover Effects */
.feature-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  transition: left 0.6s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.info-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.info-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .header-content {
    padding: 16px 20px;
  }
  
  .stats-grid {
    gap: 30px;
  }
  
  .contact-container {
    max-width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }
  
  .projects-section {
    margin: 0 20px;
    padding: 40px 20px;
  }
  
  .info-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  
  .info-card {
    width: 90%;
    min-width: 280px;
    max-width: 400px;
  }
  
  .header h1 {
    font-size: 2rem;
  }
  
  .info-title, .stats-title {
    font-size: 2rem;
  }
  
  .features {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px;
  }
  
  .feature-card {
    width: 100%;
    max-width: 350px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-item {
    padding: 30px 20px;
    min-width: auto;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .nav-menu {
    width: 280px;
  }
}

/* Responsive Hero Slider */
@media (max-width: 900px) {
  .slide-title {
    font-size: 2.5rem;
  }
  
  .slide-description {
    font-size: 1.2rem;
  }
  
  .slide-actions {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    max-width: 300px;
  }
  
  .cta-btn {
    width: 200px;
  }
  
  .slider-arrow {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .slider-arrow.prev {
    left: 15px;
  }
  
  .slider-arrow.next {
    right: 15px;
  }
}

@media (max-width: 600px) {
  .header-content {
    padding: 12px 15px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .slide-title {
    font-size: 2rem;
  }
  
  .slide-description {
    font-size: 1rem;
  }
  
  .slide-content {
    padding: 0 15px;
  }
  
  .slider-nav {
    bottom: 20px;
  }
  
  .slide-counter {
    top: 20px;
    right: 20px;
    font-size: 0.8rem;
  }
  
  .info-section {
    padding: 30px 15px;
  }
  
  .info-title {
    font-size: 1.8rem;
  }
  
  .info-card {
    width: 95%;
    min-width: auto;
    padding: 25px 20px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .statistics-section {
    padding: 40px 15px;
  }
  
  .stats-title {
    font-size: 1.8rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .projects-section {
    margin: 0 15px;
    padding: 30px 15px;
  }
  
  .projects-title {
    font-size: 1.8rem;
  }
  
  .nav-menu {
    width: 100%;
    right: -100%;
  }
  
  .nav-menu.nav-open {
    right: 0;
  }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* GPU acceleration for animations */
.hero-slider,
.slide,
.back-to-top,
.dark-mode-toggle,
.service-card,
.news-card,
.project-card {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Image Loading States */
.project-image,
.news-image {
  transition: opacity 0.3s ease, filter 0.3s ease;
  background: var(--bg-accent);
  border-radius: 8px;
}

.project-image[data-retry-count="1"],
.news-image[data-retry-count="1"] {
  opacity: 0.7;
  filter: brightness(0.9);
}

.project-image[data-retry-count="2"],
.news-image[data-retry-count="2"] {
  opacity: 0.5;
  filter: brightness(0.8) grayscale(0.2);
}

/* Loading placeholder shimmer effect */
.project-image:not([src]),
.news-image:not([src]) {
  background: linear-gradient(90deg, 
    var(--bg-accent) 0%, 
    var(--primary-gold-light) 50%, 
    var(--bg-accent) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Font loading optimization would be handled in font-face declarations */

/* Styles moved from Home.vue */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.home-container {
  max-width: 100%;
  overflow-x: hidden;
}

.custom-header {
  width: 100%;
  box-sizing: border-box;
}

section {
  max-width: 100%;
  box-sizing: border-box;
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-menu ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-menu ul li a:hover {
  color: #007BFF;
}

.modern-lang-btn {
  border: 2px solid var(--border-medium);
  background: var(--bg-primary);
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--text-primary);
}

.modern-lang-btn.active {
  color: var(--text-primary);
  background: var(--primary-gold);
  border-color: var(--primary-gold-dark);
  box-shadow: 0 4px 15px var(--shadow-medium);
}

.modern-lang-btn:hover {
  background: var(--primary-gold-light);
  border-color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-medium);
}

.modern-dark-mode-toggle {
  font-size: 18px;
  cursor: pointer;
  background: var(--bg-primary);
  border: 2px solid var(--primary-gold);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--text-primary);
}

.modern-dark-mode-toggle:hover {
  transform: scale(1.1) rotate(10deg);
  background: var(--primary-gold);
  box-shadow: 0 4px 15px var(--shadow-medium);
}

.modern-menu-bar {
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: var(--bg-primary);
  border: 2px solid var(--border-medium);
}

.modern-menu-bar:hover {
  background: var(--bg-accent);
  border-color: var(--primary-gold);
  transform: scale(1.05);
}

.modern-menu-bar span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.modern-menu-bar.menu-active span {
  background: var(--primary-gold-dark);
}

.modern-menu-bar.menu-active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.modern-menu-bar.menu-active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.modern-menu-bar.menu-active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Prevent page overflow */
body[data-v-09354bf2] {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.home-container[data-v-09354bf2] {
  max-width: 100%;
  overflow-x: hidden;
}
.custom-header[data-v-09354bf2] {
  width: 100%;
  box-sizing: border-box;
}

/* Ensure all sections align within header width */
section[data-v-09354bf2] {
  max-width: 100%;
  box-sizing: border-box;
}

/* Sticky header styles */
.sticky-header[data-v-09354bf2] {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-primary);
  box-shadow: 0 2px 10px var(--shadow-medium);
  border-bottom: 2px solid var(--primary-gold);
}
.nav-menu ul[data-v-09354bf2] {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-menu ul li a[data-v-09354bf2] {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
}
.nav-menu ul li a[data-v-09354bf2]:hover {
  color: #007BFF;
}
.modern-lang-btn[data-v-09354bf2] {
  border: none;
  background-color: transparent;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}
.modern-lang-btn.active[data-v-09354bf2] {
  color: #007BFF;
}
.modern-dark-mode-toggle[data-v-09354bf2] {
  font-size: 18px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  transition: transform 0.3s;
}
.modern-dark-mode-toggle[data-v-09354bf2]:hover {
  transform: scale(1.1);
}
.modern-menu-bar span[data-v-09354bf2] {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: background-color 0.3s;
}
.modern-menu-bar.menu-active span[data-v-09354bf2] {
  background-color: #007BFF;
}

/* Additional styles for sections and containers */
.container[data-v-09354bf2] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
section[data-v-09354bf2] {
  padding: 60px 0;
  overflow-x: hidden;
}
.hero-slider[data-v-09354bf2] {
  padding: 0 !important;
}

/* Hero Menu Navigation */
.hero-menu-nav[data-v-09354bf2] {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.menu-items[data-v-09354bf2] {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.menu-item[data-v-09354bf2] {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 15px 20px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 300px;
  backdrop-filter: blur(10px);
}
.menu-item[data-v-09354bf2]:hover {
  background: rgba(247, 197, 45, 0.9);
  border-color: var(--primary-gold);
  transform: translateX(10px);
}
.menu-item.active[data-v-09354bf2] {
  background: linear-gradient(135deg, var(--primary-gold), #f39c12);
  border-color: var(--primary-gold);
  box-shadow: 0 8px 25px rgba(247, 197, 45, 0.4);
}
.menu-icon[data-v-09354bf2] {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.menu-item.active .menu-icon[data-v-09354bf2] {
  background: rgba(255, 255, 255, 0.3);
}
.menu-text[data-v-09354bf2] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.menu-title[data-v-09354bf2] {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.menu-subtitle[data-v-09354bf2] {
  font-size: 12px;
  opacity: 0.8;
  line-height: 1.3;
}

/* Large Navigation Arrows */
.hero-arrow[data-v-09354bf2] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}
.hero-arrow[data-v-09354bf2]:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: translateY(-50%) scale(1.1);
}
.hero-arrow.prev[data-v-09354bf2] {
  right: 120px;
}
.hero-arrow.next[data-v-09354bf2] {
  right: 40px;
}

/* Slide Indicator */
.slide-indicator[data-v-09354bf2] {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 0, 0, 0.6);
  padding: 12px 20px;
  border-radius: 25px;
  color: white;
  font-weight: 600;
  backdrop-filter: blur(10px);
  z-index: 10;
}
.indicator-line[data-v-09354bf2] {
  width: 30px;
  height: 2px;
  background: var(--primary-gold);
  border-radius: 1px;
}

/* Responsive Hero Navigation */
@media (max-width: 1024px) {
.hero-menu-nav[data-v-09354bf2] {
    left: 30px;
}
.menu-item[data-v-09354bf2] {
    min-width: 250px;
    padding: 12px 15px;
}
.hero-arrow[data-v-09354bf2] {
    width: 60px;
    height: 60px;
    font-size: 20px;
}
.hero-arrow.prev[data-v-09354bf2] {
    right: 100px;
}
.hero-arrow.next[data-v-09354bf2] {
    right: 30px;
}
}
@media (max-width: 768px) {
.hero-menu-nav[data-v-09354bf2] {
    display: none;
}
.hero-arrow[data-v-09354bf2] {
    width: 50px;
    height: 50px;
    font-size: 18px;
}
.hero-arrow.prev[data-v-09354bf2] {
    right: 80px;
}
.hero-arrow.next[data-v-09354bf2] {
    right: 20px;
}
.slide-indicator[data-v-09354bf2] {
    bottom: 20px;
    right: 20px;
    padding: 8px 15px;
}
}
.info-section[data-v-09354bf2] {
  background: var(--bg-secondary);
  padding: 0 0 80px 0;
}
.info-card[data-v-09354bf2] {
  transition: transform 0.3s;
}
.info-card[data-v-09354bf2]:hover {
  transform: translateY(-5px);
}
.feature-card[data-v-09354bf2] {
  transition: transform 0.3s;
}
.feature-card[data-v-09354bf2]:hover {
  transform: translateY(-5px);
}
.project-card[data-v-09354bf2] {
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
}
.project-card-bordered[data-v-09354bf2] {
  border: 1px solid rgba(201, 160, 64, 0.2);
  border-radius: 15px;
}
.project-card-bordered[data-v-09354bf2]:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 12px 35px rgba(201, 160, 64, 0.15);
}
.project-card[data-v-09354bf2]:hover {
  transform: translateY(-5px);
}
.project-card:hover .project-hover-overlay[data-v-09354bf2] {
  opacity: 1;
  visibility: visible;
}
.project-hover-overlay[data-v-09354bf2] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(247, 197, 45, 0.95) 0%, rgba(44, 62, 80, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  cursor: pointer;
}
.project-details-btn[data-v-09354bf2] {
  background: var(--primary-gold);
  color: var(--text-primary);
  border: 2px solid var(--primary-gold-dark);
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-medium);
  pointer-events: none;
}
.project-details-btn[data-v-09354bf2]:hover {
  background: var(--bg-primary);
  color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-medium);
  border-color: var(--secondary-dark);
}
.news-card[data-v-09354bf2] {
  transition: transform 0.3s;
}
.news-card[data-v-09354bf2]:hover {
  transform: translateY(-5px);
}
.contact-item[data-v-09354bf2] {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.contact-icon[data-v-09354bf2] {
  font-size: 24px;
  margin-right: 10px;
}
.submit-btn[data-v-09354bf2] {
  background: var(--gradient-primary);
  color: var(--text-primary);
  padding: 12px 24px;
  border: 2px solid var(--primary-gold-dark);
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.submit-btn[data-v-09354bf2]:hover {
  background: var(--primary-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-medium);
}

/* Dark mode styles */
.dark-mode[data-v-09354bf2] {
  background-color: #121212;
  color: #e0e0e0;
}
.dark-mode .custom-header[data-v-09354bf2] {
  background-color: #1e1e1e;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.dark-mode .nav-menu ul li a[data-v-09354bf2] {
  color: #e0e0e0;
}
.dark-mode .nav-menu ul li a[data-v-09354bf2]:hover {
  color: #007BFF;
}
.dark-mode .submit-btn[data-v-09354bf2] {
  background-color: #007BFF;
  color: #fff;
}
.dark-mode .submit-btn[data-v-09354bf2]:hover {
  background-color: #0056b3;
}

/* Loading screen styles */
.loading-screen[data-v-09354bf2] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.loading-content[data-v-09354bf2] {
  text-align: center;
}
.solar-loader[data-v-09354bf2] {
  width: 50px;
  height: 50px;
  border: 5px solid #007BFF;
  border-top: 5px solid transparent;
  border-radius: 50%;
  animation: spin-09354bf2 1s linear infinite;
}
@keyframes spin-09354bf2 {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}

/* Modern Contact Section Styles */
.modern-contact-section[data-v-09354bf2] {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.contact-wrapper[data-v-09354bf2] {
  position: relative;
  z-index: 2;
}
.contact-header[data-v-09354bf2] {
  text-align: center;
  margin-bottom: 80px;
}
.gradient-text[data-v-09354bf2] {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-grid[data-v-09354bf2] {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.contact-info-grid-new[data-v-09354bf2] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.contact-card[data-v-09354bf2] {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.contact-card[data-v-09354bf2]:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.card-gradient-bg[data-v-09354bf2] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  opacity: 0.8;
  transition: all 0.4s ease;
}
.address-card .card-gradient-bg[data-v-09354bf2] {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}
.phone-card .card-gradient-bg[data-v-09354bf2] {
  background: linear-gradient(135deg, #10b981, #059669);
}
.email-card .card-gradient-bg[data-v-09354bf2] {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}
.hours-card .card-gradient-bg[data-v-09354bf2] {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.contact-card:hover .card-gradient-bg[data-v-09354bf2] {
  height: 80px;
  opacity: 0.9;
}
.card-inner[data-v-09354bf2] {
  position: relative;
  z-index: 2;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card-icon-large[data-v-09354bf2] {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.contact-card:hover .card-icon-large[data-v-09354bf2] {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}
.card-icon-large svg[data-v-09354bf2] {
  color: #4b5563;
}
.address-card:hover .card-icon-large svg[data-v-09354bf2] {
  color: #f59e0b;
}
.phone-card:hover .card-icon-large svg[data-v-09354bf2] {
  color: #10b981;
}
.email-card:hover .card-icon-large svg[data-v-09354bf2] {
  color: #3b82f6;
}
.hours-card:hover .card-icon-large svg[data-v-09354bf2] {
  color: #8b5cf6;
}
.contact-card h3[data-v-09354bf2] {
  color: #1f2937;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}
.card-value[data-v-09354bf2] {
  color: #4b5563;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 24px;
  flex-grow: 1;
}
.card-action-btn[data-v-09354bf2] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
}
.card-action-btn[data-v-09354bf2]:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: translateX(4px);
}

/* Phone List Styles */
.phone-list[data-v-09354bf2] {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}
.phone-item[data-v-09354bf2] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(16, 185, 129, 0.1);
  padding: 16px 20px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.phone-item[data-v-09354bf2]:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateX(4px);
}
.phone-info[data-v-09354bf2] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.phone-name[data-v-09354bf2] {
  color: #1f2937;
  font-weight: 600;
  font-size: 1rem;
}
.phone-number[data-v-09354bf2] {
  color: #10b981;
  font-weight: 700;
  font-size: 1.1rem;
}
.call-icon[data-v-09354bf2] {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.phone-item:hover .call-icon[data-v-09354bf2] {
  transform: scale(1.2);
}

/* Email List Styles */
.email-list[data-v-09354bf2] {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.email-item[data-v-09354bf2] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(59, 130, 246, 0.1);
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.email-item[data-v-09354bf2]:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateX(4px);
}
.email-info[data-v-09354bf2] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.email-label[data-v-09354bf2] {
  color: #6b7280;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.email-address[data-v-09354bf2] {
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.95rem;
}
.mail-icon[data-v-09354bf2] {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}
.email-item:hover .mail-icon[data-v-09354bf2] {
  transform: scale(1.2);
}

/* Working Hours Styles */
.hours-info[data-v-09354bf2] {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}
.day-hours[data-v-09354bf2] {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(139, 92, 246, 0.1);
  padding: 16px 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
}
.day-hours[data-v-09354bf2]:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: translateX(4px);
}
.day-hours.weekend[data-v-09354bf2] {
  background: rgba(239, 68, 68, 0.1);
}
.day-hours.weekend[data-v-09354bf2]:hover {
  background: rgba(239, 68, 68, 0.2);
}
.days[data-v-09354bf2] {
  color: #1f2937;
  font-weight: 600;
  font-size: 1rem;
}
.hours[data-v-09354bf2] {
  color: #8b5cf6;
  font-weight: 700;
  font-size: 1.2rem;
}
.weekend .hours[data-v-09354bf2] {
  color: #ef4444;
}
.card-icon-wrapper[data-v-09354bf2] {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}
.card-icon[data-v-09354bf2] {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  z-index: 2;
}
.icon-bg[data-v-09354bf2] {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 20px;
  opacity: 0.2;
  filter: blur(8px);
}
.card-content h4[data-v-09354bf2] {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.card-content p[data-v-09354bf2] {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 16px;
}
.contact-link[data-v-09354bf2] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.contact-link[data-v-09354bf2]:hover {
  color: #2563eb;
  transform: translateX(4px);
}
.arrow[data-v-09354bf2] {
  transition: transform 0.3s ease;
}
.contact-link:hover .arrow[data-v-09354bf2] {
  transform: translateX(4px);
}
.modern-contact-form[data-v-09354bf2] {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.form-header[data-v-09354bf2] {
  text-align: center;
  margin-bottom: 40px;
}
.form-header h3[data-v-09354bf2] {
  color: #1e293b;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-header p[data-v-09354bf2] {
  color: #64748b;
  font-size: 1.1rem;
}
.form-row[data-v-09354bf2] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.form-group[data-v-09354bf2] {
  position: relative;
}
.form-group.full-width[data-v-09354bf2] {
  grid-column: 1 / -1;
}
.input-wrapper[data-v-09354bf2] {
  position: relative;
}
.modern-input[data-v-09354bf2],
.modern-textarea[data-v-09354bf2],
.modern-select[data-v-09354bf2] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}
.modern-input[data-v-09354bf2]:focus,
.modern-textarea[data-v-09354bf2]:focus,
.modern-select[data-v-09354bf2]:focus {
  border-color: #3b82f6;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}
.modern-textarea[data-v-09354bf2] {
  resize: vertical;
  min-height: 100px;
  max-height: 150px;
}
.floating-label[data-v-09354bf2] {
  position: absolute;
  top: -12px;
  left: 16px;
  background: white;
  padding: 0 8px;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 6px;
}
.label-icon[data-v-09354bf2] {
  font-size: 1rem;
}
.select-wrapper[data-v-09354bf2] {
  position: relative;
}
.modern-select[data-v-09354bf2] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 20 20%27%3e%3cpath stroke=%27%236b7280%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.5%27 d=%27m6 8 4 4 4-4%27/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 48px;
}
.form-actions[data-v-09354bf2] {
  margin-top: 24px;
  text-align: center;
}
.modern-submit-btn[data-v-09354bf2] {
  position: relative;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  width: 100%;
  max-width: 200px;
}
.modern-submit-btn[data-v-09354bf2]:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}
.modern-submit-btn[data-v-09354bf2]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.btn-content[data-v-09354bf2] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.btn-icon.loading[data-v-09354bf2] {
  animation: spin-09354bf2 1s linear infinite;
}
.btn-bg[data-v-09354bf2] {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  transition: left 0.3s ease;
}
.modern-submit-btn:hover .btn-bg[data-v-09354bf2] {
  left: 0;
}

/* Background Elements */
.contact-bg-elements[data-v-09354bf2] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.bg-shape[data-v-09354bf2] {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  animation: float-09354bf2 6s ease-in-out infinite;
}
.shape-1[data-v-09354bf2] {
  top: 10%;
  left: 5%;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
}
.shape-2[data-v-09354bf2] {
  top: 60%;
  right: 10%;
  width: 80px;
  height: 80px;
  animation-delay: 2s;
}
.shape-3[data-v-09354bf2] {
  bottom: 20%;
  left: 20%;
  width: 60px;
  height: 60px;
  animation-delay: 4s;
}
@keyframes float-09354bf2 {
0%, 100% { transform: translateY(0px) rotate(0deg);
}
50% { transform: translateY(-20px) rotate(180deg);
}
}

/* Responsive Design */
@media (max-width: 1024px) {
.contact-grid[data-v-09354bf2] {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 800px;
}
.contact-info-grid-new[data-v-09354bf2] {
    order: 2;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.modern-contact-form[data-v-09354bf2] {
    max-width: 100%;
    order: 1;
}
.contact-card[data-v-09354bf2] {
    min-height: 260px;
}
}
@media (max-width: 768px) {
.modern-contact-section[data-v-09354bf2] {
    padding: 60px 0;
}
.gradient-text[data-v-09354bf2] {
    font-size: 2.2rem;
}
.contact-info-grid-new[data-v-09354bf2] {
    grid-template-columns: 1fr;
    gap: 20px;
}
.modern-contact-form[data-v-09354bf2] {
    padding: 24px;
    border-radius: 16px;
}
.contact-card[data-v-09354bf2] {
    min-height: 240px;
}
.card-inner[data-v-09354bf2] {
    padding: 24px 20px;
}
.card-icon-large[data-v-09354bf2] {
    width: 56px;
    height: 56px;
}
.contact-card h3[data-v-09354bf2] {
    font-size: 1.3rem;
}
}
@media (max-width: 640px) {
.phone-item[data-v-09354bf2],
  .email-item[data-v-09354bf2] {
    flex-direction: column;
    text-align: center;
    gap: 8px;
}
.phone-info[data-v-09354bf2],
  .email-info[data-v-09354bf2] {
    align-items: center;
}
}

/* Dark Mode Support */
.dark-mode .modern-contact-section[data-v-09354bf2] {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}
.dark-mode .modern-info-card[data-v-09354bf2] {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
}
.dark-mode .modern-contact-form[data-v-09354bf2] {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(255, 255, 255, 0.1);
}
.dark-mode .modern-input[data-v-09354bf2],
.dark-mode .modern-textarea[data-v-09354bf2],
.dark-mode .modern-select[data-v-09354bf2] {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
}
.dark-mode .floating-label[data-v-09354bf2] {
  background: #1e293b;
  color: #94a3b8;
}

/* Projects Section Enhancements */
.projects-footer[data-v-09354bf2] {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  padding: 20px 0;
}
.all-projects-btn[data-v-09354bf2] {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #d4af37 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 160, 64, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 200px;
  justify-content: center;
}
.all-projects-btn[data-v-09354bf2]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 160, 64, 0.4);
  background: linear-gradient(135deg, #d4af37 0%, var(--primary-gold) 100%);
}
.all-projects-btn[data-v-09354bf2]:active {
  transform: translateY(-1px);
}
.all-projects-btn i[data-v-09354bf2] {
  transition: transform 0.3s ease;
  font-size: 14px;
}
.all-projects-btn:hover i[data-v-09354bf2] {
  transform: translateX(4px);
}

/* Responsive Design for Projects Button */
@media (max-width: 768px) {
.all-projects-btn[data-v-09354bf2] {
    padding: 14px 28px;
    font-size: 14px;
    min-width: 180px;
}
.projects-footer[data-v-09354bf2] {
    margin-top: 40px;
    padding: 15px 0;
}
}
@media (max-width: 480px) {
.all-projects-btn[data-v-09354bf2] {
    padding: 12px 24px;
    font-size: 13px;
    min-width: 160px;
}
}

/* Parallax Background Effects */
.parallax-container[data-v-09354bf2] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.parallax-bg[data-v-09354bf2] {
  position: absolute;
  width: 120%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  will-change: transform;
}
.parallax-bg1[data-v-09354bf2] {
  background-image: linear-gradient(45deg, 
    rgba(52, 152, 219, 0.3) 0%, 
    rgba(155, 89, 182, 0.3) 50%, 
    rgba(52, 73, 94, 0.3) 100%);
  top: -10%;
  left: -10%;
}
.parallax-bg2[data-v-09354bf2] {
  background-image: radial-gradient(circle at 30% 70%, 
    rgba(46, 204, 113, 0.2) 0%, 
    rgba(52, 152, 219, 0.2) 50%, 
    transparent 70%);
  top: -5%;
  right: -10%;
  width: 80%;
  height: 80%;
}
.parallax-bg3[data-v-09354bf2] {
  background-image: linear-gradient(135deg, 
    rgba(241, 196, 15, 0.2) 0%, 
    rgba(230, 126, 34, 0.2) 50%, 
    rgba(231, 76, 60, 0.2) 100%);
  bottom: -10%;
  left: 20%;
  width: 60%;
  height: 60%;
  border-radius: 50%;
}

/* Disable parallax on mobile for performance */
@media (max-width: 768px) {
.parallax-container[data-v-09354bf2] {
    display: none;
}
}


.project-detail-page[data-v-62fe0e92] {
  min-height: 100vh;
  background: var(--gradient-secondary);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  overflow-y: auto;
}

/* Hide home page header when project detail is active */
body.project-detail-page-active .custom-header,body.project-detail-page-active .sticky-header,body.project-detail-page-active .nav-container,body.project-detail-page-active .navbar,body.project-detail-page-active .main-header,body.project-detail-page-active header:not(.project-header),body.project-detail-page-active .header,body.project-detail-page-active nav {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  top: -9999px !important;
}

/* Header */
.project-header[data-v-62fe0e92] {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.container[data-v-62fe0e92] {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.back-btn[data-v-62fe0e92] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: #388e3c;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}
.back-btn[data-v-62fe0e92]:hover {
  color: var(--secondary-dark);
}
.language-switcher[data-v-62fe0e92] {
  display: flex;
  gap: 0.5rem;
}
.lang-btn[data-v-62fe0e92] {
  padding: 0.5rem 1rem;
  border: 2px solid #388e3c;
  background: transparent;
  color: #388e3c;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}
.lang-btn.active[data-v-62fe0e92],
.lang-btn[data-v-62fe0e92]:hover {
  background: #388e3c;
  color: white;
}

/* Header Logo */
.header-logo[data-v-62fe0e92] {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
  padding: 0.5rem 1rem;
  backdrop-filter: blur(5px);
}
.header-logo[data-v-62fe0e92]:hover {
  background: rgba(56, 142, 60, 0.15);
  border-color: rgba(56, 142, 60, 0.3);
  transform: translateX(-50%) translateY(-1px);
  box-shadow: 0 4px 15px rgba(56, 142, 60, 0.2);
}
.header-logo img[data-v-62fe0e92] {
  height: 32px;
  width: auto;
}
.header-logo-text[data-v-62fe0e92] {
  font-size: 1.1rem;
  font-weight: 700;
  color: #388e3c;
  letter-spacing: 0.02em;
}

/* Loading & Error States */
.loading-container[data-v-62fe0e92],
.error-container[data-v-62fe0e92] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  text-align: center;
  padding: 2rem;
}
.loading-spinner[data-v-62fe0e92] {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #388e3c;
  border-radius: 50%;
  animation: spin-62fe0e92 1s linear infinite;
  margin-bottom: 1rem;
}
@keyframes spin-62fe0e92 {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
.error-icon[data-v-62fe0e92] {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.error-back-btn[data-v-62fe0e92] {
  padding: 1rem 2rem;
  background: #388e3c;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 1rem;
  transition: background 0.3s ease;
}
.error-back-btn[data-v-62fe0e92]:hover {
  background: var(--primary-gold-light);
}

/* Hero Section */
.project-hero[data-v-62fe0e92] {
  position: relative;
  height: 60vh;
  min-height: 500px;
  overflow: hidden;
}
.project-hero-image[data-v-62fe0e92] {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-img[data-v-62fe0e92] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-overlay[data-v-62fe0e92] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 2, 0, 0
  ), rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.hero-content[data-v-62fe0e92] {
  color: white;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.project-title[data-v-62fe0e92] {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.project-meta-hero[data-v-62fe0e92] {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.project-meta-hero span[data-v-62fe0e92] {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 25px;
  font-size: 1.4rem;
  font-weight: 600;
}

/* Info Section */
.project-info-section[data-v-62fe0e92] {
  padding: 4rem 2rem;
}
.project-info-grid[data-v-62fe0e92] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.info-card[data-v-62fe0e92] {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 280px;
}
.info-card[data-v-62fe0e92]:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.card-header[data-v-62fe0e92] {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.card-icon[data-v-62fe0e92] {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #388e3c, #4caf50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-header h3[data-v-62fe0e92] {
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
}
.card-content[data-v-62fe0e92] {
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
}
.spec-item[data-v-62fe0e92],
.timeline-item[data-v-62fe0e92] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
}
.spec-item[data-v-62fe0e92]:last-child,
.timeline-item[data-v-62fe0e92]:last-child {
  border-bottom: none;
}
.spec-label[data-v-62fe0e92],
.timeline-label[data-v-62fe0e92] {
  font-weight: 600;
  color: #333;
  font-size: 1.1rem;
}
.spec-value[data-v-62fe0e92],
.timeline-date[data-v-62fe0e92] {
  color: #388e3c;
  font-weight: 600;
  font-size: 1.2rem;
}
.client-info h4[data-v-62fe0e92] {
  color: #333;
  margin-bottom: 0.5rem;
}

/* Contact CTA */
.project-contact-cta[data-v-62fe0e92] {
  background: linear-gradient(135deg, #388e3c, #4caf50);
  padding: 4rem 0;
  text-align: center;
}
.cta-content[data-v-62fe0e92] {
  color: white;
}
.cta-content h2[data-v-62fe0e92] {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-content p[data-v-62fe0e92] {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.cta-btn[data-v-62fe0e92] {
  background: var(--primary-gold);
  color: #333;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cta-btn[data-v-62fe0e92]:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Modern Footer */
.modern-footer[data-v-62fe0e92] {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 4rem 0 0;
  margin-top: 2rem;
}
.footer-container[data-v-62fe0e92] {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-content[data-v-62fe0e92] {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo[data-v-62fe0e92] {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  background: white;
  border: 2px solid var(--primary-gold);
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: -moz-fit-content;
  width: fit-content;
}
.footer-logo[data-v-62fe0e92]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 160, 64, 0.3);
  border-color: var(--primary-gold-dark);
}
.footer-logo-img[data-v-62fe0e92] {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-logo-text[data-v-62fe0e92] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo-text .company-name[data-v-62fe0e92] {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1;
}
.footer-section h4[data-v-62fe0e92] {
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.company-description[data-v-62fe0e92] {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.social-links[data-v-62fe0e92] {
  display: flex;
  gap: 1rem;
}
.social-link[data-v-62fe0e92] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}
.social-link[data-v-62fe0e92]:hover {
  background: var(--primary-gold);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(201, 160, 64, 0.4);
}
.quick-links ul[data-v-62fe0e92] {
  list-style: none;
  padding: 0;
}
.quick-links li[data-v-62fe0e92] {
  margin-bottom: 0.8rem;
}
.quick-links a[data-v-62fe0e92] {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}
.quick-links a[data-v-62fe0e92]:hover {
  color: var(--primary-gold);
}
.footer-bottom[data-v-62fe0e92] {
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.2);
}
.footer-bottom-content[data-v-62fe0e92] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
}
.footer-links[data-v-62fe0e92] {
  display: flex;
  gap: 2rem;
}
.footer-links a[data-v-62fe0e92] {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a[data-v-62fe0e92]:hover {
  color: var(--primary-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
.footer-content[data-v-62fe0e92] {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}
.footer-bottom-content[data-v-62fe0e92] {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}
.footer-links[data-v-62fe0e92] {
    gap: 1rem;
}
}
@media (max-width: 768px) {
.project-header[data-v-62fe0e92] {
    padding: 0.6rem 0;
}
.project-header .container[data-v-62fe0e92] {
    padding: 0 1rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}
.header-logo[data-v-62fe0e92] {
    position: relative;
    left: auto;
    transform: none;
    order: 0;
    padding: 0.3rem 0.6rem;
}
.header-logo img[data-v-62fe0e92] {
    height: 24px;
}
.header-logo-text[data-v-62fe0e92] {
    font-size: 0.8rem;
}
.back-btn[data-v-62fe0e92] {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}
.lang-btn[data-v-62fe0e92] {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    min-width: 35px;
}
.language-switcher[data-v-62fe0e92] {
    gap: 0.3rem;
}
.project-title[data-v-62fe0e92] {
    font-size: 2rem;
}
.project-meta-hero[data-v-62fe0e92] {
    gap: 1.5rem;
}
.project-meta-hero span[data-v-62fe0e92] {
    font-size: 1.1rem;
    padding: 0.8rem 1.2rem;
}
.hero-overlay[data-v-62fe0e92] {
    padding: 1rem;
}
.project-info-section[data-v-62fe0e92] {
    padding: 3rem 1rem;
}
.project-info-grid[data-v-62fe0e92] {
    grid-template-columns: 1fr;
    gap: 2rem;
}
.info-card[data-v-62fe0e92] {
    padding: 2rem;
    min-height: auto;
}
.spec-item[data-v-62fe0e92],
  .timeline-item[data-v-62fe0e92] {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}
.cta-content h2[data-v-62fe0e92] {
    font-size: 2rem;
}
}

/* Extra small screens */
@media (max-width: 480px) {
.project-hero[data-v-62fe0e92] {
    height: 50vh;
    min-height: 400px;
}
.project-title[data-v-62fe0e92] {
    font-size: 1.5rem;
}
.project-header[data-v-62fe0e92] {
    padding: 0.4rem 0;
}
.project-header .container[data-v-62fe0e92] {
    padding: 0 0.5rem;
    gap: 0.3rem;
}
.header-logo[data-v-62fe0e92] {
    padding: 0.2rem 0.4rem;
}
.header-logo img[data-v-62fe0e92] {
    height: 20px;
}
.header-logo-text[data-v-62fe0e92] {
    font-size: 0.7rem;
}
.back-btn[data-v-62fe0e92] {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
}
.back-btn i[data-v-62fe0e92] {
    font-size: 0.7rem;
}
.lang-btn[data-v-62fe0e92] {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    min-width: 30px;
}
.cta-content h2[data-v-62fe0e92] {
    font-size: 1.8rem;
}
.cta-content p[data-v-62fe0e92] {
    font-size: 1rem;
}
}


.all-projects-container[data-v-5f9d754e] {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  z-index: 0;
}

/* Header Styles */
.projects-header[data-v-5f9d754e] {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #d4af37 100%);
  color: white;
  padding: 60px 0 80px;
}
.container[data-v-5f9d754e] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.breadcrumb[data-v-5f9d754e] {
  margin-bottom: 20px;
  font-size: 14px;
}
.breadcrumb-link[data-v-5f9d754e] {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb-link[data-v-5f9d754e]:hover {
  color: white;
}
.breadcrumb-separator[data-v-5f9d754e] {
  margin: 0 10px;
  opacity: 0.6;
}
.breadcrumb-current[data-v-5f9d754e] {
  color: white;
  font-weight: 500;
}
.page-title[data-v-5f9d754e] {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.page-description[data-v-5f9d754e] {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  line-height: 1.6;
}

/* Content Styles */
.projects-content[data-v-5f9d754e] {
  padding: 40px 0 80px;
  margin-top: -40px;
}
.projects-wrapper[data-v-5f9d754e] {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
.projects-info[data-v-5f9d754e] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.results-count[data-v-5f9d754e] {
  font-size: 16px;
  color: #666;
}
.page-info[data-v-5f9d754e] {
  font-size: 14px;
  color: #888;
  background: #f8f9fa;
  padding: 8px 16px;
  border-radius: 20px;
}

/* Projects Grid */
.projects-grid[data-v-5f9d754e] {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  opacity: 1 !important;
  visibility: visible !important;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.project-card[data-v-5f9d754e] {
  background: white !important;
  border-radius: 15px;
  overflow: visible;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid var(--primary-gold);
  position: relative;
  z-index: 1;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  width: 100%;
  max-width: 1100px;
}
.project-card[data-v-5f9d754e]:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-gold);
}
.project-image-container[data-v-5f9d754e] {
  position: relative;
  height: 300px;
  overflow: hidden;
  opacity: 1 !important;
  visibility: visible !important;
}
.project-image[data-v-5f9d754e] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.project-card:hover .project-image[data-v-5f9d754e] {
  transform: scale(1.1);
}
.project-overlay[data-v-5f9d754e] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(201, 160, 64, 0.9) 0%, rgba(44, 62, 80, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-card:hover .project-overlay[data-v-5f9d754e] {
  opacity: 1;
}
.view-details-btn[data-v-5f9d754e] {
  background: white;
  color: var(--primary-gold);
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.project-card:hover .view-details-btn[data-v-5f9d754e] {
  transform: translateY(0);
}
.project-content[data-v-5f9d754e] {
  padding: 35px;
  position: relative;
  z-index: 2;
  background: white !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  min-height: 150px;
}
.project-title[data-v-5f9d754e] {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: #2c3e50 !important;
  line-height: 1.3;
  position: relative;
  z-index: 3;
}
.project-description[data-v-5f9d754e] {
  color: #666 !important;
  line-height: 1.6;
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.project-meta[data-v-5f9d754e] {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.meta-item[data-v-5f9d754e] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #777;
}
.meta-item i[data-v-5f9d754e] {
  color: var(--primary-gold);
  width: 14px;
}

/* Pagination Styles */
.pagination-wrapper[data-v-5f9d754e] {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.pagination[data-v-5f9d754e] {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination-btn[data-v-5f9d754e] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid #ddd;
  background: white;
  color: #666;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.pagination-btn[data-v-5f9d754e]:hover:not(:disabled) {
  background: var(--primary-gold);
  color: white;
  border-color: var(--primary-gold);
}
.pagination-btn[data-v-5f9d754e]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.page-numbers[data-v-5f9d754e] {
  display: flex;
  gap: 5px;
  margin: 0 10px;
}
.page-number[data-v-5f9d754e] {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: white;
  color: #666;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.page-number[data-v-5f9d754e]:hover {
  background: var(--primary-gold);
  color: white;
  border-color: var(--primary-gold);
}
.page-number.active[data-v-5f9d754e] {
  background: var(--primary-gold);
  color: white;
  border-color: var(--primary-gold);
}

/* Loading & Error States */
.loading-state[data-v-5f9d754e], .error-state[data-v-5f9d754e] {
  text-align: center;
  padding: 80px 20px;
}
.loading-spinner[data-v-5f9d754e] {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--primary-gold);
  border-radius: 50%;
  animation: spin-5f9d754e 1s linear infinite;
  margin: 0 auto 20px;
}
@keyframes spin-5f9d754e {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
.error-icon[data-v-5f9d754e] {
  font-size: 3rem;
  margin-bottom: 20px;
}
.retry-btn[data-v-5f9d754e] {
  background: var(--primary-gold);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease;
}
.retry-btn[data-v-5f9d754e]:hover {
  background: #d4af37;
}

/* Responsive Design */
@media (max-width: 768px) {
.page-title[data-v-5f9d754e] {
    font-size: 2rem;
}
.projects-wrapper[data-v-5f9d754e] {
    padding: 20px;
}
.projects-info[data-v-5f9d754e] {
    flex-direction: column;
    gap: 15px;
    text-align: center;
}
.projects-grid[data-v-5f9d754e] {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.pagination[data-v-5f9d754e] {
    flex-wrap: wrap;
    gap: 8px;
}
.pagination-btn[data-v-5f9d754e] {
    padding: 10px 16px;
    font-size: 14px;
}
}
@media (max-width: 480px) {
.projects-grid[data-v-5f9d754e] {
    grid-template-columns: 1fr;
    gap: 15px;
}
.container[data-v-5f9d754e] {
    padding: 0 15px;
}
.page-numbers[data-v-5f9d754e] {
    display: none; /* Hide page numbers on very small screens */
}
}

/* CSS Variables */
[data-v-5f9d754e]:root {
  --primary-gold: #c9a040;
}


/* Hide home page header when machinery detail is active */
body.machinery-detail-page-active .custom-header,body.machinery-detail-page-active .sticky-header,body.machinery-detail-page-active .nav-container,body.machinery-detail-page-active .navbar,body.machinery-detail-page-active .main-header,body.machinery-detail-page-active header:not(.machinery-header),body.machinery-detail-page-active .header,body.machinery-detail-page-active nav {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
  z-index: -1 !important;
}

/* Remove any top spacing when machinery detail is active */
body.machinery-detail-page-active {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
body.machinery-detail-page-active .machinery-detail-page {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.machinery-detail-page[data-v-62910d44] {
  min-height: 100vh;
  background: #f8f9fa;
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.container[data-v-62910d44] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles - Matching ProjectDetail */
.machinery-header[data-v-62910d44] {
  background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(26, 54, 93, 0.3);
}
.machinery-header .container[data-v-62910d44] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.back-btn[data-v-62910d44] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}
.back-btn[data-v-62910d44]:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(-2px);
}
.back-btn i[data-v-62910d44] {
  font-size: 0.8rem;
}
.language-switcher[data-v-62910d44] {
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.lang-btn[data-v-62910d44] {
  background: transparent;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  opacity: 0.7;
}
.lang-btn[data-v-62910d44]:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.lang-btn.active[data-v-62910d44] {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  opacity: 1;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Header Logo */
.header-logo[data-v-62910d44] {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(56, 142, 60, 0.1);
  border: 2px solid rgba(56, 142, 60, 0.2);
  border-radius: 12px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}
.header-logo[data-v-62910d44]:hover {
  background: rgba(56, 142, 60, 0.15);
  border-color: rgba(56, 142, 60, 0.3);
  transform: translateX(-50%) translateY(-1px);
  box-shadow: 0 4px 15px rgba(56, 142, 60, 0.2);
}
.header-logo-img[data-v-62910d44] {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  -o-object-fit: contain;
     object-fit: contain;
  background: white;
  padding: 2px;
}
.header-logo-text[data-v-62910d44] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.header-logo-text .company-name[data-v-62910d44] {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Page Content */
.page-content[data-v-62910d44] {
  padding: 2rem 0;
}

/* Loading & Error States */
.loading[data-v-62910d44], .error[data-v-62910d44] {
  text-align: center;
  margin: 4rem 0;
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.loader[data-v-62910d44] {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #ff6b35;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin-62910d44 1s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin-62910d44 {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
.error-icon[data-v-62910d44] {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.retry-btn[data-v-62910d44] {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 1rem;
}

/* Main Machinery Card */
.main-machinery-card[data-v-62910d44] {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.image-section[data-v-62910d44] {
  position: relative;
  height: 400px;
  overflow: hidden;
}

/* Image Slider Styles */
.image-slider-container[data-v-62910d44] {
  position: relative;
  width: 100%;
  height: 100%;
}
.image-slider[data-v-62910d44] {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide[data-v-62910d44] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.slide.active[data-v-62910d44] {
  opacity: 1;
}
.machinery-image[data-v-62910d44] {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.machinery-image[data-v-62910d44]:hover {
  transform: scale(1.05);
}

/* Slider Controls */
.slider-controls[data-v-62910d44] {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
}
.image-slider-container:hover .slider-controls[data-v-62910d44] {
  opacity: 1;
  pointer-events: auto;
}
.slider-btn[data-v-62910d44] {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}
.slider-btn[data-v-62910d44]:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.slider-btn[data-v-62910d44]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.slider-btn i[data-v-62910d44] {
  color: #1a365d;
  font-size: 16px;
}

/* Slider Indicators */
.slider-indicators[data-v-62910d44] {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.indicator[data-v-62910d44] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}
.indicator.active[data-v-62910d44] {
  background: #ff6b35;
  border-color: white;
  transform: scale(1.2);
}
.indicator[data-v-62910d44]:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
}
.info-section[data-v-62910d44] {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-badge[data-v-62910d44] {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1rem;
  width: -moz-fit-content;
  width: fit-content;
}
.machine-title[data-v-62910d44] {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.machine-category[data-v-62910d44] {
  color: #4a5568;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-style: italic;
}
.machine-description[data-v-62910d44] {
  color: #2d3748;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Specifications Section */
.specifications-section[data-v-62910d44] {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.specifications-section h2[data-v-62910d44] {
  color: #1a365d;
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
.specifications-section h2[data-v-62910d44]::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  border-radius: 2px;
}
.specs-grid[data-v-62910d44] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.spec-item[data-v-62910d44] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border-left: 5px solid #ff6b35;
  transition: transform 0.2s ease;
}
.spec-item[data-v-62910d44]:hover {
  transform: translateY(-2px);
}
.spec-label[data-v-62910d44] {
  font-weight: 600;
  color: #4a5568;
  font-size: 1rem;
}
.spec-value[data-v-62910d44] {
  font-weight: 700;
  color: #1a365d;
  font-size: 1.1rem;
}

/* Features Section */
.features-section[data-v-62910d44] {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.features-section h2[data-v-62910d44] {
  color: #1a365d;
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
.features-section h2[data-v-62910d44]::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  border-radius: 2px;
}
.features-grid[data-v-62910d44] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.feature-item[data-v-62910d44] {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  gap: 1rem;
  transition: transform 0.2s ease;
}
.feature-item[data-v-62910d44]:hover {
  transform: translateY(-2px);
}
.feature-icon[data-v-62910d44] {
  color: #ff6b35;
  font-weight: bold;
  font-size: 1.3rem;
  width: 24px;
  text-align: center;
}
.feature-text[data-v-62910d44] {
  color: #2d3748;
  font-size: 1rem;
  font-weight: 500;
}

/* Contact Section */
.contact-section[data-v-62910d44] {
  margin-top: 3rem;
}
.contact-card[data-v-62910d44] {
  background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(26, 54, 93, 0.2);
}
.contact-card h3[data-v-62910d44] {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}
.contact-card p[data-v-62910d44] {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.contact-buttons[data-v-62910d44] {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-btn[data-v-62910d44] {
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 160px;
}
.contact-btn.primary[data-v-62910d44] {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
}
.contact-btn.primary[data-v-62910d44]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}
.contact-btn.secondary[data-v-62910d44] {
  background: transparent;
  color: white;
  border: 2px solid #ff6b35;
}
.contact-btn.secondary[data-v-62910d44]:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 968px) {
.main-machinery-card[data-v-62910d44] {
    grid-template-columns: 1fr;
}
.machinery-image[data-v-62910d44] {
    height: 300px;
}
.image-section[data-v-62910d44] {
    height: 300px;
}
.slider-btn[data-v-62910d44] {
    width: 40px;
    height: 40px;
}
.slider-btn i[data-v-62910d44] {
    font-size: 14px;
}
.slider-controls[data-v-62910d44] {
    padding: 0 15px;
}
.indicator[data-v-62910d44] {
    width: 10px;
    height: 10px;
}
.info-section[data-v-62910d44] {
    padding: 2rem;
}
.machine-title[data-v-62910d44] {
    font-size: 2rem;
}
.machinery-header .container[data-v-62910d44] {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.header-logo[data-v-62910d44] {
    order: -1;
    padding: 0.4rem 0.8rem;
}
.back-btn[data-v-62910d44] {
    align-self: flex-start;
}
.language-switcher[data-v-62910d44] {
    align-self: flex-end;
}
}
@media (max-width: 768px) {
.machinery-header[data-v-62910d44] {
    padding: 0.6rem 0;
}
.machinery-header .container[data-v-62910d44] {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
}
.header-logo[data-v-62910d44] {
    position: relative;
    left: auto;
    transform: none;
    order: 0;
    padding: 0.3rem 0.6rem;
}
.header-logo img[data-v-62910d44] {
    height: 24px;
}
.header-logo-text[data-v-62910d44] {
    font-size: 0.8rem;
}
.back-btn[data-v-62910d44] {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}
.lang-btn[data-v-62910d44] {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    min-width: 35px;
}
.language-switcher[data-v-62910d44] {
    gap: 0.3rem;
}
.container[data-v-62910d44] {
    padding: 0 15px;
}
.page-content[data-v-62910d44] {
    padding: 1rem 0;
}
.specifications-section[data-v-62910d44],
  .features-section[data-v-62910d44] {
    padding: 2rem;
}
.specs-grid[data-v-62910d44], .features-grid[data-v-62910d44] {
    grid-template-columns: 1fr;
}
.contact-buttons[data-v-62910d44] {
    flex-direction: column;
    align-items: center;
}
.breadcrumb[data-v-62910d44] {
    display: none;
}
}
@media (max-width: 480px) {
.machine-title[data-v-62910d44] {
    font-size: 1.5rem;
}
.specifications-section h2[data-v-62910d44],
  .features-section h2[data-v-62910d44] {
    font-size: 1.5rem;
}
.contact-card[data-v-62910d44] {
    padding: 2rem;
}
}

/* Modern Footer */
.modern-footer[data-v-62910d44] {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 4rem 0 0;
  margin-top: 2rem;
}
.footer-container[data-v-62910d44] {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-content[data-v-62910d44] {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo[data-v-62910d44] {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  background: white;
  border: 2px solid #ff6b35;
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: -moz-fit-content;
  width: fit-content;
}
.footer-logo[data-v-62910d44]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  border-color: #f7931e;
}
.footer-logo-img[data-v-62910d44] {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-logo-text[data-v-62910d44] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo-text .company-name[data-v-62910d44] {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff6b35;
  line-height: 1;
}
.footer-section h4[data-v-62910d44] {
  color: #ff6b35;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.company-description[data-v-62910d44] {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.social-links[data-v-62910d44] {
  display: flex;
  gap: 1rem;
}
.social-link[data-v-62910d44] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}
.social-link[data-v-62910d44]:hover {
  background: #ff6b35;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}
.quick-links ul[data-v-62910d44] {
  list-style: none;
  padding: 0;
}
.quick-links li[data-v-62910d44] {
  margin-bottom: 0.8rem;
}
.quick-links a[data-v-62910d44] {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}
.quick-links a[data-v-62910d44]:hover {
  color: #ff6b35;
}
.footer-bottom[data-v-62910d44] {
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.2);
}
.footer-bottom-content[data-v-62910d44] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
}
.footer-links[data-v-62910d44] {
  display: flex;
  gap: 2rem;
}
.footer-links a[data-v-62910d44] {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a[data-v-62910d44]:hover {
  color: #ff6b35;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
.modern-footer[data-v-62910d44] {
    padding: 3rem 0 0;
    margin-top: 1.5rem;
}
.footer-container[data-v-62910d44] {
    padding: 0 1rem;
}
.footer-content[data-v-62910d44] {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}
.footer-logo[data-v-62910d44] {
    margin: 0 auto 1.5rem auto;
    padding: 10px 14px;
}
.footer-logo-img[data-v-62910d44] {
    width: 40px;
    height: 40px;
}
.footer-logo-text .company-name[data-v-62910d44] {
    font-size: 1.1rem;
}
.footer-section h4[data-v-62910d44] {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.footer-bottom-content[data-v-62910d44] {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}
.footer-links[data-v-62910d44] {
    gap: 1rem;
}
}
@media (max-width: 480px) {
.footer-container[data-v-62910d44] {
    padding: 0 0.5rem;
}
.footer-content[data-v-62910d44] {
    gap: 1.5rem;
}
.footer-logo[data-v-62910d44] {
    padding: 8px 12px;
    border-radius: 10px;
}
.footer-logo-img[data-v-62910d44] {
    width: 35px;
    height: 35px;
}
.footer-logo-text .company-name[data-v-62910d44] {
    font-size: 1rem;
}
.footer-section h4[data-v-62910d44] {
    font-size: 1.1rem;
}
}


.admin-login-container[data-v-15bf78e5] {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  position: relative;
  top: 0;
}
.admin-login-card[data-v-15bf78e5] {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 40px;
  width: 100%;
  max-width: 400px;
  position: relative;
  overflow: hidden;
}
.admin-login-card[data-v-15bf78e5]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F7C52D, #E6B800, #CC9900);
}
.admin-header[data-v-15bf78e5] {
  text-align: center;
  margin-bottom: 32px;
}
.admin-logo[data-v-15bf78e5] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.admin-logo-img[data-v-15bf78e5] {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.admin-logo h1[data-v-15bf78e5] {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
}
.admin-subtitle[data-v-15bf78e5] {
  margin: 8px 0 0 0;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}
.admin-form[data-v-15bf78e5] {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-group[data-v-15bf78e5] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label[data-v-15bf78e5] {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}
.admin-input[data-v-15bf78e5] {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.2s ease;
  background: #f9fafb;
}
.admin-input[data-v-15bf78e5]:focus {
  outline: none;
  border-color: #3b82f6;
  background: white;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.admin-input[data-v-15bf78e5]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.error-message[data-v-15bf78e5] {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}
.admin-login-btn[data-v-15bf78e5] {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.admin-login-btn[data-v-15bf78e5]:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}
.admin-login-btn[data-v-15bf78e5]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.admin-footer[data-v-15bf78e5] {
  margin-top: 24px;
  text-align: center;
}
.back-to-site[data-v-15bf78e5] {
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}
.back-to-site[data-v-15bf78e5]:hover {
  color: #3b82f6;
}
@media (max-width: 480px) {
.admin-login-card[data-v-15bf78e5] {
    padding: 24px;
    margin: 10px;
}
.admin-logo h1[data-v-15bf78e5] {
    font-size: 20px;
}
}


.admin-contacts[data-v-72f363f0] {
  padding: 0;
}
.content-header[data-v-72f363f0] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 24px;
}
.header-left h2[data-v-72f363f0] {
  margin: 0 0 8px 0;
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
}
.header-left p[data-v-72f363f0] {
  margin: 0;
  color: #64748b;
  font-size: 16px;
}
.header-right[data-v-72f363f0] {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-buttons[data-v-72f363f0] {
  display: flex;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 4px;
  gap: 2px;
}
.filter-btn[data-v-72f363f0] {
  padding: 8px 16px;
  border: none;
  background: transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.filter-btn[data-v-72f363f0]:hover {
  color: #3b82f6;
}
.filter-btn.active[data-v-72f363f0] {
  background: white;
  color: #3b82f6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.refresh-btn[data-v-72f363f0] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.refresh-btn[data-v-72f363f0]:hover:not(:disabled) {
  background: #2563eb;
}
.refresh-btn[data-v-72f363f0]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.loading-state[data-v-72f363f0], .empty-state[data-v-72f363f0] {
  text-align: center;
  padding: 64px 32px;
  color: #64748b;
}
.loading-spinner[data-v-72f363f0] {
  width: 32px;
  height: 32px;
  border: 3px solid #f1f5f9;
  border-top: 3px solid #3b82f6;
  border-radius: 50%;
  animation: spin-72f363f0 1s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin-72f363f0 {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
.empty-state h3[data-v-72f363f0] {
  margin: 16px 0 8px 0;
  font-size: 18px;
  color: #374151;
}
.messages-container[data-v-72f363f0] {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.messages-grid[data-v-72f363f0] {
  display: flex;
  flex-direction: column;
}
.message-card[data-v-72f363f0] {
  position: relative;
  padding: 24px;
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}
.message-card[data-v-72f363f0]:last-child {
  border-bottom: none;
}
.message-card[data-v-72f363f0]:hover {
  background: #f8fafc;
}
.message-card.unread[data-v-72f363f0] {
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
}
.message-header[data-v-72f363f0] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.sender-info[data-v-72f363f0] {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sender-avatar[data-v-72f363f0] {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.sender-details h4[data-v-72f363f0] {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}
.sender-email[data-v-72f363f0], .sender-phone[data-v-72f363f0] {
  margin: 2px 0;
  font-size: 14px;
  color: #64748b;
}
.message-meta[data-v-72f363f0] {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.message-date[data-v-72f363f0] {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 500;
}
.message-actions[data-v-72f363f0] {
  display: flex;
  gap: 8px;
}
.read-btn[data-v-72f363f0], .delete-btn[data-v-72f363f0] {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.read-btn[data-v-72f363f0] {
  background: #f1f5f9;
  color: #64748b;
}
.read-btn[data-v-72f363f0]:hover {
  background: #e2e8f0;
  color: #3b82f6;
}
.read-btn.read[data-v-72f363f0] {
  background: #dcfce7;
  color: #16a34a;
}
.delete-btn[data-v-72f363f0] {
  background: #fef2f2;
  color: #dc2626;
}
.delete-btn[data-v-72f363f0]:hover {
  background: #fecaca;
}
.message-content[data-v-72f363f0] {
  margin-left: 60px;
}
.message-subject h5[data-v-72f363f0] {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}
.message-body[data-v-72f363f0] {
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
  white-space: pre-line;
  max-height: 120px;
  overflow-y: auto;
}
.unread-indicator[data-v-72f363f0] {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
}
@media (max-width: 768px) {
.content-header[data-v-72f363f0] {
    flex-direction: column;
    align-items: stretch;
}
.header-right[data-v-72f363f0] {
    justify-content: space-between;
}
.filter-buttons[data-v-72f363f0] {
    flex: 1;
    justify-content: center;
}
.message-header[data-v-72f363f0] {
    flex-direction: column;
    gap: 12px;
}
.message-meta[data-v-72f363f0] {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.message-content[data-v-72f363f0] {
    margin-left: 0;
    margin-top: 12px;
}
}


.admin-news[data-v-4804d014] {
  padding: 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.news-header[data-v-4804d014] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}
.header-left h2[data-v-4804d014] {
  margin: 0 0 4px 0;
  color: #1a202c;
  font-size: 28px;
  font-weight: 600;
}
.header-left p[data-v-4804d014] {
  margin: 0;
  color: #718096;
  font-size: 14px;
}
.header-actions[data-v-4804d014] {
  display: flex;
  gap: 12px;
}
.btn[data-v-4804d014] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary[data-v-4804d014] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}
.btn-primary[data-v-4804d014]:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}
.btn-secondary[data-v-4804d014] {
  background: white;
  color: #4a5568;
  border: 1px solid #e2e8f0;
}
.btn-secondary[data-v-4804d014]:hover {
  background: #f7fafc;
  border-color: #cbd5e0;
}
.news-filters[data-v-4804d014] {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding: 16px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.filter-group[data-v-4804d014] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filter-group label[data-v-4804d014] {
  font-size: 12px;
  font-weight: 500;
  color: #4a5568;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-group select[data-v-4804d014],
.search-input[data-v-4804d014] {
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s;
}
.filter-group select[data-v-4804d014]:focus,
.search-input[data-v-4804d014]:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.search-input[data-v-4804d014] {
  min-width: 250px;
}
.loading-state[data-v-4804d014],
.empty-state[data-v-4804d014] {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.spinner[data-v-4804d014] {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f4f6;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin-4804d014 1s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin-4804d014 {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
.empty-state h3[data-v-4804d014] {
  margin: 16px 0 8px;
  color: #4a5568;
}
.empty-state p[data-v-4804d014] {
  color: #718096;
  margin-bottom: 20px;
}
.news-grid[data-v-4804d014] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}
.news-card[data-v-4804d014] {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}
.news-card[data-v-4804d014]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.news-card.draft[data-v-4804d014] {
  opacity: 0.7;
  border-color: #fbbf24;
}
.news-image[data-v-4804d014] {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.news-image img[data-v-4804d014] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.no-image[data-v-4804d014] {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7fafc;
  color: #cbd5e0;
}
.news-content[data-v-4804d014] {
  padding: 20px;
}
.news-status[data-v-4804d014] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.status-badge[data-v-4804d014] {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.status-badge.published[data-v-4804d014] {
  background: #c6f6d5;
  color: #22543d;
}
.status-badge.draft[data-v-4804d014] {
  background: #fef3c7;
  color: #92400e;
}
.news-date[data-v-4804d014] {
  font-size: 12px;
  color: #718096;
}
.news-title[data-v-4804d014] {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  line-height: 1.4;
}
.news-excerpt[data-v-4804d014] {
  margin: 0 0 16px 0;
  color: #718096;
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-actions[data-v-4804d014] {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.action-btn[data-v-4804d014] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.action-btn.edit[data-v-4804d014] {
  background: #e2e8f0;
  color: #4a5568;
}
.action-btn.edit[data-v-4804d014]:hover {
  background: #cbd5e0;
}
.action-btn.publish[data-v-4804d014] {
  background: #c6f6d5;
  color: #22543d;
}
.action-btn.unpublish[data-v-4804d014] {
  background: #fef3c7;
  color: #92400e;
}
.action-btn.delete[data-v-4804d014] {
  background: #fed7d7;
  color: #c53030;
}
.action-btn.delete[data-v-4804d014]:hover {
  background: #feb2b2;
}
.pagination[data-v-4804d014] {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}
.page-btn[data-v-4804d014] {
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.page-btn[data-v-4804d014]:hover {
  background: #f7fafc;
}
.page-btn.active[data-v-4804d014] {
  background: #667eea;
  color: white;
  border-color: #667eea;
}
.page-btn[data-v-4804d014]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.modal-overlay[data-v-4804d014] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal[data-v-4804d014] {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-header[data-v-4804d014] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e2e8f0;
}
.modal-header h3[data-v-4804d014] {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}
.close-btn[data-v-4804d014] {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #718096;
}
.modal-body[data-v-4804d014] {
  padding: 20px;
}
.form-group[data-v-4804d014] {
  margin-bottom: 20px;
}
.form-group label[data-v-4804d014] {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
  color: #4a5568;
}
.form-group input[data-v-4804d014],
.form-group textarea[data-v-4804d014] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s;
}
.form-group input[data-v-4804d014]:focus,
.form-group textarea[data-v-4804d014]:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.form-group input[type="checkbox"][data-v-4804d014] {
  width: auto;
  margin-right: 8px;
}
.form-actions[data-v-4804d014] {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}
@media (max-width: 768px) {
.admin-news[data-v-4804d014] {
    padding: 16px;
}
.news-header[data-v-4804d014] {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
}
.header-actions[data-v-4804d014] {
    justify-content: flex-start;
}
.news-filters[data-v-4804d014] {
    flex-direction: column;
}
.search-input[data-v-4804d014] {
    min-width: 100%;
}
.news-grid[data-v-4804d014] {
    grid-template-columns: 1fr;
}
.modal[data-v-4804d014] {
    width: 95%;
    margin: 20px;
}
}


.admin-projects[data-v-6e273660] {
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.admin-header[data-v-6e273660] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #eee;
}
.admin-title[data-v-6e273660] {
  font-size: 28px;
  color: #2c3e50;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-title i[data-v-6e273660] {
  color: #3498db;
}

/* Statistics Cards */
.stats-grid[data-v-6e273660] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.stat-card[data-v-6e273660] {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat-card[data-v-6e273660]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.stat-icon[data-v-6e273660] {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #3498db;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}
.stat-icon.featured[data-v-6e273660] {
  background: #f39c12;
}
.stat-icon.completed[data-v-6e273660] {
  background: #27ae60;
}
.stat-number[data-v-6e273660] {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 5px;
}
.stat-label[data-v-6e273660] {
  color: #7f8c8d;
  font-size: 14px;
}

/* Filters */
.admin-filters[data-v-6e273660] {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  align-items: center;
}
.search-box[data-v-6e273660] {
  position: relative;
  flex: 1;
  max-width: 400px;
}
.search-box i[data-v-6e273660] {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #7f8c8d;
}
.search-box input[data-v-6e273660] {
  width: 100%;
  padding: 12px 12px 12px 45px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}
.search-box input[data-v-6e273660]:focus {
  outline: none;
  border-color: #3498db;
}
.filter-actions[data-v-6e273660] {
  display: flex;
  gap: 15px;
}
.filter-actions select[data-v-6e273660] {
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: white;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.filter-actions select[data-v-6e273660]:focus {
  outline: none;
  border-color: #3498db;
}

/* Loading State */
.loading-state[data-v-6e273660] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #7f8c8d;
}
.spinner[data-v-6e273660] {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin-6e273660 1s linear infinite;
  margin-bottom: 20px;
}
@keyframes spin-6e273660 {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}

/* Admin Projects Unique Styles */
.admin-projects-wrapper[data-v-6e273660] {
  margin-top: 20px;
}

/* Section Headers */
.featured-section[data-v-6e273660], .normal-section[data-v-6e273660] {
  margin-bottom: 40px;
}
.section-header[data-v-6e273660] {
  margin-bottom: 20px;
}
.section-title[data-v-6e273660] {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}
.section-title i[data-v-6e273660] {
  color: #f59e0b;
}
.normal-section .section-title i[data-v-6e273660] {
  color: #4a5568;
}
.section-count[data-v-6e273660] {
  font-size: 14px;
  font-weight: 500;
  color: #718096;
  background: #f7fafc;
  padding: 4px 8px;
  border-radius: 12px;
}

/* Featured Section Styling */
.featured-section[data-v-6e273660] {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid #f59e0b;
}
.featured-grid .admin-project-card[data-v-6e273660] {
  border: 2px solid #f59e0b;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
}

/* Normal Section Styling */
.normal-section[data-v-6e273660] {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid #6c757d;
}
.admin-projects-grid[data-v-6e273660] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}
.admin-project-card[data-v-6e273660] {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
  position: relative;
  z-index: 1;
}
.admin-project-card[data-v-6e273660]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.admin-project-card.admin-featured[data-v-6e273660] {
  border-color: #f59e0b;
}
.admin-card-image[data-v-6e273660] {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.admin-card-image img[data-v-6e273660] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.admin-no-image[data-v-6e273660] {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7fafc;
  color: #cbd5e0;
}
.admin-featured-badge[data-v-6e273660] {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #f59e0b;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.admin-card-content[data-v-6e273660] {
  padding: 20px;
}
.admin-card-status[data-v-6e273660] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.admin-status-badge[data-v-6e273660] {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.admin-status-badge.admin-featured-status[data-v-6e273660] {
  background: #fef3c7;
  color: #92400e;
}
.admin-status-badge.admin-normal-status[data-v-6e273660] {
  background: #e2e8f0;
  color: #4a5568;
}
.admin-card-date[data-v-6e273660] {
  font-size: 12px;
  color: #718096;
}
.admin-card-title[data-v-6e273660] {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  line-height: 1.4;
}
.admin-card-excerpt[data-v-6e273660] {
  margin: 0 0 16px 0;
  color: #718096;
  font-size: 14px;
  line-height: 1.5;
}
.admin-card-meta[data-v-6e273660] {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.admin-meta-item[data-v-6e273660] {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #4a5568;
  background: #f7fafc;
  padding: 4px 8px;
  border-radius: 6px;
}
.admin-card-actions[data-v-6e273660] {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.admin-action-btn[data-v-6e273660] {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.admin-action-btn.admin-edit[data-v-6e273660] {
  background: #3182ce;
  color: white;
}
.admin-action-btn.admin-edit[data-v-6e273660]:hover {
  background: #2c5aa0;
}
.admin-action-btn.admin-toggle.admin-feature[data-v-6e273660] {
  background: #f59e0b;
  color: white;
}
.admin-action-btn.admin-toggle.admin-feature[data-v-6e273660]:hover {
  background: #d69e2e;
}
.admin-action-btn.admin-toggle.admin-unfeature[data-v-6e273660] {
  background: #e2e8f0;
  color: #4a5568;
}
.admin-action-btn.admin-toggle.admin-unfeature[data-v-6e273660]:hover {
  background: #cbd5e0;
}
.admin-action-btn.admin-delete[data-v-6e273660] {
  background: #e53e3e;
  color: white;
}
.admin-action-btn.admin-delete[data-v-6e273660]:hover {
  background: #c53030;
}
.project-card.featured[data-v-6e273660] {
  border: 2px solid #f39c12;
}

/* Removed unused image styles */
.featured-badge[data-v-6e273660] {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #f59e0b;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.project-content[data-v-6e273660] {
  padding: 20px;
}
.project-status[data-v-6e273660] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.status-badge[data-v-6e273660] {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.status-badge.featured[data-v-6e273660] {
  background: #fef3c7;
  color: #92400e;
}
.status-badge.normal[data-v-6e273660] {
  background: #e2e8f0;
  color: #4a5568;
}
.project-date[data-v-6e273660] {
  font-size: 12px;
  color: #718096;
}
.project-title[data-v-6e273660] {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  line-height: 1.4;
}
.project-excerpt[data-v-6e273660] {
  margin: 0 0 16px 0;
  color: #718096;
  font-size: 14px;
  line-height: 1.5;
}
.project-meta[data-v-6e273660] {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.meta-item[data-v-6e273660] {
  font-size: 12px;
  color: #4a5568;
  background: #f7fafc;
  padding: 4px 8px;
  border-radius: 6px;
}
.project-actions[data-v-6e273660] {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.action-btn[data-v-6e273660] {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.action-btn.edit[data-v-6e273660] {
  background: #3182ce;
  color: white;
}
.action-btn.edit[data-v-6e273660]:hover {
  background: #2c5aa0;
}
.action-btn.toggle.feature[data-v-6e273660] {
  background: #f59e0b;
  color: white;
}
.action-btn.toggle.feature[data-v-6e273660]:hover {
  background: #d69e2e;
}
.action-btn.toggle.unfeature[data-v-6e273660] {
  background: #e2e8f0;
  color: #4a5568;
}
.action-btn.toggle.unfeature[data-v-6e273660]:hover {
  background: #cbd5e0;
}
.action-btn.delete[data-v-6e273660] {
  background: #e53e3e;
  color: white;
}
.action-btn.delete[data-v-6e273660]:hover {
  background: #c53030;
}
.project-title[data-v-6e273660] {
  font-size: 18px;
  font-weight: bold;
  color: #2c3e50;
  margin: 0 0 10px 0;
  line-height: 1.3;
}
.project-description[data-v-6e273660] {
  color: #7f8c8d;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 15px 0;
}
.project-meta[data-v-6e273660] {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.meta-item[data-v-6e273660] {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #7f8c8d;
  background: #f8f9fa;
  padding: 4px 8px;
  border-radius: 4px;
}
.meta-item i[data-v-6e273660] {
  color: #3498db;
}
.project-dates[data-v-6e273660] {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.project-dates small[data-v-6e273660] {
  color: #bdc3c7;
  font-size: 11px;
}
.project-actions[data-v-6e273660] {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-card:hover .project-actions[data-v-6e273660] {
  opacity: 1;
}
.project-actions .btn[data-v-6e273660] {
  padding: 8px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s ease;
  color: white;
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-edit[data-v-6e273660] {
  background: #3498db;
}
.btn-edit[data-v-6e273660]:hover {
  background: #2980b9;
}
.btn-featured[data-v-6e273660] {
  background: #95a5a6;
}
.btn-featured.active[data-v-6e273660] {
  background: #f39c12;
}
.btn-featured[data-v-6e273660]:hover {
  background: #f39c12;
}
.btn-delete[data-v-6e273660] {
  background: #e74c3c;
}
.btn-delete[data-v-6e273660]:hover {
  background: #c0392b;
}

/* Empty State */
.empty-state[data-v-6e273660] {
  text-align: center;
  padding: 80px 20px;
  color: #7f8c8d;
}
.empty-state i[data-v-6e273660] {
  font-size: 64px;
  margin-bottom: 20px;
  color: #bdc3c7;
}
.empty-state h3[data-v-6e273660] {
  font-size: 24px;
  margin-bottom: 10px;
  color: #7f8c8d;
}

/* Pagination */
.pagination[data-v-6e273660] {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.btn-page[data-v-6e273660] {
  padding: 10px 15px;
  border: 2px solid #ddd;
  background: white;
  color: #7f8c8d;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}
.btn-page[data-v-6e273660]:hover:not(:disabled) {
  border-color: #3498db;
  color: #3498db;
}
.btn-page.active[data-v-6e273660] {
  background: #3498db;
  color: white;
  border-color: #3498db;
}
.btn-page[data-v-6e273660]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.page-numbers[data-v-6e273660] {
  display: flex;
  gap: 5px;
}

/* Buttons */
.btn[data-v-6e273660] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-create[data-v-6e273660] {
  background: #27ae60;
  color: white;
}
.btn-create[data-v-6e273660]:hover {
  background: #229954;
  transform: translateY(-1px);
}
.btn-submit[data-v-6e273660] {
  background: #3498db;
  color: white;
}
.btn-submit[data-v-6e273660]:hover:not(:disabled) {
  background: #2980b9;
}
.btn-submit[data-v-6e273660]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-cancel[data-v-6e273660] {
  background: #95a5a6;
  color: white;
}
.btn-cancel[data-v-6e273660]:hover {
  background: #7f8c8d;
}
.btn-close[data-v-6e273660] {
  background: none;
  color: #7f8c8d;
  padding: 5px;
  border-radius: 4px;
}
.btn-close[data-v-6e273660]:hover {
  background: #f8f9fa;
  color: #2c3e50;
}

/* Modal */
.modal-overlay[data-v-6e273660] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-content[data-v-6e273660] {
  background: white;
  border-radius: 15px;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.modal-header[data-v-6e273660] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid #eee;
}
.modal-header h2[data-v-6e273660] {
  margin: 0;
  color: #2c3e50;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-form[data-v-6e273660] {
  padding: 30px;
}
.form-grid[data-v-6e273660] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group[data-v-6e273660] {
  margin-bottom: 20px;
}
.form-group label[data-v-6e273660] {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
}
.form-group label.required[data-v-6e273660]::after {
  content: ' *';
  color: #e74c3c;
}
.form-group input[data-v-6e273660],
.form-group textarea[data-v-6e273660],
.form-group select[data-v-6e273660] {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}
.form-group input[data-v-6e273660]:focus,
.form-group textarea[data-v-6e273660]:focus,
.form-group select[data-v-6e273660]:focus {
  outline: none;
  border-color: #3498db;
}
.form-group textarea[data-v-6e273660] {
  resize: vertical;
  min-height: 100px;
}
.checkbox-group label[data-v-6e273660] {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 0;
}
.checkbox-group input[type="checkbox"][data-v-6e273660] {
  width: auto;
  margin: 0;
}
.checkmark[data-v-6e273660] {
  font-weight: normal;
}
.image-preview[data-v-6e273660] {
  margin-top: 10px;
  max-width: 200px;
}
.image-preview img[data-v-6e273660] {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid #ddd;
}
.modal-actions[data-v-6e273660] {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 768px) {
.admin-projects[data-v-6e273660] {
    padding: 15px;
}
.admin-header[data-v-6e273660] {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
}
.admin-filters[data-v-6e273660] {
    flex-direction: column;
    align-items: stretch;
}
.filter-actions[data-v-6e273660] {
    flex-direction: column;
}
.projects-grid[data-v-6e273660] {
    grid-template-columns: 1fr;
}
.form-grid[data-v-6e273660] {
    grid-template-columns: 1fr;
}
.modal-content[data-v-6e273660] {
    margin: 10px;
    max-height: calc(100vh - 20px);
}
.modal-header[data-v-6e273660],
  .modal-form[data-v-6e273660] {
    padding: 20px;
}
.modal-actions[data-v-6e273660] {
    flex-direction: column;
}
}
@media (max-width: 480px) {
.stats-grid[data-v-6e273660] {
    grid-template-columns: 1fr;
}
.pagination[data-v-6e273660] {
    flex-wrap: wrap;
    gap: 5px;
}
.page-numbers[data-v-6e273660] {
    order: 3;
    width: 100%;
    justify-content: center;
}
}


.admin-services[data-v-20f04b1e] {
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.admin-header[data-v-20f04b1e] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #eee;
}
.admin-title[data-v-20f04b1e] {
  font-size: 28px;
  color: #2c3e50;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-title i[data-v-20f04b1e] {
  color: #f39c12;
}

/* Statistics Cards */
.stats-grid[data-v-20f04b1e] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.stat-card[data-v-20f04b1e] {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat-card[data-v-20f04b1e]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.stat-icon[data-v-20f04b1e] {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #f39c12;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}
.stat-icon.active[data-v-20f04b1e] {
  background: #27ae60;
}
.stat-number[data-v-20f04b1e] {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 5px;
}
.stat-label[data-v-20f04b1e] {
  color: #7f8c8d;
  font-size: 14px;
}

/* Filters */
.admin-filters[data-v-20f04b1e] {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  align-items: center;
}
.search-box[data-v-20f04b1e] {
  position: relative;
  flex: 1;
  max-width: 400px;
}
.search-box i[data-v-20f04b1e] {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #7f8c8d;
}
.search-box input[data-v-20f04b1e] {
  width: 100%;
  padding: 12px 12px 12px 45px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}
.search-box input[data-v-20f04b1e]:focus {
  outline: none;
  border-color: #f39c12;
}
.filter-actions[data-v-20f04b1e] {
  display: flex;
  gap: 15px;
}
.filter-actions select[data-v-20f04b1e] {
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: white;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.filter-actions select[data-v-20f04b1e]:focus {
  outline: none;
  border-color: #f39c12;
}

/* Loading & Empty States */
.loading-state[data-v-20f04b1e], .empty-state[data-v-20f04b1e] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #7f8c8d;
}
.spinner[data-v-20f04b1e] {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #f39c12;
  border-radius: 50%;
  animation: spin-20f04b1e 1s linear infinite;
  margin-bottom: 20px;
}
@keyframes spin-20f04b1e {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
.empty-state i[data-v-20f04b1e] {
  font-size: 48px;
  color: #ddd;
  margin-bottom: 20px;
}

/* Services Grid */
.admin-services-grid[data-v-20f04b1e] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
}
.service-card[data-v-20f04b1e] {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card[data-v-20f04b1e]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.service-image[data-v-20f04b1e] {
  height: 150px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-image img[data-v-20f04b1e] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-icon[data-v-20f04b1e] {
  font-size: 48px;
  color: #f39c12;
}
.service-content[data-v-20f04b1e] {
  padding: 20px;
}
.service-header[data-v-20f04b1e] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.service-title[data-v-20f04b1e] {
  font-size: 18px;
  font-weight: bold;
  color: #2c3e50;
  margin: 0;
  flex: 1;
}
.service-title-en[data-v-20f04b1e] {
  font-size: 14px;
  color: #7f8c8d;
  margin: 5px 0 10px 0;
  font-style: italic;
}
.service-description[data-v-20f04b1e] {
  color: #5a6c7d;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.service-meta[data-v-20f04b1e] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #7f8c8d;
}
.service-status[data-v-20f04b1e] {
  padding: 4px 8px;
  border-radius: 4px;
  background: #e74c3c;
  color: white;
  font-size: 11px;
  font-weight: bold;
}
.service-status.active[data-v-20f04b1e] {
  background: #27ae60;
}
.service-actions[data-v-20f04b1e] {
  display: flex;
  gap: 5px;
}
.btn-status[data-v-20f04b1e], .btn-edit[data-v-20f04b1e], .btn-delete[data-v-20f04b1e] {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 12px;
}
.btn-status[data-v-20f04b1e] {
  background: #95a5a6;
  color: white;
}
.btn-status.active[data-v-20f04b1e] {
  background: #27ae60;
}
.btn-edit[data-v-20f04b1e] {
  background: #3498db;
  color: white;
}
.btn-delete[data-v-20f04b1e] {
  background: #e74c3c;
  color: white;
}
.btn-status[data-v-20f04b1e]:hover, .btn-edit[data-v-20f04b1e]:hover, .btn-delete[data-v-20f04b1e]:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

/* Buttons */
.btn[data-v-20f04b1e] {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-create[data-v-20f04b1e] {
  background: #27ae60;
  color: white;
}
.btn-create[data-v-20f04b1e]:hover {
  background: #219a52;
}
.btn-submit[data-v-20f04b1e] {
  background: #3498db;
  color: white;
}
.btn-submit[data-v-20f04b1e]:hover:not(:disabled) {
  background: #2980b9;
}
.btn-submit[data-v-20f04b1e]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-cancel[data-v-20f04b1e] {
  background: #95a5a6;
  color: white;
}
.btn-cancel[data-v-20f04b1e]:hover {
  background: #7f8c8d;
}

/* Modal Styles */
.modal-overlay[data-v-20f04b1e] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-content[data-v-20f04b1e] {
  background: white;
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-header[data-v-20f04b1e] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
}
.modal-header h2[data-v-20f04b1e] {
  margin: 0;
  color: #2c3e50;
}
.modal-close[data-v-20f04b1e] {
  background: none;
  border: none;
  font-size: 20px;
  color: #7f8c8d;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.modal-close[data-v-20f04b1e]:hover {
  background: #f8f9fa;
}
.modal-form[data-v-20f04b1e] {
  padding: 30px;
}
.form-row[data-v-20f04b1e] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group[data-v-20f04b1e] {
  display: flex;
  flex-direction: column;
}
.form-group label[data-v-20f04b1e] {
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
}
.form-group input[data-v-20f04b1e],
.form-group textarea[data-v-20f04b1e],
.form-group select[data-v-20f04b1e] {
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}
.form-group input[data-v-20f04b1e]:focus,
.form-group textarea[data-v-20f04b1e]:focus,
.form-group select[data-v-20f04b1e]:focus {
  outline: none;
  border-color: #f39c12;
}
.checkbox-group[data-v-20f04b1e] {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.checkbox-group input[type="checkbox"][data-v-20f04b1e] {
  width: auto;
  margin: 0;
}
.form-actions[data-v-20f04b1e] {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
.admin-services[data-v-20f04b1e] {
    padding: 15px;
}
.admin-header[data-v-20f04b1e] {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
}
.stats-grid[data-v-20f04b1e] {
    grid-template-columns: 1fr;
}
.admin-filters[data-v-20f04b1e] {
    flex-direction: column;
    align-items: stretch;
}
.search-box[data-v-20f04b1e] {
    max-width: none;
}
.admin-services-grid[data-v-20f04b1e] {
    grid-template-columns: 1fr;
}
.form-row[data-v-20f04b1e] {
    grid-template-columns: 1fr;
}
.modal-content[data-v-20f04b1e] {
    margin: 10px;
}
.modal-form[data-v-20f04b1e] {
    padding: 20px;
}
}


.admin-hero-slides[data-v-65b81709] {
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.admin-header[data-v-65b81709] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #eee;
}
.admin-title[data-v-65b81709] {
  font-size: 28px;
  color: #2c3e50;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-title i[data-v-65b81709] {
  color: #e74c3c;
}

/* Statistics Cards */
.stats-grid[data-v-65b81709] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.stat-card[data-v-65b81709] {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat-card[data-v-65b81709]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.stat-icon[data-v-65b81709] {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #e74c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}
.stat-icon.active[data-v-65b81709] {
  background: #27ae60;
}
.stat-number[data-v-65b81709] {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 5px;
}
.stat-label[data-v-65b81709] {
  color: #7f8c8d;
  font-size: 14px;
}

/* Filters - same as AdminServices */
.admin-filters[data-v-65b81709] {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  align-items: center;
}
.search-box[data-v-65b81709] {
  position: relative;
  flex: 1;
  max-width: 400px;
}
.search-box i[data-v-65b81709] {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #7f8c8d;
}
.search-box input[data-v-65b81709] {
  width: 100%;
  padding: 12px 12px 12px 45px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}
.search-box input[data-v-65b81709]:focus {
  outline: none;
  border-color: #e74c3c;
}
.filter-actions[data-v-65b81709] {
  display: flex;
  gap: 15px;
}
.filter-actions select[data-v-65b81709] {
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: white;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.filter-actions select[data-v-65b81709]:focus {
  outline: none;
  border-color: #e74c3c;
}

/* Loading & Empty States - same as AdminServices */
.loading-state[data-v-65b81709], .empty-state[data-v-65b81709] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #7f8c8d;
}
.spinner[data-v-65b81709] {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #e74c3c;
  border-radius: 50%;
  animation: spin-65b81709 1s linear infinite;
  margin-bottom: 20px;
}
@keyframes spin-65b81709 {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
.empty-state i[data-v-65b81709] {
  font-size: 48px;
  color: #ddd;
  margin-bottom: 20px;
}

/* Slides Grid */
.admin-slides-grid[data-v-65b81709] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 20px;
}
.slide-card[data-v-65b81709] {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.slide-card[data-v-65b81709]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.slide-image[data-v-65b81709] {
  height: 200px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.slide-image img[data-v-65b81709] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slide-placeholder[data-v-65b81709] {
  font-size: 48px;
  color: #e74c3c;
}
.slide-content[data-v-65b81709] {
  padding: 20px;
}
.slide-header[data-v-65b81709] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.slide-title[data-v-65b81709] {
  font-size: 18px;
  font-weight: bold;
  color: #2c3e50;
  margin: 0;
  flex: 1;
}
.slide-title-en[data-v-65b81709] {
  font-size: 14px;
  color: #7f8c8d;
  margin: 5px 0 10px 0;
  font-style: italic;
}
.slide-description[data-v-65b81709] {
  color: #5a6c7d;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.slide-meta[data-v-65b81709] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #7f8c8d;
  flex-wrap: wrap;
  gap: 8px;
}
.slide-button[data-v-65b81709] {
  background: #e74c3c;
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 11px;
}
.slide-status[data-v-65b81709] {
  padding: 4px 8px;
  border-radius: 4px;
  background: #e74c3c;
  color: white;
  font-size: 11px;
  font-weight: bold;
}
.slide-status.active[data-v-65b81709] {
  background: #27ae60;
}
.slide-actions[data-v-65b81709] {
  display: flex;
  gap: 5px;
}
.btn-status[data-v-65b81709], .btn-edit[data-v-65b81709], .btn-delete[data-v-65b81709] {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 12px;
}
.btn-status[data-v-65b81709] {
  background: #95a5a6;
  color: white;
}
.btn-status.active[data-v-65b81709] {
  background: #27ae60;
}
.btn-edit[data-v-65b81709] {
  background: #3498db;
  color: white;
}
.btn-delete[data-v-65b81709] {
  background: #e74c3c;
  color: white;
}
.btn-status[data-v-65b81709]:hover, .btn-edit[data-v-65b81709]:hover, .btn-delete[data-v-65b81709]:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

/* Buttons - same as AdminServices */
.btn[data-v-65b81709] {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-create[data-v-65b81709] {
  background: #27ae60;
  color: white;
}
.btn-create[data-v-65b81709]:hover {
  background: #219a52;
}
.btn-submit[data-v-65b81709] {
  background: #3498db;
  color: white;
}
.btn-submit[data-v-65b81709]:hover:not(:disabled) {
  background: #2980b9;
}
.btn-submit[data-v-65b81709]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-cancel[data-v-65b81709] {
  background: #95a5a6;
  color: white;
}
.btn-cancel[data-v-65b81709]:hover {
  background: #7f8c8d;
}

/* Modal Styles - same as AdminServices */
.modal-overlay[data-v-65b81709] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-content[data-v-65b81709] {
  background: white;
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-header[data-v-65b81709] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
}
.modal-header h2[data-v-65b81709] {
  margin: 0;
  color: #2c3e50;
}
.modal-close[data-v-65b81709] {
  background: none;
  border: none;
  font-size: 20px;
  color: #7f8c8d;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.modal-close[data-v-65b81709]:hover {
  background: #f8f9fa;
}
.modal-form[data-v-65b81709] {
  padding: 30px;
}
.form-row[data-v-65b81709] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group[data-v-65b81709] {
  display: flex;
  flex-direction: column;
}
.form-group label[data-v-65b81709] {
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
}
.form-group input[data-v-65b81709],
.form-group textarea[data-v-65b81709],
.form-group select[data-v-65b81709] {
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}
.form-group input[data-v-65b81709]:focus,
.form-group textarea[data-v-65b81709]:focus,
.form-group select[data-v-65b81709]:focus {
  outline: none;
  border-color: #e74c3c;
}
.checkbox-group[data-v-65b81709] {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.checkbox-group input[type="checkbox"][data-v-65b81709] {
  width: auto;
  margin: 0;
}
.form-actions[data-v-65b81709] {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
.admin-hero-slides[data-v-65b81709] {
    padding: 15px;
}
.admin-header[data-v-65b81709] {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
}
.stats-grid[data-v-65b81709] {
    grid-template-columns: 1fr;
}
.admin-filters[data-v-65b81709] {
    flex-direction: column;
    align-items: stretch;
}
.search-box[data-v-65b81709] {
    max-width: none;
}
.admin-slides-grid[data-v-65b81709] {
    grid-template-columns: 1fr;
}
.form-row[data-v-65b81709] {
    grid-template-columns: 1fr;
}
.modal-content[data-v-65b81709] {
    margin: 10px;
}
.modal-form[data-v-65b81709] {
    padding: 20px;
}
}


/* Container */
.admin-about[data-v-7ba048bf] {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.admin-header[data-v-7ba048bf] {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-title[data-v-7ba048bf] {
  font-size: 32px;
  color: #2c3e50;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
.admin-title i[data-v-7ba048bf] {
  color: #e74c3c;
}

/* Loading */
.loading-state[data-v-7ba048bf] {
  text-align: center;
  padding: 60px 20px;
  color: #7f8c8d;
}
.spinner[data-v-7ba048bf] {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin-7ba048bf 1s linear infinite;
  margin: 0 auto 20px;
}
@keyframes spin-7ba048bf {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}

/* No Cards */
.no-cards[data-v-7ba048bf] {
  text-align: center;
  padding: 60px 20px;
  color: #7f8c8d;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.no-cards i[data-v-7ba048bf] {
  font-size: 48px;
  color: #bdc3c7;
  margin-bottom: 20px;
}

/* Cards Container */
.cards-container[data-v-7ba048bf] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card Item */
.card-item[data-v-7ba048bf] {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}
.card-header[data-v-7ba048bf] {
  padding: 20px;
  background: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-header h3[data-v-7ba048bf] {
  margin: 0;
  font-size: 18px;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-type-badge[data-v-7ba048bf] {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
}
.card-type-badge.mission[data-v-7ba048bf] { background: #e3f2fd; color: #1976d2;
}
.card-type-badge.vision[data-v-7ba048bf] { background: #f3e5f5; color: #7b1fa2;
}
.card-type-badge.values[data-v-7ba048bf] { background: #e8f5e8; color: #388e3c;
}
.card-type-badge.about[data-v-7ba048bf] { background: #fff3e0; color: #f57c00;
}
.card-type-badge.team[data-v-7ba048bf] { background: #fce4ec; color: #c2185b;
}
.card-type-badge.history[data-v-7ba048bf] { background: #f1f8e9; color: #689f38;
}
.card-type-badge.other[data-v-7ba048bf] { background: #f5f5f5; color: #616161;
}
.card-actions[data-v-7ba048bf] {
  display: flex;
  gap: 10px;
}

/* Card Form */
.card-form[data-v-7ba048bf] {
  padding: 30px;
}
.form-section[data-v-7ba048bf] {
  margin-bottom: 20px;
}
.status-toggle[data-v-7ba048bf] {
  margin-bottom: 20px;
}
.status-toggle label[data-v-7ba048bf] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #2c3e50;
  cursor: pointer;
}
.status-toggle input[type="checkbox"][data-v-7ba048bf] {
  transform: scale(1.2);
}
.form-row[data-v-7ba048bf] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group[data-v-7ba048bf] {
  display: flex;
  flex-direction: column;
}
.form-group label[data-v-7ba048bf] {
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
}
.form-group input[data-v-7ba048bf],
.form-group textarea[data-v-7ba048bf],
.form-group select[data-v-7ba048bf] {
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s ease;
  font-family: inherit;
  resize: vertical;
}
.form-group input[data-v-7ba048bf]:focus,
.form-group textarea[data-v-7ba048bf]:focus,
.form-group select[data-v-7ba048bf]:focus {
  outline: none;
  border-color: #e74c3c;
}
.form-help[data-v-7ba048bf] {
  margin-top: 5px;
  font-size: 12px;
  color: #7f8c8d;
}

/* Image Preview */
.image-preview[data-v-7ba048bf] {
  margin-top: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.image-preview img[data-v-7ba048bf] {
  width: 100%;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Form Actions */
.form-actions[data-v-7ba048bf] {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

/* Buttons */
.btn[data-v-7ba048bf] {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-add[data-v-7ba048bf] {
  background: #27ae60;
  color: white;
}
.btn-add[data-v-7ba048bf]:hover {
  background: #219a52;
  transform: translateY(-1px);
}
.btn-toggle[data-v-7ba048bf] {
  background: #3498db;
  color: white;
  padding: 8px 12px;
}
.btn-toggle[data-v-7ba048bf]:hover {
  background: #2980b9;
}
.btn-delete[data-v-7ba048bf] {
  background: #e74c3c;
  color: white;
  padding: 8px 12px;
}
.btn-delete[data-v-7ba048bf]:hover:not(:disabled) {
  background: #c0392b;
}
.btn-submit[data-v-7ba048bf] {
  background: #27ae60;
  color: white;
  padding: 15px 30px;
  font-size: 16px;
}
.btn-submit[data-v-7ba048bf]:hover:not(:disabled) {
  background: #219a52;
  transform: translateY(-1px);
}
.btn[data-v-7ba048bf]:disabled {
  background: #95a5a6;
  cursor: not-allowed;
  transform: none;
}

/* Responsive */
@media (max-width: 768px) {
.admin-about[data-v-7ba048bf] {
    padding: 15px;
}
.admin-header[data-v-7ba048bf] {
    flex-direction: column;
    gap: 20px;
    text-align: center;
}
.admin-title[data-v-7ba048bf] {
    font-size: 24px;
}
.card-form[data-v-7ba048bf] {
    padding: 20px;
}
.form-row[data-v-7ba048bf] {
    grid-template-columns: 1fr;
    gap: 15px;
}
.card-header[data-v-7ba048bf] {
    flex-direction: column;
    gap: 15px;
    text-align: center;
}
}


/* Container */
.admin-statistics[data-v-3f869521] {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.admin-header[data-v-3f869521] {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-title[data-v-3f869521] {
  font-size: 32px;
  color: #2c3e50;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
.admin-title i[data-v-3f869521] {
  color: #3498db;
}
.header-actions[data-v-3f869521] {
  display: flex;
  gap: 10px;
}

/* Statistics Summary */
.stats-summary[data-v-3f869521] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.stat-card[data-v-3f869521] {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}
.stat-icon[data-v-3f869521] {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ecf0f1;
  color: #7f8c8d;
}
.stat-icon.active[data-v-3f869521] {
  background: #d4edda;
  color: #27ae60;
}
.stat-icon.inactive[data-v-3f869521] {
  background: #f8d7da;
  color: #e74c3c;
}
.stat-number[data-v-3f869521] {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
}
.stat-label[data-v-3f869521] {
  font-size: 14px;
  color: #7f8c8d;
}

/* Filter Actions */
.filter-actions[data-v-3f869521] {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.btn-filter[data-v-3f869521] {
  background: #ecf0f1;
  color: #7f8c8d;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-filter[data-v-3f869521]:hover {
  background: #bdc3c7;
  color: #2c3e50;
}
.btn-filter.active[data-v-3f869521] {
  background: #3498db;
  color: white;
}

/* Loading */
.loading-state[data-v-3f869521] {
  text-align: center;
  padding: 60px 20px;
  color: #7f8c8d;
}
.spinner[data-v-3f869521] {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin-3f869521 1s linear infinite;
  margin: 0 auto 20px;
}
@keyframes spin-3f869521 {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}

/* No Statistics */
.no-statistics[data-v-3f869521] {
  text-align: center;
  padding: 60px 20px;
  color: #7f8c8d;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.no-statistics i[data-v-3f869521] {
  font-size: 48px;
  color: #bdc3c7;
  margin-bottom: 20px;
}

/* Statistics Container */
.statistics-container[data-v-3f869521] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Statistic Item */
.statistic-item[data-v-3f869521] {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}
.statistic-header[data-v-3f869521] {
  padding: 20px;
  background: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.statistic-info h3[data-v-3f869521] {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: #2c3e50;
}
.statistic-meta[data-v-3f869521] {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.statistic-value[data-v-3f869521] {
  font-size: 20px;
  font-weight: bold;
  color: #3498db;
}
.statistic-status[data-v-3f869521] {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.statistic-status.active[data-v-3f869521] {
  background: #d4edda;
  color: #155724;
}
.statistic-status.inactive[data-v-3f869521] {
  background: #f8d7da;
  color: #721c24;
}
.statistic-order[data-v-3f869521] {
  font-size: 12px;
  color: #6c757d;
}
.statistic-actions[data-v-3f869521] {
  display: flex;
  gap: 10px;
}

/* Statistic Form */
.statistic-form[data-v-3f869521] {
  padding: 30px;
}
.form-section[data-v-3f869521] {
  margin-bottom: 20px;
}
.status-toggle[data-v-3f869521] {
  margin-top: 8px;
}
.toggle-label[data-v-3f869521] {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #2c3e50;
  cursor: pointer;
  padding: 8px 0;
}
.toggle-label input[type="checkbox"][data-v-3f869521] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.toggle-text[data-v-3f869521] {
  font-size: 14px;
  font-weight: 500;
}
.form-row[data-v-3f869521] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group[data-v-3f869521] {
  display: flex;
  flex-direction: column;
}
.form-group label[data-v-3f869521] {
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
}
.form-group input[data-v-3f869521],
.form-group textarea[data-v-3f869521],
.form-group select[data-v-3f869521] {
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s ease;
  font-family: inherit;
}
.form-group input[data-v-3f869521]:focus,
.form-group textarea[data-v-3f869521]:focus,
.form-group select[data-v-3f869521]:focus {
  outline: none;
  border-color: #3498db;
}
.form-help[data-v-3f869521] {
  margin-top: 5px;
  font-size: 12px;
  color: #7f8c8d;
}
.form-help a[data-v-3f869521] {
  color: #3498db;
  text-decoration: none;
  margin-left: 5px;
}
.form-help a[data-v-3f869521]:hover {
  text-decoration: underline;
}

/* Icon Preview */
.icon-preview[data-v-3f869521] {
  margin-top: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 2px dashed #dee2e6;
}
.preview-item[data-v-3f869521] {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 200px;
  margin: 0 auto;
}
.preview-item i[data-v-3f869521] {
  font-size: 32px;
  color: #3498db;
}
.preview-item span[data-v-3f869521] {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
}
.preview-item small[data-v-3f869521] {
  font-size: 12px;
  color: #7f8c8d;
}

/* Form Actions */
.form-actions[data-v-3f869521] {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

/* Buttons */
.btn[data-v-3f869521] {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-calculate[data-v-3f869521] {
  background: #f39c12;
  color: white;
}
.btn-calculate[data-v-3f869521]:hover:not(:disabled) {
  background: #e67e22;
  transform: translateY(-1px);
}
.btn-add[data-v-3f869521] {
  background: #27ae60;
  color: white;
}
.btn-add[data-v-3f869521]:hover {
  background: #219a52;
  transform: translateY(-1px);
}
.btn-toggle[data-v-3f869521] {
  background: #3498db;
  color: white;
  padding: 8px 12px;
}
.btn-toggle[data-v-3f869521]:hover {
  background: #2980b9;
}
.btn-delete[data-v-3f869521] {
  background: #e74c3c;
  color: white;
  padding: 8px 12px;
}
.btn-delete[data-v-3f869521]:hover:not(:disabled) {
  background: #c0392b;
}
.btn-submit[data-v-3f869521] {
  background: #3498db;
  color: white;
  padding: 15px 30px;
  font-size: 16px;
}
.btn-submit[data-v-3f869521]:hover:not(:disabled) {
  background: #2980b9;
  transform: translateY(-1px);
}
.btn[data-v-3f869521]:disabled {
  background: #95a5a6;
  cursor: not-allowed;
  transform: none;
}

/* Responsive */
@media (max-width: 768px) {
.admin-statistics[data-v-3f869521] {
    padding: 15px;
}
.admin-header[data-v-3f869521] {
    flex-direction: column;
    gap: 20px;
    text-align: center;
}
.admin-title[data-v-3f869521] {
    font-size: 24px;
}
.stats-summary[data-v-3f869521] {
    grid-template-columns: 1fr;
}
.statistic-form[data-v-3f869521] {
    padding: 20px;
}
.form-row[data-v-3f869521] {
    grid-template-columns: 1fr;
    gap: 15px;
}
.statistic-header[data-v-3f869521] {
    flex-direction: column;
    gap: 15px;
    text-align: center;
}
.statistic-meta[data-v-3f869521] {
    justify-content: center;
}
.filter-actions[data-v-3f869521] {
    justify-content: center;
}
}


.admin-machinery[data-v-6f53cf4c] {
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.admin-header[data-v-6f53cf4c] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #eee;
}
.admin-title[data-v-6f53cf4c] {
  font-size: 28px;
  color: #2c3e50;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.admin-title i[data-v-6f53cf4c] {
  color: #e74c3c;
}

/* Stats Grid */
.stats-grid[data-v-6f53cf4c] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.stat-card[data-v-6f53cf4c] {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}
.stat-icon[data-v-6f53cf4c] {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #95a5a6;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.stat-icon.active[data-v-6f53cf4c] {
  background: #27ae60;
}
.stat-number[data-v-6f53cf4c] {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  margin: 0;
}
.stat-label[data-v-6f53cf4c] {
  font-size: 14px;
  color: #7f8c8d;
  margin: 0;
}

/* Filters */
.admin-filters[data-v-6f53cf4c] {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: center;
}
.search-box[data-v-6f53cf4c] {
  position: relative;
  flex: 1;
  max-width: 400px;
}
.search-box i[data-v-6f53cf4c] {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #7f8c8d;
}
.search-box input[data-v-6f53cf4c] {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}
.filter-select[data-v-6f53cf4c] {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  font-size: 14px;
  min-width: 150px;
}

/* Loading & Empty States */
.loading-state[data-v-6f53cf4c], .empty-state[data-v-6f53cf4c] {
  text-align: center;
  padding: 60px 20px;
  color: #7f8c8d;
}
.spinner[data-v-6f53cf4c] {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #e74c3c;
  border-radius: 50%;
  animation: spin-6f53cf4c 1s linear infinite;
  margin: 0 auto 20px;
}
@keyframes spin-6f53cf4c {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
.empty-state i[data-v-6f53cf4c] {
  font-size: 48px;
  color: #ddd;
  margin-bottom: 20px;
}

/* Machinery Grid */
.admin-machinery-grid[data-v-6f53cf4c] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 20px;
}
.machinery-card[data-v-6f53cf4c] {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease;
}
.machinery-card[data-v-6f53cf4c]:hover {
  transform: translateY(-2px);
}
.machinery-image[data-v-6f53cf4c] {
  height: 200px;
  overflow: hidden;
}
.machinery-image img[data-v-6f53cf4c] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.machinery-info[data-v-6f53cf4c] {
  padding: 20px;
}
.machinery-brand[data-v-6f53cf4c] {
  background: #e74c3c;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}
.machinery-name[data-v-6f53cf4c] {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 5px 0;
}
.machinery-name-en[data-v-6f53cf4c] {
  font-size: 14px;
  color: #7f8c8d;
  margin: 0 0 15px 0;
  font-style: italic;
}
.machinery-specs[data-v-6f53cf4c] {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}
.spec-item[data-v-6f53cf4c] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #5a6c7d;
}
.spec-item i[data-v-6f53cf4c] {
  color: #e74c3c;
  width: 12px;
}
.machinery-meta[data-v-6f53cf4c] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.machinery-status[data-v-6f53cf4c] {
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}
.machinery-status.active[data-v-6f53cf4c] {
  background: #d5f4e6;
  color: #27ae60;
}
.machinery-status.inactive[data-v-6f53cf4c] {
  background: #fadbd8;
  color: #e74c3c;
}
.machinery-order[data-v-6f53cf4c] {
  color: #7f8c8d;
}
.machinery-actions[data-v-6f53cf4c] {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 5px;
}
.btn-status[data-v-6f53cf4c], .btn-edit[data-v-6f53cf4c], .btn-delete[data-v-6f53cf4c] {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 12px;
}
.btn-status[data-v-6f53cf4c] {
  background: #95a5a6;
  color: white;
}
.btn-status.active[data-v-6f53cf4c] {
  background: #27ae60;
}
.btn-status.inactive[data-v-6f53cf4c] {
  background: #95a5a6;
}
.btn-edit[data-v-6f53cf4c] {
  background: #3498db;
  color: white;
}
.btn-delete[data-v-6f53cf4c] {
  background: #e74c3c;
  color: white;
}
.btn-status[data-v-6f53cf4c]:hover, .btn-edit[data-v-6f53cf4c]:hover, .btn-delete[data-v-6f53cf4c]:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

/* Modal Styles */
.modal-overlay[data-v-6f53cf4c] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-content[data-v-6f53cf4c] {
  background: white;
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-header[data-v-6f53cf4c] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
}
.modal-header h2[data-v-6f53cf4c] {
  margin: 0;
  color: #2c3e50;
}
.modal-close[data-v-6f53cf4c] {
  background: none;
  border: none;
  font-size: 20px;
  color: #7f8c8d;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.modal-close[data-v-6f53cf4c]:hover {
  background: #f8f9fa;
}
.modal-form[data-v-6f53cf4c] {
  padding: 30px;
}
.form-row[data-v-6f53cf4c] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group[data-v-6f53cf4c] {
  display: flex;
  flex-direction: column;
}
.form-group label[data-v-6f53cf4c] {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 14px;
}
.form-group input[data-v-6f53cf4c],
.form-group textarea[data-v-6f53cf4c],
.form-group select[data-v-6f53cf4c] {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}
.form-group input[data-v-6f53cf4c]:focus,
.form-group textarea[data-v-6f53cf4c]:focus,
.form-group select[data-v-6f53cf4c]:focus {
  outline: none;
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}
.form-group input[type="checkbox"][data-v-6f53cf4c] {
  width: auto;
  margin: 0;
}
.form-actions[data-v-6f53cf4c] {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

/* Buttons */
.btn[data-v-6f53cf4c] {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-create[data-v-6f53cf4c] {
  background: #27ae60;
  color: white;
}
.btn-primary[data-v-6f53cf4c] {
  background: #e74c3c;
  color: white;
}
.btn-cancel[data-v-6f53cf4c] {
  background: #95a5a6;
  color: white;
}
.btn[data-v-6f53cf4c]:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.btn[data-v-6f53cf4c]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
.admin-machinery[data-v-6f53cf4c] {
    padding: 15px;
}
.admin-header[data-v-6f53cf4c] {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
}
.stats-grid[data-v-6f53cf4c] {
    grid-template-columns: 1fr;
}
.admin-filters[data-v-6f53cf4c] {
    flex-direction: column;
    align-items: stretch;
}
.search-box[data-v-6f53cf4c] {
    max-width: none;
}
.admin-machinery-grid[data-v-6f53cf4c] {
    grid-template-columns: 1fr;
}
.form-row[data-v-6f53cf4c] {
    grid-template-columns: 1fr;
}
.modal-content[data-v-6f53cf4c] {
    margin: 10px;
}
.modal-form[data-v-6f53cf4c] {
    padding: 20px;
}
}

/* Multi-Image Styles */
.image-gallery[data-v-6f53cf4c] {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}
.main-image[data-v-6f53cf4c] {
  position: relative;
  width: 100%;
  height: 100%;
}
.main-image img[data-v-6f53cf4c] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-count[data-v-6f53cf4c] {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.no-image[data-v-6f53cf4c] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #f8f9fa;
  color: #6c757d;
  border: 2px dashed #dee2e6;
}
.no-image i[data-v-6f53cf4c] {
  font-size: 24px;
  margin-bottom: 8px;
}
.multi-image-section[data-v-6f53cf4c] {
  margin-bottom: 30px;
}
.image-upload-area[data-v-6f53cf4c] {
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 15px;
}
.image-upload-area[data-v-6f53cf4c]:hover,
.image-upload-area.drag-over[data-v-6f53cf4c] {
  border-color: #e74c3c;
  background: #fef5f5;
}
.upload-content i[data-v-6f53cf4c] {
  font-size: 48px;
  color: #6c757d;
  margin-bottom: 15px;
}
.upload-content p[data-v-6f53cf4c] {
  font-size: 16px;
  color: #495057;
  margin-bottom: 5px;
}
.upload-content small[data-v-6f53cf4c] {
  color: #6c757d;
}
.url-input-section[data-v-6f53cf4c] {
  margin-bottom: 20px;
}
.url-input-row[data-v-6f53cf4c] {
  display: flex;
  gap: 10px;
}
.url-input-row input[data-v-6f53cf4c] {
  flex: 1;
}
.btn-add-url[data-v-6f53cf4c] {
  background: #17a2b8;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-add-url[data-v-6f53cf4c]:hover {
  background: #138496;
}
.image-preview-grid[data-v-6f53cf4c] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.image-preview-item[data-v-6f53cf4c] {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #dee2e6;
  transition: all 0.2s ease;
}
.image-preview-item.primary[data-v-6f53cf4c] {
  border-color: #ffc107;
  box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.2);
}
.image-preview-item img[data-v-6f53cf4c] {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-actions[data-v-6f53cf4c] {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.image-preview-item:hover .image-actions[data-v-6f53cf4c] {
  opacity: 1;
}
.image-actions button[data-v-6f53cf4c] {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.2s ease;
}
.btn-primary[data-v-6f53cf4c] {
  background: #ffc107;
  color: #212529;
}
.btn-move[data-v-6f53cf4c] {
  background: #6c757d;
  color: white;
}
.btn-remove[data-v-6f53cf4c] {
  background: #dc3545;
  color: white;
}
.image-actions button[data-v-6f53cf4c]:hover {
  transform: scale(1.1);
}
.image-actions button[data-v-6f53cf4c]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.primary-badge[data-v-6f53cf4c] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ffc107, #ff8c42);
  color: #212529;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Image Library Styles */
.image-actions-bar[data-v-6f53cf4c] {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.btn-library[data-v-6f53cf4c],
.btn-url[data-v-6f53cf4c],
.btn-upload[data-v-6f53cf4c] {
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.btn-library[data-v-6f53cf4c] {
  background: #17a2b8;
  color: white;
}
.btn-url[data-v-6f53cf4c] {
  background: #6c757d;
  color: white;
}
.btn-upload[data-v-6f53cf4c] {
  background: #28a745;
  color: white;
}
.btn-library[data-v-6f53cf4c]:hover,
.btn-url[data-v-6f53cf4c]:hover,
.btn-upload[data-v-6f53cf4c]:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.image-library-modal[data-v-6f53cf4c] {
  max-width: 1000px;
  max-height: 80vh;
}
.library-content[data-v-6f53cf4c] {
  padding: 20px;
}
.library-filters[data-v-6f53cf4c] {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}
.library-filters .search-box[data-v-6f53cf4c] {
  flex: 1;
  position: relative;
}
.library-filters .search-box i[data-v-6f53cf4c] {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
}
.library-filters .search-box input[data-v-6f53cf4c] {
  width: 100%;
  padding: 10px 10px 10px 35px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}
.library-images-container[data-v-6f53cf4c] {
  max-height: 400px;
  margin-bottom: 20px;
}
.library-images-grid[data-v-6f53cf4c] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  max-height: 400px;
  overflow-y: auto;
  padding: 10px;
  scroll-behavior: smooth;
}
.loading-more[data-v-6f53cf4c] {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  color: #6c757d;
  font-size: 14px;
}
.spinner-small[data-v-6f53cf4c] {
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #007bff;
  border-radius: 50%;
  animation: spin-6f53cf4c 1s linear infinite;
}
.library-image-item[data-v-6f53cf4c] {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 3px solid transparent;
}
.library-image-item[data-v-6f53cf4c]:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.library-image-item.selected[data-v-6f53cf4c] {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.library-image-item img[data-v-6f53cf4c] {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s ease;
  background-color: #f8f9fa;
}
.library-image-item img[loading="lazy"][data-v-6f53cf4c] {
  opacity: 0;
}
.library-image-item img[loading="lazy"][data-v-6f53cf4c]:not([src=""]) {
  opacity: 1;
}
.image-overlay[data-v-6f53cf4c] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.2s ease;
  padding: 10px;
}
.library-image-item:hover .image-overlay[data-v-6f53cf4c],
.library-image-item.selected .image-overlay[data-v-6f53cf4c] {
  opacity: 1;
}
.image-info[data-v-6f53cf4c] {
  margin-top: auto;
}
.image-name[data-v-6f53cf4c] {
  display: block;
  color: white;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 2px;
  word-break: break-word;
}
.image-size[data-v-6f53cf4c] {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
}
.selection-indicator[data-v-6f53cf4c] {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #28a745;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.library-image-item.selected .selection-indicator[data-v-6f53cf4c] {
  opacity: 1;
}
.library-progress[data-v-6f53cf4c] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 10px 15px;
  background: #f8f9fa;
  border-radius: 6px;
  font-size: 13px;
  color: #6c757d;
}
.progress-info[data-v-6f53cf4c] {
  font-weight: 500;
}
.all-loaded[data-v-6f53cf4c] {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #28a745;
  font-weight: 500;
}
.all-loaded i[data-v-6f53cf4c] {
  font-size: 14px;
}
.library-actions[data-v-6f53cf4c] {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

/* Upload Modal Styles */
.upload-modal[data-v-6f53cf4c] {
  max-width: 600px;
}
.upload-form[data-v-6f53cf4c] {
  padding: 20px;
}
.upload-drop-zone[data-v-6f53cf4c] {
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 20px;
}
.upload-drop-zone[data-v-6f53cf4c]:hover,
.upload-drop-zone.drag-over[data-v-6f53cf4c] {
  border-color: #28a745;
  background: #f8fff9;
}
.upload-drop-zone .upload-content i[data-v-6f53cf4c] {
  font-size: 48px;
  color: #6c757d;
  margin-bottom: 15px;
}
.upload-drop-zone .upload-content p[data-v-6f53cf4c] {
  font-size: 16px;
  color: #495057;
  margin-bottom: 5px;
}
.upload-drop-zone .upload-content small[data-v-6f53cf4c] {
  color: #6c757d;
}
.file-preview[data-v-6f53cf4c] {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
}
.file-preview img[data-v-6f53cf4c] {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.file-info[data-v-6f53cf4c] {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.file-info strong[data-v-6f53cf4c] {
  color: #2c3e50;
}
.file-info span[data-v-6f53cf4c] {
  color: #6c757d;
  font-size: 14px;
}
.btn-secondary[data-v-6f53cf4c] {
  background: #6c757d;
  color: white;
}
.btn-primary[data-v-6f53cf4c] {
  background: #007bff;
  color: white;
}


.admin-info-cards[data-v-06fc128e] {
  padding: 20px;
}
.admin-header[data-v-06fc128e] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.admin-header h2[data-v-06fc128e] {
  margin: 0;
  color: #333;
}
.admin-filters[data-v-06fc128e] {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}
.filter-group[data-v-06fc128e] {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.filter-group label[data-v-06fc128e] {
  font-weight: 500;
  color: #555;
  font-size: 14px;
}
.filter-group select[data-v-06fc128e] {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
}
.admin-stats[data-v-06fc128e] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.stat-card[data-v-06fc128e] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.stat-card h3[data-v-06fc128e] {
  font-size: 2rem;
  margin: 0 0 5px 0;
  font-weight: bold;
}
.stat-card p[data-v-06fc128e] {
  margin: 0;
  opacity: 0.9;
  font-size: 14px;
}
.loading[data-v-06fc128e] {
  text-align: center;
  padding: 40px;
  color: #666;
}
.admin-table-container[data-v-06fc128e] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.admin-table[data-v-06fc128e] {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th[data-v-06fc128e],
.admin-table td[data-v-06fc128e] {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.admin-table th[data-v-06fc128e] {
  background: #f8f9fa;
  font-weight: 500;
  color: #555;
  font-size: 14px;
}
.admin-table tr[data-v-06fc128e]:hover {
  background: #f8f9fa;
}
.card-type-badge[data-v-06fc128e] {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.card-type-badge.yellow-card[data-v-06fc128e] {
  background: #fff3cd;
  color: #856404;
}
.card-type-badge.black-card[data-v-06fc128e] {
  background: #d1ecf1;
  color: #0c5460;
}
.card-type-badge.image-card[data-v-06fc128e] {
  background: #d4edda;
  color: #155724;
}
.status-badge[data-v-06fc128e] {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}
.status-active[data-v-06fc128e] {
  background: #d4edda;
  color: #155724;
}
.status-inactive[data-v-06fc128e] {
  background: #f8d7da;
  color: #721c24;
}
.actions[data-v-06fc128e] {
  display: flex;
  gap: 5px;
}
.btn[data-v-06fc128e] {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
}
.btn-primary[data-v-06fc128e] {
  background: #007bff;
  color: white;
}
.btn-primary[data-v-06fc128e]:hover {
  background: #0056b3;
}
.btn-secondary[data-v-06fc128e] {
  background: #6c757d;
  color: white;
}
.btn-secondary[data-v-06fc128e]:hover {
  background: #545b62;
}
.btn-success[data-v-06fc128e] {
  background: #28a745;
  color: white;
}
.btn-success[data-v-06fc128e]:hover {
  background: #1e7e34;
}
.btn-warning[data-v-06fc128e] {
  background: #ffc107;
  color: #212529;
}
.btn-warning[data-v-06fc128e]:hover {
  background: #e0a800;
}
.btn-danger[data-v-06fc128e] {
  background: #dc3545;
  color: white;
}
.btn-danger[data-v-06fc128e]:hover {
  background: #c82333;
}
.btn-sm[data-v-06fc128e] {
  padding: 6px 12px;
  font-size: 12px;
}
.modal-overlay[data-v-06fc128e] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal-content[data-v-06fc128e] {
  background: white;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-header[data-v-06fc128e] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.modal-header h3[data-v-06fc128e] {
  margin: 0;
  color: #333;
}
.close-btn[data-v-06fc128e] {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.close-btn[data-v-06fc128e]:hover {
  color: #333;
}
.card-form[data-v-06fc128e] {
  padding: 20px;
}
.form-row[data-v-06fc128e] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group[data-v-06fc128e] {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group label[data-v-06fc128e] {
  font-weight: 500;
  color: #555;
  font-size: 14px;
}
.form-group input[data-v-06fc128e],
.form-group textarea[data-v-06fc128e],
.form-group select[data-v-06fc128e] {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}
.form-group input[data-v-06fc128e]:focus,
.form-group textarea[data-v-06fc128e]:focus,
.form-group select[data-v-06fc128e]:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.checkbox-label[data-v-06fc128e] {
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"][data-v-06fc128e] {
  width: auto;
  margin: 0;
}
.form-actions[data-v-06fc128e] {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
@media (max-width: 768px) {
.admin-filters[data-v-06fc128e] {
    flex-direction: column;
}
.form-row[data-v-06fc128e] {
    grid-template-columns: 1fr;
}
.admin-stats[data-v-06fc128e] {
    grid-template-columns: 1fr;
}
.actions[data-v-06fc128e] {
    flex-direction: column;
}
}


.image-library-page[data-v-40025120] {
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.page-header[data-v-40025120] {
  text-align: center;
  margin-bottom: 30px;
}
.page-header h1[data-v-40025120] {
  color: #2c3e50;
  font-size: 2.5em;
  margin-bottom: 10px;
}
.page-header p[data-v-40025120] {
  color: #7f8c8d;
  font-size: 1.1em;
}

/* Upload Section */
.upload-section[data-v-40025120] {
  margin-bottom: 30px;
}
.upload-card[data-v-40025120] {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.drop-zone[data-v-40025120] {
  border: 3px dashed #3498db;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  background: #f8f9fa;
  margin-bottom: 20px;
}
.drop-zone.drag-over[data-v-40025120] {
  border-color: #2ecc71;
  background: #e8f5e8;
}
.drop-content i[data-v-40025120] {
  font-size: 3em;
  color: #3498db;
  margin-bottom: 15px;
}
.btn-select[data-v-40025120] {
  background: #3498db;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}
.btn-select[data-v-40025120]:hover {
  background: #2980b9;
}
.upload-form[data-v-40025120] {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}
.form-group[data-v-40025120] {
  margin-bottom: 15px;
}
.form-group label[data-v-40025120] {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #2c3e50;
}
.form-control[data-v-40025120] {
  width: 100%;
  padding: 10px;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}
.form-control[data-v-40025120]:focus {
  border-color: #3498db;
  outline: none;
}
.upload-actions[data-v-40025120] {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.btn-upload[data-v-40025120] {
  background: #27ae60;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}
.btn-upload[data-v-40025120]:hover:not(:disabled) {
  background: #229954;
}
.btn-upload[data-v-40025120]:disabled {
  background: #95a5a6;
  cursor: not-allowed;
}
.btn-cancel[data-v-40025120] {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}
.btn-cancel[data-v-40025120]:hover {
  background: #c0392b;
}

/* Filters */
.filters-section[data-v-40025120] {
  margin-bottom: 30px;
}
.filters[data-v-40025120] {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.search-input[data-v-40025120] {
  flex: 1;
  min-width: 300px;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
}
.category-filter[data-v-40025120] {
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  min-width: 150px;
}
.btn-refresh[data-v-40025120] {
  background: #3498db;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}
.btn-refresh[data-v-40025120]:hover {
  background: #2980b9;
}

/* Image Grid */
.images-grid[data-v-40025120] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.image-card[data-v-40025120] {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}
.image-card[data-v-40025120]:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.image-card.selected[data-v-40025120] {
  border: 3px solid #3498db;
}
.image-container[data-v-40025120] {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.image-container img[data-v-40025120] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-overlay[data-v-40025120] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.image-card:hover .image-overlay[data-v-40025120] {
  opacity: 1;
}
.btn-edit[data-v-40025120], .btn-delete[data-v-40025120] {
  background: rgba(255,255,255,0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-edit[data-v-40025120]:hover {
  background: #3498db;
  color: white;
}
.btn-delete[data-v-40025120]:hover {
  background: #e74c3c;
  color: white;
}
.image-info[data-v-40025120] {
  padding: 15px;
}
.image-info h4[data-v-40025120] {
  margin: 0 0 8px 0;
  color: #2c3e50;
  font-size: 14px;
  font-weight: 600;
}
.image-info p[data-v-40025120] {
  margin: 4px 0;
  font-size: 12px;
  color: #7f8c8d;
}
.category[data-v-40025120] {
  color: #3498db !important;
  font-weight: 600;
}
.tags[data-v-40025120] {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.tag[data-v-40025120] {
  background: #ecf0f1;
  color: #2c3e50;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
}

/* Pagination */
.pagination[data-v-40025120] {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 30px;
}
.pagination button[data-v-40025120] {
  background: white;
  border: 2px solid #e9ecef;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination button[data-v-40025120]:hover {
  background: #3498db;
  color: white;
  border-color: #3498db;
}
.pagination button.active[data-v-40025120] {
  background: #3498db;
  color: white;
  border-color: #3498db;
}

/* Loading */
.loading[data-v-40025120] {
  text-align: center;
  padding: 40px;
  color: #7f8c8d;
  font-size: 18px;
}
.loading i[data-v-40025120] {
  margin-right: 10px;
}

/* Modal */
.modal-overlay[data-v-40025120] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal[data-v-40025120] {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-header[data-v-40025120] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e9ecef;
}
.modal-header h3[data-v-40025120] {
  margin: 0;
  color: #2c3e50;
}
.btn-close[data-v-40025120] {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #7f8c8d;
}
.modal-body[data-v-40025120] {
  padding: 20px;
}
.edit-preview[data-v-40025120] {
  text-align: center;
  margin-bottom: 20px;
}
.edit-preview img[data-v-40025120] {
  max-width: 100%;
  max-height: 200px;
  border-radius: 8px;
}
.modal-footer[data-v-40025120] {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 20px;
  border-top: 1px solid #e9ecef;
}
.btn-save[data-v-40025120] {
  background: #27ae60;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-save[data-v-40025120]:hover {
  background: #229954;
}

/* Responsive */
@media (max-width: 768px) {
.images-grid[data-v-40025120] {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}
.filters[data-v-40025120] {
    flex-direction: column;
    align-items: stretch;
}
.search-input[data-v-40025120] {
    min-width: unset;
}
}


.admin-dashboard[data-v-88f04678] {
  min-height: 100vh;
  background: #f8fafc;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  padding: 0;
  position: relative;
  top: 0;
}
.admin-header[data-v-88f04678] {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 24px;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-nav[data-v-88f04678] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.admin-brand[data-v-88f04678] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.admin-brand-logo[data-v-88f04678] {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.admin-brand h1[data-v-88f04678] {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
}
.admin-user-menu[data-v-88f04678] {
  display: flex;
  align-items: center;
  gap: 16px;
}
.admin-welcome[data-v-88f04678] {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}
.logout-btn[data-v-88f04678] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #ef4444;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}
.logout-btn[data-v-88f04678]:hover {
  background: #dc2626;
}
.admin-layout[data-v-88f04678] {
  display: flex;
  height: calc(100vh - 64px);
}
.admin-sidebar[data-v-88f04678] {
  width: 280px;
  background: white;
  border-right: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}
.admin-menu[data-v-88f04678] {
  flex: 1;
  padding: 24px 0;
}
.menu-item[data-v-88f04678] {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.menu-item[data-v-88f04678]:hover {
  background: #f1f5f9;
  color: #3b82f6;
}
.menu-item.active[data-v-88f04678] {
  background: #eff6ff;
  color: #3b82f6;
}
.menu-item.active[data-v-88f04678]::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #3b82f6;
}
.badge[data-v-88f04678] {
  background: #ef4444;
  color: white;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: auto;
}
.sidebar-footer[data-v-88f04678] {
  padding: 24px;
  border-top: 1px solid #e2e8f0;
}
.back-to-site-btn[data-v-88f04678] {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.back-to-site-btn[data-v-88f04678]:hover {
  background: #e2e8f0;
  color: #475569;
}
.admin-main[data-v-88f04678] {
  flex: 1;
  overflow-y: auto;
}
.admin-content[data-v-88f04678] {
  padding: 32px;
  max-width: 1200px;
}
.content-header[data-v-88f04678] {
  margin-bottom: 32px;
}
.content-header h2[data-v-88f04678] {
  margin: 0 0 8px 0;
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
}
.content-header p[data-v-88f04678] {
  margin: 0;
  color: #64748b;
  font-size: 16px;
}
.stats-grid[data-v-88f04678] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.stat-card[data-v-88f04678] {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-icon[data-v-88f04678] {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.stat-icon.news[data-v-88f04678] { background: #3b82f6;
}
.stat-icon.projects[data-v-88f04678] { background: #10b981;
}
.stat-icon.services[data-v-88f04678] { background: #f59e0b;
}
.stat-icon.contacts[data-v-88f04678] { background: #ef4444;
}
.stat-icon.messages[data-v-88f04678] { background: #ef4444;
}
.stat-icon.hero-slides[data-v-88f04678] { background: #0288d1;
}
.stat-icon.machinery[data-v-88f04678] { background: #e53e3e;
}
.stat-icon.info-cards[data-v-88f04678] { background: #8b5cf6;
}
.stat-content h3[data-v-88f04678] {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
}
.stat-content p[data-v-88f04678] {
  margin: 4px 0 0 0;
  color: #64748b;
  font-size: 14px;
}
.placeholder-content[data-v-88f04678] {
  text-align: center;
  padding: 64px 32px;
  color: #64748b;
}
.placeholder-content p[data-v-88f04678] {
  margin: 16px 0 0 0;
  font-size: 16px;
}
@media (max-width: 1024px) {
.admin-sidebar[data-v-88f04678] {
    width: 240px;
}
}
@media (max-width: 768px) {
.admin-layout[data-v-88f04678] {
    flex-direction: column;
}
.admin-sidebar[data-v-88f04678] {
    width: 100%;
    height: auto;
}
.admin-menu[data-v-88f04678] {
    display: flex;
    overflow-x: auto;
    padding: 16px 0;
}
.menu-item[data-v-88f04678] {
    flex-shrink: 0;
    white-space: nowrap;
}
}


/* Import CSS Variables */
[data-v-33fb0c42]:root {
  --primary-gold: #F7C52D;
  --primary-gold-light: #F9D55A;
  --primary-gold-dark: #E6B800;
}

/* Header Container */
.yeo-header[data-v-33fb0c42] {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(25px) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  transition: none !important;
  transform: none !important;
  will-change: auto !important;
  pointer-events: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
}
.yeo-header.header-scrolled[data-v-33fb0c42] {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15) !important;
  backdrop-filter: blur(25px) !important;
  transition: none !important;
  transform: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
}
.header-top[data-v-33fb0c42] {
  padding: 0 !important;
  position: relative !important;
  width: 100% !important;
  height: 96px !important;
}
.header-container[data-v-33fb0c42] {
  max-width: 1600px !important;
  margin: 0 auto !important;
  padding: 0 3rem !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  height: 96px !important;
  position: relative !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Logo Section */
.logo-section[data-v-33fb0c42] {
  display: flex;
  align-items: center;
}
.logo-link[data-v-33fb0c42] {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo-img[data-v-33fb0c42] {
  height: 65px;
  width: auto;
  transition: transform 0.3s ease;
}
.logo-link:hover .logo-img[data-v-33fb0c42] {
  transform: scale(1.05);
}

/* Header Controls */
.header-controls[data-v-33fb0c42] {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Search Container */
.search-container[data-v-33fb0c42] {
  position: relative;
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 25px;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  max-width: 200px;
  z-index: 1001;
}
.search-container.search-active[data-v-33fb0c42] {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 300px;
}
.search-input[data-v-33fb0c42] {
  border: none;
  background: transparent;
  outline: none;
  padding: 0.25rem 0.5rem;
  font-size: 0.9rem;
  color: #333;
  width: 100%;
}
.search-input[data-v-33fb0c42]::-moz-placeholder {
  color: #999;
}
.search-input[data-v-33fb0c42]::placeholder {
  color: #999;
}
.search-btn[data-v-33fb0c42] {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.3s ease;
}
.search-btn[data-v-33fb0c42]:hover {
  color: #388e3c;
}

/* Search Suggestions */
.search-suggestions[data-v-33fb0c42] {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  margin-top: 4px;
}
.suggestion-item[data-v-33fb0c42] {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}
.suggestion-item[data-v-33fb0c42]:hover {
  background-color: #f8f9fa;
}
.suggestion-item[data-v-33fb0c42]:last-child {
  border-bottom: none;
}
.suggestion-icon[data-v-33fb0c42] {
  margin-right: 10px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}
.suggestion-text[data-v-33fb0c42] {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

/* Language Switcher */
.language-switcher[data-v-33fb0c42] {
  display: flex;
  gap: 0.5rem;
}
.lang-btn[data-v-33fb0c42] {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid #ddd;
  background: white;
  color: #666;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  font-weight: 500;
}
.flag-icon[data-v-33fb0c42] {
  width: 16px;
  height: 12px;
  border-radius: 2px;
}
.lang-btn[data-v-33fb0c42]:hover {
  border-color: #388e3c;
  color: #388e3c;
}
.lang-btn.active[data-v-33fb0c42] {
  background: #388e3c;
  color: white;
  border-color: #388e3c;
}

/* Menu Toggle */
.menu-toggle[data-v-33fb0c42] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 4px;
}
.menu-line[data-v-33fb0c42] {
  width: 24px;
  height: 2px;
  background: #333;
  transition: all 0.3s ease;
  border-radius: 1px;
}
.menu-toggle.active .menu-line[data-v-33fb0c42]:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle.active .menu-line[data-v-33fb0c42]:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .menu-line[data-v-33fb0c42]:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Sidebar Overlay */
.sidebar-overlay[data-v-33fb0c42] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.sidebar-overlay.active[data-v-33fb0c42] {
  opacity: 1;
  visibility: visible;
}

/* Sidebar Navigation */
.sidebar-nav[data-v-33fb0c42] {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: white;
  z-index: 1001;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}
.sidebar-nav.sidebar-active[data-v-33fb0c42] {
  right: 0;
}
.sidebar-header[data-v-33fb0c42] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #eee;
}
.sidebar-logo-img[data-v-33fb0c42] {
  height: 35px;
  width: auto;
}
.sidebar-close[data-v-33fb0c42] {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.sidebar-close[data-v-33fb0c42]:hover {
  background: #f5f5f5;
  color: #333;
}
.sidebar-content[data-v-33fb0c42] {
  padding: 1rem 0;
}

/* Sidebar Search */
.sidebar-search[data-v-33fb0c42] {
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
}
.sidebar-search-input[data-v-33fb0c42] {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 25px;
  outline: none;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}
.sidebar-search-input[data-v-33fb0c42]:focus {
  border-color: #388e3c;
}

/* Sidebar Menu */
.sidebar-menu[data-v-33fb0c42] {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-item[data-v-33fb0c42] {
  border-bottom: 1px solid #f5f5f5;
}
.menu-link[data-v-33fb0c42] {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.menu-link[data-v-33fb0c42]:hover {
  background: #f8f9fa;
  color: #388e3c;
  padding-left: 2.5rem;
}
.menu-icon[data-v-33fb0c42] {
  margin-right: 1rem;
  font-size: 1.1rem;
  width: 20px;
  display: flex;
  justify-content: center;
}
.dropdown-toggle[data-v-33fb0c42] {
  justify-content: space-between;
}
.dropdown-arrow[data-v-33fb0c42] {
  transition: transform 0.3s ease;
}
.dropdown-active .dropdown-arrow[data-v-33fb0c42] {
  transform: rotate(180deg);
}
.dropdown-menu[data-v-33fb0c42] {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f8f9fa;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.dropdown-active .dropdown-menu[data-v-33fb0c42] {
  max-height: 200px;
}
.dropdown-active .sections-menu[data-v-33fb0c42] {
  max-height: 400px;
  overflow-y: auto;
}
.dropdown-link[data-v-33fb0c42] {
  display: block;
  padding: 0.8rem 4rem;
  color: #666;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  position: relative;
}
.dropdown-link[data-v-33fb0c42]:hover {
  background: #e9ecef;
  color: #388e3c;
  padding-left: 4.5rem;
}

/* Section dropdown specific styles */
.sections-menu .dropdown-link[data-v-33fb0c42] {
  padding: 0.7rem 3.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sections-menu .dropdown-link[data-v-33fb0c42]:hover {
  padding-left: 4rem;
  background: linear-gradient(90deg, #f8f9fa 0%, #e3f2fd 100%);
  border-left: 3px solid var(--primary-gold);
}
.section-number[data-v-33fb0c42] {
  font-weight: 600;
  color: var(--primary-gold);
  min-width: 25px;
  font-size: 0.8rem;
}
.sections-menu .dropdown-link:hover .section-number[data-v-33fb0c42] {
  color: var(--primary-gold-dark);
}

/* Sidebar Social */
.sidebar-social[data-v-33fb0c42] {
  padding: 2rem;
  border-top: 1px solid #eee;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.social-link[data-v-33fb0c42] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-link[data-v-33fb0c42]:hover {
  transform: translateY(-2px);
}
.social-link.linkedin[data-v-33fb0c42]:hover {
  background: #0077b5;
  color: white;
}
.social-link.instagram[data-v-33fb0c42]:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}
.social-link.twitter[data-v-33fb0c42]:hover {
  background: #1da1f2;
  color: white;
}
.social-link.youtube[data-v-33fb0c42]:hover {
  background: #ff0000;
  color: white;
}

/* Scroll to Top Button */
/* Scroll to top button moved to App.vue */

/* Responsive Design */
@media (max-width: 768px) {
.header-container[data-v-33fb0c42] {
    padding: 0 1.5rem !important;
    height: 84px !important;
}
.logo-img[data-v-33fb0c42] {
    height: 55px;
}
.header-top[data-v-33fb0c42] {
    height: 84px !important;
}
.search-container[data-v-33fb0c42] {
    display: none;
}
.sidebar-nav[data-v-33fb0c42] {
    width: 100%;
    right: -100%;
}
.menu-link[data-v-33fb0c42] {
    padding: 1.2rem 1.5rem;
}
.dropdown-link[data-v-33fb0c42] {
    padding: 1rem 3rem;
}
  
  /* Scroll to top styles moved to App.vue */
}
@media (max-width: 480px) {
.header-container[data-v-33fb0c42] {
    height: 78px !important;
    padding: 0 1rem !important;
}
.logo-img[data-v-33fb0c42] {
    height: 50px;
}
.header-top[data-v-33fb0c42] {
    height: 78px !important;
}
.lang-btn[data-v-33fb0c42] {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
}
.flag-icon[data-v-33fb0c42] {
    width: 14px;
    height: 10px;
}
.scroll-to-top[data-v-33fb0c42] {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
}
}


/* Fixed Scroll to Top Button - Bottom Right Corner - Golden Theme */
.scroll-to-top-fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #F7C52D 0%, #E6B800 100%);
  color: #2C3E50;
  border: 2px solid #CC9900;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(247, 197, 45, 0.3);
  transition: all 0.3s ease;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  font-weight: bold;
}
.scroll-to-top-fixed:hover {
  background: linear-gradient(135deg, #F9D55A 0%, #F7C52D 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(247, 197, 45, 0.4);
  border-color: #F7C52D;
}
.scroll-to-top-fixed:active {
  transform: translateY(-1px);
}

/* Always visible scroll button */

/* Responsive */
@media (max-width: 768px) {
.scroll-to-top-fixed {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
}
}
@media (max-width: 480px) {
.scroll-to-top-fixed {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
}
}

/* Hide main header on admin pages */
body.admin-page .header,
body.admin-page .yeo-header,
body.admin-page .header-top,
body.admin-page [data-v-61dd7a3d],
body.admin-page [data-v-61dd7a3d].header-top {
  display: none !important;
}

/* Remove top spacing on admin pages */
body.admin-page {
  margin: 0 !important;
  padding: 0 !important;
}
body.admin-page #app {
  margin: 0 !important;
  padding: 0 !important;
}

