/* ===== ELEKTRICIST NË TIRANË - Modern Beige Design ===== */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap");

/* ===== CSS VARIABLES ===== */
:root {
  /* Beige Color Palette */
  --beige-50: #faf8f5;
  --beige-100: #f5f1ea;
  --beige-200: #e8dfd0;
  --beige-300: #d4c4b0;
  --beige-400: #c8b9a7;
  --beige-500: #b8a692;

  /* Neutral Colors */
  --black: #1a1614;
  --gray-dark: #3d3531;
  --gray: #6b5d52;
  --gray-light: #9a8d82;
  --white: #ffffff;

  /* Accent Colors */
  --green-whatsapp: #25d366;
  --shadow-sm: 0 2px 8px rgba(26, 22, 20, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 22, 20, 0.08);
  --shadow-lg: 0 8px 32px rgba(26, 22, 20, 0.12);

  /* Spacing */
  --container-width: 1200px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: var(--black);
  background: linear-gradient(
    180deg,
    var(--beige-50) 0%,
    var(--beige-100) 100%
  );
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ===== NAVIGATION - ENHANCED MODERN ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(26, 22, 20, 0.04);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(212, 196, 176, 0.3);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(250, 248, 245, 0.98);
  box-shadow: 0 4px 16px rgba(26, 22, 20, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
}

.logo {
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s ease;
  text-transform: uppercase;
}

.logo:hover {
  transform: translateY(-1px);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-dark);
  transition: all 0.2s;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  position: relative;
}

.nav-menu a:not(.btn-nav):hover {
  color: var(--black);
  background: var(--beige-200);
}

.nav-menu a:not(.btn-nav)::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.nav-menu a:not(.btn-nav):hover::after {
  transform: translateX(-50%) scaleX(1);
}

.btn-nav {
  background: linear-gradient(135deg, #d4c4b0 0%, #b8a692 100%);
  color: var(--black);
  padding: 0.65rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(184, 166, 146, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-nav:hover {
  background: linear-gradient(135deg, #c8b9a7 0%, #b8a692 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 166, 146, 0.5);
}

.btn-nav:active {
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 26px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--black);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav-toggle:hover span {
  background: var(--gray-dark);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: var(--spacing-2xl) 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.hero-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: var(--spacing-sm);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  color: var(--black);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--beige-200);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
}

.btn svg {
  flex-shrink: 0;
}

.btn-primary {
  background: var(--green-whatsapp);
  color: var(--white);
}

.btn-primary:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border-color: var(--beige-300);
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-2px);
}

.btn-submit {
  background: var(--black);
  color: var(--white);
  width: 100%;
  margin-top: var(--spacing-sm);
}

.btn-submit:hover {
  background: var(--gray-dark);
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--spacing-2xl) 0;
}

.section-alt {
  background: var(--beige-200);
}

.section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--black);
  letter-spacing: -0.02em;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SERVICES - 4 COLUMNS PARALLEL ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.service-card {
  background: var(--white);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-200);
  transition: all 0.3s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--black);
}

.service-card p {
  color: var(--gray);
  line-height: 1.5;
  font-size: 0.9rem;
}

/* ===== REVIEWS SECTION - COMPACT ===== */
#reviews.section {
  padding: var(--spacing-lg) 0;
}

.reviews-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: 0;
}

.rating-number {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}

.stars {
  display: flex;
  gap: 0.2rem;
  font-size: 1.25rem;
  color: #fbbf24;
}

.reviews-subtitle {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

/* Carousel Styles - Compact */
.reviews-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.review-card {
  min-width: 100%;
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--beige-200);
}

.review-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--beige-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--black);
  flex-shrink: 0;
}

.review-info h4 {
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.15rem;
}

.review-stars {
  color: #fbbf24;
  font-size: 0.85rem;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-dark);
  font-style: italic;
}

.review-date {
  margin-top: var(--spacing-sm);
  font-size: 0.8rem;
  color: var(--gray-light);
}

/* Carousel Controls - Compact */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.carousel-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--beige-300);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 1.1rem;
  color: var(--black);
}

.carousel-btn:hover {
  background: var(--beige-400);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: var(--spacing-sm);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--beige-300);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--beige-500);
  width: 20px;
  border-radius: 4px;
}

/* ===== ABOUT ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  margin-top: var(--spacing-xl);
}

.about-text p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.checkmark-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.checkmark-list li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-weight: 500;
  color: var(--gray-dark);
}

.checkmark-list li::before {
  content: "✓";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--beige-300);
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--beige-300);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

/* ===== GALLERY ENHANCEMENTS ===== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
  border: 1px solid var(--beige-200);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 22, 20, 0.85), transparent);
  padding: var(--spacing-md);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-overlay p {
  color: var(--white);
  font-weight: 600;
  margin: 0;
  font-size: 0.95rem;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

/* ===== FAQ - SMALLER ===== */
#faq.section {
  padding: var(--spacing-lg) 0;
}

#faq h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--spacing-md);
}

.faq-container {
  max-width: 650px;
  margin: var(--spacing-lg) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--beige-300);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm) var(--spacing-md);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: var(--spacing-sm);
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* ===== CONTACT - SMALLER ===== */
#contact.section {
  padding: var(--spacing-lg) 0;
}

#contact h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--spacing-xs);
}

#contact .section-intro {
  font-size: 0.95rem;
  margin-bottom: var(--spacing-lg);
}

.contact-direct-only {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-md);
}

.contact-info-centered {
  background: var(--beige-300);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  max-width: 500px;
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--white);
  border-radius: var(--radius-md);
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.contact-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.contact-item svg {
  flex-shrink: 0;
}

.contact-item div {
  display: flex;
  flex-direction: column;
}

.contact-item strong {
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.contact-item span {
  color: var(--gray);
  font-size: 0.9rem;
}

.contact-hours {
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--white);
  border-radius: var(--radius-md);
  text-align: center;
}

.contact-hours strong {
  display: block;
  font-weight: 700;
  color: var(--black);
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--beige-300);
  padding: var(--spacing-md) 0;
  text-align: center;
}

.footer p {
  color: var(--gray-dark);
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    display: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .hero-image img {
    height: 350px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rating-number {
    font-size: 2rem;
  }

  .stars {
    font-size: 1.1rem;
  }

  .reviews-carousel {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    gap: var(--spacing-sm);
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.875rem 1.25rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .reviews-rating {
    flex-direction: column;
    gap: var(--spacing-xs);
  }

  .review-card {
    padding: var(--spacing-md);
  }

  .rating-number {
    font-size: 1.75rem;
  }
}
