
/* =========================
   RESET & BASE
========================= */
* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    background: #f8f9fb; color: #333; line-height: 1.6;
    transition: background 0.3s, color 0.3s;
}
h1,h2,h3,h4 { font-weight: bold; }
a { text-decoration: none; color: inherit; }
section { padding: 60px 10%; }

/* =========================
   NAVBAR
========================= */


/* =========================
   HERO
========================= */

.hero h1 { font-size: 2.8rem; animation: fadeInDown 1s ease; font-weight: 700; }
.hero p { margin: 15px 0; font-size: 1.2rem; animation: fadeIn 2s ease; }
.btn {
    background: #ff4c60; color: white; padding: 12px 30px;
    border: none; border-radius: 5px; transition: transform 0.3s, background 0.3s;
    display: inline-block; font-weight: bold;
}
.btn:hover { background: #ffffff; transform: scale(1.05); }

/* =========================
   SERVICII
========================= */
.servicii { text-align: center; }
.servicii h2 { margin-bottom: 20px; font-size: 2rem; }
.servicii-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px; margin-top: 20px;
}
.card {
    background: white; padding: 25px; border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 6px 18px rgba(0,0,0,0.15); }
.card .icon { font-size: 2.5rem; display: block; margin-bottom: 10px; color: #ff4c60; }

/* =========================
   PORTOFOLIU
========================= */
.portofoliu { text-align: center; background: #fff; }
.portfolio-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 20px; margin-top: 25px;
}
.portfolio-item {
    background: white; border-radius: 10px; overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1); transition: transform 0.3s;
}
.portfolio-item img { width: 100%; display: block; }
.portfolio-item h4 { padding: 10px; }
.portfolio-item:hover { transform: scale(1.03); }

/* =========================
   DESPRE NOI
========================= */
.despre { text-align: center; }
.skills { max-width: 500px; margin: 20px auto; text-align: left; }
.skill { margin: 10px 0; }
.skill span { font-weight: bold; }
.bar {
    background: #ddd; height: 8px; border-radius: 4px; overflow: hidden;
}
.fill {
    height: 8px; background: #ff4c60; width: 0;
    animation: growBar 2s forwards;
}

/* =========================
   TESTIMONIALE (slider)
========================= */
.testimoniale { background: #f9f9f9; text-align: center; }
.slider { position: relative; max-width: 600px; margin: auto; }
.testimonial {
    display: none; background: #fff; padding: 20px; border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1); margin: 10px 0;
}
.testimonial.active { display: block; animation: fadeIn 1s ease; }

/* =========================
   BLOG
========================= */
.blog { text-align: center; }
.blog-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px; margin-top: 20px;
}
.blog-grid article {
    background: #fff; padding: 20px; border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: transform 0.3s;
}
.blog-grid article:hover { transform: translateY(-5px); }

/* =========================
   CONTACT
========================= */
.contact { text-align: center; }
.contact-form {
    max-width: 500px; margin: auto; display: flex; flex-direction: column;
}
.contact-form input, .contact-form textarea {
    margin: 10px 0; padding: 12px; border: 1px solid #ccc;
    border-radius: 5px; transition: border 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
    border: 1px solid #ff4c60; outline: none;
}
.contact-form button { margin-top: 10px; }


/* =========================
   ANIMATIONS
========================= */
@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
@keyframes fadeInDown { from {opacity:0; transform:translateY(-20px);} to {opacity:1; transform:translateY(0);} }
@keyframes growBar { from {width: 0;} to {width: 100%;} }

/* =========================
   RESPONSIVE
========================= */


/* =========================
   CE NE DIFERENȚIAZĂ - MODERN
========================= */

/* =========================
   CARE ESTE PROCESUL?
========================= */
.proces {
    background: #fff;
    text-align: center;
    padding: 60px 20px;
}
.proces h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Container & track (slider) */
.proces-container {
    overflow: hidden;
    max-width: 1100px;
    margin: auto;
    position: relative;
}
.proces-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

