:root {
  --primary: #1e88e5;
  --primary-light: #64b5f6;
  --secondary: #0d47a1;
  --accent: #40c4ff;
  --background: #f8fbff;
  --text: #2c3e50;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --shadow: 0 8px 30px rgba(30, 136, 229, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global scroll padding fix */
html {
    scroll-padding-top: 80px; /* Height of fixed header */
}

/* Body padding for fixed header */
body {
    padding-top: 80px; /* Height of fixed header */
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.8;
  color: var(--text);
  background: var(--background);
}

body.menu-open {
    overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles Enhancement */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(30, 136, 229, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

.company-info {
  display: flex;
  flex-direction: column;
}

.company-name {
  font-size: 1.4rem;
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.2rem;
}

.company-tagline {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-right: 2rem;
}

.nav-item {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transform: translateX(-50%);
  transition: var(--transition);
}

.nav-item:hover {
  color: var(--primary);
  background: rgba(30, 136, 229, 0.05);
}

.nav-item:hover::after {
  width: 80%;
}

.header-cta {
  display: flex;
  align-items: center;
}

.contact-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--gradient);
  color: var(--white);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(30, 136, 229, 0.2);
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 136, 229, 0.3);
}

.contact-button i {
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--gradient);
  border-radius: 10px;
  transition: var(--transition);
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 1rem;
  }
  
  .company-tagline {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex-direction: column;
    align-items: center;
  }

  .nav-links.active {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Mobile Menu Enhancement */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        transition: all 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-item {
        font-size: 1.2rem;
        padding: 1rem;
        border-radius: 12px;
        background: rgba(30, 136, 229, 0.03);
        text-align: center;
        width: 100%;
    }

    .nav-item::after {
        display: none;
    }

    .nav-item:hover {
        background: var(--gradient);
        color: var(--white);
        transform: translateY(-2px);
    }

    .menu-toggle {
        display: flex;
        margin-left: 1rem;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Menu Toggle Button Enhancement */
.menu-toggle {
    width: 30px;
    height: 24px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gradient);
    border-radius: 4px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
    bottom: 0;
}

/* Sections */
section {
  padding: 8rem 0;
  position: relative;
}

/* Hero Section Enhancement */
#hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M20 0v40M0 20h40"%3E%3C/path%3E%3C/g%3E%3C/svg%3E');
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem;
    color: var(--white);
}

.hero-header {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-logo {
    width: 180px;
    height: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    animation: float 6s ease-in-out infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-text {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-cta {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.trust-badge i {
    font-size: 1.2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(5px);
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(to right, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Aggiusta la posizione su mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Section Mobile Fix */
@media (max-width: 768px) {
    #hero {
        min-height: 100vh;
        height: auto;
        padding-top: 100px; /* Add space for fixed header */
        padding-bottom: 80px; /* Add space at bottom */
    }

    .hero-content {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Adjust stats layout on mobile */
    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-icon i {
        font-size: 1.2rem;
    }
}

/* Fix for extra small screens */
@media (max-width: 360px) {
    #hero {
        padding-top: 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        padding: 1rem;
    }
}

.advantage-card, .product-card, .testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}

.advantage-card:hover::before {
  opacity: 1;
}

.advantages-grid, .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}

.product-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 4px solid transparent;
  background: var(--gradient);
}

.product-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.product-card h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--gradient);
  border-radius: 2px;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(30, 136, 229, 0.15);
}

/* Testimonial Cards Enhancement */
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: var (--primary-light);
  opacity: 0.1;
  font-family: Georgia, serif;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
}

.testimonial-card cite {
  color: var(--primary);
  font-style: normal;
  display: block;
  margin-top: 1rem;
  font-weight: 500;
}

/* Advantage Cards Enhancement */
.advantage-card {
  text-align: center;
  padding: 3rem 2rem;
}

.advantage-card i {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    transition: var(--transition);
}

/* Fix: Make icons white and remove gradient background from icon itself */
.advantage-icon i {
    font-size: 2rem;
    color: var(--white); /* Changed from gradient to white */
    transform: rotate(-45deg);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Added subtle shadow for better visibility */
}

/* Contact Section Enhancement */
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

