/* -------------------------------------------------------------------------------- */
/* ! GENERAL */
/* -------------------------------------------------------------------------------- */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
   /* palette */
   --color-black: #1d1d1f;
   --color-dark-blue: #004667;
   --color-blue: #399abf;
   --color-white: #F7F7FF;
   --color-white-dark: #EBF2FA;
   /* --color-green: #27FB6B; */
   /*   --color-green: #28f371;*/
   --color-green: #8cb0ea;
   --color-orange: #d96300;


   /* color elements */
   --card-background: var(--color-white-dark);
   --section-background-dark: var(--color-white-dark);
   --section-background-light: rgb(251 246 243 / 20%);
   --news-color: var(--color-white);
   --icon-color: var(--color-orange);

   --button-background-linear-first-color: var(--color-blue);
   --button-background-linear-second-color: var(--color-green);


   --primary: #133a5d;
   --primary-light: #4b76a2;
   --secondary: var(--color-green);
   --secondary: var(--color-orange);
   --accent: #764ba2;
   --surface: #f8fafc;
   --surface-dark: #1e293b;
   --text: var(--color-black);
   --text-light: #718096;
   --white: #ffffff;
   --glass: rgba(19, 58, 93, 0.1);
}

html { scroll-behavior: smooth; }
body, html { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; line-height: 1.6; color: var(--color-black); background: var(--section-background-light); }

main { background: var(--section-background-light); }
section { padding: 100px 0 50px 0; background: var(--section-background-light); }

/*:target { scroll-margin-top: 70px; }*/



/* ! - buttons */
.btn { display: inline-block; padding: 1rem 2rem; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: var(--white); text-decoration: none; border-radius: 50px; font-weight: 600; transition: all 0.25s cubic-bezier(.215, .61, .355, 1); border: none; cursor: pointer; font-size: 1rem;}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(19, 58, 93, 0.3);}

.btn-primary { padding: 1.2rem 2.5rem; line-height: 31px; 
background: linear-gradient(135deg, var(--button-background-linear-first-color) 0%, var(--button-background-linear-second-color) 100%); 
color: white; text-decoration: none; border-radius: 29px; font-weight: 600; font-size: 1.1rem; transition: all 0.25s cubic-bezier(.215, .61, .355, 1); display: inline-block;}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);}
.btn-secondary { padding: 1.2rem 2.5rem; background: transparent; color: var(--color-black); text-decoration: none; white-space: nowrap; border-radius: 29px; font-weight: 600; font-size: 1.1rem; border: 2px solid white; transition: all 0.25s cubic-bezier(.215, .61, .355, 1); display: inline-block; box-shadow: 0 10px 25px rgb(19 58 93 / 10%);}
.btn-secondary:hover { cursor: pointer; background: white; color: var(--color-black); box-shadow: 0 10px 25px rgb(19 58 93 / 20%);}
.btn.call-to-action{ display: flex; align-items: center; justify-content: center; gap: 5px; border: none; white-space: nowrap;}
.btn.call-to-action span{ white-space: nowrap;}

/* ! - header */
.header { position: fixed; top: 0; left: 0; z-index: 9999; width: 100%; transition: all 0.25s cubic-bezier(.215, .61, .355, 1); height: 80px; }
.header.scrolled { background: rgb(0 70 103 / 95%); backdrop-filter: blur(20px); box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1); height: 80px; }
.header__content { max-width: 1200px; width: 100%; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 2rem; position: relative; height: 80px; }

.header__logo { padding: 0; height: 80px; display: flex; align-items: center; color: var(--white); font-size: 1.5rem; font-weight: 700; text-decoration: none; z-index: 10001; }
.header__logo .logo-menu { height: 70px; width: 290px; background-repeat: no-repeat; background-size: contain; transition: all 0.25s cubic-bezier(.215, .61, .355, 1); }
.header:not(.scrolled) .logo-menu { background-image: url('./image/voyagepro-bianco-400.png'); }
.header.scrolled .logo-menu {height: 55px; background-image: url('./image/voyagepro-no-slogan.svg'); }
.header.scrolled .logo-menu {height: 55px; background-image: url('./image/voyagepro_logo_2025_negativo.svg'); }

