/* style.css */
:root {
    --alb: #ffffff;
    --gri-deschis: #dbddd8;
    --gri-mediu: #9b9790;
    --accent-portocaliu: #be5915;
    --verde-inchis: #4f6551;
    --gri-inchis: #524751;
    --bej: #6d6357;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    scroll-behavior: smooth;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 1rem 0;
  }
  
  /* NAVIGATION BAR */
  .navbar {
    background:linear-gradient(to right, #f9f9f9, #b8b8b8);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 1px;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
    max-width: 100%;
    margin: auto;
  
  }
  
  .logo {
    font-size: 2rem;
    font-weight: bold;
  }
  .logo-img {
    height: 90px;
    width: auto;
    display: block;
    margin-top: -10px;  /* "taie" de sus */
    margin-bottom: -15px;  /* "taie" de jos */
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    position: relative;
  }
  
  .nav-links li {
    position: relative;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #6d6357;
    font-weight: 600;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    font-size: 1.2rem; /* sau 1.2rem dacă vrei și mai mare */
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s ease;
  }
  
  .nav-links li a .dropdown-icon {
    margin-left: 5px;
    font-size: 0.8rem;
  }
  
  .nav-links li a:hover , .nav-links li a.active{
    color: #be5915;
    background-color: #aeaaa49f; /* un glow subtil */
    transform: translateY(-2px);
  }

  .nav-links li a.nav-holiday {
    color: #8B0000;
  }

  .nav-links li a.nav-holiday:hover {
    color: #A52A2A;
    background-color: #aeaaa49f;
  }
  
  
  /* DROPDOWN */
  .nav-links li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #6d6357;
    padding: 0.5rem 0;
    border-radius: 4px;
    z-index: 999;
    min-width: 220px;
    list-style: none;
  }
  
  .nav-links li:hover ul {
    display: block;
  }
  
  .nav-links li ul li {
    padding: 0.5rem 1rem;
    white-space: nowrap;
  }
  
  .nav-links li ul li a {
    color: white;
    display: block;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.6rem 1rem;
    transition: background-color 0.3s, transform 0.2s ease;
    border-radius: 5px;
  }
  
  .nav-links li ul li a:hover{
    background-color: #dbddd8;
    transform: translateX(5px);
  
  }
  
  .btn-call-navbar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #be5915;
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.2s;
    position: relative;
    z-index: 10;
  }
  
  .btn-call-navbar:hover {
    background-color: #d77432;
    transform: translateY(-2px);
  }
  
  .pulse {
    animation: pulseGlow 2s infinite;
  }
  
  @keyframes pulseGlow {
    0% {
      box-shadow: 0 0 0 0 rgba(190, 89, 21, 0.7);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(190, 89, 21, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(190, 89, 21, 0);
    }
  }
  
  .btn-call-navbar .call-text {
    line-height: 1.2;
    text-align: left;
  }
  
   /* Sticky call button */
  .sticky-call-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #be5915;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50%;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    text-align: center;
    transition: transform 0.2s ease;
    animation: pulseCall 2s infinite;
  }
  
  /* Hover effect */
  .sticky-call-btn:hover {
    background-color: #d77432;
    transform: scale(1.1);
  }
  
  /* Pulse animation */
  @keyframes pulseCall {
    0% {
      box-shadow: 0 0 0 0 rgba(190, 89, 21, 0.6);
    }
    70% {
      box-shadow: 0 0 0 12px rgba(190, 89, 21, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(190, 89, 21, 0);
    }
  }
  
  .burger {
    display: none;
    cursor: pointer;
    margin-top: 1.5rem;
  }
  
  .burger div {
    width: 25px;
    height: 3px;
    background-color: rgb(0, 0, 0);
    margin: 5px;
    transition: all 0.3s ease;
  }
  
  
  
  /* SUBNAV BAR */
  .subnav {
    background-color: #4a433b; /* maro închis elegant */
    font-size: 0.95rem;
    color: #f5f5f5;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    ;
  }
  
  .subnav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .subnav .info {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .subnav .info span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #f1f1f1;
  }
  
  .subnav .info i {
    color: #dbddd8;
    font-size: 1rem;
  }
  
  /* Buton elegant */
  .subnav .quote-btn {
    background-color: #b6b2ac;
    color: #4a3b2c;
    padding: 0.2rem 1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .subnav .quote-btn:hover {
    background-color: #bababa;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  }
  
  
  /* Responsive */
  @media screen and (max-width: 1160px) { /*768*/
    
    .logo-img{
      height: 60px;
    }
  
    .nav-container {
      justify-content: center;
      position: relative;
    }
  
    .btn-call-navbar {
      display:none;
    }
  
    .burger {
      position: absolute;
      right: 0.75rem;
      bottom: 1.2rem;
      display: block;
      z-index: 1001;
    }
  
    .nav-links {
      position: fixed;
      right: 0;
      top: 0;
      height: 100vh;
      background-color:#6D6357;
      flex-direction: column;
      align-items: center;
      width: 60%;
      transform: translateX(100%);
      opacity: 0;
      visibility: hidden;
      transition: transform 0.3s ease, opacity 0.3s ease;
      padding-top: 4rem;
      z-index: 999;
      overflow-y: auto;
      overflow-x: hidden;
    }
  
    .nav-links.nav-active {
      transform: translateX(0);
      opacity: 1;
      visibility: visible;
    }
  
    .burger.toggle .line1 {
      transform: rotate(-45deg) translate(-5px, 6px);
    }
  
    .burger.toggle .line2 {
      opacity: 0;
    }
  
    .burger.toggle .line3 {
      transform: rotate(45deg) translate(-5px, -6px);
    }
  
    .subnav {
      display:none;
    }
  
    .nav-links li:hover ul {
      display: none !important;
    }

    .nav-links li ul {
      position: static !important;
      background-color: transparent;
      padding: 0;
      display: none;
      width: 100%;
      min-width: 100%;
      max-width: 100%;
      left: auto !important;
      top: auto !important;
    }

    .nav-links li.nav-expanded ul {
      display: flex !important;
      flex-direction: column;
      width: 100%;
    }

    .nav-links li ul li {
      width: 100%;
      padding: 0.5rem 1rem;
      white-space: normal;
      box-sizing: border-box;
    }

    .nav-links li ul li a {
      width: 100%;
      white-space: normal;
      word-wrap: break-word;
      padding: 0.6rem 1rem;
      box-sizing: border-box;
    }
  
    .nav-links li a:hover , .nav-links li a.active{
      color: #be5915;
      background-color: rgba(255, 255, 255, 0.577); /* un glow subtil */
      transform: translateY(-2px);
    }
  
    .nav-links li a {
      text-decoration: none;
      color: #DBDDD8;
    }

    .nav-links li a.nav-holiday {
      color: #940202;
    }

    .nav-links li a.nav-holiday:hover {
      color: #A52A2A;
    }

    .sticky-call-btn {
      display: block;
    }
  
  }
  
  /* HEADER */
  .header {
    background: linear-gradient(to right, #00416a, #e4e5e6);
    color: white;
    padding: 3rem 0;
    text-align: center;
  }
  
  
  .slogan {
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }
  
  
  
  .intro {
    background-color: white;
    padding: 2rem 0;
    text-align: center;
  }
  
  .intro h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #00416a;
  }
  
  .services {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
  }
  
  .services li {
    margin: 0.5rem 0;
    font-size: 1.1rem;
  }
  
  
  
  
  
  /* BANNER CU IMAGINE ȘI BUTON SERVICII */
  .hero-banner {
    padding: 4rem 1rem;
    background: linear-gradient(to right, #f9f9f9, #b8b8b8);
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 1rem;
  }
  
  .hero-text .highlight {
    color: #be5915;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  
  .btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.6rem;
    background-color: #be5915;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .btn-hero:hover {
    background-color: #d77432;
    transform: translateY(-2px);
  }
  
  /* IMAGE & CARDS */
  .hero-visual {
    position: relative;
  }
  
  .hero-img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.421);
     border: 2px solid rgb(255, 255, 255);
  }
  
  .hero-card {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.847);
    border-radius: 25px;
    padding: 0.5rem 1.2rem;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.421);
    font-weight: 600;
    color: #757575;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .hero-card.top {
    top: -5%;
    right: -10%;
  }
  
  .hero-card.bottom {
    bottom: -5%;
    left: 5%;
  }
  .hero-img-overlay {
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 340px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 2;
    border: 2px solid rgb(255, 255, 255);
  }
  
  
  /* RESPONSIVE */
  @media screen and (max-width: 1160px) {
    .hero-grid {
      grid-template-columns: 1fr;
      padding: 0;
    }
  
    .hero-banner {
      padding: 0;
      background-image: url('../images/banner.jpg');
      background-size: cover;
      background-position: center;
    }
  
    .hero-text {
      padding: 4rem 0.1rem;
      text-align: center;
      background: rgba(0, 0, 0, 0.716);
    }
  
    .hero-text h1 {
      font-size: 2rem;
      color: white;
    }
    .hero-text .highlight {
      text-shadow:
        0 0 2px #d6d4cb,
        0 0 2px #d6d4cb,
        0 0 2px #d6d4cb,
        0 0 2px #d6d4cb;
    }
  
    .hero-subtitle {
      font-size: 1rem;
      color: #f0f0f0;
    }
  
    .hero-visual {
      display: none; 
    }
  }
  
  
  /* SECTIUNE 3 COLOANE SUB BANNER */
  .features-fade-wrapper {
    position: relative;
    overflow: hidden;
  }
  
  .features-section {
    background: linear-gradient(to right, #f9f9f9, #b8b8b8);
    padding: 4rem 1rem;
    position: relative;
    z-index: 1;
  }
  
  .features-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px; /* înălțimea efectului de fade */
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    z-index: 2;
    pointer-events: none;
  }
  
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }
  
  .feature-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(144, 110, 95, 0.612);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  
  .feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .icon-box {
    width: 60px;
    height: 60px;
    background-color: #f1ebe4;
    color: #be5915;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    flex-shrink: 0;
  }
  
  .feature-content h3 {
    font-size: 1.2rem;
    color: #6d6357;
    margin: 0;
  }
  
  .feature-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
  }
  
  
  
  @media screen and (max-width: 768px) {
    .features-section {
      padding: 2rem 1rem;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .feature-card {
      flex-direction: column;
      align-items: flex-start;
      padding: 1.5rem;
    }
  
    .icon-box {
      width: 50px;
      height: 50px;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
  
    .feature-content h3 {
      font-size: 1.1rem;
    }
  
    .feature-content p {
      font-size: 0.95rem;
    }
  }
  
  /* SECTIUNE 2 COLOANE CU IMAGINE + DESCRIERE */
  .about-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
    padding: 4rem 2rem;
     background-color: white;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.421);
    border: 2px solid rgb(255, 255, 255);
  }
  
  .about-text h2 {
    font-size: 1.6rem;
    color:#6d6357;
    margin-bottom: 1rem;
  }
  
  .about-text p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .about-text .btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.6rem;
    background-color: #be5915;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .about-text .btn-contact:hover {
    background-color: #d77432;
    transform: translateY(-2px);
  }
  /* Responsive: spațiu între secțiuni pe mobil */
  @media screen and (max-width: 768px) {
    
    .about-section {
      padding: 2rem 1rem;
      grid-template-columns: 1fr;
      text-align: center;
    }
    .about-text .btn-contact {
      margin-top: 1rem;
    }
  }
  
  
  
  /* SECTIUNE SERVICII PE PAGINA PRINCIPALA */
  /* Wrapper pentru fade alb sus */
  .services-fade-wrapper {
    position: relative;
    overflow: hidden;
  }
  
  .services-fade-top {
    position: absolute;
    top: 0;
    left: 0;
    height: 100px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    z-index: 2;
    pointer-events: none;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.4rem;
    color: #4a3b2c; /* sau orice culoare vrei tu */
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
  }
  
  .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #be5915;
    margin: 0.8rem auto 0;
    border-radius: 2px;
  }
  
  /* Fundal gradient orizontal */
  .services-overview {
    background: linear-gradient(to right, #f9f9f9, #b8b8b8);
    padding: 5rem 1.5rem 4rem;
    position: relative;
    z-index: 1;
  }
  
  /* GRID */
  .service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  /* CARDURI MODERNE */
  .service-card {
    background-color: #6d6357; /* maro închis */
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.529);
    color: #ffffff;
    text-align: center;
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  }
  
  /* IMAGINE CU EFECT 3D & BORDURĂ */
  .service-card img {
    width: 100%;
    height: 220px;
    max-width: 340px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 2px solid #fff;
    box-shadow: 5px 5px 8px rgba(255, 255, 255, 0.289);
  }
  
  /* TITLU */
  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
  }
  
  /* PARAGRAF */
  .service-card p {
    font-size: 0.95rem;
    color: #eaeaea;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  
  /* BUTON MODERN */
  .service-card .btn-details {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background-color: #be5915;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .service-card .btn-details:hover {
    background-color: #d77432;
    transform: translateY(-2px);
  }
  
  @media screen and (max-width: 768px) {
    .services-overview {
      padding: 3rem 1rem;
    }
  
    .service-grid {
      grid-template-columns: 1fr;
    }
  
    .service-card {
      padding: 1.5rem;
      width: 95%;
      margin: auto;
    }
  
    .service-card img {
      width: 100%;
      height: 200px;
    }
    .service-card p {
      display: none;
    }
  }
  
  
  /* SECTIUNE CTA (CALL TO ACTION) */
  .cta {
     background: linear-gradient(to right, #f9f9f9, #b8b8b8);
    color:  #4a3b2c;;
    padding: 3rem 1.5rem;
    text-align: center;
  }
  
  .cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .cta p {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  
  .cta .btn-urgent {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background-color: #be5915;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .cta .btn-urgent:hover {
   background-color: #d77432;
    transform: translateY(-2px);
  }
  
  @media screen and (max-width: 768px) {
    .cta .btn-urgent {
      display: block;
      width: 80%;
      margin: 0.5rem auto;
    }
  }
  
  /* FOOTER SECȚIUNE DEASUPRA COPYRIGHT */
  .footer-top {
    background-color: #4a433b;
    color: white;
    padding: 3rem 1.5rem;
  }
  
  .footer-top .container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .footer-top .footer-col img {
    width: 150px;
    margin-bottom: 1rem;
  }
  
  .footer-top .footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #d0ae96;
  }
  
  .footer-top .footer-col p,
  .footer-top .footer-col li {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .footer-top .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-top .footer-col ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-top .footer-col ul li a:hover {
    color: #d0ae96;
  }
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .services-overview {
      padding: 3rem 1rem;
    }
    .service-grid {
      grid-template-columns: 1fr;
    }
    .service-card {
      padding: 1.5rem;
    }
    .service-card img {
      max-width: 100%;
    }
    .footer-top .container {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .footer-top .footer-col img {
      margin: auto;
    }
  }
  
  
  
  /*footer*/
  
  .footer {
    background-color: #333;
    color: white;
    text-align: center;
    font-size: 0.9rem;
  }
  
  
  /* Fade-in modern */
  .fade-target {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .fade-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* HERO BANNERS WRAPPER */
  .hero-banners-wrapper {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
    pointer-events: none;
  }

  .hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    pointer-events: auto;
  }

  /* HERO NAVIGATION DOTS */
  .hero-dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    background: linear-gradient(to right, #f9f9f9, #b8b8b8);
  }

  .hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #9b9790;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .hero-dot:hover {
    background-color: #be5915;
    transform: scale(1.2);
  }

  .hero-dot.active {
    background-color: #be5915;
    width: 14px;
    height: 14px;
    box-shadow: 0 0 8px rgba(190, 89, 21, 0.5);
    cursor: default;
  }

  .hero-dot.active:hover {
    transform: scale(1);
  }

  /* HOLIDAY HERO SECTION */
  .holiday-hero {
    min-height: 650px;
    background-image: url('../images/squareChristmas.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 1rem;
  }

  .holiday-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(65, 65, 65, 0.15);
    z-index: 1;
  }

  .holiday-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
  }

  .holiday-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
  }

  .holiday-hero-subtitle {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-holiday-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background-color: #be5915;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  .btn-holiday-hero:hover {
    background-color: #d77432;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  }

  /* Mobile styles for holiday hero */
  @media screen and (max-width: 1160px) {
    .hero-banners-wrapper {
      height: 500px;
    }

    .holiday-hero {
      background-image: url('../images/mobileChristmas.png');
      min-height: 500px;
      padding: 3rem 1rem;
    }

    .hero-banner {
      min-height: 500px;
    }

    .holiday-hero-text h1 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
    }

    .holiday-hero-subtitle {
      font-size: 1.1rem;
      margin-bottom: 2rem;
    }

    .btn-holiday-hero {
      padding: 1rem 2rem;
      font-size: 1rem;
    }
  }

  /* Holiday Offer Page Styles */
  .holiday-offer-header {
    background-image: url('../images/squareChristmas.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #2e2e2e;
    padding: 5rem 1rem;
    text-align: center;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .holiday-offer-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(138, 138, 138, 0.201);
    z-index: 1;
  }

  .holiday-offer-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
  }

  .holiday-offer-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-left: 1rem;
    color: #2e2e2e;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
  }

  .holiday-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #be5915;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
  }

  .holiday-subtitle-secondary {
    font-size: 1.2rem;
    color: #4a433b;
    font-weight: 400;
    margin-top: 1rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
  }

  .holiday-offer-details {
    padding: 4rem 1rem;
    background-color: white;
  }

  .offer-content {
    max-width: 800px;
    margin: 0 auto;
  }

  .offer-content h2 {
    font-size: 2.2rem;
    color: #6d6357;
    margin-bottom: 2rem;
    text-align: center;
  }

  .offer-content > p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: center;
  }

  /* Pricing Tiers */
  .pricing-tiers {
    margin-bottom: 3rem;
  }

  .pricing-tiers h2 {
    font-size: 2rem;
    color: #6d6357;
    margin-bottom: 2rem;
    text-align: center;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .pricing-card {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #be5915;
  }

  .pricing-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .pricing-card h3 {
    font-size: 1.3rem;
    color: #6d6357;
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #be5915;
    margin-bottom: 0.5rem;
  }

  .pricing-card .pricing-details {
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 1.5rem 0;
  }

  .pricing-includes {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    text-align: left;
    border-top: 1px solid #e5e5e5;
    padding-top: 1.5rem;
  }

  .pricing-includes li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.4;
  }

  .pricing-includes li:last-child {
    margin-bottom: 0;
  }

  .pricing-includes li i {
    color: #be5915;
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .offer-benefits {
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .offer-benefits h3 {
    font-size: 1.6rem;
    color: #6d6357;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .offer-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }

  .offer-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #444;
    padding: 0.8rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .offer-list li i {
    color: #be5915;
    font-size: 1.3rem;
    flex-shrink: 0;
  }

  .offer-list li .note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-left: 0.5rem;
  }

  .offer-note {
    background-color: #fff3e0;
    border-left: 4px solid #be5915;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    text-align: center;
  }

  .offer-note p {
    margin: 0;
    font-size: 1.1rem;
    color: #6d6357;
  }

  .offer-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-holiday-offer {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 2rem;
    background-color: #be5915;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .btn-holiday-offer:hover {
    background-color: #d77432;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  }

  .btn-holiday-call {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background-color: #4f6551;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .btn-holiday-call:hover {
    background-color: #5d7a61;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  }

  @media screen and (max-width: 768px) {
    .holiday-offer-header {
      background-image: url('../images/mobileChristmas.png');
      min-height: 350px;
      padding: 3rem 1rem;
    }

    .holiday-offer-header h1 {
      font-size: 2.2rem;
    }

    .holiday-subtitle {
      font-size: 1.4rem;
    }

    .holiday-subtitle-secondary {
      font-size: 1rem;
    }

    .offer-content h2,
    .pricing-tiers h2 {
      font-size: 1.8rem;
    }

    .pricing-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .pricing-card {
      padding: 1.5rem 1rem;
    }

    .pricing-card .price {
      font-size: 2rem;
    }

    .pricing-includes {
      margin-top: 1rem;
      padding-top: 1rem;
    }

    .pricing-includes li {
      font-size: 0.85rem;
      margin-bottom: 0.6rem;
    }

    .offer-list {
      grid-template-columns: 1fr;
    }

    .offer-list li {
      flex-wrap: wrap;
    }

    .offer-cta {
      flex-direction: column;
      align-items: center;
    }

    .btn-holiday-offer,
    .btn-holiday-call {
      width: 100%;
      max-width: 300px;
      justify-content: center;
    }
  }
  
  
  