
    /* Reset and Base Styles */
    :root {
      --primary: #0691A9;         /* Teal blue */
      --secondary: #D89D36;       /* Golden orange */
      --light: #F9F7F4;          /* Cream white */
      --dark: #1A1A1A;           /* Deep black */
      --text: #333333;           /* Main text */
      --text-light: #FFFFFF;      /* White text */
      --accent: #F5E9D4;         /* Light gold */
      --overlay: rgba(0,0,0,0.6); /* Dark overlay */
      --transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
      --shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      --font-main: 'Montserrat', sans-serif;
      --font-heading: 'Playfair Display', serif;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: var(--font-main);
      color: var(--text);
      line-height: 1.8;
      background-color: var(--light);
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    h1, h2, h3, h4, h5 {
      font-family: var(--font-heading);
      font-weight: 600;
      line-height: 1.3;
      color: var(--primary);
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .container {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .btn {
      display: inline-block;
      padding: 12px 30px;
      background-color: var(--secondary);
      color: var(--text-light);
      border: none;
      border-radius: 50px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 5px 15px rgba(216, 157, 54, 0.3);
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(216, 157, 54, 0.4);
      background-color: #e6a933;
    }

    .section-title {
      position: relative;
      margin-bottom: 2.5rem;
      font-size: 2.5rem;
      text-align: center;
    }

    .section-title:after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: var(--secondary);
      margin: 1rem auto 0;
    }

    /* Header Styles */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      transition: var(--transition);
      padding: 1rem 0;
      background-color: rgba(249, 247, 244, 0.95);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    header.scrolled {
      padding: 0.5rem 0;
      background-color: rgba(255, 255, 255, 0.98);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 2rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .logo-img {
      height: 70px;
      width: auto;
      transition: var(--transition);
    }

    header.scrolled .logo-img {
      height: 60px;
    }

    .logo-text {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      color: var(--primary);
      font-weight: 700;
    }

    .nav-toggle {
      background: none;
      border: none;
      font-size: 1.8rem;
      cursor: pointer;
      color: var(--primary);
      z-index: 1100;
      transition: var(--transition);
    }

    .nav-toggle:hover {
      color: var(--secondary);
    }

    /* Language Selector */
    .language-selector {
      position: relative;
      margin-left: auto;
      margin-right: 20px;
    }

    .language-btn {
      background: none;
      border: none;
      color: var(--primary);
      font-family: var(--font-main);
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 8px 15px;
      border-radius: 50px;
      transition: var(--transition);
    }

    .language-btn:hover {
      background-color: rgba(6, 145, 169, 0.1);
    }

    .language-btn i {
      font-size: 0.8rem;
    }

    .language-dropdown {
      position: absolute;
      top: 100%;
      right: 0;
      background-color: var(--light);
      border-radius: 10px;
      box-shadow: var(--shadow);
      padding: 10px 0;
      min-width: 150px;
      z-index: 1001;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: var(--transition);
    }

    .language-selector.active .language-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .language-option {
      padding: 8px 20px;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .language-option:hover {
      background-color: rgba(216, 157, 54, 0.1);
      color: var(--secondary);
    }

    .language-flag {
      width: 20px;
      height: auto;
      border-radius: 3px;
    }

    /* Navigation */
    .nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--overlay);
      z-index: 900;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
    }

    .nav-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .side-menu {
      position: fixed;
      top: 0;
      right: -400px;
      width: 400px;
      height: 100vh;
      background-color: var(--light);
      z-index: 1000;
      transition: var(--transition);
      padding: 5rem 3rem;
      box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }

    .side-menu.active {
      right: 0;
    }

    .side-close {
      position: absolute;
      top: 2rem;
      right: 2rem;
      background: none;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      color: var(--primary);
      transition: var(--transition);
    }

    .side-close:hover {
      color: var(--secondary);
      transform: rotate(90deg);
    }

    .nav-menu {
      list-style: none;
      margin-top: 3rem;
    }

    .nav-menu li {
      margin-bottom: 1.8rem;
      position: relative;
      overflow: hidden;
    }

    .nav-menu a {
      display: block;
      font-size: 1.3rem;
      color: var(--dark);
      padding: 0.5rem 0;
      position: relative;
      transition: var(--transition);
    }

    .nav-menu a:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--secondary);
      transform: translateX(-100%);
      transition: var(--transition);
    }

    .nav-menu a:hover {
      color: var(--secondary);
      transform: translateX(15px);
    }

    .nav-menu a:hover:before {
      transform: translateX(0);
    }

    /* Hero Section */
    .hero {
      height: 100vh;
      min-height: 800px;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      margin-top: 0;
    }

    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, rgba(6, 145, 169, 0.7), rgba(216, 157, 54, 0.4));
      z-index: -1;
    }

    .hero-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      padding: 0 2rem;
      color: var(--text-light);
      position: relative;
      z-index: 1;
    }

    .hero-title {
      font-size: 4.5rem;
      margin-bottom: 1.5rem;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
      animation: fadeInUp 1s ease;
    }

    .hero-subtitle {
      font-size: 1.5rem;
      margin-bottom: 2.5rem;
      font-weight: 300;
      animation: fadeInUp 1s ease 0.3s forwards;
      opacity: 0;
    }

    .hero-btn {
      animation: fadeInUp 1s ease 0.6s forwards;
      opacity: 0;
    }

    /* About Section */
    .about {
      padding: 6rem 0;
      background-color: var(--light);
    }

    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-text {
      padding-right: 2rem;
    }

    .about-text p {
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
      color: var(--text);
    }

    .about-image {
      position: relative;
      height: 500px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }

    .about-image:hover img {
      transform: scale(1.05);
    }

    /* Gallery Section */
    .gallery {
      padding: 6rem 0;
      background-color: var(--accent);
    }

    .gallery-container {
      position: relative;
      width: 100%;
      height: 700px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: var(--shadow);
    }

    .gallery-track {
      display: flex;
      height: 100%;
      transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .gallery-slide {
      min-width: 100%;
      position: relative;
    }

    .gallery-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 3rem;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
      color: var(--text-light);
    }

    .gallery-caption h3 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: var(--text-light);
    }

    .gallery-caption p {
      max-width: 600px;
      opacity: 0.9;
    }

    .gallery-nav {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 2rem;
      z-index: 10;
    }

    .gallery-btn {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.2);
      border: none;
      color: var(--text-light);
      font-size: 1.5rem;
      cursor: pointer;
      transition: var(--transition);
      backdrop-filter: blur(5px);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gallery-btn:hover {
      background-color: var(--secondary);
      transform: scale(1.1);
    }

    .gallery-dots {
      position: absolute;
      bottom: 30px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 15px;
      z-index: 10;
    }

    .gallery-dot {
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.5);
      border: none;
      cursor: pointer;
      transition: var(--transition);
    }

    .gallery-dot.active {
      background-color: var(--secondary);
      transform: scale(1.2);
    }

    /* Services Section */
    .services {
      padding: 6rem 0;
      background-color: var(--light);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .service-card {
      background-color: var(--text-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
    }

    .service-image {
      height: 250px;
      overflow: hidden;
    }

    .service-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }

    .service-card:hover .service-image img {
      transform: scale(1.1);
    }

    .service-content {
      padding: 2rem;
    }

    .service-title {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--primary);
    }

    .service-price {
      display: block;
      font-size: 1.2rem;
      color: var(--secondary);
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .service-desc {
      margin-bottom: 1.5rem;
      color: var(--text);
    }

    /* Contact Section */
    .contact {
      padding: 6rem 0;
      background-color: var(--primary);
      color: var(--text-light);
    }

    .contact-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 3rem;
    }

    .contact-info h3 {
      color: var(--secondary);
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }

    .contact-details {
      margin-bottom: 2rem;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 1.5rem;
    }

    .contact-icon {
      font-size: 1.3rem;
      color: var(--secondary);
      margin-top: 3px;
    }

    .contact-text h4 {
      font-size: 1.1rem;
      margin-bottom: 0.3rem;
      color: var(--text-light);
    }

    .contact-text p, .contact-text a {
      color: rgba(255, 255, 255, 0.8);
      transition: var(--transition);
    }

    .contact-text a:hover {
      color: var(--secondary);
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 2rem;
    }

    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-light);
      font-size: 1.2rem;
      transition: var(--transition);
    }

    .social-link:hover {
      background-color: var(--secondary);
      transform: translateY(-3px);
    }

    .map-container {
      height: 100%;
      min-height: 400px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    /* Footer */
    .footer {
      background-color: var(--dark);
      color: var(--text-light);
      padding: 3rem 0 1rem;
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-logo {
      margin-bottom: 1.5rem;
    }

    .footer-logo-img {
      height: 60px;
    }

    .footer-about p {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 1.5rem;
    }

    .footer-title {
      color: var(--secondary);
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      transition: var(--transition);
    }

    .footer-links a:hover {
      color: var(--secondary);
      padding-left: 5px;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.9rem;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
      .hero-title {
        font-size: 3.5rem;
      }
      
      .gallery-container {
        height: 600px;
      }
    }

    @media (max-width: 992px) {
      .about-content {
        grid-template-columns: 1fr;
      }
      
      .about-text {
        padding-right: 0;
      }
      
      .hero-title {
        font-size: 3rem;
      }
      
      .hero-subtitle {
        font-size: 1.3rem;
      }
      
      .language-selector {
        margin-right: 15px;
      }
    }

    @media (max-width: 768px) {
      .hero {
        min-height: 700px;
      }
      
      .hero-title {
        font-size: 2.5rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .gallery-container {
        height: 500px;
      }
      
      .gallery-caption {
        padding: 2rem;
      }
      
      .gallery-caption h3 {
        font-size: 1.5rem;
      }
      
      .side-menu {
        width: 320px;
        padding: 4rem 2rem;
      }
      
      .language-selector {
        display: none;
      }
      
      .mobile-language-selector {
        display: block;
        margin-top: 2rem;
      }
    }

    @media (max-width: 576px) {
      .header-container {
        padding: 0 1rem;
      }
      
      .logo-text {
        font-size: 1.2rem;
      }
      
      .hero-title {
        font-size: 2rem;
      }
      
      .hero-subtitle {
        font-size: 1.1rem;
      }
      
      .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
      }
      
      .gallery-container {
        height: 400px;
      }
      
      .gallery-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
      }
      
      .services-grid {
        grid-template-columns: 1fr;
      }
    }
    
    /* Mobile Language Selector in Side Menu */
    .mobile-language-selector {
      display: none;
      margin-top: 2rem;
    }
    
    .mobile-language-btn {
      background-color: var(--primary);
      color: white;
      border: none;
      padding: 10px 15px;
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      cursor: pointer;
    }
    
    .mobile-language-options {
      display: none;
      margin-top: 10px;
      background-color: white;
      border-radius: 5px;
      overflow: hidden;
    }
    
    .mobile-language-selector.active .mobile-language-options {
      display: block;
    }
    
    .mobile-language-option {
      padding: 10px 15px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--dark);
    }
    
    .mobile-language-option:hover {
      background-color: var(--accent);
    }