.header__menu { position: absolute; top: 100%; right: 0; width: 280px; background: linear-gradient(135deg, #4c5ea3, #394989); background: linear-gradient(150deg, #044666, #7fcdb0); flex-direction: column; justify-content: flex-start; align-items: stretch; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.25s cubic-bezier(.215, .61, .355, 1); z-index: 10000; margin: 0; padding: 5px 0; list-style: none; border-radius: 25px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); max-height: 80vh; overflow-y: auto; }
.header__menu.active { opacity: 1; visibility: visible; transform: translateY(0);}
.header__menu li { margin: 0; width: 100%; text-align: left; position: relative;}
.header__menu li a { color: var(--white); opacity: 0.9; display: block; padding: 0.75rem 1.5rem; font-size: 1rem; text-decoration: none; transition: all 0.25s cubic-bezier(.215, .61, .355, 1); border-radius: 0; margin: 0;}
.header__menu li a:hover { background-color: rgba(255, 255, 255, 0.1); opacity: 1; padding-left: 2rem;}
.header__icons { display: flex; align-items: center; gap: 1rem; z-index: 10001; position: relative;}

/* ! -- mobile menu toggle */
.mobile-menu-toggle { position: relative; display: block; background: transparent; border: none; color: white; font-size: 1.3rem; cursor: pointer; padding: 25px 17px; border: 1px solid #ffffff1f; border-radius: 15px; transition: all 0.25s cubic-bezier(.215, .61, .355, 1);}
.mobile-menu-toggle span{ position: relative; display: block; height: 2px; width: 25px; background: #fff; transition: all 0.25s cubic-bezier(.215, .61, .355, 1);}
.mobile-menu-toggle span:before{ content: ' '; position: absolute; height: 2px; width: 25px; background: #fff; display: block; top: -8px; transform: rotate(0deg); transition: all 0.25s cubic-bezier(.215, .61, .355, 1);}
.mobile-menu-toggle span:after{ content: ' '; position: absolute; height: 2px; width: 25px; background: #fff; display: block; top: 8px; transform: rotate(0deg); transition: all 0.25s cubic-bezier(.215, .61, .355, 1);}
.mobile-menu-toggle.active span{ background: transparent;}
.mobile-menu-toggle.active span:before{ transform: rotate(-45deg); top: 0px;}
.mobile-menu-toggle.active span:after{ transform: rotate(45deg); top: 0px;}
.mobile-menu-toggle:hover { background-color: rgba(255, 255, 255, 0.2);}
.mobile-menu-toggle.active { background-color: rgba(255, 255, 255, 0.2);}
.mobile-menu-toggle:hover { background-color: rgba(255, 255, 255, 0.1);}

/* ! -- menu overlay */
.menu-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: transparent; z-index: 9999; opacity: 0; transition: all 0.25s cubic-bezier(.215, .61, .355, 1);}
.menu-overlay.active { display: block; opacity: 1;}

/* ! ___display-max-lg */
@media (max-width: 991.98px) {
   .header__content { padding: 0 1.5rem; }
   .header__menu { width: 260px; }
   main{ overflow-x: hidden;}
}

/* ! ___display-max-md */
@media (max-width: 767.98px) {
   .header,
   .header.scrolled { height: 70px; }
   .header__content { padding: 0 1rem; height: 70px; }
   .header__logo { height: 70px;}
   .header__logo img { height: 40px; }
   .mobile-menu-toggle { display: block; }
   .header__menu { position: fixed; top: 70px; left: 50%; width: 90%; max-height: 85vh; background: var(--primary); flex-direction: column; justify-content: center; align-items: center; transform: translateX(-100%); transition: all 0.25s cubic-bezier(.215, .61, .355, 1); z-index: 10000; margin: 0; padding: 0; }
   .header__menu.active { transform: translateX(-50%);}
   .header__menu li { margin: 0.5rem 0; width: 100%; text-align: center; }
   .header__menu li a { padding: 1.5rem 2rem; font-size: 1.2rem; margin: 0; border-radius: 0; width: 100%; display: block; }
   .dropdown-content { position: static; display: none; background: rgba(255, 255, 255, 0.1); box-shadow: none; border-radius: 0; margin: 0; padding: 0; width: 100%; }
   .dropdown.active .dropdown-content { display: block; animation: none; }
   .dropdown-content li a { padding: 1rem 3rem; font-size: 1rem; background: rgba(255, 255, 255, 0.05); }
   .dropdown-content li a:hover { background: rgba(255, 255, 255, 0.15); }
   .header__logo { font-size: 1.3rem; }
   .header__login { font-size: 0.9rem; padding: 0.4rem 0.8rem; }
}

/* ! ___display-max--sm */
@media (max-width: 575.98px) {
   .header,
   .header.scrolled { height: 70px;}
   .header__content { padding: 0 0.5rem; height: 100%; }
   .header__logo { font-size: 1.2rem; height: 60px; }
   .header__logo img { height: 35px;}
   .header__login { font-size: 0.8rem; padding: 0.3rem 0.6rem; }
   .header__menu { width: calc(100vw - 1rem); right: -0.5rem; max-width: 320px; }
   .header__menu li a { font-size: 0.9rem; padding: 0.65rem 1rem; }
   .mobile-menu-toggle { font-size: 1.2rem; padding: 0px; width: 50px; height: 50px; display: flex; justify-content: center; align-items: center; }
   .header__logo .logo-menu { height: 45px; width: 205px;}
   .header.scrolled .logo-menu {height: 40px;}
}


/* -------------------------------------------------------------------------------- */
/* ! TEMPLATE */
/* -------------------------------------------------------------------------------- */
.container{ max-width: 1200px; margin: 0 auto; }

.section-title { font-size: 48px; line-height: 1.08349; font-weight: 600; letter-spacing: -0.003em; color: #1d1d1f; margin-bottom: 20px;}
.section-pre-title { font-size: 24px; line-height: 1.33333; font-weight: 400; color: #6e6e73; margin-bottom: 32px;}
.section-slogan { font-size: 20px; color: #6e6e73; font-weight: 400;}
.section-header{ /*padding: 24px max(20px, calc((100% - 1200px) / 2));*/ /*margin-bottom: -25px;*/}

.cards-grid { display: flex; gap: 20px; margin-top: 40px; overflow-x: auto; scroll-behavior: smooth; /*padding: 24px max(20px, calc((100% - 1200px) / 2));*/ -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; flex-wrap: wrap; justify-content: center; padding-top: 10px;}
.cards-grid::-webkit-scrollbar { display: none;}

.card { flex: 0 0 calc(33% - 11px); background: var(--card-background); border-radius: 28px; padding: 35px 25px; min-height: 300px; display: flex; flex-direction: column; transition: transform 0.3s cubic-bezier(.215, .61, .355, 1), box-shadow 0.3s cubic-bezier(.215, .61, .355, 1); position: relative; border: 1px solid #0c4e6f2b; border-left: 5px solid #3399ba; }
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(24, 23, 23, 0.06); border-color: #cbd5e1; border-left-color: #d96300;}
.card__icon { width: fit-content; margin: 25px 0 15px 0; }
.card__icon img{ width: 40px; height: 40px; object-fit: contain;}
.card__icon svg { width: 28px; height: 28px; color: var(--icon-color);}
.card h3 { font-size: 28px; line-height: 1.16667; font-weight: 600; color: #1d1d1f; margin-bottom: 12px;}
.card p { font-size: 18px; font-weight: 300; color: #000; opacity: 0.9; flex-grow: 1;}
.card .btn-modal{ position: absolute; right: 32px; bottom: 32px; width: 56px; height: 56px; border-radius: 100%; background: #fff; display: flex; align-items: center; justify-content: center; border: none; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);}
.card .btn-modal:hover{ cursor: pointer;}

.card__header { display: flex; gap: 10px; align-items: center; margin-bottom: 30px; }
#featuresCarousel .card__icon { margin: 0; }
#featuresCarousel h3 { margin-bottom: 0; font-size: 26px; }

/* ! ___display-min-lg */
@media (min-width: 992px) {
   .section-header{max-width: 80%;}
}

/* ! ___display-max-xl */
@media (max-width: 1199.98px) {
   .container{ max-width: 950px; }
}

/* ! ___display-max-lg */
@media (max-width: 991.98px) {
   .container{ max-width: 700px; }
   .card { flex: 0 0 calc(50% - 15px)!important;}
}

/* ! ___display-max-md */
@media (max-width: 767.98px) {
   .container{ max-width: 95%; }
   .section-title { font-size: 38px;}
   .card { flex: 0 0 100%!important; padding: 20px; min-height: 250px;}
   .card__icon{ margin: 0;}
   .card__icon svg { width: 24px; height: 24px;}
   .cards-grid { margin-top: 15px;}
}

/* ! ___display-max--sm */
@media (max-width: 575.98px) {
   .card { min-height: 200px;}
}


/* -------------------------------------------------------------------------------- */
/* ! SECTIONS */
/* -------------------------------------------------------------------------------- */

/* ! - hero */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background: radial-gradient(ellipse 50% 50% at center center, #000000 0%, #2c2c2c 85%, #133a5d); padding-top: 90px;}
.hero:before {content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url(./image/ufficio-hero.webp) center / cover; opacity: 0.5; z-index: 0;}
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('./image/ufficio-hero.webp'); opacity: 0.65; animation: drift 20s ease-in-out infinite; animation: none; background-size: cover; background-position: center; background-repeat: no-repeat; display: none;}
.hero-text { position: relative; text-align: center; max-width: 65%; z-index: 2; }
.hero-text h1 { font-size: 3.5rem; font-weight: 900; text-shadow: 0px 0px 15px #00000036; color: white; margin-bottom: 1.5rem; line-height: 70px;}
.hero-text h2 { font-size: 2rem; font-weight: 900; text-shadow: 0px 0px 15px #00000036; color: white; margin-bottom: 1.5rem; line-height: 60px;}
.hero-text p { font-size: 23px; color: #fff; text-shadow: 0px 0px 15px #000; margin: auto; margin-bottom: 2.5rem; line-height: 30px; max-width: 70%;}
.hero-buttons { display: flex; gap: 1.5rem; justify-content: center;}
.hero-content { text-align: center; padding: 2rem; position: relative; z-index: 2; max-width: 900px; max-width: 1200px;}
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: #33a6ba; color: yellow; background: linear-gradient(135deg, rgb(0 154 188 / 25%), rgb(127 205 176 / 25%)); backdrop-filter: blur(10px); /*border: 1px solid var(--news-color); */ padding: 17px 20px; border-radius: 20px; font-size: 35px; font-weight: 500; color: var(--news-color); letter-spacing: 0.07em; margin-bottom: 24px; line-height: 35px; }
.hero-badge svg { width: 16px; height: 16px; filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));}
.hero-badge span{  font-size: 20px; font-weight: 300; text-shadow: 0px 0px 6px #00000036;}
.hero-badge b{text-transform: uppercase; font-weight: 700;}
.hero-content{ display: none; font-weight: 800 !important; letter-spacing: 0em !important; font-size: clamp(42px, 5vw, 60px); font-family: Inter !important;}
.hero-content .title { font-size: 4rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; opacity: 0; animation: fadeInUp 1s ease 0.2s forwards; }
.hero-content .subtitle { font-size: 1.5rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem; opacity: 0; animation: fadeInUp 1s ease 0.4s forwards;}
.hero-description { font-size: 1.2rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 3rem; opacity: 0; animation: fadeInUp 1s ease 0.6s forwards; max-width: 600px; margin-left: auto; margin-right: auto;}
.hero__cta { display: inline-flex; align-items: center; gap: 12px; background: var(--white); color: var(--primary); padding: 1rem 2rem; border: none; border-radius: 50px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: all 0.25s cubic-bezier(.215, .61, .355, 1); text-decoration: none; opacity: 0; animation: fadeInUp 1s ease 0.8s forwards; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);}
.hero__cta:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);}
.hero-buttons .btn-secondary{color: #fff;}
.hero-buttons .btn-secondary:hover{color: var(--color-black);}

@keyframes drift {
   0%, 100% { transform: translateX(0) translateY(0); }
   50% { transform: translateX(20px) translateY(-20px); }
}

@keyframes fadeInUp {
   from { opacity: 0; transform: translateY(30px); }
   to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
   from { opacity: 0; transform: translateY(-10px); }
   to { opacity: 1; transform: translateY(0); }
}

/* ! ___display-max-lg */
@media (max-width: 991.98px) {
   .hero-badge{font-size: 15px;}
   .hero-text h1 { font-size: 3rem;}
   .hero-text p { font-size: 1.1rem;}
}

/* ! ___display-max-md */
@media (max-width: 767.98px) {
   .hero-text { max-width: 85%;}
   .hero-text h1 { font-size: 2.5rem; }
   .hero-text p { font-size: 1.1rem; line-height: 1.75rem; max-width: 100%; }
   .hero-buttons { display: flex; flex-direction: column;}
}

/* ! ___display-max--sm */
@media (max-width: 575.98px) {
   .hero-badge{margin-bottom: 25px;}
   .hero-badge span { font-size: 18px; line-height: 22px;}
   .hero-text h1 { font-size: 2rem; line-height: 40px; margin-bottom: 10px;}
   .hero-text h2 { font-weight: 600; font-size: 1.5rem; line-height: 30px; margin-bottom: 20px;}
   .hero-text p { font-weight: 300; font-size: 1rem; line-height: 1.5rem; margin-bottom: 25px;}
}


/* ! - value-proposition */
.value-proposition { background: var(--section-background-dark); color: #000; padding: 100px 0 75px 0; text-align: center; font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;}
.value-proposition__content { max-width: 900px; margin: 0 auto;}

.value-proposition__content .section-title{margin: auto; margin-bottom: 25px; max-width: 100%;}
.value-proposition__title { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; margin-bottom: 1rem;}
.value-proposition__question { font-size: 1.5rem; line-height: 1.8rem; color: #000; opacity: 0.75; line-height: 1.15rem; margin: 0.5rem 0; font-weight: 300;}
.value-proposition__highlight { margin-top: 2rem; padding: 1.5rem; background: linear-gradient(135deg, #00a9e375, #ff77006e); border-radius: 28px; box-shadow: 0 2px 10px rgba(0,0,0,0.05);}
.value-proposition__highlight h2 { font-size: 1.8rem; color: #0a66c2; margin-bottom: 25px;}
.value-proposition__logo{ margin-top: 25px; margin-bottom: 50px; max-width: 400px; object-fit: contain;}
.value-proposition__subtitle { font-size: 22px; color: #000; line-height: 1.15rem; font-weight: 500; margin-bottom: 15px;}
.value-proposition__description { font-size: 22px; color: #000; line-height: 1.5rem; font-weight: 300; margin-bottom: 15px;}

/* ! ___display-max-lg */
@media (max-width: 991.98px) {
    .value-proposition__logo { max-width: 100%;}
}

/* ! ___display-max-md */
@media (max-width: 767.98px) {
    .value-proposition{ padding-right: 5%; padding-left: 5%; }
}

/* ! - features */
.features { padding: 100px 0; position: relative;}
.features::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 200px; pointer-events: none;}
/* .features__header { margin-bottom: -25px;} */
.features__carousel-wrapper { position: relative; }
.features__cta p{text-align: center; margin-top: 15px;}

/* Scroll Navigation Buttons */
.features .scroll-nav { display: flex; justify-content: flex-end; gap: 10px; margin-top: 30px; margin-right: 50px;}
.features .scroll-btn { background: var(--light); border: 1px solid #e5e7eb; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s cubic-bezier(.215, .61, .355, 1); font-size: 1.2rem; color: var(--text-dark);}
.features .scroll-btn:disabled { opacity: 0.3; cursor: not-allowed;}

.features .welcome-badge-feature { position: absolute; top: 16px; right: 16px; width: 45px; height: 45px; background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); border-radius: 14px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);}
.features .welcome-badge-feature svg { width: 18px; height: 18px; color: white;}


/* Scroll indicators */
.features .carousel-nav { display: flex; justify-content: center; gap: 8px; margin-top: 20px; background: var(--section-background-dark); width: fit-content; transform: translateX(-50%); position: absolute; left: 50%; padding: 25px; border-radius: 50px;}
.features .carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: #d2d2d7; transition: all 0.25s cubic-bezier(.215, .61, .355, 1); cursor: pointer;}
.features .carousel-dot.active { background: #0071e3; width: 26px; border-radius: 10px;}

/* ! - suppliers */
.suppliers { background: var(--section-background-dark); text-align: center; }
.suppliers__content .section-title { text-align: center; max-width: 100%;}
.suppliers__content .section-slogan { max-width: 850px; margin-left: auto; margin-right: auto;}
.suppliers__logos { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; margin-top: 3rem;}
.suppliers__logo { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); padding: 1.5rem 2rem; border-radius: 15px; font-weight: 600; font-size: 1.1rem; border: 1px solid rgba(255, 255, 255, 0.2);}
.suppliers__content__grid { max-width: 1200px; margin: 25px auto 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; align-items: center; }
.suppliers__content__grid__logo { border-radius: 16px; padding: 32px 32px 0 32px; height: 120px; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease, box-shadow 0.3s ease; opacity: 0.8;}
.suppliers__content__grid__logo img { width: 100px; max-height: 60px; object-fit: contain;}
.suppliers__content__grid__logo__placeholder { font-size: 18px; font-weight: 600; color: #86868b; text-align: center;}

.features__cta { margin: auto; margin-top: 100px; /*width: 50%;*/ }
.features__cta h2.section-title { text-align: center; max-width: 100%; }
.features__cta__button { justify-content: center; margin-top: 30px; text-align: center; display: flex; flex-direction: row; align-items: center; gap: 25px; flex-wrap: nowrap;}
.features__cta__button .btn-secondary { margin-left: 20px; }

/* ! ___display-max-lg */
@media (max-width: 991.98px) {
   .features__cta__button { flex-wrap: wrap; justify-content: center; width: 100%;}
   .suppliers__content__grid{ flex-wrap: wrap; gap: 10px;}
}

/* ! ___display-max-md */
@media (max-width: 767.98px) {
   .features__cta{width: 100%;}
   .features__cta h2.section-title { padding: 25px; margin-bottom: 0;}
   .suppliers__content__grid{ gap: 10px; justify-content: center;}
   .features .card{min-height: 200px;}
   .features .card h3 { font-size: 24px;}
   .features .card p { font-size: 18px;}
   .suppliers__content__grid__logo {padding: 0px 32px 0 32px;}
   .features__cta__button .btn-secondary{margin-left: 0;}
}


/* ! - support */
.support .section-title{text-align: center; margin: auto; margin-bottom: 25px; font-weight: 600;}
.support .section-slogan{ text-align: center; max-width: 800px; margin-left: auto; margin-right: auto;}


/* ! - WELCOME */
.welcome { background: var(--section-background-dark);}
.welcome .cards-grid { flex-wrap: wrap; /*padding: 24px max(0px, calc((100% - 1200px) / 2));*/}
.welcome .card { background: rgb(251 246 243); }

/* ! ___display-max--sm */
@media (max-width: 575.98px) {
   .welcome .card p{ font-size: 16px;}
}



/* ! - team */
.team-section { background: var(--section-background-dark); padding: 100px 0 100px 0;}
.team-header { text-align: center; max-width: 800px; margin: 0 auto 80px;}
.team-section .section-title { max-width: 100%; }
.team-grid { max-width: 1200px; margin: 0 auto; display: flex; gap: 25px; flex-direction: row; flex-wrap: wrap; justify-content: center;}
.team-card { background: #fff; padding: 25px; text-align: center; flex: 0 0 calc(33% - 15px);}
.team-card:hover {  transform: translateY(0); box-shadow: none;}
.team-avatar { width: 100px; height: 100px; margin: -40px auto 30px auto; background: var(--gradient-1); border-radius: 50%; display: flex; align-items: center; justify-content: center;}
.team-avatar i { width: 56px; height: 56px; color: var(--white);}
.team-card h3 { font-size: 24px; font-weight: 600; margin-bottom: 8px; color: var(--dark);}
.team-role { font-size: 14px!important; font-weight: 600!important; color: var(--secondary)!important; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.card .team-bio { /*opacity: 0.9; font-size: 18px; color: #000; font-weight: 300;*/}
.team-social { display: flex; gap: 12px; justify-content: center;}

.team-social a { width: 40px; height: 40px; border-radius: 50%; background: #f1f5f9; display: flex; align-items: center; justify-content: center; transition: all 0.25s cubic-bezier(.215, .61, .355, 1);}
.team-social a:hover { background: var(--primary);}
.team-social a:hover i { color: var(--white);}
.team-social i {width: 20px; height: 20px; color: var(--gray);}
.team-avatar img { border-radius: 100%; background-size: contain; width: 100%; height: 100%;}


/* Values Section */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0rem; margin-top: 3rem;}
.value-item { text-align: center; padding: 2rem;}
.value-icon { width: 80px; height: 80px; margin: 0 auto 2rem; background: var(--icon-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: white;}
.value-item h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; color: var(--text);}
.value-item p { /*color: var(--text-light); line-height: 1.6;*/ font-weight: 400;}

/* ! ___display-max-lg */
@media (max-width: 991.98px) {
   .values-grid{ display: flex; flex-direction: column; align-items: center; align-content: center; }
   .value-item { padding: 0rem; }
}

/* ! ___display-max-md */
@media (max-width: 767.98px) {
   .value-icon { width: 60px; height: 60px; margin: 25px auto 12px;}
   .team-grid{ gap: 40px 10px; }
   .team-avatar { width: 60px; height: 60px; margin: -40px auto 10px auto;}
   .team-card{ flex: 0 0 calc(100% - 10px); min-height: 150px; padding: 15px; }
   .team-role{margin-bottom: 5px;}
   .team-card h3 { margin-bottom: 5px; font-size: 20px;}
   .team-card p{ height: fit-content; flex-grow: inherit; font-size: 16px; }
}


/* ! - faq */
.faq-section { padding: 100px 22px;}
.faq-header { text-align: center; margin-bottom: 60px;}
.faq-header h2 { font-size: 48px; line-height: 1.08349; font-weight: 600; color: #1d1d1f; margin-bottom: 12px;}
.faq-header p { font-size: 21px; line-height: 1.381; color: #6e6e73;}
.faq-container { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px;}
.faq-item { background: #ffffff; border-radius: 16px; overflow: hidden; box-shadow: 0px 0px 15px -5px #0d4f6f66; transition: all 0.25s cubic-bezier(.215, .61, .355, 1);}
.faq-question { padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; user-select: none;}
.faq-question h3 { font-size: 19px; font-weight: 600; color: #1d1d1f; margin: 0;}
.faq-question svg { width: 24px; height: 24px; color: #0071e3; transition: transform 0.3s ease; flex-shrink: 0; margin-left: 16px;}
.faq-item.active .faq-question svg { transform: rotate(180deg);}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 28px;}
.faq-item.active .faq-answer { max-height: 500px; padding: 0 28px 24px 28px;}
.faq-answer p { font-size: 17px; font-weight: 400; line-height: 1.5; color: #6e6e73; margin: 0;}


/* ! - cta */
.cta-section .container {background: var(--section-background-dark); padding: 100px 22px; text-align: center; /*margin: 100px 50px 50px 50px;*/ border-radius: 50px;}
.cta-section h2 { font-size: 48px; line-height: 1.08349; font-weight: 600; letter-spacing: -0.003em; margin-bottom: 16px; color: #000;}
.cta-section p { font-size: 21px; line-height: 1.381; color: var(--gray); max-width: 850px; margin: 0 auto 40px; color: #000;}
.cta__buttons{ display: flex; justify-content: center; gap: 20px; margin-bottom: 20px;}
.cta__buttons .btn-secondary{ border: none; color: #000; text-decoration: underline;}

.cta__other-buttons p { margin-bottom: 20px;}
.btn-mail{ font-size: 1.1rem; text-decoration: none; background: #fff; padding: 1rem 2rem;}
.btn-whatsapp{ background: #fff; color: white; display: flex; align-items: center; justify-content: center; font-size: 2rem; text-decoration: none; color: #25D366; width: 60px; height: 60px; padding: 1rem 2rem;}

/* .cta__other-buttons__links{ display: flex; justify-content: center; gap: 20px;} */
.cta__other-buttons__links{ display: flex; justify-content: center; gap: 20px; flex-direction: column; }
.cta__features{ display: flex; justify-content: center; gap: 40px; margin-top: 40px; color: #62ab3f;}
.cta__features__feature{ display: flex; align-items: center; gap: 10px;}

/* ! ___display-max-lg */
@media (max-width: 991.98px) {
   .cta__features { display: flex; justify-content: center; gap: 15px;}
}

/* ! ___display-max--sm */
@media (max-width: 575.98px) {
   .cta-section .container { padding: 52px 22px 22px 22px;}
   .cta-section p { margin: 0 auto 20px;}
}

/* ! last-cta */
.last-cta{ margin: 50px auto 100px auto; }
.last-cta .container{ background: var(--section-background-dark);  border-radius: 50px; padding: 100px 22px;} 
.last-cta .section-title{text-align: center; max-width: 100%;}
.last-cta .section-slogan{max-width: 650px; margin: 0 auto; margin-bottom: 30px;}
.last-cta .section-slogan { margin-bottom: 5px;}

/* ! ___display-max-lg */
@media (max-width: 991.98px) {
   .last-cta .container { padding: 24px 22px;}
   .cta__other-buttons__links { display: flex; justify-content: center; gap: 20px; flex-direction: row; flex-wrap: wrap;}
   .cta__other-buttons__links .btn-primary{ width: 100%;}
   .cta__other-buttons__links .btn-mail { width: calc(100% - 88px);}
   /* .cta__other-buttons__links .btn-primary{ width: 100%;} */
}


/* ! - testimonials */
.testimonials { /*padding: 100px 20px;*/ background: var(--section-background-light);}
.testimonials-header { text-align: center; margin-bottom: 44px; padding: 24px max(20px, calc((100% - 1200px) / 2));}
.testimonials-header h2 { max-width: 100%; text-align: end; font-size: 48px; line-height: 1.08349; font-weight: 600; color: #1d1d1f; margin-bottom: 12px;}
.testimonials-header p { text-align: end; font-size: 21px; line-height: 1.381; color: #6e6e73;}
.testimonials-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px;}
.testimonial-card { min-height: unset; /*background: #edf0f2;*/ border-radius: 25px; padding: 40px; display: flex; flex-direction: column; gap: 24px; /*border: 1px solid #e2e8f0; transition: all 0.3s ease;*/}
.testimonial-card:hover { box-shadow: none; transform: translateY(0);}
.testimonial-card-1{ grid-column: 1 / span 2; grid-row: 1;}
.testimonial-card-2{ grid-column: 3 / -1; grid-row: 1 / span 2;}
.testimonial-card-3{ grid-column: 1; grid-row: 2;}
.testimonial-card-4{ grid-column: 2; grid-row: 2;}
.testimonial-card-5{ grid-column: 1; grid-row: 3;}
.testimonial-card-6{ grid-column: 2 / span 2; grid-row: 3;}
.testimonial-rating { display: none; gap: 4px;}
.testimonial-rating svg { width: 20px; height: 20px; fill: #ffb800; color: #ffb800;}
.testimonial-text { flex-grow: 1!important; font-style: italic; position: relative;}
.testimonial-text::before{ content: '"'; position: absolute; top: -50px; left: -30px; font-size: 100px; color: #0f7ae5; opacity: 0.2; z-index: 1; font-family: serif;}
.testimonial-text::after{ content: '"'; position: absolute; bottom: -80px; right: -10px; font-size: 100px; color: #0f7ae5; opacity: 0.2; z-index: 1; font-family: serif;}
.testimonial-author { display: flex; align-items: center; gap: 16px;}
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #0071e3 0%, #005bb5 100%); display: flex; align-items: center; justify-content: center; color: white; font-weight: 600; font-size: 18px;}
.testimonial-avatar img{ object-fit: contain; width: 100%; height: 100%; border-radius: 50%;}
.testimonial-info h4 { font-size: 17px; font-weight: 600; color: #1d1d1f; margin-bottom: 2px;}
.testimonial-info p { font-size: 14px; /*color: #6e6e73;*/ color: var(--secondary);}

/* ! ___display-max-lg */
@media (max-width: 991.98px) {
   .testimonials-grid { max-width: 100%; display: flex; flex-direction: column;}
   .testimonial-card{padding: 20px;}
}

/* ! ___display-max-md */
@media (max-width: 767.98px) {
   .testimonial-text{ font-size: 16px!important; }
}

/* ! ___display-max--sm */
@media (max-width: 575.98px) {
   .testimonial-text::before { top: -35px; left: -20px; font-size: 60px;}
   .testimonial-text::after { bottom: -70px; right: -10px; font-size: 60px;}
}


/* ! - footer */
footer { background: var(--section-background-light); padding: 80px 22px 20px; border-top: 1px solid rgba(0,0,0,0.1);}
footer a {color: #000;}
.footer-content { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 60px; margin-bottom: 40px;}
.footer-section h4 { font-size: 16px; font-weight: 600; margin-bottom: 12px; letter-spacing: -0.01em;}
.footer-section ul { list-style: none;}
.footer-section a { color: var(--gray); text-decoration: none; font-size: 14px; display: block; margin-bottom: 8px; transition: opacity 0.3s;}
.footer-section a:hover { opacity: 0.6;}
.footer-bottom { max-width: 1200px; margin: 0 auto 25px auto; padding-top: 25px; border-top: 1px solid rgba(0, 0, 0, 0.1); font-size: 12px; color: var(--gray); text-align: center;}
.footer-content-simple { align-items: flex-end; max-width: 1200px; margin: 0 auto 80px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px;}
.footer-logo h3 { font-size: 24px; font-weight: 600; margin-bottom: 8px;}
.footer-logo p { font-size: 16px; color: #6e6e73;}
.footer-links { display: flex; gap: 25px; flex-wrap: wrap;}
.footer-links a { color: #1d1d1f; font-size: 15px; transition: opacity 0.3s; text-decoration: none !important; }
.footer-links a:hover { opacity: 0.6;}
.footer-legal { display: flex; gap: 24px;}
.footer-legal a { color: #6e6e73; text-decoration: none; font-size: 12px;}
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;}
.footer-info a { color: #1d1d1f; font-size: 15px; transition: opacity 0.3s; text-decoration: none !important; }

/* ! ___display-max--sm */
@media (max-width: 575.98px) {
   .footer-links { gap: 10px 30px;}
   .footer-links a{text-decoration: underline;}
}


/* FORM */
.contact-section { background: #fff; padding: 2.6rem 3rem; border-radius: 12px; max-width: 50%; box-shadow: 0 12px 30px rgb(30 60 180 / 0.1); margin: auto;}
.contact-section h2 { font-weight: 700; margin-bottom: 22px; font-size: 1.9rem; color: #1649a5; text-align: center;}
.contact-section form { display: flex; flex-direction: column; gap: 1.3rem;}
.contact-section label { font-weight: 600; font-size: 0.95rem; margin-bottom: 6px; display: block;}
.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section textarea { width: 100%; padding: 11px 14px; border-radius: 8px; border: 1.9px solid #d3d7de; font-size: 1rem; transition: border-color 0.25s; resize: vertical; font-family: inherit;}
.contact-section input[type="text"]:focus,
.contact-section input[type="email"]:focus,
.contact-section textarea:focus { border-color: #1e3da6; outline: none; box-shadow: 0 0 4px #4984ff7f;}
.contact-section textarea { min-height: 90px;}
.contact-section button { background: #1e3da6; color: white; font-weight: 700; font-size: 1.1rem; padding: 12px; border: none; border-radius: 8px; cursor: pointer; text-transform: uppercase; letter-spacing: 0.06em; transition: background-color 0.3s ease-in-out; box-shadow: 0 5px 10px #1854aeaa;}
.contact-section button:hover,
.contact-section button:focus {background: #1649a5; box-shadow: 0 8px 15px #13419fcc;}

@media (max-width: 440px) {
  .contact-section { padding: 2rem 1.5rem; max-width: 100vw; border-radius: 0;}
}


/* -------------------------------------------------------------------------------- */
/* ! ANIMATIONS */
/* -------------------------------------------------------------------------------- */
/* fade-in */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.25s cubic-bezier(.215, .61, .355, 1); /*transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);*/}
.fade-in.in-page { opacity: 1; transform: translateY(0);}


/* ========================================
   SCROLL REVEAL ANIMATIONS (ADDED)
======================================== */
.fade-in-element { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease;}
.fade-in-element.visible { opacity: 1; transform: translateY(0);}


/* -------------------------------------------------------------------------------- */
/* ! Modal */
/* -------------------------------------------------------------------------------- */
/* Modal container - hidden by default */
.modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 1000;}
.modal-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.5); opacity: 0; transition: opacity 0.3s ease;}
.modal-content { top: 50%; position: absolute; background: #fff; border-radius: 20px 20px 45px 45px; padding: 2rem; width: min(90%, 500px); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); transform: translateY(20px); opacity: 0; transition: all 0.25s cubic-bezier(.215, .61, .355, 1); height: calc(100vh - 120px); max-height: max-content; overflow-y: auto; }
.modal.show { display: flex;}
.modal.show .modal-overlay { opacity: 1;}
.modal.show .modal-content { transform: translateY(calc(-50% + 40px)); opacity: 1;}
.close-btn { margin-top: 1.5rem; padding: 0.5rem 1rem; background: #333; color: white; border: none; border-radius: 6px; cursor: pointer;}
.close-btn:hover { background: #000;}

/* ! ___display-max-md */
@media (max-width: 767.98px) {
   .modal.show .modal-content{ padding: 20px; line-height: 25px; }
   .modal.show .modal-content h2{margin-bottom: 25px;}
   .modal.show .modal-content .btn-primary{ padding: 5px 15px; line-height: 24px;}
   .modal.show .modal-content .btn-secondary{ padding: 5px 15px;}
}


/* ========================================
   DEMO MODAL FORM (ADDED)
======================================== */
.demo-form { margin-top: 24px;}
.form-group {margin-bottom: 20px;}
.form-group label { display: block; font-size: 14px; font-weight: 600; color: #1d1d1f; margin-bottom: 8px;}
.form-group input,
.form-group textarea { width: 100%; padding: 12px 16px; font-size: 15px; border: 1px solid #d1d5db; border-radius: 8px; font-family: inherit; transition: border-color 0.3s;}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: #0071e3;}
.form-actions { display: flex; gap: 12px; margin-top: 24px;}
.form-actions .btn { flex: 1;}

#FixedContact { position: fixed; height: 250px; right: 10px; bottom: 10px; width: 200px; padding: 20px 0px; }


/* -------------------------------------------------------------------------------- */
/* ! Floating Contacts */
/* -------------------------------------------------------------------------------- */
   .floating-cta { position: fixed; bottom: 30px; right: 30px; z-index: 1000; }

   /* Main Button */
   .cta-main-button { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4); transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); position: relative; z-index: 10; color: #fff; }
   .cta-main-button:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(102, 126, 234, 0.6); }
   .cta-main-button:active { transform: scale(0.95);}
   .cta-main-button i { font-size: 24px; color: white; transition: transform 0.3s ease; }
   .cta-main-button.active i { transform: rotate(45deg); }

   /* Contact Buttons Container */
   .contact-buttons { position: absolute; bottom: 0; right: 0; pointer-events: none; }
   .contact-button { position: absolute; bottom: 0; right: 0; width: 50px; height: 50px; border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); opacity: 0; transform: scale(0); pointer-events: none; padding: 0!important; }
   .contact-button i { font-size: 20px; color: white; }
   .contact-button:hover { transform: scale(1.15) !important; box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25); }
   .contact-button:active { transform: scale(1.05) !important;}

   .btn-phone { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);}
   .btn-whatsapp { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); }
   .btn-email { background: linear-gradient(135deg, #EA4335 0%, #FBBC05 100%); }

   /* Active State - Fan Animation */
   .floating-cta.active .contact-button { opacity: 1; transform: scale(1); pointer-events: auto; color: #fff;}
   .floating-cta.active .btn-phone { bottom: 80px; right: 5px; transition-delay: 0.05s; z-index: 2; color: #fff; }
   .floating-cta.active .btn-whatsapp { bottom: 65px; right: 65px; transition-delay: 0.1s; color: #fff; }
   .floating-cta.active .btn-email { bottom: 5px; right: 80px; transition-delay: 0.15s; color: #fff; }

   /* Backdrop overlay */
   .cta-backdrop { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.3); opacity: 0; visibility: hidden; transition: all 0.25s cubic-bezier(.215, .61, .355, 1); z-index: 5; backdrop-filter: blur(2px); }
   .cta-backdrop.active { opacity: 1; visibility: visible; }

   /* Tooltip */
   .contact-button::before { content: attr(data-tooltip); position: absolute; right: 60px; background: rgba(0, 0, 0, 0.85); color: white; padding: 8px 12px; border-radius: 6px; font-size: 14px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.25s cubic-bezier(.215, .61, .355, 1); font-weight: 500; z-index: 9; }
   .contact-button:hover::before { opacity: 1; }
   .contact-button::after { content: ''; position: absolute; right: 50px; border: 6px solid transparent; border-left-color: rgba(0, 0, 0, 0.85); opacity: 0; pointer-events: none; /* transition: opacity 0.2s ease; */ transition: opacity 0.25s cubic-bezier(.215, .61, .355, 1); }
   .contact-button:hover::after { opacity: 1;}

   .contact-button a{ color: #fff; display: flex; width: 100%; height: 100%; align-items: center; justify-content: center; text-decoration: none;}
   .contact-button a i{font-size: 24px;}

   /* Ripple Effect */
   .ripple { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.6); transform: scale(0); animation: ripple-animation 0.6s ease-out; pointer-events: none; }

   @keyframes ripple-animation {
      to { transform: scale(4); opacity: 0; }
   }

   /* Responsive */
   @media (max-width: 768px) {
      .floating-cta { bottom: 20px; right: 20px; }
      .cta-main-button { width: 55px; height: 55px; }
      .contact-button { width: 45px; height: 45px; }
      .floating-cta.active .btn-phone { bottom: 70px; right: 5px; }
      .floating-cta.active .btn-whatsapp { bottom: 55px; right: 55px; }
      .floating-cta.active .btn-email { bottom: 5px; right: 70px; }
   }