#map {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-details {
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, var(--white), rgba(30, 136, 229, 0.05));
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 5rem 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-info h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 1rem 0;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text);
}

.contact-item i {
    width: 35px;
    height: 35px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.footer h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

.footer-quick-links ul {
    list-style: none;
    padding: 0;
}

.footer-quick-links a {
    color: var(--text);
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    transition: var(--transition);
}

.footer-quick-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(30, 136, 229, 0.1);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    display: block;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.hours-list .times {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hours-list .times span {
    color: var(--primary);
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    background: rgba(30, 136, 229, 0.05);
    border-radius: 4px;
    display: inline-block;
}

.hours-list .closed {
    color: #dc3545;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.social-link i {
    font-size: 1.2rem;
}

.footer-bottom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(30, 136, 229, 0.1);
    padding: 1.5rem 0;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text);
    font-size: 0.9rem;
}

.copyright {
    flex: 1;
}

.legal-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.legal-links a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.25rem 0;
}

.legal-links a:hover {
    color: var(--primary);
}

.separator {
    color: var(--text);
    opacity: 0.5;
}

.social-bottom {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-bottom a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(30, 136, 229, 0.05);
}

.social-bottom a:hover {
    color: var(--primary);
    background: rgba(30, 136, 229, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .copyright {
        order: 2;
    }

    .legal-links {
        order: 1;
        justify-content: center;
    }

    .social-bottom {
        order: 3;
        justify-content: center;
    }
}

.footer-legal {
    color: var(--text);
    font-size: 0.9rem;
}

.legal-links {
    margin-top: 0.5rem;
}

.legal-links a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--primary);
}

.separator {
    margin: 0 0.5rem;
    color: var(--text);
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-top {
        padding: 3rem 0;
    }

    .footer h4 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 3rem 0 2rem;
  }

  .footer-grid {
    gap: 2rem;
  }

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

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    padding: 1.5rem 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .header-container {
    padding: 0.5rem;
  }
  
  section {
    padding: 3rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  #map {
    height: 300px;
  }
}

/* Chi Siamo Section */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient);
    color: var(--white);
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.2);
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 0 auto;
    border-radius: 2px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-image-wrapper {
    position: relative;
}

.content-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.parallax-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.content-image:hover .parallax-img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 150px;
    height: 150px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(30, 136, 229, 0.3);
    animation: float 6s ease-in-out infinite;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
    opacity: 0.9;
}

.content-text h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.highlight-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text);
}

.features-list {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 136, 229, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 12px;
    color: var(--white);
}

.feature-content h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-content p {
    color: var(--text);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-badge {
        width: 120px;
        height: 120px;
        bottom: -15px;
        right: -15px;
    }

    .experience-badge .years {
        font-size: 2rem;
    }

    .content-text h3 {
        font-size: 1.75rem;
    }
}

/* Chi Siamo Section */
#chi-siamo {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

#chi-siamo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.03) 0%, rgba(64, 196, 255, 0.03) 100%);
    z-index: 0;
}

.chi-siamo-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.content-text {
    text-align: center;
    margin-bottom: 3rem;
}

.content-text h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.content-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.highlight-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 2rem auto;
    color: var(--text);
    max-width: 700px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 14px;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-content p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .chi-siamo-content {
        padding: 0 1rem;
    }

    .content-text h3 {
        font-size: 1.8rem;
    }

    .highlight-text {
        font-size: 1.1rem;
    }

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

    .feature-item {
        padding: 1.5rem;
    }
}

/* Testimonials Section */
#testimonials {
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 136, 229, 0.15);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--primary-light);
    opacity: 0.1;
    font-size: 2rem;
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-icon {
    opacity: 0.2;
    transform: scale(1.1);
}

.testimonial-card blockquote {
    margin: 0;
    padding: 0;
}

.testimonial-card blockquote p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(30, 136, 229, 0.1);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.author-info {
    flex: 1;
}

.author-info cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }
}

/* Vantaggi Section */
#vantaggi {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

#vantaggi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.03) 0%, rgba(64, 196, 255, 0.03) 100%);
    z-index: 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.advantage-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    transition: var(--transition);
}

