/* Reset și stiluri de bază */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #666;
  height: 100vh;
  background: url('../photo/Pagina\ principală\ -\ Prima\ poză.webp') no-repeat center center/cover;
  position: relative;
}

h2 {
    font-family: 'Playfair Display', serif;
    color: #111;
    font-size: 2rem;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.164), rgba(0, 0, 0, 0.34));
  z-index: 0;
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header și navigație */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: rgba(17, 17, 17, 0.85);
  padding: 16px 32px;
  min-height: 56px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  z-index: 100;
}

.navbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Vigosamine';
  font-size: 28px;
  font-weight: bold;
  color: #d1b97f;
  margin: 0 auto;
  letter-spacing: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
  width: auto;
}

.logo-amako {
  width: 200px;
  align-items: center;
  opacity: 0;
  transform: translateY(-60px);
  animation: logoAmakoRise 0.8s cubic-bezier(.77,0,.18,1) 0.02s forwards;
  margin-bottom: 48px;
}

@keyframes logoAmakoRise {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-center {
  display: flex;
  flex: none;
  justify-content: flex-start;
  gap: 20px;
  margin-left: 0;
  position: static;
  background: none;
  padding: 0;
  z-index: 1000;
}

.nav-center a {
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.3s, background 0.3s;
  padding: 4px 10px;
  background: rgba(0,0,0,0.10);
  border-radius: 6px;
}

.nav-center a.active,
.nav-center a:hover {
  color: #d1b97f;
  background: rgba(0,0,0,0.10);
}

.nav-center a.active {
  color: #d1b97f !important;
  background: rgba(209, 185, 127, 0.18) !important;
  font-weight: bold;
  border-bottom: 2.5px solid #d1b97f;
  box-shadow: 0 2px 12px rgba(209,185,127,0.08);
}

.nav-center.open {
  z-index: 1200;
}

.nav-center.open ~ .hamburger {
  pointer-events: none;
}


.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  margin-right: 8px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: #fff;
  border-radius: 5px;
  transition: 0.3s cubic-bezier(.68,-0.55,.27,1.55);
  position: relative;
  opacity: 1;
  z-index: 2;
}

.hamburger.open span {
  opacity: 0;
}

.hamburger .hamburger-x {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 38px;
  height: 38px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  color: #fff;
  background: none;
  border: none;
  z-index: 3;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.2s;
}

.hamburger.open .hamburger-x {
  display: flex;
  pointer-events: auto;
  opacity: 1;
}

.hamburger:not(.open) .hamburger-x {
  opacity: 0;
  display: none;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  border-radius: 32px;
  padding: 4px 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  z-index: 110;
  transition: all 0.3s ease;
}

.lang-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 5px 12px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  border-radius: 12px;
}

.lang-btn:hover {
  background: rgba(209, 185, 127, 0.18);
  color: #d1b97f;
  box-shadow: 0 2px 8px rgba(209,185,127,0.10);
}

.lang-btn.active,
.lang-btn:active {
  background: rgba(209, 185, 127, 0.18);
  color: #d1b97f;
  font-weight: 600;
  border-bottom: 2.5px solid #d1b97f;
  box-shadow: 0 2px 12px rgba(209,185,127,0.18);
}

/* Main content */
main {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  text-align: center;
}

main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.555);
  z-index: -1;
}

.logo span {
  display: block;
  font-size: 40px;
  font-weight: normal;
  letter-spacing: 4px;
}

@keyframes slideDown {
  0% {
    transform: translateY(-80px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(80px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.logo-img {
  height: 36px;
  width: 36px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 10px;
  vertical-align: middle;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Secțiuni generale */
section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-family: 'Playfair Display', serif;
  color: #000000;
}

/* Secțiunea Despre Noi */
.about-section {
  width: 100%;
  background: #faf9f9;
  padding: 48px 0 60px 0;
}

.about-icons-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-bottom: 40px;
}

.about-icon-box {
  text-align: center;
  max-width: 320px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding: 32px 12px 28px 12px;
  box-sizing: border-box;
}

.about-icon {
  display: block;
  align-items: center;
  justify-content: flex-end;
  max-width: 64px;
  max-height: 64px;
  margin-bottom: 18px;
}

.about-icon-box h3 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: #111;
}

.about-icon-box p {
  font-size: 1rem;
  color: #333;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  margin-top: 0;
  line-height: 1.3;
}

.data-section {
  width: 100%;
  background: #ffffff;
  padding: 48px 0 60px 0;
}

.about-content-row {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  background: #f4f2f1;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  padding: 36px 32px;
}

.about-text {
  flex: 1;
  align-items: center;
  min-width: 320px;
}

.about-text h2 {
    font-family: 'Playfair Display';
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 18px;
  text-align: left;
  color: #222;
  line-height: 1.2;
}

.about-text p {
  font-size: 1rem;
  width: 500px;
  color: #333;
  margin-bottom: 18px;
}

.about-link {
  font-size: 1rem;
  color: #8B7355;
  text-decoration: underline;
  font-weight: 500;
}

.about-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
}

.about-image img {
  width: 100%;
  max-width: 370px;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 72px rgba(0,0,0,0.32), 0 4.5px 24px rgba(60,60,60,0.18);
  background: #fff;
}

/* Secțiunea Servicii */
.services-section {
  width: 100%;
  padding: 60px 0 40px 0;
  background: #fff;
}

.services-header {
  text-align: center;
  margin-bottom: 40px;
}

.h1-text {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: '../fonts/Cormorant-VariableFont_wght.ttf';
  color: #1d1c1c;
}

.project-status {
  color: #8B7355;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  margin: 10px 0;
  font-style: italic;
}

.progress-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(150, 150, 150, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.progress-text {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding: 10px 20px;
  background: rgba(139, 115, 85, 0.8);
  border-radius: 5px;
  font-family: 'Playfair Display', serif;
}

.services-subtitle {
  font-size: 1rem;
  color: #333;
}

.services-cadran {
  background: #f4f2f1;
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  padding: 44px 24px;
  max-width: 1200px;
  margin: 0 auto 48px auto;
}

.services-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.services-list {
  max-width: 540px;
  width: 540px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-box {
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  font-size: 1.08rem;
  border: none;
  transition: box-shadow 0.5s, transform 0.5s;
  cursor: pointer;
}

.service-box:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-6px) scale(1.03);
  opacity: 1;
}

.service-box.outlined {
  border: 1.5px solid #ddd;
  background: #fafafa;
}

.service-box h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #222;
}

.service-box p {
  margin-bottom: 10px;
  color: #333;
  font-size: 1rem;
}

.service-box ul {
  margin-left: 18px;
  color: #444;
  font-size: 1rem;
}

.services-image {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 540px;
  max-width: 540px;
  height: 100%;
}

