 /* =========== CSS VARIABLES =========== */
    :root {
      --eagle: #E41E20;        /* Albanian eagle red */
      --coal: #1a1a1a;
      --charcoal: #2d2d2d;
      --stone: #6b6b6b;
      --cream: #f7f3ee;
      --ivory: #fdfaf6;
      --gold: #c9a84c;
      --border: rgba(201,168,76,0.25);
    }

    /* =========== BASE =========== */
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Outfit', sans-serif;
      background: var(--ivory);
      color: var(--charcoal);
      overflow-x: hidden;
    }
    h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; }

    /* =========== NAVBAR =========== */
    #mainNav {
      background: transparent;
      transition: background 0.45s ease, padding 0.3s ease;
      padding: 1.5rem 0;
    }
    #mainNav.scrolled {
      background: rgba(26,26,26,0.97) !important;
      padding: 0.75rem 0;
      backdrop-filter: blur(6px);
    }
    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .navbar-brand .brand-emblem {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--eagle);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .navbar-brand .brand-emblem svg { width: 28px; height: 28px; fill: #fff; }
    .navbar-brand .brand-text {
      line-height: 1.15;
    }
    .navbar-brand .brand-text strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      display: block;
    }
    .navbar-brand .brand-text span {
      font-size: 0.7rem;
      color: rgba(255,255,255,0.65);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }





.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0;
  width: 35px;
  height: 32px;
  position: relative;

}

.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all .4s cubic-bezier(.68,-0.55,.27,1.55);
  right:0px;
}

.navbar-toggler-icon {
  top: 50%;
  transform: translateY(-50%);
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}


.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}




    
    .nav-link {
      color: rgba(255,255,255,0.85) !important;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500;
      padding: 0.5rem 1rem !important;
      transition: color 0.2s;
      position: relative;
  
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 1rem; right: 1rem;
      height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }
    .nav-link:hover { color: #fff !important; }
    .nav-link:hover::after { transform: scaleX(1); }
    .nav-flag {
      width: 26px;
      height: 18px;
      object-fit: cover;
      border-radius: 2px;
      opacity: 0.85;
    }



.nav-item img {
with:20px !important;
height:14px !important;
    }


/* Solo per smartphone */
@media (max-width: 900px) {


    .nav-link {
      margin-top:0.2rem;
      background-color: rgba(18, 18, 18, 0.95) !important;
      padding: 0.8rem 1rem !important;
    }

.nav-item img {
with:20px !important;
height:14px !important;
    }

}






    /* =========== HERO SLIDER =========== */
    #heroSlider {
      position: relative;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.2s ease;
      transform: scale(1.04);
      animation: none;
    }
    .hero-slide.active {
      opacity: 1;
      animation: heroZoom 8s ease forwards;
    }
    @keyframes heroZoom {
      from { transform: scale(1.04); }
      to   { transform: scale(1); }
    }
    /* Slides with gradient overlays */

    .hero-slide-0 {
      background-image:
        linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%),
        url('../img/rama-meloni.jpg');
    }


    .hero-slide-1 {
      background-image:
        linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%),
        url('../img/napoli-04.jpg');
    }


   .hero-slide-2 {
      background-image:
        linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%),
        url('../img/tirana-01.jpg');
    }


    .hero-slide-3 {
      background-image:
        linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%),
        url('../img/napoli-02.jpg');
    }




        .hero-slide-4 {
      background-image:
        linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%),
        url('https://images.unsplash.com/photo-1555990793-da11153b2473?w=1800&q=80');
    }

    .hero-content {
      position: absolute;
      bottom: 15%;
      left: 0; right: 0;
      z-index: 10;
      text-align: center;
    }
    .hero-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
      opacity: 0;
      animation: fadeUp 1s 0.3s ease forwards;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 6vw, 5rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 1.2rem;
      opacity: 0;
      animation: fadeUp 1s 0.6s ease forwards;
    }
    .hero-subtitle {
      font-size: clamp(0.85rem, 1.5vw, 1rem);
      color: rgba(255,255,255,0.75);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 0;
      animation: fadeUp 1s 0.9s ease forwards;
    }
    .hero-divider {
      width: 60px;
      height: 2px;
      background: var(--gold);
      margin: 1.5rem auto;
      opacity: 0;
      animation: fadeIn 1s 1.1s ease forwards;
    }
    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      color: rgba(255,255,255,0.5);
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-align: center;
    }
    .hero-scroll-line {
      width: 1px;
      height: 40px;
      background: rgba(255,255,255,0.3);
      margin: 0.4rem auto 0;
      animation: scrollLine 2s infinite;
    }
    @keyframes scrollLine {
      0%   { transform: scaleY(0); transform-origin: top; }
      50%  { transform: scaleY(1); transform-origin: top; }
      51%  { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }
    /* Slider dots */
    .hero-dots {
      position: absolute;
      bottom: 3rem;
      right: 3rem;
      z-index: 10;
      display: flex;
      gap: 8px;
    }
    .hero-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.35);
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }
    .hero-dot.active {
      background: var(--gold);
      transform: scale(1.3);
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }




.black-strip {
  display: block;
  background: var(--coal);
  min-height:100px;
}




    /* =========== SECTION SHARED =========== */
    .section-label {
      font-size: 0.68rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.75rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--coal);
      line-height: 1.15;
    }
    .section-title em { color: var(--eagle); font-style: normal; }
    .gold-rule {
      width: 48px; height: 2px;
      background: var(--gold);
      margin: 1.25rem 0;
    }

    /* =========== PARALLAX BAND =========== */
    .parallax-section {
      background-attachment: fixed;
      background-size: cover;
      background-position: center;
      position: relative;
      padding: 7rem 0;
    }
    .parallax-overlay {
      position: absolute;
      inset: 0;
      background: rgba(20,20,20,0.72);
    }
    .parallax-content {
      position: relative;
      z-index: 2;
      color: #fff;
    }

    /* =========== IL CONSOLE =========== */
    #console { background: var(--ivory); padding: 6rem 0; }
    .console-img-wrap {
      position: relative;
    }
    .console-img-wrap img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: top;
    }
    .console-img-accent {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      width: 80px;
      height: 80px;
      background: var(--eagle);
      z-index: -1;
    }
    .console-badge {
      display: inline-block;
      background: var(--eagle);
      color: #fff;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.35rem 1rem;
      margin-bottom: 1rem;
    }
    .console-body p {
      font-size: 0.95rem;
      line-height: 1.85;
      color: var(--stone);
      margin-bottom: 1rem;
    }
    .highlight-pill {
      display: inline-block;
      background: var(--cream);
      border-left: 3px solid var(--gold);
      padding: 0.25rem 0.75rem;
      font-size: 0.78rem;
      color: var(--charcoal);
      margin: 0.2rem 0.2rem 0.2rem 0;
      font-weight: 500;
    }



    /* =========== NEWS-2 =========== */
    #news {
      background: var(--cream);
     
      padding: 7rem 0;
    }

    .news-card {
      background: #fff;
      padding: 2.5rem 2rem;
      border-bottom: 3px solid transparent;
      transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
    }
    .news-card:hover {
      border-bottom-color: var(--gold);
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
    }

    .news-card h4 {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--coal);
      margin-bottom: 0.75rem;
    }
    .news-card p {
      font-size: 0.88rem;
      line-height: 1.75;
      color: var(--stone);
      margin: 0;
    }

    .news-date-2 {
  font-size: 0.68rem;
  color:#ccc;
  letter-spacing: 0.05em;
  padding-top:0.7rem;
}





    /* =========== MESSAGGIO =========== */
    #messaggio {
      background-image:
        linear-gradient(to right, rgba(26,26,26,0.88), rgba(26,26,26,0.95)),
        url('../img/napoli-03.jpg');
      background-attachment: fixed;
      background-size: cover;
      background-position: center;
      padding: 7rem 0;
    }
    .quote-mark {
      font-family: 'Cormorant Garamond', serif;
      font-size: 8rem;
      color: var(--gold);
      opacity: 0.4;
      line-height: 0;
      margin-bottom: 1.5rem;
      display: block;
    }
    .messaggio-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.15rem, 2.2vw, 1.5rem);
      font-style: italic;
      color: rgba(255,255,255,0.9);
      line-height: 1.8;
    }
    .messaggio-author {
      font-family: 'Outfit', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 2rem;
    }



/* =========== MESSAGGIO BOX =========== */
.messaggio-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2.5rem;
}