.advantage-icon i {
    font-size: 2rem;
    color: var(--white);
    transform: rotate(-45deg);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.advantage-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.advantage-card p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-hover-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--gradient);
    transition: var (--transition);
    border-radius: 2px;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 136, 229, 0.15);
}

.advantage-card:hover .advantage-icon {
    transform: rotate(0deg);
}

.advantage-card:hover .advantage-icon i {
    transform: rotate(0deg);
}

.advantage-card:hover .card-hover-line {
    width: 80%;
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .advantage-card {
        padding: 2rem 1.5rem;
    }

    .advantage-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .advantage-icon i {
        font-size: 1.5rem;
    }
}

/* Products Section Enhancement */
#prodotti {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

#prodotti::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.03) 0%, rgba(64, 196, 255, 0.03) 100%);
    z-index: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.product-card {
    background: var (--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.product-icon i {
    font-size: 2rem;
    color: var(--white);
}

.product-content h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.product-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    transition: var(--transition);
}

.product-content p {
    color: var (--text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--gradient);
    border-radius: 50%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 136, 229, 0.15);
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-card:hover h3::after {
    width: 60px;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        padding: 2rem;
    }

    .product-icon {
        width: 60px;
        height: 60px;
    }

    .product-icon i {
        font-size: 1.5rem;
    }
}

/* Contact Section Enhancement */
#contatti {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

#contatti::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.03) 0%, rgba(64, 196, 255, 0.03) 100%);
    z-index: 0;
}

.contact-wrapper {
    position: relative;
    z-index: 1;
    margin-top: 4rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 136, 229, 0.15);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-card:hover .contact-icon {
    transform: rotate(15deg);
}

.contact-content h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-content p {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.contact-content a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.contact-content a:hover {
    color: var(--primary);
}

.map-container {
    width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 600px; /* Aumentato da 500px */
}

#map {
    width: 100%;
    height: 600px; /* Aumentato da 400px */
    position: relative;
    z-index: 1;
    border-radius: 20px;
}

.map-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 300px;
}

.business-hours {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
}

.business-hours h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.business-hours h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.business-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-hours ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(30, 136, 229, 0.1);
}

.business-hours ul li:last-child {
    border-bottom: none;
}

.business-hours ul li span {
    color: var(--text);
    font-weight: 500;
}

.hours-detail {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.hours-detail span {
    color: var(--primary);
    font-weight: 600;
    padding: 0.3rem 1rem;
    background: rgba(30, 136, 229, 0.05);
    border-radius: 15px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .business-hours {
        padding: 1.5rem;
    }

    .business-hours h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .business-hours ul li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .hours-detail {
        width: 100%;
        align-items: flex-start;
    }
}

.business-hours h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.business-hours h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.business-hours h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

.business-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(30, 136, 229, 0.1);
}

.business-hours li:last-child {
    border-bottom: none;
}

.business-hours ul li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.business-hours ul li:last-child {
    border-bottom: none;
}

.hours-detail {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.hours-detail span {
    color: var(--accent);
    font-weight: 500;
}

@media (max-width: 768px) {
    .business-hours ul li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .hours-detail {
        width: 100%;
        align-items: flex-start;
    }
}

.business-hours li span {
    font-weight: 500;
    color: var(--primary);
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 450px;
    }

    #map {
        height: 450px;
    }

    .map-container {
        gap: 1rem;
    }

    .business-hours {
        padding: 1.5rem;
    }

    #map {
        height: 300px;
    }

    .map-overlay {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 2rem;
        max-width: 100%;
    }
}