/* Mobile Language Selector */
.mobile-language-selector {
    display: none;
    margin-top: 2rem;
    width: 100%;
}

.mobile-language-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 500;
}

.mobile-language-btn i {
    transition: var(--transition);
}

.mobile-language-selector.active .mobile-language-btn i {
    transform: rotate(180deg);
}

.mobile-language-options {
    display: none;
    margin-top: 10px;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mobile-language-selector.active .mobile-language-options {
    display: block;
}

.mobile-language-option {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-language-option:last-child {
    border-bottom: none;
}

.mobile-language-option:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.language-flag {
    width: 20px;
    height: auto;
    border-radius: 3px;
}

/* Mostra il selettore lingua mobile solo su schermi piccoli */
@media (max-width: 768px) {
    .mobile-language-selector {
        display: block;
    }
    
    .language-selector {
        display: none;
    }
}

/* Stili per il selettore lingua desktop */
.language-selector {
    position: relative;
    margin-left: auto;
    margin-right: 20px;
}

.language-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    border-radius: 50px;
    transition: var(--transition);
}

.language-btn:hover {
    background-color: rgba(6, 145, 169, 0.1);
}

.language-btn i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.language-selector.active .language-btn i {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 10px 0;
    min-width: 150px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    padding: 8px 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-option:hover {
    background-color: rgba(216, 157, 54, 0.1);
    color: var(--secondary);
}