.services-image img {
  width: 100%;
  max-width: 540px;
  height: 890px;
  max-height: 850px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 24px 72px rgba(0,0,0,0.32), 0 4.5px 24px rgba(60,60,60,0.18);
  border: 1.5px solid #e5e5e5;
  background: #fff;
}

/* Secțiunea Echipă */
.team-section {
  padding: 50px 0;
  background: #f8f9fa;
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: start;
}

.team-card-1,
.team-card-2,
.team-card-3 {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.team-card-1 img,
.team-card-2 img,
.team-card-3 img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.team-card-1 h3,
.team-card-2 h3,
.team-card-3 h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.role {
  color: #8B7355;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 1rem;
}

.bio {
  margin-bottom: 15px;
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
  text-align: justify;
}

blockquote {
  font-style: italic;
  color: #888;
  border-left: 3px solid #8B7355;
  padding-left: 15px;
  margin-top: 15px;
  font-size: 1rem;
}

/* Secțiunea Portofoliu */
.portfolio-section {
  padding: 80px 0;
  background: white;
}

.portfolio-subtitle {
  text-align: center;
  margin-bottom: 50px;
  color: #333;
  font-size: 1rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.project-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.project-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.2rem;
  color: #333;
}

.project-card p {
  padding: 0 20px;
  color: #666;
  margin-bottom: 20px;
}

.project-btn {
  display: block;
  margin: 0 20px 20px;
  padding: 10px 20px;
  background: #8B7355;
  color: white;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  transition: background 0.3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: inherit;
}

.project-btn:hover {
  background: #6d5c46;
}

/* FAQ Sectiune */

.faq-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: white;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
  font-family: inherit;
}

.faq-question:hover {
  background-color: #f9f9f9;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: #8B7355;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fafafa;
}

.faq-answer.open {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 25px 20px;
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.faq-contact {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-contact p {
  margin: 0;
  color: #666;
}

.faq-contact a {
  color: #8B7355;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.faq-contact a:hover {
  color: #6d5c46;
  text-decoration: underline;
}

.head-request {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #222;
}

@media (min-width: 901px) {
  body {
    background-attachment: fixed;
  }
}

/* Responsive Design */
@media (max-width: 900px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-question {
    padding: 18px 20px;
    font-size: 1rem;
  }
  
  .faq-answer p {
    padding: 0 20px 18px;
  }
}

@media (max-width: 700px) {
  .faq-section {
    padding: 50px 0;
  }
  
  .faq-question {
    padding: 16px 18px;
  }
  
  .faq-answer p {
    padding: 0 18px 16px;
  }
  
  .faq-contact {
    margin-top: 30px;
    padding: 18px;
  }
}

/* Blog Section */
.blog-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.blog-subtitle {
  text-align: center;
  margin-bottom: 50px;
  color: #666;
  font-size: 1.1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-post-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.blog-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.blog-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-img-main {
  transform: scale(1.05);
}

.blog-post-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-post-content h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #333;
  line-height: 1.4;
  font-family: 'Roboto', sans-serif;
  flex-grow: 1;
}

.blog-excerpt {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #888;
}

.blog-date, .blog-read-time {
  font-weight: 500;
}

.blog-read-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #8B7355;
  color: white;
  text-decoration: none;
  text-align: center;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
}

.blog-read-btn:hover {
  background: #6d5c46;
  transform: translateY(-2px);
}

/* Blog Modal */
.blog-modal {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,30,30,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.blog-modal-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.25);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalShow 0.3s cubic-bezier(.77,0,.18,1);
}

.blog-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-modal-close:hover {
  background: #f4f2f1;
}

.blog-modal-header {
  padding: 40px 40px 20px;
  border-bottom: 1px solid #eee;
}

.blog-meta-modal {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #8B7355;
  font-weight: 500;
}

.blog-category {
  background: #f0ede8;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.blog-modal-header h1 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
}

.blog-author {
  color: #666;
  font-style: italic;
  font-size: 0.95rem;
}

.blog-modal-image-container {
  padding: 0 40px;
  margin: 20px 0;
}

.blog-modal-main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.blog-modal-body {
  padding: 20px 40px 40px;
}

.blog-content {
  line-height: 1.8;
  color: #444;
  font-size: 1.05rem;
}

.blog-content h4 {
  color: #333;
  margin: 25px 0 15px;
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
}

.blog-content p {
  margin-bottom: 20px;
}

.blog-content ol, .blog-content ul {
  margin-bottom: 20px;
  padding-left: 25px;
}

.blog-content li {
  margin-bottom: 8px;
}

.blog-share-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.blog-share-section h4 {
  margin-bottom: 15px;
  color: #333;
}

.share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.share-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 0.9rem;
}

.share-btn.facebook {
  background: #3b5998;
  color: white;
}

.share-btn.linkedin {
  background: #0077b5;
  color: white;
}

.share-btn.twitter {
  background: #1da1f2;
  color: white;
}

.share-btn.copy-link {
  background: #6c757d;
  color: white;
}

.share-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Responsive Blog */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .blog-modal-content {
    max-width: 95vw;
    max-height: 95vh;
  }
  
  .blog-modal-header,
  .blog-modal-image-container,
  .blog-modal-body {
    padding: 20px;
  }
  
  .blog-modal-header h1 {
    font-size: 1.8rem;
  }
  
  .blog-modal-main-image {
    height: 250px;
  }
}

@media (max-width: 600px) {
  .blog-section {
    padding: 50px 0;
  }
  
  .blog-meta-modal {
    flex-direction: column;
    gap: 8px;
  }
  
  .blog-modal-header h1 {
    font-size: 1.5rem;
  }
  
  .share-buttons {
    flex-direction: column;
  }
  
  .share-btn {
    text-align: center;
  }
}

/* Blog Content Blocks */
.blog-content-block {
  margin-bottom: 30px;
}

.blog-text-content {
  line-height: 1.8;
  color: #444;
  font-size: 1.05rem;
}

.blog-text-content h4 {
  color: #333;
  margin: 25px 0 15px;
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
}

.blog-text-content p {
  margin-bottom: 20px;
}

.blog-text-content ol, .blog-text-content ul {
  margin-bottom: 20px;
  padding-left: 25px;
}

.blog-text-content li {
  margin-bottom: 8px;
}

/* Blog Image Blocks */
.blog-image-block {
  margin: 30px 0;
  text-align: center;
}

.blog-content-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-bottom: 10px;
}

.blog-image-caption {
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 8px;
  padding: 0 20px;
}

/* Full-width images for better layout */
.blog-image-block.full-width .blog-content-image {
  width: 100%;
}

.blog-image-block.medium-width .blog-content-image {
  max-width: 80%;
  margin: 0 auto;
}