/* =========== NEWS BOX =========== */
.news-box {
  background: rgba(0,0,0,0.85);
  padding: 2rem;
  backdrop-filter: blur(4px);
}
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-item {
  padding-bottom: 1.1rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
}
.news-tag {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--eagle);
  color: #fff;
  padding: 0.15rem 0.55rem;
  font-weight: 600;
}
.news-date {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  padding-top:0.7rem;
}
.news-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.25rem;
  line-height: 1.35;
}
.news-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0 0 0.4rem;
}
.news-link {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.news-link:hover {
  color: var(--eagle);
  gap: 0.6rem;
}




























    /* =========== SERVIZI =========== */
    #servizi { background: var(--cream); padding: 6rem 0; }
    .service-card {
      background: #fff;
      padding: 2.5rem 2rem;
      border-bottom: 3px solid transparent;
      transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
    }
    .service-card:hover {
      border-bottom-color: var(--eagle);
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.09);
    }
    .service-icon {
      width: 52px; height: 52px;
      background: var(--eagle);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 1.5rem;
    }
    .service-card h4 {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--coal);
      margin-bottom: 0.75rem;
    }
    .service-card p {
      font-size: 0.88rem;
      line-height: 1.75;
      color: var(--stone);
      margin: 0;
    }

    /* =========== ALBANIA STRIPE =========== */
    .albania-stripe {
      background: var(--eagle);
      padding: 3.5rem 0;
    }
    .albania-stripe h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      color: #fff;
      font-weight: 700;
    }
    .albania-stripe p {
      color: rgba(255,255,255,0.75);
      font-size: 0.88rem;
      margin: 0;
    }
    .eagle-symbol {
      font-size: 4rem;
      opacity: 0.25;
      line-height: 1;
      color: #fff;
    }

    /* =========== CONTATTI =========== */
    #contatti { background: var(--ivory); padding: 6rem 0; }
    .contact-info-box {
      background: var(--coal);
      padding: 2.5rem;
      height: 100%;
    }
    .contact-info-box h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      color: #fff;
      margin-bottom: 2rem;
    }
    .contact-item {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.5rem;
      align-items: flex-start;
    }
    .contact-item-icon {
      width: 38px; height: 38px;
      background: var(--eagle);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 0.95rem;
    }
    .contact-item-text strong {
      display: block;
      font-size: 0.68rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.2rem;
    }
    .contact-item-text span, .contact-item-text a {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
    }
    .contact-item-text a:hover { color: var(--gold); }
    .hours-table { margin-top: 1.5rem; }
    .hours-row {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding: 0.6rem 0;
      font-size: 0.85rem;
    }
    .hours-row .day { color: rgba(255,255,255,0.55); }
    .hours-row .time { color: #fff; font-weight: 500; }
    .appointment-note {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.45);
      margin-top: 1rem;
      font-style: italic;
    }
    #map {
      height: 100%;
      min-height: 450px;
    }

    /* =========== FORM =========== */
    .contact-form-wrap {
      background: var(--cream);
      padding: 2.5rem;
    }
    .contact-form-wrap h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      color: var(--coal);
      margin-bottom: 1.5rem;
    }
    .form-control, .form-select {
      border: 1px solid rgba(0,0,0,0.12);
      border-radius: 0;
      background: #fff;
      font-size: 0.88rem;
      padding: 0.75rem 1rem;
    }
    .form-control:focus {
      border-color: var(--eagle);
      box-shadow: none;
    }
    .btn-primary-consul {
      background: var(--eagle);
      border: none;
      border-radius: 0;
      color: #fff;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.85rem 2.5rem;
      font-weight: 600;
      transition: background 0.25s;
    }
    .btn-primary-consul:hover { background: #b81618; }



/* =========== FORM VALIDATION =========== */
.field-wrap {
  position: relative;
}
.form-field {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.13);
  border-radius: 0;
  background: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  padding: 0.78rem 1rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
}
.form-field::placeholder { color: #aaa; }
.form-field:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-field.is-valid {
  border-color: #3aaa6e;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%233aaa6e' viewBox='0 0 16 16'%3E%3Cpath d='M13.485 1.43a1 1 0 0 1 .083 1.414l-7.5 8a1 1 0 0 1-1.464.015l-3.5-3.75a1 1 0 1 1 1.453-1.373l2.778 2.975 6.735-7.198a1 1 0 0 1 1.415-.083z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.4rem;
}
.form-field.is-error {
  border-color: var(--eagle);
  box-shadow: 0 0 0 3px rgba(228,30,32,0.1);
  animation: shake 0.35s ease;
}
.field-error {
  display: none;
  font-size: 0.73rem;
  color: var(--eagle);
  margin-top: 0.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.field-error i { margin-right: 0.3rem; }
.show-error .field-error { display: block; }

@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-5px); }
  60%      { transform: translateX(5px); }
}

/* Privacy checkbox */
.field-wrap--check { margin-top: 0.25rem; }
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}
.check-input { display: none; }
.check-box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid rgba(0,0,0,0.2);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: border-color 0.2s, background 0.2s;
  font-size: 0.75rem;
  color: transparent;
}
.check-input:checked + .check-box {
  background: var(--eagle);
  border-color: var(--eagle);
  color: #fff;
}
.field-wrap--check.is-error-check .check-box {
  border-color: var(--eagle);
  box-shadow: 0 0 0 3px rgba(228,30,32,0.1);
  animation: shake 0.35s ease;
}
.check-text {
  font-size: 0.78rem;
  color: var(--stone);
  line-height: 1.65;
}
.privacy-link {
  color: var(--eagle);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.privacy-link:hover { color: var(--coal); }

/* Success message */
.form-success {
  display: none;
  margin-top: 1rem;
  background: #edf8f2;
  border-left: 3px solid #3aaa6e;
  padding: 0.85rem 1.2rem;
  font-size: 0.85rem;
  color: #2a7a50;
  font-weight: 500;
}
.form-success i { margin-right: 0.5rem; }




















    /* =========== FOOTER =========== */
    footer {
      background: var(--coal);
      padding: 3rem 0 1.5rem;
    }
    .footer-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      color: #fff;
      font-weight: 700;
    }
    .footer-tagline {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-top: 0.35rem;
    }
    .footer-links a {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      display: block;
      margin-bottom: 0.4rem;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-divider { border-color: rgba(255,255,255,0.08); }
    .footer-copy {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.3);
    }
    .footer-gold-line {
      height: 2px;
      background: linear-gradient(to right, var(--eagle), var(--gold), var(--eagle));
      margin-bottom: 3rem;
    }

    /* =========== SCROLL REVEAL =========== */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }
    .reveal-delay-1 { transition-delay: 0.15s; }
    .reveal-delay-2 { transition-delay: 0.3s; }
    .reveal-delay-3 { transition-delay: 0.45s; }