/* Card */
.proces-card {
    background: #fff;
    flex: 0 0 300px;
    margin: 0 10px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s;
}
.proces-card:hover {
    transform: translateY(-5px);
}

/* Număr etapă */
.step {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: bold;
    margin-bottom: 10px;
}

/* Butoane navigare */
.proces-controls {
    margin-top: 20px;
}
.proces-controls button {
    background: white;
    border: 2px solid #333;
    padding: 8px 12px;
    font-size: 1.5rem;
    border-radius: 5px;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.proces-controls button:hover {
    background: #00a954;
    border-color: #00a954;
    color: white;
}

/* Responsive */
@media(max-width: 768px) {
    .proces-card { flex: 0 0 80%; }
}

.proces {
    background: #f9f9fb;
    padding: 70px 20px;
    text-align: center;
}
.proces h2 {
    font-weight: 700;
    font-size: 2.3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}
.proces-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* Slider container */
.proces-container {
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
    position: relative;
}
.proces-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 20px;
}

/* Carduri */
.proces-card {
    flex: 0 0 320px;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}
.proces-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}

/* Numere mari */
.step {
    width: 55px; height: 55px;
    border-radius: 50%;
    background:#02d86b;
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold; font-size: 1.2rem;
    margin-bottom: 12px;
}

/* Text */
.proces-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
}
.proces-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Butoane navigare */
.proces-controls {
    margin-top: 25px;
}
.proces-controls button {
    background: #fff;
    border: 2px solid #0b132b;
    padding: 10px 14px;
    border-radius: 5px;
    font-size: 1.4rem;
    cursor: pointer;
    margin: 0 5px;
    transition: all 0.3s;
}
.proces-controls button:hover {
    background: #00a954;
    border-color: #00a954;
    color: white;
}

/* Responsive */
@media(max-width: 768px) {
    .proces-card { flex: 0 0 85%; }
    .proces-intro { font-size: 1rem; }
}


/* =========================
   CE NE DIFERENȚIAZĂ (VERSION PREMIUM)
========================= */
.diferentiere {
    background: #f8f9fb;
    padding: 80px 20px;
    text-align: center;
}
.diferentiere h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}
.diferentiere .intro {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* Layout */
.diff-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

/* Imagine */
.diff-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}
.diff-image img:hover { transform: scale(1.03); }

/* Beneficii */
.diff-benefits {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}



