/*==================================
* Author        : "ThemeSine"
* Template Name : Listrace  HTML Template
* Version       : 1.0
==================================== */

/*==================================
font-family: 'Roboto', sans-serif;
==================================== */

/* Font Definitions */
@font-face {
    font-family: 'NobstarsRegular';
    src: url('../fonts/NobstarsRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Background pattern sottile per le sezioni bianche */
.subtle-bg-pattern {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(135, 206, 250, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(32, 178, 170, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(176, 224, 230, 0.01) 0%, transparent 70%);
    background-size: 300px 300px, 250px 250px, 400px 400px;
    background-position: 0 0, 100px 100px, 200px 50px;
}

/* Pattern per le sezioni con contenuto */
.works .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 49%, rgba(135, 206, 250, 0.01) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(32, 178, 170, 0.01) 50%, transparent 51%);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.works .container {
    position: relative;
}

.works .container > * {
    position: relative;
    z-index: 1;
}

/* Pattern delicato per il footer */
.footer {
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(135, 206, 250, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(32, 178, 170, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(176, 224, 230, 0.02) 0%, transparent 50%);
    background-size: 200px 200px, 180px 180px, 150px 150px;
}

/* Decorazioni Marine - Solo Bolle */
.marine-decoration {
    position: relative;
    overflow: hidden;
}

/* ===== MICROINTERAZIONI E ANIMAZIONI ===== */

/* Hover Effects per Servizi/Amenità */
.single-how-works {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.single-how-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(32, 178, 170, 0.1), transparent);
    transition: all 0.6s ease;
}

.single-how-works:hover::before {
    left: 100%;
}

.single-how-works:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(32, 178, 170, 0.2);
    background: linear-gradient(135deg, #fff 0%, #f8fcff 100%);
    border-radius: 15px;
}

.single-how-works-icon {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.single-how-works:hover .single-how-works-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 5px 15px rgba(32, 178, 170, 0.3));
}

.single-how-works:hover .single-how-works-icon i {
    color: #20b2aa;
    animation: pulse-icon 1.5s ease-in-out infinite;
}

/* Animazione pulse per icone */
@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Hover Effects per Gallery Items */
.gallery-img-wrapper {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(32, 178, 170, 0.8), rgba(70, 130, 180, 0.8));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.gallery-img-wrapper:hover::after {
    opacity: 1;
}

.gallery-img-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-overlay {
    z-index: 2;
    transition: all 0.4s ease;
}

.gallery-img-wrapper:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Animation per elementi multipli */
.scroll-animate-stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-stagger.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Delays per effetto stagger */
.scroll-animate-stagger:nth-child(1) { transition-delay: 0.1s; }
.scroll-animate-stagger:nth-child(2) { transition-delay: 0.2s; }
.scroll-animate-stagger:nth-child(3) { transition-delay: 0.3s; }
.scroll-animate-stagger:nth-child(4) { transition-delay: 0.4s; }
.scroll-animate-stagger:nth-child(5) { transition-delay: 0.5s; }
.scroll-animate-stagger:nth-child(6) { transition-delay: 0.6s; }

/* Hover Effects per Contact Icons */
.contact-icon-item {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-icon-item:hover {
    transform: translateY(-8px);
}

.contact-icon {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.contact-icon-item:hover .contact-icon::before {
    width: 100%;
    height: 100%;
}

.contact-icon-item:hover .contact-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Animazioni per Section Headers */
.section-header {
    transition: all 0.6s ease;
}

.section-header.animate-in h2 {
    animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-header.animate-in p {
    animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MODAL COME RAGGIUNGERE CERVIA ===== */

.transport-tab {
    background: linear-gradient(135deg, #e9ecef, #f8f9fa) !important;
    color: #495057 !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 10px 20px !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
}

.transport-tab:hover {
    background: linear-gradient(135deg, #20b2aa, #4682b4) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.3);
}

.transport-tab.active {
    background: linear-gradient(135deg, #20b2aa, #4682b4) !important;
    color: white !important;
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.4);
}

.direction-card, .airport-card, .coord-card {
    transition: all 0.3s ease;
}

.direction-card:hover, .airport-card:hover, .coord-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.info-tip {
    animation: pulse-tip 2s ease-in-out infinite;
}

@keyframes pulse-tip {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Responsive per modal */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 10px;
    }
    
    .airport-grid, .coordinates-grid {
        grid-template-columns: 1fr !important;
    }
    
    .transport-tab {
        font-size: 0.9em;
        padding: 8px 15px !important;
        margin: 2px !important;
    }
}

/* Floating Animation per elementi speciali */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* Loading Animation per immagini */
.img-loading {
    position: relative;
    overflow: hidden;
}

.img-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Hover effect per buttons */
.welcome-hero-btn, .filter-btn {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.welcome-hero-btn::before, .filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.welcome-hero-btn:hover::before, .filter-btn:hover::before {
    left: 100%;
}

.welcome-hero-btn:hover, .filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(32, 178, 170, 0.4);
}

/* Animazione per testimonials */
.single-testimonial-box {
    transition: all 0.4s ease;
}

.single-testimonial-box:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-img img {
    transition: all 0.4s ease;
}

.single-testimonial-box:hover .testimonial-img img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Bolle fluttuanti */
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    background: rgba(135, 206, 250, 0.3);
    border-radius: 50%;
    animation: bubble 8s linear infinite;
}

.bubble:nth-child(1) {
    width: 20px;
    height: 20px;
    left: 10%;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 15px;
    height: 15px;
    left: 20%;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 25px;
    height: 25px;
    left: 80%;
    animation-delay: 4s;
}

.bubble:nth-child(4) {
    width: 18px;
    height: 18px;
    left: 60%;
    animation-delay: 6s;
}

@keyframes bubble {
    0% {
        bottom: -50px;
        opacity: 0;
        transform: scale(0);
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: scale(0);
    }
}

/*=========== TABLE OF CONTENTS ===========
1.  General css (Reset code)
2.  Header-top
3.  Top-area
4.  Welcome-hero
5.  List-topics
6.  Works  
7.  Explore
8.  Reviews
9.  Counter
10. Blog
11. Subscribe
12. Footer
==========================================*/

/*-------------------------------------
		1.General css (Reset code)
--------------------------------------*/
*{
    padding: 0;
    margin: 0;
}

*{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
}
body{
	font-family: 'Poppins', sans-serif;
	font-size:14px;
	color:#a09e9c;
    text-transform:initial;
    max-width:1920px;
    margin:0 auto;
	overflow-x:hidden;
	scroll-padding-top: 100px;
}

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

a,a:hover,a:active,a:focus {
	display:inline-block;
	text-decoration:none;
	color: #343a3f;
	font-size:16px;
	padding:0;
    font-weight: 500;
    text-transform: capitalize;
}
h1,h2,h3,h4,h5,h6 { 
	margin: 0;
	color:#343a3f;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
}
p {
	margin: 0;
	color:#767f86;
	font-size:14px;
    line-height: 1.8;
    text-transform: initial;
}
img{border:none;max-width:100%; height:auto;}
ul{
	padding: 0;
    margin: 0 auto;
    list-style: none;
}
ul li {
	list-style: none;
	
}
select,input,textarea,button{box-shadow:none;outline:0!important;}
button {background: transparent;border: 0;font-size: 12px;}

html,body{height: 100%;}

[placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s 0.3s ease; 
  -moz-transition: opacity 0.3s 0.3s ease; 
  -ms-transition: opacity 0.3s 0.3s ease; 
  -o-transition: opacity 0.3s 0.3s ease; 
  transition: opacity 0.3s 0.3s ease; 
  opacity: 0;
}

/* section-header */
.section-header{
    position: relative;
    text-align: center;
}
.section-header h2{
    color: #505866;
    font-size:24px;
    font-weight: 500;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}
.section-header h2 span{text-transform: lowercase;}
.section-header p{
    font-size:16px;
}
/* section-header */
.fix{position: relative;clear: both;}
/*=============Style css=========*/


/*-------------------------------------
        2. Header-top
--------------------------------------*/
.header-top{border-bottom:1px solid #f6f8fa;}

.header-top ul li {display: inline-block;}

.header-top-left li,.header-top-right li  {display: inline-block;}

/*.select-opt*/
.select-opt,.header-top-contact{
    padding: 10px 18px;
    border-right: 1px solid #f6f8fa;
}
.header-top-contact{
    border-right: 0;
    border-left: 1px solid #f6f8fa;
    font-size: 12px;
}

/* Header Contact Icons Styles */
.header-contact-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-contact-icon i {
    color: white;
    font-size: 14px;
}

.header-contact-icon.phone-icon {
    background: linear-gradient(45deg, #20b2aa, #1a9691);
    box-shadow: 0 4px 10px rgba(32, 178, 170, 0.3);
}

.header-contact-icon.whatsapp-icon {
    background: linear-gradient(45deg, #20b2aa, #1a9691);
    box-shadow: 0 4px 10px rgba(32, 178, 170, 0.3);
}

.header-contact-icon.email-icon {
    background: linear-gradient(45deg, #20b2aa, #1a9691);
    box-shadow: 0 4px 10px rgba(32, 178, 170, 0.3);
}

.header-contact-icon:hover {
    transform: translateY(-2px) scale(1.05);
    text-decoration: none;
}
.select-opt select {
    border: none;
    cursor:pointer;
    color:#333;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: #f5f5f5;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 18px;
    padding-right: 32px;
}
.select-opt option{
    color: #333;
    text-transform: uppercase;
    background: white;
}
.select-opt a span.lnr-magnifier:before {
    font-size: 12px;
    color: #373939;
}
.select-opt a span.lnr-magnifier:before {
    font-size: 12px;
    color: #373939;
}
/*.select-opt*/

.header-top-right ul li a{
    color:#a7b0ba;
    font-size: 12px;
    font-weight: 300;
}


/*-------------------------------------
        3. Top-area
--------------------------------------*/
nav.navbar.bootsnav {
    background-color:#fff;
    border-bottom: transparent;
    z-index: 1000;
}
.wrap-sticky nav.navbar.bootsnav.sticked {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,.2);
    z-index: 1000;
}

/*.navbar-brand*/
.navbar-header a.navbar-brand,.navbar-header a.navbar-brand:hover,.navbar-header a.navbar-brand:focus {
    display: inline-block;
    color: #1b1e20;
    font-size: 20px;
    font-weight: 700;
    padding: 34px 0px;
    text-transform:capitalize;
}
.navbar-header a.navbar-brand span{display: inline-block;color:#ff545a;text-transform:capitalize;}

.wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand,.wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand:hover,.wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand:focus {padding:30px 0px;}
/*.navbar-brand*/

/*.nav li*/
nav.navbar.bootsnav ul.nav > li > a {
    color: #859098;
    font-size: 14px;
    font-weight: 500;
    text-transform:uppercase;
    -webkit-transition: 0.3s linear; 
    -moz-transition: 0.3s linear; 
    -ms-transition: 0.3s linear; 
    -o-transition: 0.3s linear; 
    transition: 0.3s linear;
}
nav.navbar.bootsnav ul.nav > li > a {padding:34px 21px;}
nav.navbar.bootsnav ul.nav > li > a:hover,nav.navbar.bootsnav ul.nav > li > a:focus{color: #20b2aa;}
nav.navbar.bootsnav ul.nav > li.active>a {color: #20b2aa;}

nav.navbar.bootsnav ul.nav > li.dropdown > a.dropdown-toggle:after {
    content: "";
}
nav.navbar.bootsnav ul.nav > li.dropdown span {
    font-size: 8px;
    margin-left: 15px;
}
.wrap-sticky nav.navbar.bootsnav.sticked ul.nav > li > a{padding:34px 21px;}
/*.nav li*/

/*.menu-ui-design*/
.menu-ui-design{overflow-y:scroll;height: 350px;}
.menu-ui-design::-webkit-scrollbar {
    width:5px;
}
.menu-ui-design::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 8px #000;
}
.menu-ui-design::-webkit-scrollbar-thumb {
  background-color: #ff545a;
}
/*.menu-ui-design*/

/*.navbar-toggle */
nav.navbar.bootsnav .navbar-toggle {
    position: relative;
    background-color: transparent;
    border: 1px solid #ff545a;
    padding: 10px;
    top: 0;
}
nav.navbar.bootsnav .navbar-toggle i{color: #ff545a;}
/*.navbar-toggle */

/*-------------------------------------
        4.  Welcome-hero
--------------------------------------*/
.welcome-hero {
    position: relative;
    background:url(../images/Cervia/IMG_7998.JPG)no-repeat;
    background-position:center;
    background-size:cover;
    text-align: center;
    height:800px;
    z-index: 1;
}
.welcome-hero:before{
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(65,73,89,.65);
    z-index: -1;
}
.welcome-hero-txt { padding-top: 155px;}

.welcome-hero-txt h2 {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    line-height: 1.4;
}
.welcome-hero-txt p {
    font-size: 18px;
    color: #fcfcfc;
    margin-top: 25px;
}

.welcome-hero-serch-box{margin-top: 78px;display: flex;justify-content: center;}
.welcome-hero-form {
    display: flex;
    background: #fff;
    height: 70px;
    border-radius: 3px;
    width: 85%;
}
.single-welcome-hero-form {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 50%;
    padding: 0 30px;
}
.single-welcome-hero-form:first-child{border-right: 1px solid #edeff1;}
.single-welcome-hero-form input {
    margin-left: 10px;
    height: 70px;
    width: 300px;
    border: 0;
    background: transparent;
}
.single-welcome-hero-form input[type="text"]{
    font-size: 14px;
    color: #859098;
    text-transform: capitalize;
    font-weight: 500;
}
.welcome-hero-form-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #252d32;
}
.welcome-hero-btn {
    display:  flex;
    justify-content:  center;
    align-items:  center;
    font-size:  14px;
    color:  #fff;
    width:  170px;
    height:  70px;
    background:  #20b2aa;
    text-transform:  capitalize;
    margin-left:  30px;
    border-radius: 3px;
    -webkit-transition: 0.3s linear; 
    -moz-transition: 0.3s linear; 
    -ms-transition: 0.3s linear; 
    -o-transition: 0.3s linear; 
    transition: 0.3s linear;
}
.welcome-hero-btn:hover{background: #20b2aa;}

.welcome-hero-btn svg {
    width:  14px;
    height:  auto;
    margin-left:  12px;
}

/*-------------------------------------
        5. List-topuics
--------------------------------------*/
.list-topics-content {
    position: relative;
    top: -98px;
    z-index: 1;
}
.list-topics-content ul {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 15px;
}
.list-topics-content ul li { 
    display: flex;
    flex: 1;
    min-width: 200px;
    max-width: 200px;
}

.single-list-topics-content{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 170px;
    background:#fff;
    border-radius: 3px;
    box-shadow: 0 0px 10px rgba(71,71,71,.2);
    text-align: center;
    padding: 20px 10px;
    -webkit-transition: .3s linear; 
    -moz-transition:.3s linear; 
    -ms-transition:.3s linear; 
    -o-transition:.3s linear;
    transition: .3s linear;
}
.single-list-topics-content h2>a { margin: 13px 0;}
/*.single-list-topics-content:last-child{margin-right: 0;}*/

.single-list-topics-icon [class^="flaticon-"]:before,.single-list-topics-icon [class*=" flaticon-"]:before,.single-list-topics-icon [class^="flaticon-"]:after,.single-list-topics-icon [class*=" flaticon-"]:after {font-size: 45px;color:#20b2aa;}
.single-list-topics-icon .fas, .single-list-topics-icon .far, .single-list-topics-icon .fab {font-size: 45px;color:#20b2aa;}
.single-list-topics-icon .fi {font-size: 45px;color:#20b2aa;}
.single-list-topics-icon {
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-list-topics-content h2 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-list-topics-content:hover .single-list-topics-icon [class^="flaticon-"]:before,.single-list-topics-content:hover .single-list-topics-icon [class*=" flaticon-"]:before,.single-list-topics-content:hover .single-list-topics-icon [class^="flaticon-"]:after,.single-list-topics-content:hover .single-list-topics-icon [class*=" flaticon-"]:after {color:#fff;}

.single-list-topics-content:hover h2>a,.single-list-topics-content:hover p{color: #fff!important;}

/*-------------------------------------
        6. Works 
--------------------------------------*/
.works{padding: 120px 0 90px;}
.works-content {margin-top: 73px;}

.single-how-works{
    text-align: center;
    padding:10px;
    border-radius: 8px;
    box-shadow: 0 0px 5px rgba(71,71,71,.2);
    margin-bottom: 30px;
    height: 160px;
    display: grid;
    grid-template-rows: 60px 40px 1fr;
    align-items: center;
    -webkit-transition: .3s linear; 
    -moz-transition:.3s linear; 
    -ms-transition:.3s linear; 
    -o-transition:.3s linear;
    transition: .3s linear;
}

.single-how-works-icon {
    color: #20b2aa;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon sizes for all icon types */
.single-how-works-icon i {
    font-size: 45px;
}
.single-how-works h2 a {
    font-size:  16px;
    margin: 35px 0 20px;
}
.single-how-works h2 a span {text-transform:  lowercase;}
.single-how-works h2 {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.single-how-works p {
    margin: 0;
    text-transform: initial;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-how-works-icon [class^="flaticon-"]:before,.single-how-works-icon [class*=" flaticon-"]:before,.single-how-works-icon [class^="flaticon-"]:after,.single-how-works-icon [class*=" flaticon-"]:after {font-size: 45px;}
.single-how-works:hover .single-how-works-icon [class^="flaticon-"]:before,.single-how-works:hover .single-how-works-icon [class*=" flaticon-"]:before,.single-how-works:hover .single-how-works-icon [class^="flaticon-"]:after,.single-how-works:hover .single-how-works-icon [class*=" flaticon-"]:after {color:#20b2aa;}

.welcome-hero-btn.how-work-btn {
    display: inline-block;
    margin: 0;
    width: 100px;
    height: 35px;
    font-size: 12px;
    background: transparent;
    color: #767f86;
    border: 1px solid #d3d6d9;
    border-radius: 3px;
}

.single-how-works:hover h2 a,.single-how-works:hover p{color: inherit;}
.single-how-works:hover .single-how-works-icon{color: #20b2aa;}
.single-how-works:hover .welcome-hero-btn.how-work-btn{background: #fff;color: #ff545a;}
.single-how-works:hover{box-shadow: 0 0px 10px rgba(71,71,71,.4);}

/*-------------------------------------
        7. Explore
--------------------------------------*/
.explore{
    padding:60px 0 95px;
    background: #f8fafb;
}
.explore-content{margin-top: 78px;}

.single-explore-item {
    background: #fff;
    border: 1px solid #edeff1;
    border-radius: 3px;
    margin-bottom: 25px;
    -webkit-transition: .3s linear; 
    -moz-transition:.3s linear; 
    -ms-transition:.3s linear; 
    -o-transition:.3s linear;
    transition: .3s linear;
}
.single-explore-img{position:relative;overflow: hidden;}
.single-explore-img:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(162,172,177,.2);
}
.single-explore-img-info {
    position: absolute;
    bottom:-20px;
    left: 0;
    width: 100%;
    opacity:0;
    visibility:hidden;
    -webkit-transition: .3s linear;
    -moz-transition: .3s linear;
    -ms-transition: .3s linear;
    -o-transition: .3s linear;
    transition: .3s linear;
}
.single-explore-item:hover .single-explore-img-info{
    opacity:1;
    visibility:visible;
    bottom:0px
}
.single-explore-img-info button{
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 83px;
    height: 21px;
    line-height: 21px;
    background: #ff545a;
    border-radius: 3px;
    color: #fcfcfc;
    text-transform: capitalize;
    text-align: center;
    font-size: 12px;
}
.single-explore-image-icon-box {
    text-align: right;
    position: absolute;
    bottom: 10px;
    right:  10px;
}
.single-explore-image-icon-box ul li {
    display:  inline-block;
    width: 30px;
    height:  28px;
    line-height:  28px;
    background: #252d32;
    text-align:  center;
    margin-left:  5px;
    color:  #cbcccd;
}
.single-explore-image-icon-box ul li:hover i{color: #267dff;}

.single-explore-txt {
    padding: 26px 25px 24px 15px;
}
.single-explore-txt.bg-theme-1 .explore-rating{background: #70a9ff;}
.single-explore-txt.bg-theme-2 .explore-rating{background: #00c61c;}
.single-explore-txt.bg-theme-3 .explore-rating{background: #ffcc5d;}
.single-explore-txt.bg-theme-4 .explore-rating{background: #bd70ff;}
.single-explore-txt.bg-theme-5 .explore-rating{background: #ff7a40;}

.explore-rating-price,.explore-rating-price a {
    font-size: 12px;
    color: #777f85;
    text-transform: capitalize;
    font-weight: 400;
    margin: 15px 0 20px;
}
.explore-rating-price a {margin:0;}
.explore-rating {
    display: inline-block;
    width: 32px;
    height: 20px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    font-weight: 500;
    margin-right: 10px;
}
.explore-price {color: #f63138;}
.explore-price-box {
    display: inline-block;
    padding: 0 10px;
    margin: 0 8px;
    border-left: 1px solid #dde0e4;
    border-right: 1px solid #dde0e4;
}
.explore-person {
    padding-bottom: 28px;
    border-bottom: 1px solid #e1e5eb;
}
.explore-person-img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.explore-person p {font-size: 12px;}
.explore-open-close-part {
    margin-top: 20px;
}
.close-btn {
    color: #f63138;
    text-transform: capitalize;
}
.close-btn.open-btn {color: #00c437;}
.explore-map-icon{text-align: right;}
.explore-map-icon a svg {
    width: 12px;
    height: 14px;
    margin-left: 23px;
    color: #767f86;
}
.explore-map-icon a svg:hover{color: #f63138;}
.single-explore-txt.bg-theme-2 .explore-map-icon a svg:hover{color: #00c437;}
.single-explore-item:hover{box-shadow: 0 10px 20px rgba(21,19,19,.2);}

/*-------------------------------------
        8. Reviews
--------------------------------------*/
.reviews{padding:60px 0 75px;}
.reviews-content {margin-top:36px;}

/*single-testimonial-box */
.single-testimonial-box  {
    padding: 50px 30px;
    box-shadow: 0 0px 5px rgba(71,71,71,.2); 
    overflow-x:hidden;
    -webkit-transition: .3s; 
    -moz-transition:.3s; 
    -ms-transition:.3s; 
    -o-transition:.3s;
    transition: .3s;
}
.single-testimonial-box:hover{box-shadow:0 10px 20px rgba(21,19,19,.2);}
.slick-current .single-testimonial-box{box-shadow:0 10px 20px rgba(21,19,19,.2);}
/*testimonial-description*/
.single-testimonial-box{
    width: 404px;
    background:#fff;
}
/* testimonial-info */
.testimonial-info {
    display: flex;
    align-items: center;
    text-transform:capitalize;
}
.testimonial-img {
    position: relative;
    top: 11px;
    margin-right: 5px;
    border-radius:50%;
    -webkit-transition: .3s; 
    -moz-transition:.3s; 
    -ms-transition:.3s; 
    -o-transition:.3s;
    transition: .3s;
}
.testimonial-person {
    margin-left: 15px;
    margin-top: 11px;
}
.testimonial-person h2 {
    color: #505866;
    font-size: 18px;
}
.testimonial-person h4 {
    color: #a2a5ab;
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
}
.testimonial-person-star i {
    color: #ffda2b;
    margin: 9px 4px 0 0;
}/* testimonial-info */


/* testimonial-comment */
.testimonial-comment {
    margin-top: 18px;
}
.testimonial-comment p{
    color: #8d939e;
    font-size: 14px;
    font-weight: 300;
}/* testimonial-comment */


/*.slick-slide*/
.slick-initialized .slick-slide {
    display: block;
    padding: 40px 0;
}
.slick-slide.slick-cloned {outline: 0!important;}
.slick-slide {
  margin: 0px 10px;
}
.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .5;
}
.slick-active {
  opacity: .5;
}
.slick-current {
  opacity: 1;
}
/*.slick-slide*/

/*-------------------------------------       
        9.  Counter
--------------------------------------*/
.statistics{
    position:relative;
    display: flex;
    align-items: center;
    background:url(../../assets/images/counter/counter-banner.jpg)no-repeat fixed;
    background-position:center;
    background-size:cover;
    padding:127px 0 120px;
}
.statistics:before{
    position:absolute;
    content:'';
    background: rgba(75,75,75,.60);
    height:100%;
    width:100%;
    top:0;
    left:0;
}
/* single-ststistics-box */
.single-ststistics-box {
    text-align: center;
    margin-bottom:30px;

}
/* single-ststistics-box */
.statistics-content{
    display: flex;
    justify-content: center;
    color:#fff;
    font-size:60px;
}
.statistics-content span {
    margin-left: 5px;
}
.single-ststistics-box h3{
    color:#fff;
    font-size:24px;
    text-transform:capitalize;
    font-weight: 500;
}

/*-------------------------------------
        10. Blog
--------------------------------------*/
.blog{padding:60px 0 90px;}
.blog-content{margin-top: 80px;}

.single-blog-item{
    margin-bottom: 30px;
    box-shadow: 0 0px 5px rgba(71,71,71,.2);
    -webkit-transition: .3s; 
    -moz-transition:.3s; 
    -ms-transition:.3s; 
    -o-transition:.3s;
    transition: .3s;
}
.single-blog-item-txt {padding:  25px 28px 27px;}
.single-blog-item-txt h2 a {text-transform:  initial;line-height: 1.8;}
.single-blog-item-txt h4 {
    font-size:  14px;
    color:  #8f949d;
    font-weight:  400;
    margin: 12px 0 20px;
}
.single-blog-item-txt h4 a {
    font-size:  14px;
    padding-right:  14px;
    border-right: 1px solid #dde0e4;
    margin-right:  15px;
    text-transform: uppercase;
}

.single-blog-item:hover h2 a {color:#ff545a;}
.single-blog-item:hover{
    box-shadow: 0 10px 20px rgba(21,19,19,.4);
}


/*-------------------------------------
        11. Subscribe
--------------------------------------*/
.subscription{
    padding:60px 0;
}
/*subscribe-title*/
 .subscribe-title {margin-bottom: 52px;}

.subscribe-title h2{
    font-size:24px;
    font-weight: 500;
    text-transform: uppercase;
}
.subscribe-title p{
    color:#7b8088;
    font-size:16px;
    font-weight: 500;
    margin-top: 28px;
}/*subscribe-title*/


/*custom-input-group*/
.subscription-input-group {
    position: relative;
    text-align: center;
    max-width: 630px;
    margin:0 auto;
}

.subscription-input-group .subscription-input-form{
    display: inline-block;
    width: 630px;
    height: 60px;
    padding-left:30px;
    font-size: 16px;
    color: #a5adb3;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
    border:1px solid #fff;
    box-shadow: 0 0px 10px rgba(21,19,19,.1);
     -webkit-transition:0.3s linear;
    -moz-transition:0.3s linear;
    -o-transition:0.3s linear;
    transition:0.3s linear;
}
.subscription-input-group:hover .subscription-input-form{
    box-shadow: 0 5px 20px rgba(21,19,19,.4);
}
/*custom-input-group*/

/*appsLand-btn*/
.appsLand-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff545a;
    display: inline-block;
    width: 180px;
    height: 60px;
    line-height: 60px;
    text-decoration: none;
    border-top-right-radius:3px;
    border-bottom-right-radius:3px;
    text-transform:capitalize;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: 0;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition:0.3s ease-in-out;
    -moz-transition:0.3s ease-in-out;
    -o-transition:0.3s ease-in-out;
    transition:0.3s ease-in-out;
}
.appsLand-btn:hover, .appsLand-btn:focus, .appsLand-btn:active {
    text-decoration: none;
    outline: none;
}
.appsLand-btn:hover {
    box-shadow:0 5px 10px rgba(71,71,71,.4);
    background: #f43032;
}
/*appsLand-btn*/

/*-------------------------------------
        12. Footer
--------------------------------------*/
.footer-menu {padding: 45px 0;}
.footer-menu .navbar-header{padding:0;}
.footer-menu .navbar-header a.navbar-brand,.footer-menu.footer-menu .navbar-header a.navbar-brand:hover,.footer-menu .navbar-header a.navbar-brand:focus{
    padding:0;
    height: 0;
}
.footer-menu ul.footer-menu-item{text-align: right;}
.footer-menu ul.footer-menu-item li{display: inline-block;}
.footer-menu ul.footer-menu-item li a {
    color: #859098;
    font-size: 14px;
    text-transform: uppercase;
    padding-left: 40px;
    -webkit-transition:0.3s linear;
    -moz-transition:0.3s linear;
    -o-transition:0.3s linear;
    transition:0.3s linear;
}
.footer-menu ul.footer-menu-item li a:hover{color: #f43032;}
.hm-footer-copyright {
    padding: 40px 0;
    border-top: 1px solid #e1e5eb;
}
.hm-footer-copyright p,.hm-footer-copyright p a {
    color: #a5adb3;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}
.footer-social {text-align: right;}
.footer-social .fa-phone:before {
    position: relative;
    top: 2px;
}
.footer-social a ,.footer-social span {
    display: inline-block;
    color: #afb4bf;
    font-size: 14px;
    margin-left: 15px;
    -webkit-transition: .3s; 
    -moz-transition:.3s; 
    -ms-transition:.3s; 
    -o-transition:.3s;
    transition: .3s;
}
.footer-social a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #eef2f6;
    text-align: center;
    border-radius: 50%;
}
.footer-social span {margin-right:15px;margin-left: 0;color: #a5adb3;}
.footer-social span:hover{color: #20b2aa;}
.footer-social a:hover {background:#20b2aa;color: #fff;}

/*===============================
    Scroll Top
===============================*/
#scroll-Top  .return-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
    width: 40px;
    line-height: 40px;
    height: 40px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    background:#20b2aa;
	border:1px solid #20b2aa;
	border-radius:50%;
	-webkit-transition: .5s; 
	-moz-transition:.5s; 
	-ms-transition:.5s; 
	-o-transition:.5s;
    transition: .5s;
	z-index: 2;
}
#scroll-Top  .return-to-top:hover {
    background:#20b2aa;
	border:1px solid #20b2aa;
}

#scroll-Top  .return-to-top i{
    position:relative;
    bottom:0;

}

#scroll-Top  .return-to-top i{
    position: relative;
    animation-name: example;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-duration:1s;
}
@keyframes example {
    0%   {bottom:0px;}
    100%  {bottom:7px;}
}

/* Contact Icons Styles */
.contact-icons {
    text-align: center;
    margin-top: 50px;
}

.contact-icon-item {
    margin-bottom: 30px;
}

.contact-link {
    text-decoration: none;
    color: #343a3f;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: transform 0.3s ease;
}

.contact-icon i {
    color: white;
    font-size: 24px;
}

.phone-icon {
    background: #20b2aa;
}

.whatsapp-icon {
    background: #20b2aa;
}

.email-icon {
    background: #20b2aa;
}

.location-icon {
    background: #20b2aa;
}

.contact-icon-item h4 {
    color: #343a3f;
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-icon-item p {
    color: #767f86;
    font-size: 14px;
}

.contact-icon-item .contact-icon:hover {
    transform: translateY(-5px) scale(1.05);
}

.contact-icon-item:hover h4 {
    color: #20b2aa !important;
}

@media (max-width: 768px) {
    .contact-icon {
        width: 60px !important;
        height: 60px !important;
    }
    .contact-icon i {
        font-size: 18px !important;
    }
    .contact-icon-item h4 {
        font-size: 16px !important;
    }
    .contact-icon-item p {
        font-size: 12px !important;
    }
}

/* Gallery Styles */
.gallery-filters {
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 2px solid #ddd;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #20b2aa;
    border-color: #20b2aa;
    color: white;
}

.gallery-grid {
    margin-top: 30px;
}

.gallery-item {
    margin-bottom: 30px;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 250px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-img-wrapper:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-img-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
}

.gallery-overlay h4 {
    color: white;
    margin: 0;
    font-size: 16px;
    text-align: center;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 75%;
    object-fit: contain;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox .close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox .prev,
.lightbox .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.8), rgba(70, 130, 180, 0.8));
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 10000;
}

.lightbox .prev {
    left: 30px;
}

.lightbox .next {
    right: 30px;
}

.lightbox .prev:hover,
.lightbox .next:hover {
    background: linear-gradient(135deg, #20b2aa, #4682b4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(32, 178, 170, 0.4);
}

.lightbox .prev:active,
.lightbox .next:active {
    transform: translateY(-50%) scale(0.95);
}

#caption {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.85), rgba(70, 130, 180, 0.85));
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 60%;
    text-align: center;
    z-index: 10001;
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.2);
    font-weight: 500;
}

.image-counter {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive lightbox */
@media (max-width: 768px) {
    .lightbox .prev,
    .lightbox .next {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .lightbox .prev {
        left: 15px;
    }
    
    .lightbox .next {
        right: 15px;
    }
    
    .lightbox .close {
        width: 45px;
        height: 45px;
        font-size: 25px;
        top: 15px;
        right: 15px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 55%;
        top: 40%;
    }
    
    #caption {
        font-size: 12px;
        padding: 6px 12px;
        bottom: 15px;
        max-width: 70%;
        border-radius: 15px;
    }
    
    .image-counter {
        font-size: 14px;
        padding: 8px 15px;
    }
}

/* Responsive Gallery */
@media screen and (max-width: 768px) {
    .lightbox-content {
        width: 100%;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .gallery-img-wrapper {
        height: 200px;
    }
}

/* ============================
   Photo Mosaic Styles
==============================*/

.photo-mosaic {
    padding: 0;
    margin: 60px 0;
}

.mosaic-container {
    display: flex;
    width: 100%;
    height: 400px;
    margin: 0;
    padding: 0;
}

.mosaic-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.mosaic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.mosaic-overlay h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.mosaic-item:hover {
    flex: 1.3;
    z-index: 2;
}

.mosaic-item:hover img {
    transform: scale(1.1);
}

.mosaic-item:hover .mosaic-overlay {
    transform: translateY(0);
}

.mosaic-item:hover ~ .mosaic-item {
    flex: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mosaic-container {
        flex-direction: column;
        height: auto;
    }
    
    .mosaic-item {
        height: 200px;
        flex: none;
    }
    
    .mosaic-item:hover {
        flex: none;
        transform: scale(1.02);
    }
    
    .mosaic-item:hover ~ .mosaic-item {
        flex: none;
    }
    
    .mosaic-overlay {
        transform: translateY(0);
        background: rgba(0,0,0,0.6);
        padding: 15px;
    }
    
    .mosaic-overlay h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .mosaic-item {
        height: 150px;
    }
    
    .mosaic-overlay h4 {
        font-size: 14px;
    }
}

/* ============================
   Pagination Styles
==============================*/

.pagination-container {
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.pagination-info {
    margin-bottom: 15px;
}

.pagination-info span {
    color: #767f86;
    font-size: 14px;
    font-weight: 400;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.pagination-btn {
    background: #fff;
    border: 2px solid #ddd;
    padding: 10px 20px;
    border-radius: 25px;
    color: #767f86;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover:not(:disabled) {
    background: #20b2aa;
    border-color: #20b2aa;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.3);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.pagination-btn:disabled:hover {
    background: #fff;
    border-color: #ddd;
    color: #767f86;
    transform: none;
    box-shadow: none;
}

.pagination-btn i {
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .pagination-controls {
        flex-direction: column;
        gap: 10px;
    }
    
    .pagination-btn {
        width: 200px;
        justify-content: center;
    }
}

/*========================
6.1 Works Carousel Styles
==========================*/
.works-carousel {
    max-width: 100%;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    z-index: 1;
}

.image-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 60px 30px 30px;
    text-align: left;
}

.carousel-caption h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-caption p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: #20b2aa;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.3);
}

.carousel-btn i {
    font-size: 18px;
    color: #333;
}

.carousel-btn:hover i {
    color: white;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #20b2aa;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .image-carousel {
        height: 350px;
    }
    
    .carousel-caption {
        padding: 40px 20px 20px;
    }
    
    .carousel-caption h3 {
        font-size: 22px;
    }
    
    .carousel-caption p {
        font-size: 14px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn i {
        font-size: 14px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .image-carousel {
        height: 300px;
    }
    
    .carousel-caption h3 {
        font-size: 18px;
    }
    
    .carousel-caption p {
        font-size: 13px;
    }
}

/* Mobile Touch Optimization */
@media (max-width: 768px) {
    /* Aumentare le dimensioni dei touch target per iOS/Android */
    .header-contact-icon {
        width: 44px;
        height: 44px;
        line-height: 44px;
    }
    
    .header-contact-icon i {
        font-size: 18px;
    }
    
    /* Migliorare gli elementi cliccabili */
    .contact-icon {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Prevenire zoom su tap per iOS */
    input, textarea, select {
        font-size: 16px !important;
    }
    
    /* Assicurare che i bottoni siano abbastanza grandi */
    .btn, button {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    /* Scroll smooth per iOS */
    .menu-ui-design {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mappa responsive */
    #map {
        height: 350px !important;
        touch-action: pan-y;
    }
    
    #leaflet-map {
        height: 350px !important;
        touch-action: pan-y;
    }
    
    /* Gallery filter buttons più grandi su mobile */
    .filter-btn {
        min-height: 44px;
        margin: 5px;
    }
}

@media (max-width: 480px) {
    /* iPhone dimensioni ancora più piccole */
    .header-contact-icon {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    
    .header-contact-icon i {
        font-size: 16px;
    }
    
    /* Ridurre padding su schermi molto piccoli */
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Utility Classes - Remove Inline Styles */
.nobstars-font {
    font-family: 'NobstarsRegular', Arial, sans-serif;
}

.description-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Utility Classes */
.d-none {
    display: none !important;
}

.description-container {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.8;
    font-size: 16px;
    color: #666;
}

.highlight-text {
    font-style: italic;
    color: #20b2aa;
    font-weight: 500;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-40 {
    margin-top: 40px;
}

.text-left-padded {
    text-align: left;
    padding-left: 30px;
}

.logo-header {
    height: 90px;
}

.language-select-wrapper {
    display: inline-block;
    vertical-align: middle;
}

.row-centered {
    align-items: center;
    margin-bottom: 50px;
    margin-top: 40px;
}

.info-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-header {
    color: #4682b4;
    margin-bottom: 15px;
}

.transport-icon {
    color: #20b2aa;
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(21,19,19,.2);
}

.leaflet-popup-content-wrapper {
    font-family: 'Poppins', Arial, sans-serif;
    text-align: center;
}

.popup-title {
    margin: 0 0 10px 0;
    color: #20b2aa;
}

.popup-content {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
}

.btn-action {
    flex: 1;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
}

.btn-call {
    background: #20b2aa;
    color: white;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-contact {
    background: #f8f9fa;
    color: #20b2aa;
    border: 1px solid #20b2aa;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.button-group {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-social-right {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/*========================Thank you=================