/* Global Mobile Responsive Updates */
@media (max-width: 480px) {
    /* Base Typography */
    html {
        font-size: 14px;
    }

    /* Container */
    .container {
        padding: 0 1rem;
    }

    /* Header */
    .header-container {
        padding: 0.5rem;
    }

    .logo {
        height: 40px;
    }

    .company-name {
        font-size: 1.2rem;
    }

    .company-tagline {
        display: none;
    }

    /* Hero Section */
    .hero-content {
        padding: 6rem 1rem 4rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-logo {
        width: 150px;
        margin-bottom: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Section Spacing */
    section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Cards */
    .advantage-card,
    .product-card,
    .testimonial-card,
    .contact-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    /* Grids */
    .advantages-grid,
    .products-grid,
    .testimonials-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }

    /* Features */
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .feature-icon {
        margin: 0 auto 1rem;
    }

    /* Products */
    .product-features {
        margin-top: 1rem;
    }

    .product-features li {
        font-size: 0.9rem;
    }

    /* Contact Section */
    .map-container {
        height: 300px;
        margin: 0 0.5rem;
    }

    .map-overlay {
        position: relative;
        top: auto;
        right: auto;
        margin: 1rem 0.5rem;
        padding: 1rem;
    }

    .business-hours li {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-info {
        margin: 0 auto;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links ul,
    .footer-contact ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Navigation Menu */
    .nav-links.active {
        top: 60px;
        padding: 1rem;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }
}

/* Additional Tweaks for Extra Small Devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-content h3 {
        font-size: 1.1rem;
    }

    .footer-legal {
        font-size: 0.8rem;
    }
}

/* Fix for Mobile Menu Toggle */
.menu-toggle {
    width: 25px;
    height: 20px;
    padding: 0;
    margin-right: 0.5rem;
}

.menu-toggle span {
    height: 2px;
}

/* FAQ Section */
#faq {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

#faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.03) 0%, rgba(64, 196, 255, 0.03) 100%);
    z-index: 0;
}

.faq-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 4rem auto 0;
}

.faq-category {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-header i {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.category-header h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: 12px;
    background: rgba(30, 136, 229, 0.03);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question span {
    font-weight: 500;
    color: var(--text);
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text);
    line-height: 1.6;
}

.faq-answer ul {
    padding: 0 1.5rem 1.5rem 3rem;
    margin: 0;
    color: var(--text);
    line-height: 1.6;
}

.faq-item.active .faq-question {
    background: var(--gradient);
    color: var(--white);
}

.faq-item.active .faq-question span {
    color: var(--white);
}

.faq-item.active .faq-question i {
    color: var(--white);
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

@media (max-width: 768px) {
    .faq-category {
        padding: 1.5rem;
    }

    .category-header {
        margin-bottom: 1.5rem;
    }

    .category-header i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .category-header h3 {
        font-size: 1.3rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-answer p,
    .faq-answer ul {
        padding: 0 1rem 1rem;
    }
}

/* Brands Section */
#marchi {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

#marchi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.03) 0%, rgba(64, 196, 255, 0.03) 100%);
    z-index: 0;
}

.brands-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.brand-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 136, 229, 0.15);
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.brand-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.brand-content h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
}

.brand-content p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
}

.brands-features {
    margin-top: 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.brands-features h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.brands-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--gradient);
    border-radius: 20px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.brands-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.brands-cta .btn {
    background: var(--white);
    color: var(--primary);
    border: none;
}

.brands-cta .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }

    .brand-card {
        padding: 1.5rem;
    }

    .brands-cta {
        padding: 2rem;
    }
}

.btn {
    position: relative;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-primary {
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.btn-primary .btn-bg {
    background: var(--gradient);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.4);
}

.btn-primary:hover .btn-bg {
    opacity: 0.9;
}

.btn-outline {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
}

.btn-outline .btn-bg {
    opacity: 0;
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
    transform: translateY(-3px);
    border-color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover .btn-bg {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Header height on mobile */
@media (max-width: 768px) {
    header {
        height: 70px;
    }

    body {
        padding-top: 70px;
    }

    html {
        scroll-padding-top: 70px;
    }
}

.business-hours-container {
    width: 100%;
    margin-top: 2rem;
}

.business-hours {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hours-header i {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.hours-header h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 0;
}

.business-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-hours ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(30, 136, 229, 0.03);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.business-hours ul li:last-child {
    margin-bottom: 0;
}

.business-hours ul li:hover {
    background: rgba(30, 136, 229, 0.06);
    transform: translateX(5px);
}

.business-hours li span {
    font-weight: 500;
    color: var(--text);
}

.hours-detail {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.hours-detail span {
    color: var(--primary);
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .business-hours {
        padding: 1.5rem;
    }

    .hours-header {
        margin-bottom: 1.5rem;
    }

    .business-hours ul li {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }

    .hours-detail {
        width: 100%;
        align-items: flex-start;
    }
}