.blog-image-block.small-width .blog-content-image {
  max-width: 60%;
  margin: 0 auto;
}

/* Responsive images */
@media (max-width: 768px) {
  .blog-image-block.medium-width .blog-content-image,
  .blog-image-block.small-width .blog-content-image {
    max-width: 100%;
  }
}

/* Image alignment options */
.blog-image-block.left {
  text-align: left;
}

.blog-image-block.center {
  text-align: center;
}

.blog-image-block.right {
  text-align: right;
}

@media (max-width: 768px) {
  .blog-image-block.left,
  .blog-image-block.right {
    text-align: center;
  }
}

/* Load More Button Styles */
.load-more-container {
  text-align: center;
  margin-top: 40px;
  padding: 20px 0;
}

.load-more-btn {
  background-color: #8b7355;
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto', sans-serif;
}

.load-more-btn:hover {
  background-color: #7a6245;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.2);
}

.load-more-btn:active {
  transform: translateY(0);
}

.load-more-btn {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.load-more-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.load-more-btn.loading {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: scale(1); }
  100% { transform: scale(1.2); }
}

/* Blog post card with animation */
.blog-post-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Animation for newly loaded posts */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-post-card.newly-loaded {
  animation: fadeInUp 0.5s ease forwards;
}

/* Secțiunea Contact */
.contact-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  padding: 40px 40px 0px 40px;
  background: #f8f9fa;
  border-radius: 10px;
}

.contact-info h2 {
  margin-bottom: 20px;
  color: #333;
}

.contact-details {
  margin: 30px 0;
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-detail .icon {
  width: 40px;
  height: 40px;
  background: #8B7355;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.3rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-detail .icon:hover {
  background: #bca97a;
  color: #222;
}

.working-hours {
  margin-top: 30px;
  margin-bottom: 30px;
}

.working-hours h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.hours-table {
  width: 100%;
}

.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.project-request {
  padding: 40px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-request > p {
  margin-bottom: 30px;
  color: #666;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8B7355;
  box-shadow: 0 0 0 2px rgba(139, 115, 85, 0.2);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  font-size: inherit;
}

.btn-delete {
  background: #f3f3f3;
  color: #333;
}

.btn-submit {
  background: #8B7355;
  color: white;
}

.btn-delete:hover {
  background: #e9ecef;
}

.btn-submit:hover {
  background: #6d5c46;
}

/* Footer */
.main-footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 0 20px;
  font-family: 'Roboto', sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-col h3 {
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  color: #d1b97f;
  font-size: 1.5rem;
}

.footer-col p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ccc;
}

.footer-col-contact {
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

  .footer-col a,
  .footer-col u,
  .footer-col li{
      display: flex;
      color: #ccc;
      text-decoration: none;
      text-align: left;
      margin-bottom: 0;
  }

.footer-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.footer-icon.phone::before {
  content: "📞";
  font-size: 1.3rem;
}

.footer-icon.mail::before {
  content: "✉️";
  font-size: 1.3rem;
}

.footer-form {
  display: flex;
  margin-top: 20px;
}

.footer-form input {
  flex-grow: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 5px 0 0 5px;
  background: #2a2a2a;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
}

.footer-form input::placeholder {
  color: #999;
}

.footer-form button {
  padding: 12px 20px;
  background: #d1b97f;
  color: #1a1a1a;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
  font-family: inherit;
}

.footer-form button:hover {
  background: #bca97a;
}

.footer-col.tweet ul li {
  display: flex;
  text-align: left;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.4;
}

.footer-icon.twitter::before {
  content: "📢";
  font-size: 1.1rem;
  color: #d1b97f;
  margin-right: 10px;
  flex-shrink: 0;
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.footer-gallery img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s;
}

.footer-gallery img:hover {
  transform: scale(1.05);
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom nav {
  display: flex;
  gap: 20px;
}

.footer-bottom nav a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1rem;
}

.footer-bottom nav a:hover {
  color: #d1b97f;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  color: #d1b97f;
  font-size: 1.5rem;
}

/* Font pentru logo */
@font-face {
  font-family: 'Vigosamine';
  src: url('../fonts/Vigosamine.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Animatie pentru butoane */
@keyframes amakoBtnUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.amako-btn {
  background: #ffffffd1;
  color: #222;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(60,60,60,0.08);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  min-width: 140px;
  text-align: center;
  outline: none;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(60px);
  animation: amakoBtnUp 0.7s cubic-bezier(.77,0,.18,1) forwards;
  animation-delay: 0.15s;
  font-family: inherit;
}

.amako-buttons-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin: 32px 0 18px 0;
}

/* MODAL PROIECT PORTOFOLIU - MODIFICĂRI PENTRU A VEDEA TOATA POZA */
.project-modal {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,30,30,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.project-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.22);
  max-width: 98vw;
  width: 98vw;
  max-height: 98vh;
  height: 98vh;
  min-width: 340px;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalShow 0.3s cubic-bezier(.77,0,.18,1);
}

@keyframes modalShow {
  0% { opacity: 0; transform: translateY(40px);}
  100% { opacity: 1; transform: translateY(0);}
}

.project-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #fff;
  border: none;
  font-size: 2.2rem;
  color: #333;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-modal-close:hover {
  background: #f4f2f1;
}

.project-modal-flex {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: 100%;
  overflow: hidden;
}

.project-modal-info {
  flex: 0 0 320px;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f8f9fa;
  border-right: 1px solid #e9ecef;
  overflow: hidden;
}

.project-modal-info-content {
  flex: 1;
  overflow-y: auto;
  padding-right: 10px;
}

.project-modal-info h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.project-modal-code {
  font-size: 1rem;
  color: #8B7355;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
}

.project-modal-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: justify;
}

.project-details-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.project-details-table td {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  font-size: 14px;
  vertical-align: top;
}

.project-details-table td:first-child {
  font-weight: bold;
  width: 40%;
  color: #3a3a3a;
}

.project-features {
  margin: 20px 0;
}

.project-features h4 {
  margin-bottom: 12px;
  font-size: 16px;
  color: #3a3a3a;
  font-weight: 600;
}

.project-features ul {
  padding-left: 20px;
  margin: 0;
}

.centered-text {
    color: #666;
  text-align: center;
}

.project-features li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

.gallery-counter {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin: 12px 0;
  font-weight: 500;
  flex-shrink: 0;
}

.gallery-nav {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-shrink: 0;
}

.gallery-nav-btn {
  background: #8B7355;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  font-family: inherit;
  font-size: 0.85rem;
  flex: 1;
}

.gallery-nav-btn:hover:not(:disabled) {
  background: #6d5c46;
}

.gallery-nav-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

