/* ----------------------------------
  Base Custom Framework - 2025
  Author: YOU
  Description: Responsive, clean CSS base for custom PHP projects
---------------------------------- */

:root {
  --primary-blue: #0070F3;
  --blue-light: #E6F0FF;
  --black: #121212;
  --gray-dark: #1E1E1E;
  --gray-light: #F5F5F5;
  --white: #FFFFFF;
  --font-main: 'Work Sans', sans-serif;
  --font-headings: 'Work Sans', sans-serif;
  --container-width: 1240px; /* Optimized for 2025 resolutions */
}
.logo img {
    width: 120px;
}
/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

p, span {
  font-family: var(--font-main);
  color: var(--black);
  font-size: 1rem;
  margin-bottom: 1em;
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.container-full {
  width: 100%;
  padding: 0 1rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.col-2 > * {
  flex: 1 1 calc(50% - 0.5rem);
}

.col-3 > * {
  flex: 1 1 calc(33.333% - 0.67rem);
}

.col-4 > * {
  flex: 1 1 calc(25% - 0.75rem);
}

.col-5 > * {
  flex: 1 1 calc(20% - 0.8rem);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75em 1.5em;
  font-family: var(--font-headings);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #0059c3;
}

.btn-outline {
  background-color: transparent;
  border-color: var(--black);
  color: var(--black);
}

.btn-outline:hover {
  background-color: var(--gray-light);
}

.btn-white {
  background-color: var(--white);
  border: 1px solid var(--gray-dark);
  color: var(--black);
}

.btn-white:hover {
  background-color: var(--gray-light);
}

.btn-dark {
  background-color: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background-color: #000000;
}

/* Header Styles */
.header {
  background-color: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gray-light);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.navbar .logo {
  font-family: var(--font-headings);
  font-weight: bold;
  font-size: 1.25rem;
  color: var(--black);
  text-decoration: none;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.navbar ul li a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  font-family: var(--font-main);
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: var(--primary-blue);
}

.navbar .cta {
  margin-left: 1.5rem;
}

.menu-toggle {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .col-2 > *,
  .col-3 > *,
  .col-4 > *,
  .col-5 > * {
    flex: 1 1 100%;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.25rem;
  }

  .navbar ul {
    display: none;
  }

  .navbar.active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100vw;
    padding: 1.25rem;
    background-color: var(--white);
    gap: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }
}

.footer {
  background-color: #121212;
  color: #ffffff;
  padding: 3rem 1rem 2rem;
  font-family: var(--font-main);
  font-size: 0.9rem;
}

.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer h4 {
  font-family: var(--font-headings);
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer a {
  display: block;
  color: #ffffff;
  font-size: 0.85rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-blue);
}

.footer p {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: #cccccc;
}

.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: #888888;
  margin-top: 3rem;
  border-top: 1px solid #1e1e1e;
  padding-top: 1.5rem;
}

.footer-cities {

  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 100%;
}

.footer-cities a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.5rem;
    margin-bottom: 0;
    line-height: 5px;
}

.footer-cities a:hover {
  color: var(--primary-blue);
}

.hero-section {
  padding: 5rem 0;
  background: var(--white);
}

.hero-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.hero-text {
  flex: 1 1 60%;
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-family: var(--font-headings);
  font-weight: 500;
}

.hero-text h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 1rem 0;
  color: #444;
}

.hero-text p {
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-buttons .btn {
  margin-right: 1rem;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-option {
  background-color: var(--white);
  color: var(--black);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-align: center;
  font-family: var(--font-main);
}

.service-option:hover {
    background-color: #a6cfff;
    color: #000000;
    transform: translateY(-2px);
}


.hero-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  flex: 1 1 55%;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 1rem;
}

.hero-content .subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #5a5a5a;
    line-height: 1.7rem;
}

.hero-content .description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #666;
}

.hero-buttons .btn {
  margin-right: 1rem;
}

.hero-form-box {
  flex: 1 1 35%;
  background-color: var(--primary-blue);
  color: #fff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-form-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-form-box form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


@media (max-width: 768px) {
  .hero-grid {
    flex-direction: column;
  }

  .hero-content, .hero-form-box {
    flex: 1 1 100%;
  }
}

.sub-titlu {
    font-weight: 300;
    font-size: 2.7rem;
}


.about-us {
  padding: 5rem 0;
  text-align: center;
  background-color: #0070f31f;
}

.about-us .section-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--gray-dark);
  margin-bottom: 1rem;
}

.about-us h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 2rem;
  font-weight: 500;
}

.about-us .section-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #555;
}
.section-modern-sites {
  padding: 3rem 0;
  background-color: #fff;
}
.two-columns {
    display: flex;
    flex-wrap: nowrap;
    gap: 3rem;
    align-items: center;
    flex-direction: row;
}
.section-modern-sites .two-columns {
    display: flex;
    flex-wrap: nowrap;
    gap: 3rem;
    align-items: center;
    flex-direction: row;
}

.section-modern-sites .modern-image,
.section-modern-sites .modern-text {
  flex: 1 1 50%;
}

.section-modern-sites .modern-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.section-modern-sites .modern-text {
  padding-right: 2rem;
}

.section-modern-sites .modern-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    font-weight: 500;
}

.section-modern-sites .modern-text .lead {
font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #5a5a5a;
    line-height: 1.7rem;
}

.section-modern-sites .modern-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-modern-sites .two-columns {
    flex-direction: column;
  }

  .section-modern-sites .modern-image,
  .section-modern-sites .modern-text {
    flex: 1 1 100%;
    text-align: center;
  }

  .section-modern-sites .modern-text {
    padding: 0 1rem;
  }
}

.servicii {
  padding: 5rem 0;
  text-align: left;
  background-color: #0070f31f;
}

.serviciis .section-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--gray-dark);
  margin-bottom: 1rem;
}

.servicii h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  font-weight: 400;
}

.servicii .section-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #555;
}


.servicii .two-columns {
    display: flex;
    flex-wrap: nowrap;
    gap: 3rem;
    align-items: center;
    flex-direction: row;
}

.servicii .modern-image,
.servicii .modern-text {
  flex: 1 1 50%;
}

.servicii .modern-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.servicii .modern-text {
  padding-right: 2rem;
}

.servicii .modern-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 400;
}

.servicii .modern-text .lead {
font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #5a5a5a;
    line-height: 1.7rem;
}

.servicii .modern-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .servicii .two-columns {
    flex-direction: column;
  }

  .servicii .modern-image,
  .servicii .modern-text {
    flex: 1 1 100%;
    text-align: center;
  }

  .servicii .modern-text {
    padding: 0 1rem;
  }
}

.checklist {
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.checklist li::before {
  content: "✔";
  color: #0070F3;
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1.1rem;
  color: var(--primary-blue);
}


.portfolio-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.portfolio-card {
  background-color: #fff;
  border: 1px solid #eee;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portfolio-card:hover {
  transform: translateY(-5px);
}

.portfolio-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top center;
  transition: object-position 3s ease;
}

.portfolio-card:hover .portfolio-img {
  object-position: bottom center;
}


.portfolio-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid #f5f5f5;
}

.portfolio-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.portfolio-content p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.portfolio-content .btn {
  align-self: flex-start;
}

.container.col-3 {

    display: flex;
    gap: 1rem;
}
.portofolio {
    padding: 3rem;
    text-align:center;
}