/* =========================
   DESPRE NOI (Premium)
========================= */
.despre {
    background: linear-gradient(135deg, #f9f9fb, #ffffff);
    padding: 80px 20px;
    text-align: center;
}
.despre h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
}
.despre .intro {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #555;
}
.about-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}
.about-text {
    flex: 1;
    min-width: 280px;
    text-align: left;
}
.about-text h3 { font-size: 1.4rem; margin-bottom: 10px; }
.about-text p { color: #555; line-height: 1.6; }

/* Skill Bars */
.skills { flex: 1; min-width: 280px; }
.skill { margin: 15px 0; text-align: left; }
.skill span { font-weight: 600; }
.bar {
    background: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    height: 8px;
    margin-top: 5px;
}
.fill {
    background: linear-gradient(90deg, #ff4c60, #ff7c80);
    height: 8px;
    width: 0;
    transition: width 1.5s ease;
}

/* =========================
   TESTIMONIALE (Modern Slider)
========================= */
.testimoniale {
    background: #fff;
    text-align: center;
    padding: 80px 20px;
}
.testimoniale h2 { font-size: 2.3rem; margin-bottom: 10px; }
.testimoniale .intro { color: #555; margin-bottom: 30px; }

/* Slider */
.testimonial-slider {
    display: flex;
    overflow: hidden;
    max-width: 700px;
    margin: auto;
    position: relative;
}
.testimonial-card {
    flex: 0 0 100%;
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}
.testimonial-card p {
    font-size: 1rem;
    color: #444;
    font-style: italic;
    margin-bottom: 15px;
}
.testimonial-card h4 { margin: 5px 0; font-size: 1.1rem; color: #222; }
.testimonial-card span { color: #777; }

/* Controls */
.testimonial-controls { margin-top: 20px; }
.testimonial-controls button {
    background: #fff;
    border: 2px solid #0b132b;
    border-radius: 50%;
    width: 40px; height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    margin: 0 5px;
    transition: all 0.3s;
}
.testimonial-controls button:hover {
    background: #ff4c60;
    border-color: #ff4c60;
    color: white;
}

/* Responsive */
@media(max-width: 900px) {
    .about-container { flex-direction: column; text-align: center; }
    .about-text { text-align: center; }
}


/* =========================
   PORTOFOLIU (Premium Modern)
========================= */
.portofoliu {
    padding: 80px 20px;
    background: #f9f9fb;
    text-align: center;
}
.portofoliu h2 {
    font-size: 2.3rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}
.portofoliu .intro {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #555;
}

/* Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* Card */
.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.portfolio-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}
.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-title{
    font-weight: 700;
}
/* Overlay */
.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(11, 19, 43, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
    text-align: center;
}
.portfolio-item:hover .overlay { opacity: 1; }

.overlay h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}
.overlay p {
    font-size: 1rem;
    margin-bottom: 10px;
}
.btn-portfolio {
    background: #ff4c60;
    color: white;
    padding: 8px 18px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}
.btn-portfolio:hover { background: #ff6b81; }

/* Responsive */
@media(max-width: 768px) {
    .overlay h4 { font-size: 1.2rem; }
    .overlay p { font-size: 0.9rem; }
}

/* =========================
   BLOG (Modern Premium)
========================= */
.blog {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}
.blog h2 {
    font-size: 2.3rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}
.blog .intro {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #555;
}

/* Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* Card */
.blog-card {
    background: #f9f9fb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.blog-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Image */
.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover img { transform: scale(1.05); }

/* Content */
.blog-content {
    padding: 20px;
    text-align: left;
}
.blog-content h3 {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 8px;
}
.blog-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
}

/* Button */
.btn-blog {
    color: #00a954;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}
.btn-blog:hover { color: #1dce76; }

/* Responsive */
@media(max-width: 768px) {
    .blog-content { text-align: center; }
    .btn-blog { display: inline-block; margin-top: 10px; }
}

/* =========================
   DESPRE NOI - VARIANTĂ MODERNĂ (OPTIMIZATĂ)
========================= */
.despre-tech {
    display: flex;
    justify-content: center;      /* ✅ centrează conținutul pe orizontală */
    align-items: center;          /* ✅ aliniază pe verticală în centru */
    gap: 60px;                    /* ✅ spațiu între text și imagine */
    flex-wrap: wrap;
    padding: 60px;            /* ✅ padding mai echilibrat */
    background: linear-gradient(265deg, #f9f9fb, #ffffff);
    max-width: 1200px;            /* ✅ limitează lățimea */
    margin: 0 auto;               /* ✅ centrează secțiunea în pagină */
}

/* Left Text */
.tech-left {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    text-align: left;
}

/* Ajustare pentru titlu și text */
.tech-left h2 {
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 15px;
}
.tech-left h2 span { color: #00ff7f; }
.tech-left p {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* Badges */
.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.tech-badges span {
    background: #f1f1f1;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    transition: background 0.3s, transform 0.2s;
}
.tech-badges span:hover { background: #00a954; color: white; transform: scale(1.05); }

/* Button */
.btn-tech {
    background: #00ff7f;
    color: rgb(0, 0, 0);
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-tech:hover { background: #02d86b; }

/* Right Icons Section */
.tech-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;             /* ✅ dimensiune mai compactă */
    position: relative;
    margin: auto;
}

/* Logo central */
.tech-center img {
    width: 140px;
    z-index: 2;
}

/* Iconițele tehnologii */
.tech-icons {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    max-width: 350px;
}
.tech-icons img {
    width: 48px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.tech-icons img:hover { transform: scale(1.15); box-shadow: 0 6px 15px rgba(0,0,0,0.15); }

/* ✅ Responsive */
@media(max-width: 1024px) {
    .despre-tech { padding: 50px 8%; gap: 40px; }
    .tech-left { max-width: 100%; text-align: center; }
}
@media(max-width: 768px) {
    .despre-tech { flex-direction: column; text-align: center; }
    .tech-right { margin-top: 20px; }
}

/* =========================
   TESTIMONIALE - MODERN
========================= */
.testimoniale {
    background: #f9f9fb;
    padding: 80px 20px;
    text-align: center;
}
.testimoniale h2 {
    font-weight: 700;
    font-size: 2.3rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.testimoniale .intro {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* Slider */
.testimonial-slider {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
}

/* Card */
.testimonial-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    flex: 1 1 300px;
    max-width: 350px;
    opacity: 0.5;
    transform: scale(0.95);
    transition: all 0.4s ease;
}
.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Poza de profil */
.client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #00a954;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Text */
.testimonial-card p {
    font-style: italic;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}
.testimonial-card h4 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 5px;
}
.testimonial-card span {
    color: #777;
    font-size: 0.9rem;
}

/* Butoane slider */
.testimonial-controls {
    margin-top: 25px;
}
.testimonial-controls button {
    background: white;
    border: 2px solid #ddd;
    font-size: 1.5rem;

    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.testimonial-controls button:hover {
    background: #00a954;
    border-color: #00a954;
    color: white;
}

/* Responsive */
@media(max-width: 768px) {
    .testimonial-slider { flex-direction: column; align-items: center; }
    .testimonial-card { max-width: 90%; }
}


/* Pagina de contact */

.contact-hero {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding: 60px 10%;
  background: #fff;
  flex-wrap: wrap;
}
.contact-left { flex: 1; min-width: 300px; }
.contact-right { flex: 1; min-width: 300px; }

.breadcrumb { color: #777; font-size: 0.9rem; }
.contact-left h1 { font-size: 2.2rem; margin: 15px 0; color: #1a1a1a; }
.subtitle { color: #555; margin-bottom: 25px; }

.contact-info h3 { margin-top: 20px; }
.contact-info p { margin: 5px 0; color: #333; }
.contact-info a { color: #00a954; text-decoration: none; }

.contact-form { display: flex; flex-direction: column; gap: 10px; }
.contact-form input, .contact-form textarea {
  padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem;
}
.contact-form button {
  background: #007bff; color: white; border: none;
  padding: 12px; border-radius: 8px; cursor: pointer; font-weight: bold;
}
.contact-form button:hover { background: #0056b3; }

/* Location & Company Info */
.locations, .company-info { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; padding: 40px 10%; }
.location-card, .company-card {
  background: #fff; padding: 20px; border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05); min-width: 200px;
}

/* Map */
.map iframe { border-radius: 10px; }

/* Responsive */
@media(max-width: 768px) {
  .contact-hero { flex-direction: column; text-align: center; }
}


.info-hidden {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.info-visible {
  max-height: 500px; /* mare ca să cuprindă textul */
  opacity: 1;
}




/* CTA Estimator */
.btn-estimator {
    background: #ff4c60;
    color: white !important;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}
.btn-estimator:hover { background: #ff6b81; }

/* Dark Mode Button */
.dark-toggle {
    margin-left: 15px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    padding: 6px 10px;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s;
}
.dark-toggle:hover { background: rgba(255,255,255,0.2); }

/* HAMBURGER */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}



.contact-modern {
    background: #f9f9fb;
    padding: 50px 10%;
    display: flex;
    justify-content: center;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

.contact-left, .contact-right {
    flex: 1;
    min-width: 300px;
}

.contact-left h2 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: #555;
    margin-bottom: 20px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #007bff;
    outline: none;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.btn-primary {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #0056cc;
}

.map-container {
    width: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}



#typing-text {
    font-size: 1.2rem;
    color: #fff;
    border-right: 2px solid #ff4c60;
    white-space: nowrap;
    overflow: hidden;
}

/* ===== FOOTER MODERN RE-DESIGN ===== */
.footer {
    background: linear-gradient(135deg, #0a0a0a, #161616);
    color: #ddd;
    font-family: 'Poppins', sans-serif;
    padding: 60px 10%;
    display: flex;
    flex-direction: column;
}

/* Layout principal */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 40px;
}

/* Col stânga - brand */
.footer-left {
    max-width: 300px;
    flex: 1;
}

.footer-left h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.footer-left p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
}

/* Brand logo */
.footer-brand {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.footer-logo {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.brand-name {
    font-size: 22px;
    font-weight: 600;
    color: #00bfff;
}

/* Buton Estimator */
.btn-estimator-footer {
    display: inline-block;
    background: #00bfff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-estimator-footer:hover {
    background: #0094cc;
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(0, 191, 255, 0.4);
}

/* Linkurile din dreapta */
.footer-links {
    display: flex;
    gap: 60px;
    flex: 2;
}

.footer-links div {
    min-width: 150px;
}

.footer-links h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.footer-links a {
    display: block;
    color: #aaa;
    font-size: 15px;
    text-decoration: none;
    margin-bottom: 6px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #00bfff;
    padding-left: 5px;
}

/* Parteneri */
.partner {
    font-size: 15px;
    color: #bbb;
}

.partner-highlight {
    font-weight: bold;
    font-size: 17px;
    color: #fff;
    line-height: 1.4;
}

.partner-highlight span {
    color: #00bfff;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: #888;
}

.footer-bottom .made-with {
    font-style: italic;
    color: #bbb;
}

/* ✅ Responsivitate */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 40px 6%;
    }
    .footer-left {
        text-align: center;
    }
    .footer-brand {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* === OPTIMIZARE MOBIL FOOTER === */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-left {
        max-width: 100%;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-links div {
        min-width: unset;
    }

    .footer-links h3 {
        margin-bottom: 8px;
    }

    .footer-links a {
        font-size: 16px;
    }

    .btn-estimator-footer {
        width: 80%;
        text-align: center;
        font-size: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-bottom: 10px;
    }
}

/* --- CONTACT SECTION --- */
.contact-modern {
  background: linear-gradient(135deg, #eef3ff, #ffffff);
  padding: 60px 8%;
  text-align: center;
}
.contact-container {
  max-width: 700px;
  margin: auto;
}
.contact-modern h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
}
.contact-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* --- NEWSLETTER SECTION --- */
.newsletter-section {
  background: #fff;
  padding: 60px 8%;
  text-align: center;
  border-top: 1px solid #eee;
}
.newsletter-container {
  max-width: 700px;
  margin: auto;
}
.newsletter-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
}
.newsletter-container p {
  color: #555;
  margin-bottom: 25px;
}
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter-form input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  min-width: 250px;
  font-size: 1rem;
}
.btn-newsletter {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.btn-newsletter:hover {
  background: #0056cc;
}
.newsletter-container small {
  display: block;
  margin-top: 10px;
  color: #777;
  font-size: 0.9rem;
}

/* --- RESPONSIVE --- */
@media (max-width:600px){
  .btn-contact {width:100%;}
  .newsletter-form {flex-direction:column;}
  .newsletter-form input {width:100%;}
  .btn-newsletter {width:100%;}
}

.btn-contact {
    display: inline-block;
    background: #00ff7f;
    color: #000000;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    
    /* Efect levitație */
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0, 119, 204, 0.3);
}

.btn-contact:hover {
    background: #02d86b;
    transform: translateY(-3px) scale(1.05); /* mai pronunțat la hover */
    box-shadow: 0 8px 20px rgba(0, 95, 163, 0.4);
}

/* Animația de levitație */
@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}