/* CONTAINER PENTRU GALERIE - MODIFICAT PENTRU A VEDEA TOATA POZA */
.project-modal-gallery-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}

.project-modal-gallery {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 0;
  width: 100%;
}

/* IMAGINE PRINCIPALĂ - SE VEDE COMPLETĂ */
.project-modal-main-image {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  background: #fff;
  padding: 15px;
  cursor: zoom-in;
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

/* THUMBNAILS CONTAINER - MAI COMPACT */
.project-modal-thumbnails-container {
  flex: 0 0 auto;
  padding: 15px 20px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  max-height: 25vh;
}

.project-modal-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 6px;
  padding: 5px 0;
}

.project-modal-thumbnail {
  width: 100%;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
  border: 2px solid transparent;
}

.project-modal-thumbnail:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.project-modal-thumbnail.active {
  opacity: 1;
  border: 3px solid #8B7355;
  transform: scale(1.05);
}

/* Separator styling */
.project-modal-info hr {
  border: none;
  border-top: 2px solid #e9ecef;
  margin: 20px 0;
  opacity: 0.6;
}

/* Scrollbar styling pentru info content */
.project-modal-info-content::-webkit-scrollbar {
  width: 6px;
}

.project-modal-info-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.project-modal-info-content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.project-modal-info-content::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* MODAL FULLSCREEN PENTRU IMAGINI */
.image-fullscreen-modal {
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.image-fullscreen-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-fullscreen-img {
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
  border-radius: 8px;
}

.image-fullscreen-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 2.5rem;
  color: #333;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 100001;
}

.image-fullscreen-close:hover {
  background: white;
  transform: scale(1.1);
}

/* Navigation buttons for fullscreen */
.image-fullscreen-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 100001;
}

.image-fullscreen-prev {
  left: 20px;
}

.image-fullscreen-next {
  right: 20px;
}

.image-fullscreen-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.image-fullscreen-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.image-fullscreen-nav:disabled:hover {
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
}

/* Counter for fullscreen */
.image-fullscreen-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 500;
}

/* Make main image clickable */
.project-modal-main-image {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.project-modal-main-image:hover {
  transform: scale(1.02);
}

/* MODAL COMANDA PROIECT */
.modal-comanda-proiect {
  position: fixed;
  z-index: 99999;
  left: 0; 
  top: 0; 
  right: 0; 
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,30,30,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  padding: 20px;
}

.modal-comanda-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.22);
  width: 500px;
  max-width: 90vw;
  min-height: 400px;
  max-height: 90vh;
  padding: 25px 0;
  position: relative;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: modalShow 0.3s cubic-bezier(.77,0,.18,1);
}

.modal-comanda-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #23235c;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: background 0.2s;
}

.modal-comanda-close:hover {
  background: #f4f2f1;
  color: #d00;
}

.modal-comanda-form {
  width: 100%;
  padding: 0 25px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.modal-comanda-form input[type="text"],
.modal-comanda-form input[type="tel"],
.modal-comanda-form input[type="email"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 0;
  background: #fafbfc;
  font-family: inherit;
}

/* Secțiunea Procesul */
.process-section {
  padding: 100px 0;
  background: #ffffff;
  width: 100%;
}

.process-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 20px;
  font-weight: 300;
  font-family: 'Playfair Display', serif;
}

.section-title-2 {
  text-align: center;
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 50px;
  font-weight: 300;
  font-family: 'Playfair Display', serif;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
    width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

.step-icon {
  width: 90px;
  height: 90px;
  border: 2px solid #8B7355;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(139, 115, 85, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.step-icon:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(139, 115, 85, 0.2);
  border-color: #6d5c46;
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: brightness(0.9);
}

.step-line {
  width: 2px;
  height: 70px;
  background: linear-gradient(to bottom, #8B7355, #d1b97f);
  margin-top: 20px;
  position: relative;
}

.step-content {
  flex: 1;
  padding-top: 10px;
}

.step-title {
  font-size: 1.5rem;
  color: #18184d;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  transition: color 0.3s ease;
}

.process-step:hover .step-title {
  color: #8B7355;
}

.step-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  text-align: justify;
}

/* Liniile de conectare între pași */
.process-steps::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 44px;
  bottom: 45px;
  width: 2px;
  background: linear-gradient(to bottom, #8B7355, #d1b97f);
  z-index: -1;
  opacity: 0.6;
}

/* Preturi */
.pricing-section {
  padding: 4rem 0;
  background: #e7dbd3;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.pricing-card {
  background: white;
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pricing-card.popular {
  border: 2px solid #8B7355;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #8B7355;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 1;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #222;
  font-family: 'Playfair Display', serif;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
}

.price span {
  font-size: 1rem;
  color: #666;
}

.features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
  flex-grow: 1;
}

.features li {
  padding: 0.7rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 1.8rem;
}

.features li:last-child {
  border-bottom: none;
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B7355;
  font-weight: bold;
}

.pricing-btn {
  background: #18184d;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  margin-top: auto;
}

.pricing-btn:hover {
  background: #8B7355;
  transform: translateY(-2px);
}

.note {
  text-align: center;
  margin-top: 4rem;
  color: #666;
  font-style: italic;
}

.text_centru{
  text-align: center;
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #4CAF50;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInRight 0.3s ease;
}

.notification button {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* MEDIA QUERIES PENTRU TELEFOANE */
@media (max-width: 900px) {
  .navbar {
    padding: 12px 16px;
  }
  
  .nav-center {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(17, 17, 17, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 99;
  }
  
  .nav-center.open {
    display: flex;
  }
  
  .nav-center {
    background: rgba(17, 17, 17, 0.98) !important;
    color: #fff;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    padding-top: 32px;
    padding-bottom: 0;
    right: 0;
    left: auto;
    top: 0;
    width: 82vw;
    min-width: 0;
    max-width: none;
    height: 100vh;
    border-radius: 0 0 0 18px;
    box-shadow: -2px 0 24px rgba(0,0,0,0.18);
    transition: right 0.3s;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 32px;
    padding-bottom: 0;
  }
  
  .nav-center.open {
    display: flex;
    right: 0;
  }
  
  body .nav-center:not(.open) {
    right: -100vw;
  }
  
  .navbar-logo {
    position: absolute;
    top: 12px;
    left: 24px;
    transform: none;
    margin: 0;
    z-index: 101;
    font-size: 1.6rem;
    color: #fff;
    background: none;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    height: 38px;
  }
  
  .nav-center a {
    width: 100%;
    text-align: center; 
    font-size: 1.35rem;
    color: #fff;
    background: none;
    border-radius: 0;
    border: none;
    padding: 18px 32px;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
    border-bottom: none;
    box-shadow: none;
  }
  
  .nav-center a:not(:last-child) {
      font-size: 1.2rem;
    border-bottom: none;
  }
  
  .nav-center a.active {
      font-size: 1.2rem;
    color: #d1b97f !important;
    background: none !important;
    border-bottom: none;
    font-weight: 600;
  }
  
  .hamburger {
    position: absolute;
    top: 12px;
    right: 24px;
    z-index: 102;
    background: none;
    border: none;
    width: 38px;
    height: 38px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  
  .hamburger .hamburger-x {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 38px;
    height: 38px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    color: #fff;
    background: none;
    border: none;
    z-index: 999;
    pointer-events: none;
  }
  
  .hamburger.open .hamburger-x {
    display: flex;
    pointer-events: auto;
  }
  
  .nav-center.open .navbar-logo {
    display: flex !important;
  }
  
  .nav-center.open .lang-switcher {
    display: flex !important;
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    top: 60%;
    width: auto;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 32px;
    gap: 18px;
  }
  
 .nav-center.open .lang-switcher {
    display: flex !important;
  }

  .lang-switcher {
    display: none;
    position: static;
    left: auto;
    bottom: auto;
    width: auto;
    padding: 4px 16px;
  }
  
  .lang-btn {
    color: #fff;
    background: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    padding: 6px 18px;
    margin: 0 2px;
    border: none;
    box-shadow: none;
  }
  
  .lang-btn.active {
      font-size: 1.2rem;
    color: #d1b97f;
    background: none;
    border-bottom: 2px solid #d1b97f;
  }
  
  /* Modal responsiveness */
  .project-modal-flex {
    flex-direction: column;
  }
  
  .project-modal-info {
    max-width: 100%;
    padding: 32px 24px;
  }
  
  .project-modal-gallery-container {
    padding: 30px 20px;
    border-radius: 0 0 18px 18px;
  }
  
  .project-modal-main-image {
    height: 250px;
  }
  
  .project-modal-thumbnails {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .services-content {
    flex-direction: column;
  }
  
  .services-list {
    width: 100%;
    max-width: 100%;
  }
  
  .services-image {
    min-width: 100%;
    max-width: 100%;
  }
  
  .services-image img {
    height: 400px;
  }

  /* Procesul responsive */
  .process-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .process-steps {
    gap: 50px;
    max-width: 100%;
  }
  
  .process-step {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
  
  .step-visual {
      margin: 0 auto;
    flex-direction: row;
    gap: 20px;
  }
  
  .step-icon {
    width: 70px;
    height: 70px;
  }
  
  .step-line {
      display: none;
  }
  
  .step-content {
    padding-top: 0;
  }
  
  .step-title {
    font-size: 1.3rem;
  }
  
  .step-description {
    font-size: 1rem;
    text-align: justify;
    text-align-last: center;
  }
  
  /* Ascunde linia verticală pe mobil */
  .process-steps::before {
    display: none;
  }
  
  /* Adaugă linii orizontale între pași pe mobil */
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, #8B7355, transparent);
    opacity: 0.3;
  }
  
  /* Preturi responsive */
  .pricing-card.popular {
    transform: none;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Corecții pentru ecrane mici (telefon) */
@media (max-width: 700px) {
  body, html {
    width: 100vw;
    min-width: 100vw;
    overflow-x: hidden;
  }

.footer-bottom nav a {
    font-size: 0.95rem;
}

.logo-amako {
    width: 180px;
}

  .about-image img {
    width: 100%;
    max-width: 700px;
    height: 300px;
    border-radius: 8px;
    margin: 0;
    display: block;
  }
  

.about-icon {
  display: block;
  align-items: center;
  justify-content: flex-end;
  max-width: 50px;
  max-height: 50px;
  margin-bottom: 18px;
  }

.about-icon-box h3 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: #111;
  }

.about-icon-box p {
  font-size: 1rem;
  padding: 0 60px;
}

.services-section {
  width: 100%;
  padding: 50px 0 50px 0;
  background: #fff;
}

.about-text h2 {
    text-align: center;
    text-align-last: center;
    font-size: 1.5rem;
}
  
  section,
  .portfolio-section,
  .team-section,
  .contact-section,
  .process-section {
    padding: 28px 0;
    margin: 0 auto;
    width: 100vw;
    box-sizing: border-box;
  }
  
  .section-title {
    margin: 0 5%;
    font-size: 2rem;
    margin-bottom: 18px;
    text-align: center;
  }
  
  .about-section {
      background: #f1efe9;
    padding: 20px 0 20px 0;
  }
  
  .about-icons-row {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
  }
  
  .about-icon-box {
    max-width: 98vw;
    min-width: 0;
    padding: 12px 2px;
    margin: 0 auto;
    text-align: center;
  }
  
  .about-content-row {
    border-radius: 0;
    background: #f1efe9;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    max-width: 100vw;
    margin: 0;
  }
  
  .process-section .container {
      padding: 0;
  }
  
  .about-text,
  .about-text p,
  .about-image {
    width: -webkit-fill-available;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    text-align-last: center;
  }
  
  .services-header {
    text-align: center;
    margin-bottom: 12px;
  }
  
  .services-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 100vw;
    margin: 0 auto;
  }
  
  .services-list {
    max-width: 100vw;
    width: 100vw;
    gap: 8px;
    margin: 0 auto;
  }
  
  .service-box {
    font-size: 0.92rem;
    padding: 8px 2px;
    border-radius: 8px;
    margin: 0 auto;
    text-align: center;
  }
  
  .services-image {
    min-width: 0;
    max-width: 100vw;
    padding: 2px;
    justify-content: center;
    margin: 0 auto;
  }
  
  .services-image img,
  #serviceImg {
    max-width: 92vw !important;
    width: 92vw !important;
    height: auto !important;
    max-height: 320px !important;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
    object-fit: cover;
  }
  
  .section-title-2 {
      font-size: 2rem;
      font-weight: 300;
  }
  
  .team-section {
    padding: 50px 0;
    min-height: auto;
  }
  
  .team-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    max-width: 100vw;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }
  
  .team-card-1,
  .team-card-2,
  .team-card-3 {
    padding: 20px 15px;
    margin: 0 auto;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 300px;
  }
  
  .team-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  
  .team-card-1 h3,
  .team-card-2 h3,
  .team-card-3 h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}
  
  .bio {
      font-size: 1rem;
      text-align: justify;
      text-align-last: center;
  }
  
  .portfolio-section {
    padding: 50px 0;
  }
  
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 100vw;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }
  
  .project-card {
    border-radius: 8px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 100%;
  }
  
  .image-wrapper {
    height: 120px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .img-main {
    height: 120px;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
    object-fit: cover;
  }
  
  .project-card h3 {
    padding: 12px 10px 6px;
    font-size: 1rem;
  }
  
  .project-card p {
    padding: 0 10px;
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  
  .project-btn {
    margin: 0 10px 12px;
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .contact-section {
    padding: 30px 0 50px 0;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 auto;
  }
  

  .project-request {
    padding: 20px;
    border-radius: 8px;
    margin: 0 auto;
    text-align: center;
  }
  
  .contact-info {
    padding: 0;
    border-radius: 8px;
    margin: 0 auto;
    text-align: center;
  }
  
  .footer-col-contact {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  
  .footer-col a,
  .footer-col u,
  .footer-col li{
      color: #ccc;
      text-decoration: none;
      text-align: center;
      margin-bottom: 0;
  }
  
  .modal-comanda-form {
     padding: 20px 10px 0 10px;
    border-radius: 8px;
    margin: 0 auto;
    text-align: center;
  }
  
  .contact-details {
    margin: 20px 0;
    justify-content: center;
    align-items: center;
  }
  
  .contact-detail {
    justify-content: center;
    align-items: center;
  }
  
  .contact-detail .icon {
    width: 22px;
    height: 22px;
    font-size: 0.95rem;
    margin-right: 6px;
  }
  
  .working-hours {
    margin-top: 8px;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  
  .main-footer {
    padding: 30px 0 10px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 2px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }
  
  .footer-col {
    margin-bottom: 8px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  
  .footer-gallery {
      width: 40vh;
      height: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-gallery img {
    height: 130px;
    border-radius: 4px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 10px auto 0;
    padding: 6px;
  }
  
  .footer-bottom nav {
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  
  .amako-buttons-row {
    flex-direction: column;
    gap: 8px;
  }

  /* Procesul pentru telefoane mici */
  .process-section {
    padding: 50px 50px;
  }
  
  .process-steps {
    gap: 40px;
    padding: 0 8px;
  }
  
  .process-step {
    margin: 0 auto;
    max-width: 90vw;
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
  }
  
  .step-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
  
  .step-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* MODAL COMANDA PROIECT - DIMENSIUNI OPTIMIZATE PENTRU MOBILE */
  .modal-comanda-proiect {
    padding: 10px;
  }

  .modal-comanda-content {
    width: 95vw;
    max-width: 95vw;
    min-height: 70vh;
    margin: 20px auto;
    padding: 15px 0 75px 0;
  }

  .modal-comanda-form {
    padding: 0 15px;
  }
  
  /* Preturi mobile */
  .pricing-section {
    padding: 50px 20px;
  }
  
  .note {
      font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 0;
  }
  
  .price {
    font-size: 2rem;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
  }
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Corecții suplimentare pentru servicii pe telefoane */
@media (max-width: 700px) {
  .services-header {
    text-align: left;
    margin-bottom: 50px;
    padding-left: 8px;
    font-size: 1.1rem;
  }
  .services-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    max-width: 100vw;
    margin: 0 auto;
    padding-left: 8px;
    padding-right: 8px;
  }
  .services-list {
    max-width: 100vw;
    width: 100vw;
    gap: 6px;
    margin: 0 auto;
    align-items: flex-start;
    text-align: left;
  }
  .service-box {
    font-size: 0.85rem;
    padding: 6px 2px;
    border-radius: 8px;
    margin: 0 auto;
    text-align: left;
  }
  .h1-text
  .services-image {
    min-width: 0;
    max-width: 100vw;
    padding: 2px;
    justify-content: center;
    margin: 0 auto;
    width: 100vw;
    display: flex;
    align-items: center;
  }
  .services-image img,
  #serviceImg {
    max-width: 92vw !important;
    width: 92vw !important;
    height: auto !important;
    max-height: 320px !important;
    box-shadow: unset;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
    object-fit: cover;
  }

/* Egalizare distanță față de margini pentru casete servicii, echipă, portofoliu */
.services-cadran,
.team-grid,
.projects-grid,
.process-steps {
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
}

/* Pentru telefon și tabletă */
@media (max-width: 1100px) {
  .services-cadran,
  .team-grid,
  .projects-grid,
  .process-steps {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 700px) {
  .services-cadran,
  .team-grid,
  .projects-grid,
  .process-steps {
    max-width: 100vw;
    padding-left: 4px;
    padding-right: 4px;
  }
  
  .team-grid {
      flex-direction:column;
  }
  
  .team-card-1 {order: 2;}
  .team-card-2 {order: 1;}
  .team-card-3 {order: 3;}
}

/* Efecte de focus pentru accesibilitate */
.step-icon:focus {
  outline: 3px solid #8B7355;
  outline-offset: 2px;
}

/* Loading state pentru imagini */
.step-icon img {
    width: 180%;
    height: 180%;
  transition: opacity 0.3s ease;
}

.step-icon img[src*=".png"]:not([loaded]) {
  opacity: 0.5;
  background: #f0f0f0;
}

/* Mobile overrides: îngroșează titlurile cerute */
@media (max-width: 700px) {
  /* Titlul Portofoliu - îngroșat pe mobil */
  #portfolio .section-title {
    font-weight: 300;
  }

  /* Titlul Procesului - îngroșat pe mobil */
  #procesul .section-title,
  .process-section .section-title {
    font-weight: 300;
  }

  /* Titlul Echipă - îngroșat pe mobil */
  #team .section-title {
    font-weight: 700;
  }

  /* Titlul Contact - îngroșat pe mobil */
  #contact .section-title {
    font-weight: 700;
  }
}

/* Centerizează titlul și subtitlurile secțiunii Servicii pe telefoane */
@media (max-width: 700px) {
	.services-header {
		text-align: center !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.services-header .h1-text,
	.services-header .services-subtitle {
		text-align: center !important;
		margin-left: auto !important;
		margin-right: auto !important;
		display: block;
	}
}

/* Corecții specifice pentru cadranul de servicii pe telefoane */
@media (max-width: 700px) {
  .services-cadran {
      box-shadow: unset;
      background: #f1efe9;
    padding: 10px 10px;
    margin: 0 auto;
    max-width: 95vw;
    border-radius: 16px;
  }
  
  .services-content {
    flex-direction: column;
    gap: 15px;
    padding: 0;
  }
  
  .services-list {
    width: 100%;
    max-width: 100%;
    gap: 15px;
  }
  
  .service-box {
    padding: 16px 12px;
    font-size: 0.9rem;
    text-align: left;
    margin: 0;
  }
  
  .service-box h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.35rem;
    margin-bottom: 8px;
  }
  
  .service-box p {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
  }
  
  .service-box ul {
    margin-left: 16px;
    font-size: 1rem;
  }
  
  .service-box li {
    margin-bottom: 4px;
  }
  
  .services-image {
    min-width: 100%;
    max-width: 100%;
    padding: 0;
  }
  
  .services-image img {
    width: 100%;
    max-width: 100%;
    height: 280px;
    border-radius: 10px;
  }
  
  /* Asigură-te că titlurile și subtitlurile sunt centrate */
  .services-header {
    text-align: center;
    padding: 0 8px;
  }
  
  .services-header .h1-text,
  .services-header .services-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Corecții suplimentare pentru ecrane foarte mici */
@media (max-width: 480px) {
  
  .service-box {
    padding: 8px 12px;
  }
  
  .services-image img {
    height: 220px;
  }
}

/* RESPONSIVE PENTRU MODAL PE MOBIL */
@media (max-width: 900px) {
  .project-modal-flex {
    flex-direction: column;
  }
  
  .project-modal-info {
    flex: 0 0 auto;
    max-height: 45vh;
    border-right: none;
    border-bottom: 1px solid #e9ecef;
    padding: 20px;
  }
  
  .project-modal-gallery-container {
    flex: 1;
  }
  
  .project-modal-main-image {
    height: 50vh;
    padding: 15px;
  }
  
  .project-modal-thumbnails-container {
    max-height: 20vh;
    padding: 10px 15px;
  }
  
  .project-modal-thumbnails {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 600px) {
  .project-modal-info {
    padding: 15px;
    max-height: 50vh;
  }
  
  .project-modal-main-image {
    height: 45vh;
    padding: 10px;
  }
  
  .project-modal-thumbnails {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }
  
  .project-modal-thumbnail {
    height: 45px;
  }
  
  .gallery-nav-btn {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
}

/* Pentru ecrane foarte mici */
@media (max-width: 480px) {
  .project-modal-content {
    width: 98vw;
    height: 98vh;
    max-width: 98vw;
    max-height: 98vh;
  }
  
  .project-modal-info {
    max-height: 55vh;
  }
  
  .project-modal-main-image {
    height: 40vh;
  }
  
  .project-modal-thumbnails {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CASETA DE IMAGINE NATURALĂ PENTRU TELEFON */
@media (max-width: 900px) {
  .project-modal-content {
    max-width: 100vw;
    width: 100vw;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    background: #fff;
  }
  
  .project-modal-flex {
    flex-direction: column;
    height: 100%;
    overflow: hidden;
  }
  
  .project-modal-info {
    flex: 0 0 auto;
    max-height: 45vh;
    border-right: none;
    border-bottom: 1px solid #e9ecef;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
  }
  
  .project-modal-gallery-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    background: #fff;
  }
  
  .project-modal-gallery {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    padding: 0;
    gap: 0;
  }
  
  .gallery-image-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 15px;
    min-height: 60vh;
  }
  
  .gallery-image-item:last-child {
    border-bottom: none;
  }
  
  .project-modal-image {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    background: #fff;
    display: block;
  }
  
  .project-modal-thumbnails-container {
    display: none;
  }
  
  .gallery-counter {
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 10px 0;
    display: inline-block;
  }
  
  .gallery-nav {
    display: flex;
    gap: 10px;
    margin-top: 15px;
  }
  
  .gallery-nav-btn {
    flex: 1;
    background: #8B7355;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .gallery-nav-btn:hover:not(:disabled) {
    background: #6d5c46;
  }
  
  .gallery-nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
  }
}

/* Optimizări pentru ecrane mai mici */
@media (max-width: 600px) {
  .project-modal-info {
    max-height: 40vh;
    padding: 15px;
  }
  
  .project-modal-info h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  
  .project-modal-code {
    font-size: 0.9rem;
  }
  
  .project-modal-info p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .gallery-image-item {
    padding: 15px 10px;
    min-height: 50vh;
  }
  
  .project-modal-image {
    border-radius: 6px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.08);
  }
  
  .project-details-table {
    font-size: 0.85rem;
  }
  
  .project-details-table td {
    padding: 6px 0;
  }
}

/* Pentru telefoane foarte mici */
@media (max-width: 480px) {
  .project-modal-info {
    max-height: 35vh;
    padding: 12px;
  }
  
  .project-modal-info h2 {
    font-size: 1.2rem;
  }
  
  .gallery-image-item {
    padding: 12px 8px;
    min-height: 45vh;
  }
  
  .project-modal-image {
    border-radius: 4px;
  }
  
  .gallery-counter {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
  
  .gallery-nav-btn {
    padding: 10px;
    font-size: 0.9rem;
  }
}

/* Scrollbar frumos și discret */
.project-modal-gallery::-webkit-scrollbar {
  width: 6px;
}

.project-modal-gallery::-webkit-scrollbar-track {
  background: #f8f9fa;
}

.project-modal-gallery::-webkit-scrollbar-thumb {
  background: #8B7355;
  border-radius: 3px;
}

.project-modal-gallery::-webkit-scrollbar-thumb:hover {
  background: #6d5c46;
}

.project-modal-info::-webkit-scrollbar {
  width: 4px;
}

.project-modal-info::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.project-modal-info::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 2px;
}

/* Animație smooth la schimbarea imaginii */
.project-modal-image {
  transition: transform 0.3s ease;
}

.gallery-image-item {
  transition: opacity 0.3s ease;
}

/* Focus states pentru accesibilitate */
.gallery-nav-btn:focus {
  outline: 2px solid #8B7355;
  outline-offset: 2px;
}

.project-modal-close:focus {
  outline: 2px solid #8B7355;
  outline-offset: 2px;
}

/* MODIFICĂRI PENTRU GALERIA DE PROIECTE PE MOBILE */
@media (max-width: 900px) {
  .project-modal-flex {
    flex-direction: column;
    height: 100vh;
  }
  
  .project-modal-info {
    flex: 0 0 auto;
    max-height: 40vh;
    border-right: none;
    border-bottom: 1px solid #e9ecef;
    padding: 20px;
    overflow-y: auto;
  }
  
  .project-modal-gallery-container {
    flex: 1;
    min-height: 0;
    padding: 0;
  }
  
  .project-modal-gallery {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  /* ASCUNDEM THUMBNAILS PE MOBILE PENTRU A ECONOMISI SPAȚIU */
  .project-modal-thumbnails-container {
    display: none;
  }
  
  /* IMAGINE PRINCIPALĂ - SE VEDE COMPLETĂ */
  .project-modal-main-image {
    width: 100%;
    height: auto;
    max-height: 50vh;
    object-fit: contain;
    padding: 10px;
    cursor: zoom-in;
  }
  
  /* BUTOANE DE NAVIGARE MAI COMPACTE */
  .gallery-nav {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
  }
  
  .gallery-nav-btn {
    flex: 1;
    background: #8B7355;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .gallery-counter {
    text-align: center;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 10px auto;
    display: inline-block;
  }
}

/* OPTIMIZĂRI PENTRU ECRANE MAI MICI */
@media (max-width: 600px) {
  .project-modal-info {
    max-height: 35vh;
    padding: 15px;
  }
  
  .project-modal-main-image {
    max-height: 45vh;
  }
  
  .gallery-nav {
    padding: 12px 15px;
  }
  
  .gallery-nav-btn {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}

/* PENTRU TELEFOANE FOARTE MICI */
@media (max-width: 480px) {
  .project-modal-info {
    max-height: 30vh;
    padding: 12px;
  }
  
  .project-modal-info h2 {
    font-size: 1.3rem;
  }
  
  .project-modal-main-image {
    max-height: 40vh;
  }
  
  .gallery-nav {
    padding: 10px 12px;
  }
  
  .gallery-nav-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  
  .gallery-counter {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* MODIFICĂRI PENTRU MODAL PE MOBILE - LAYOUT VERTICAL */
@media (max-width: 900px) {
  .project-modal-flex {
    flex-direction: column-reverse;
    height: 100vh;
    overflow-y: auto;
  }
  
  .project-modal-info {
    flex: 0 0 auto;
    max-height: none;
    border-right: none;
    border-bottom: 1px solid #e9ecef;
    padding: 20px;
    overflow-y: visible;
    order: 1;
  }
  
  .project-modal-gallery-container {
    flex: 1;
    min-height: 60vh;
    max-height: 60vh;
    padding: 0;
    order: 2;
  }
  
  .project-modal-main-image {
    width: 100%;
    height: auto;
    max-height: 50vh;
    object-fit: contain;
    padding: 10px;
    cursor: zoom-in;
  }
  
  /* ASCUNDEM THUMBNAILS PE MOBILE PENTRU A ECONOMISI SPAȚIU */
  .project-modal-thumbnails-container {
    display: none;
  }
  
  /* BUTOANE DE NAVIGARE MAI COMPACTE */
  .gallery-nav {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    position: sticky;
    bottom: 0;
    z-index: 10;
  }
  
  .gallery-nav-btn {
    flex: 1;
    background: #8B7355;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .gallery-counter {
    text-align: center;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 10px auto;
    display: inline-block;
  }
  
  /* OPTIMIZĂRI PENTRU CONȚINUTUL INFORMATIV */
  .project-modal-info-content {
    max-height: none;
    overflow-y: visible;
  }
  
  .project-modal-info h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .project-modal-code {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .project-modal-info p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .project-details-table {
    font-size: 0.85rem;
  }
  
  .project-details-table td {
    padding: 8px 0;
  }
  
  .project-features ul {
    padding-left: 15px;
  }
  
  .project-features li {
    margin-bottom: 5px;
    font-size: 0.85rem;
  }
}

/* OPTIMIZĂRI PENTRU ECRANE MAI MICI */
@media (max-width: 600px) {
  .project-modal-info {
    padding: 15px;
  }
  
  .project-modal-info h2 {
    font-size: 1.3rem;
  }
  
  .project-modal-main-image {
    max-height: 45vh;
  }
  
  .gallery-nav {
    padding: 12px 15px;
  }
  
  .gallery-nav-btn {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  
  .project-details-table {
    font-size: 0.8rem;
  }
}

/* PENTRU TELEFOANE FOARTE MICI */
@media (max-width: 480px) {
  .project-modal-info {
    padding: 12px;
    flex-direction: column-reverse;
  }
  
  .project-modal-info h2 {
    font-size: 1.2rem;
  }
  
  .project-modal-main-image {
    max-height: 60vh;
  }
  
  .gallery-nav {
    padding: 10px 12px;
  }
  
  .gallery-nav-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  
  .gallery-counter {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  .project-modal-info p {
    font-size: 0.9rem;
  }
  
  .project-details-table {
    font-size: 0.75rem;
  }
  
  .project-features li {
    font-size: 0.8rem;
  }
}

/* ASIGURĂ-TE CĂ MODALUL SE AFIȘEAZĂ CORECT PE MOBILE */
@media (max-width: 900px) {
  .project-modal-content {
    max-width: 100vw;
    width: 100vw;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
  
  .project-modal-flex {
    height: 100%;
    overflow-y: auto;
  }
}

/* SCROLLBAR DISCRET PENTRU MODAL */
.project-modal-flex::-webkit-scrollbar {
  width: 4px;
}

.project-modal-flex::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

.project-modal-flex::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 2px;
}

.project-modal-flex::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* STILURI PENTRU PROIECTE ÎN PROCES */
.project-card.in-progress {
  position: relative;
  opacity: 0.85;
  filter: grayscale(0.7);
  transition: all 0.3s ease;
}

.project-card.in-progress:hover {
  filter: grayscale(0.5);
  opacity: 0.9;
  transform: translateY(-2px);
}

.project-card.in-progress:hover .progress-overlay {
  opacity: 1;
}

.project-btn.disabled {
  background: #cccccc !important;
  color: #666666 !important;
  cursor: not-allowed !important;
}

/* Pe dispozitive mobile, afișează întotdeauna overlay-ul */
@media (max-width: 768px) {
  .progress-overlay {
    opacity: 1;
  }
  
  .progress-text {
    font-size: 1.2rem;
    padding: 8px 16px;
  }
}

/* STILURI PENTRU DISPOZITIVE TABLETĂ - LOGOURI DESPRE NOI */
@media (min-width: 768px) and (max-width: 1024px) {
  .about-icon-box.tablet-hide {
    display: none !important;
  }
  
  .about-icons-row {
    justify-content: center;
    gap: 40px;
  }
  
  .about-icon-box:first-child {
    max-width: 400px;
    min-width: 400px;
    text-align: center;
  }
  
  .about-icon-box:first-child h3 {
    font-size: 2.2rem;
  }
  
  .about-icon-box:first-child p {
    font-size: 1.1rem;
    line-height: 1.4;
  }
}

/* STILURI PENTRU CALCULATOR - TOATE LOGOURILE VIZIBILE */
@media (min-width: 1025px) {
  .about-icon-box.tablet-hide {
    display: flex !important;
  }
  
  .about-icons-row {
    justify-content: center;
    gap: 64px;
  }
}

/* STILURI PENTRU TELEFOANE - TOATE LOGOURILE VIZIBILE */
@media (max-width: 767px) {
  .about-icon-box.tablet-hide {
    display: flex !important;
  }
  
  .about-icons-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .about-icon-box {
    max-width: 100%;
    min-width: 100%;
  }
}

/* ASIGURĂ-TE CĂ PRIMUL LOGO ESTE ÎNTOTDEAUNA VIZIBIL */
.about-icon-box:first-child {
  display: flex !important;
}

.left-text {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-family: 'Playfair Display', serif;
  color: #000000;
}
}
}