/* ========================================
   IL NIDO DI ELENA - CUSTOM STYLES
   ======================================== */

/* Home Quick Form Styles (for index-4.html) */
.home-quick-form {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 0;
	position: relative;
	overflow: hidden;
}

.home-quick-form .row {
	min-height: 100vh;
}

/* Left Side - Content */
.hero-content-side {
	padding: 80px 60px;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-content-wrapper {
	max-width: 600px;
}

.hero-badge {
	display: inline-block;
	background: rgba(255,255,255,0.2);
	color: white;
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 25px;
	backdrop-filter: blur(10px);
}

.hero-badge i {
	color: #ffd700;
	margin-right: 5px;
}

.hero-main-title {
	color: white;
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 15px;
}

.gradient-text {
	background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	color: rgba(255,255,255,0.95);
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 40px;
	line-height: 1.5;
}

/* Features Grid */
.hero-features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

.hero-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.feature-check {
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	backdrop-filter: blur(10px);
}

.feature-check i {
	color: #43e97b;
	font-size: 20px;
}

.feature-text {
	display: flex;
	flex-direction: column;
}

.feature-text strong {
	color: white;
	font-size: 16px;
	margin-bottom: 3px;
}

.feature-text span {
	color: rgba(255,255,255,0.8);
	font-size: 14px;
}

/* Trust Badges */
.hero-trust-badges {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255,255,255,0.9);
	font-size: 14px;
}

.trust-item i {
	font-size: 20px;
	color: #ffd700;
}

/* Right Side - Form */
.hero-form-side {
	background: white;
	padding: 80px 60px;
	display: flex;
	align-items: center;
	box-shadow: -10px 0 40px rgba(0,0,0,0.1);
	position: relative;
	z-index: 3;
}

.hero-form-wrapper {
	width: 100%;
	max-width: 550px;
	margin: 0 auto;
}

.form-header {
	text-align: center;
	margin-bottom: 35px;
}

.form-header h3 {
	font-size: 32px;
	font-weight: 700;
	color: #333;
	margin-bottom: 10px;
}

.form-header h3 i {
	color: #7b68ee;
	margin-right: 10px;
}

.form-header p {
	color: #666;
	font-size: 16px;
	margin: 0;
}

/* Form Styles */
.hero-form {
	background: #f8f9fa;
	padding: 35px;
	border-radius: 15px;
	box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.hero-form label {
	font-weight: 600;
	color: #333;
	font-size: 14px;
	margin-bottom: 8px;
}

.hero-form .form-control {
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 12px 15px;
	font-size: 15px;
	transition: all 0.3s ease;
}

.hero-form .form-control:focus {
	border-color: #7b68ee;
	box-shadow: 0 0 0 3px rgba(123,104,238,0.1);
}

.hero-form textarea.form-control {
	resize: vertical;
	min-height: 80px;
}

.form-check-label {
	font-size: 13px;
	color: #666;
	font-weight: 400;
}

.form-check-label a {
	color: #7b68ee;
	text-decoration: underline;
}

.btn-submit-form {
	width: 100%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
	padding: 16px 30px;
	font-size: 18px;
	font-weight: 700;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(102,126,234,0.4);
}

.btn-submit-form:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(102,126,234,0.5);
}

.btn-submit-form i {
	margin-right: 10px;
}

.form-note {
	text-align: center;
	color: #666;
	font-size: 13px;
	margin: 15px 0 0 0;
}

.form-note i {
	color: #43e97b;
	margin-right: 5px;
}

/* Alternative Contacts */
.form-alternative {
	margin-top: 30px;
	text-align: center;
	padding-top: 25px;
	border-top: 2px solid #e0e0e0;
}

.form-alternative p {
	color: #666;
	font-size: 15px;
	margin-bottom: 15px;
}

.alt-contacts {
	display: flex;
	gap: 15px;
	justify-content: center;
}

.alt-contact-btn {
	display: inline-block;
	padding: 12px 25px;
	border: 2px solid #7b68ee;
	color: #7b68ee;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
}

.alt-contact-btn:hover {
	background: #7b68ee;
	color: white;
	transform: translateY(-2px);
}

.alt-contact-btn.whatsapp {
	border-color: #25d366;
	color: #25d366;
}

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

.alt-contact-btn i {
	margin-right: 8px;
}

/* Decorative Wave */
.hero-wave {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50%;
	z-index: 1;
}

.hero-wave svg {
	display: block;
	width: 100%;
	height: auto;
}

/* Responsive */
@media (max-width: 991px) {
	.home-quick-form .row {
		min-height: auto;
	}
	
	.hero-content-side {
		padding: 60px 30px;
	}
	
	.hero-main-title {
		font-size: 40px;
	}
	
	.hero-subtitle {
		font-size: 18px;
	}
	
	.hero-features-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.hero-form-side {
		padding: 60px 30px;
	}
	
	.form-header h3 {
		font-size: 26px;
	}
	
	.hero-form {
		padding: 25px;
	}
	
	.hero-wave {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.hero-content-side {
		padding: 40px 20px;
	}
	
	.hero-main-title {
		font-size: 32px;
	}
	
	.hero-subtitle {
		font-size: 16px;
		margin-bottom: 30px;
	}
	
	.hero-trust-badges {
		gap: 15px;
	}
	
	.trust-item {
		font-size: 13px;
	}
	
	.hero-form-side {
		padding: 40px 20px;
	}
	
	.form-header h3 {
		font-size: 24px;
	}
	
	.hero-form {
		padding: 20px;
	}
	
	.alt-contacts {
		flex-direction: column;
		gap: 10px;
	}
	
	.alt-contact-btn {
		width: 100%;
	}
}

/* Home Feature Boxes Styles (for index-3.html) */
.home-feature-boxes {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 100px 0 80px;
	position: relative;
	overflow: hidden;
}

.home-feature-boxes .main-banner-content-center {
	margin-bottom: 60px;
	animation: fadeInDown 1s ease-out;
}

.home-feature-boxes .banner-subtitle {
	color: rgba(255,255,255,0.9);
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 15px;
}

.home-feature-boxes .banner-title {
	color: white;
	font-size: 56px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.home-feature-boxes .banner-title .color-text {
	color: #ffd700;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.home-feature-boxes .banner-description {
	color: rgba(255,255,255,0.95);
	font-size: 20px;
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto 30px;
}

/* Feature Boxes */
.feature-boxes-row {
	margin-bottom: 50px;
}

.feature-box {
	background: white;
	border-radius: 20px;
	padding: 40px 30px;
	margin-bottom: 30px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.15);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	height: 100%;
}

.feature-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	transition: height 0.4s ease;
}

.feature-box-1::before {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.feature-box-2::before {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.feature-box-3::before {
	background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.feature-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.feature-box:hover::before {
	height: 100%;
	opacity: 0.05;
}

.feature-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	font-size: 36px;
	color: white;
	transition: all 0.4s ease;
}

.feature-box-1 .feature-icon {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.feature-box-2 .feature-icon {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.feature-box-3 .feature-icon {
	background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.feature-box:hover .feature-icon {
	transform: rotate(360deg) scale(1.1);
}

.feature-box h3 {
	font-size: 24px;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
	text-align: center;
}

.feature-box p {
	color: #666;
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 20px;
	text-align: center;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0 0 25px 0;
}

.feature-list li {
	color: #555;
	font-size: 14px;
	margin-bottom: 10px;
	padding-left: 25px;
	position: relative;
}

.feature-list li i {
	position: absolute;
	left: 0;
	top: 3px;
	color: #43e97b;
	font-size: 14px;
}

.feature-link {
	display: inline-block;
	color: #7b68ee;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s ease;
	border-bottom: 2px solid transparent;
}

.feature-link:hover {
	color: #5f4bc2;
	border-bottom-color: #5f4bc2;
	padding-left: 5px;
}

.feature-link i {
	margin-left: 5px;
	transition: margin-left 0.3s ease;
}

.feature-link:hover i {
	margin-left: 10px;
}

/* CTA Buttons Section */
.cta-row {
	margin-top: 20px;
}

.banner-cta-buttons {
	margin-bottom: 20px;
}

.banner-cta-buttons .btn-large {
	padding: 18px 40px;
	font-size: 18px;
	font-weight: 600;
	margin: 0 10px 15px;
	display: inline-block;
}

.banner-cta-buttons i {
	margin-right: 8px;
}

.cta-note {
	color: rgba(255,255,255,0.9);
	font-size: 16px;
	margin: 20px 0 0 0;
	font-weight: 500;
}

/* Decorative Shapes */
.hero-shape {
	position: absolute;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
	width: 300px;
	height: 300px;
	top: -100px;
	left: -50px;
}

.hero-shape-2 {
	width: 200px;
	height: 200px;
	bottom: -50px;
	right: -30px;
	animation-delay: 3s;
}

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

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

/* Responsive */
@media (max-width: 991px) {
	.home-feature-boxes {
		padding: 80px 0 60px;
	}
	
	.home-feature-boxes .banner-title {
		font-size: 42px;
	}
	
	.home-feature-boxes .banner-description {
		font-size: 18px;
	}
	
	.feature-box {
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.home-feature-boxes {
		padding: 60px 0 40px;
	}
	
	.home-feature-boxes .banner-title {
		font-size: 32px;
	}
	
	.home-feature-boxes .banner-description {
		font-size: 16px;
	}
	
	.banner-cta-buttons .btn-large {
		display: block;
		margin: 10px auto;
		max-width: 300px;
	}
	
	.cta-note {
		font-size: 14px;
	}
	
	.hero-shape {
		display: none;
	}
}

/* Home Slider Styles (for index-2.html) */
.home-slider-area .home-item {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	padding: 180px 0;
	min-height: 700px;
}

.home-slider-area .home-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
	z-index: 1;
}

.home-slider-area .home-item .d-table {
	position: relative;
	z-index: 2;
}

.home-slider-area .main-banner-content {
	color: white;
}

.home-slider-area .main-banner-content h5 {
	color: rgba(255,255,255,0.9);
	font-size: 20px;
	margin-bottom: 15px;
}

.home-slider-area .main-banner-content h1 {
	color: white;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}

.home-slider-area .main-banner-content h1 .color-text {
	color: #7b68ee;
}

.home-slider-area .main-banner-content p {
	color: rgba(255,255,255,0.95);
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 25px;
}

.home-slider-area .banner-features li {
	color: white;
	font-size: 16px;
	font-weight: 500;
}

/* Owl Carousel Navigation for Hero */
.home-slider.owl-carousel .owl-nav {
	margin: 0;
}

.home-slider.owl-carousel .owl-nav button.owl-prev,
.home-slider.owl-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.2) !important;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 24px;
	color: white !important;
	transition: all 0.3s ease;
	z-index: 10;
}

.home-slider.owl-carousel .owl-nav button.owl-prev:hover,
.home-slider.owl-carousel .owl-nav button.owl-next:hover {
	background: rgba(123, 104, 238, 0.9) !important;
}

.home-slider.owl-carousel .owl-nav button.owl-prev {
	left: 30px;
}

.home-slider.owl-carousel .owl-nav button.owl-next {
	right: 30px;
}

/* Owl Carousel Dots for Hero */
.home-slider.owl-carousel .owl-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}

.home-slider.owl-carousel .owl-dots .owl-dot {
	display: inline-block;
	margin: 0 5px;
}

.home-slider.owl-carousel .owl-dots .owl-dot span {
	width: 12px;
	height: 12px;
	background: rgba(255,255,255,0.5);
	display: block;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.home-slider.owl-carousel .owl-dots .owl-dot.active span,
.home-slider.owl-carousel .owl-dots .owl-dot:hover span {
	background: #7b68ee;
	width: 30px;
	border-radius: 10px;
}

/* Responsive Hero Slider */
@media (max-width: 991px) {
	.home-slider-area .home-item {
		padding: 120px 0;
		min-height: 600px;
	}
	
	.home-slider-area .main-banner-content h1 {
		font-size: 36px;
	}
	
	.home-slider.owl-carousel .owl-nav button.owl-prev,
	.home-slider.owl-carousel .owl-nav button.owl-next {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}
	
	.home-slider.owl-carousel .owl-nav button.owl-prev {
		left: 15px;
	}
	
	.home-slider.owl-carousel .owl-nav button.owl-next {
		right: 15px;
	}
}

@media (max-width: 767px) {
	.home-slider-area .home-item {
		padding: 100px 0;
		min-height: 500px;
	}
	
	.home-slider-area .main-banner-content h1 {
		font-size: 28px;
	}
	
	.home-slider-area .main-banner-content p {
		font-size: 16px;
	}
	
	.home-slider.owl-carousel .owl-nav button.owl-prev,
	.home-slider.owl-carousel .owl-nav button.owl-next {
		display: none !important;
	}
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 25px rgba(0,0,0,0.4);
    color: #FFF;
}

.whatsapp-float i {
    margin-top: 0px;
}

/* Responsive WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Contact Form Improvements */
.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form h3 {
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

.contact-form .form-control {
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    border-color: #7b68ee;
    box-shadow: 0 0 0 0.2rem rgba(123, 104, 238, 0.25);
}

/* Contact Info Boxes */
.contact-info-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
	min-height: 276px;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.contact-info-box .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-box .icon i {
    font-size: 30px;
    color: white;
}

.contact-info-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.contact-info-box p {
    margin-bottom: 5px;
    color: #666;
}

.contact-info-box a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-box a:hover {
    color: #5f4bc2;
    text-decoration: underline;
}

/* Gallery Improvements */
.single-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

.gallery-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
}

.gallery-content h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

/* Testimonials Slider Improvements */
.single-testimonials {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin: 20px;
}

.testimonials-content .rating {
    margin-bottom: 20px;
}

.testimonials-content .rating i {
    color: #ffc107;
    font-size: 18px;
}

.testimonials-content p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.testimonials-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.testimonials-info span {
    color: #7b68ee;
    font-size: 14px;
}

/* Google Maps */
.google-map iframe {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Mobile Menu Improvements */
@media (max-width: 991px) {
    .navbar-nav {
        background: white;
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .navbar-nav .nav-link:hover {
        background: #f8f9fa;
        border-radius: 5px;
    }
}

/* Counter Section Improvements */
.counter-area {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.single-counter {
    text-align: center;
    padding: 30px;
}

.counter-icon i {
    font-size: 50px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
}

.counter-heading {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
    color: rgba(255,255,255,0.95);
}

/* Pricing Table Improvements */
.table-hover tbody tr:hover {
    background-color: rgba(123, 104, 238, 0.05);
}

/* Buttons Improvements */
.default-btn,
.default-btn-one {
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.default-btn:hover,
.default-btn-one:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wow {
    animation-duration: 1s;
}

/* Footer Improvements */
.footer-area {
    background: #2d3748;
    color: #cbd5e0;
}

.footer-heading h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-quick-links li a,
.footer-info-contact a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.footer-quick-links li a:hover,
.footer-info-contact a:hover {
    color: #7b68ee;
}

.footer-social li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social li a:hover {
    background: #7b68ee;
    transform: translateY(-3px);
}

/* Copyright Area */
.copyright-area {
    background: #1a202c;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright-area p {
    color: #cbd5e0;
    margin: 0;
}

.copyright-area ul li a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.copyright-area ul li a:hover {
    color: #7b68ee;
}

/* Print Styles */
@media print {
    .whatsapp-float,
    .go-top,
    .navbar-area,
    .footer-subscribe-wrapper,
    .copyright-area {
        display: none;
    }
}

/* ========================================
   RESPONSIVE TABLE - ORARI E TARIFFE
   ======================================== */

/* Stili base per la tabella */
.table-orari-responsive {
    width: 100%;
    border-collapse: collapse;
}

/* Su smartphone: tabella diventa stackable */
@media screen and (max-width: 767px) {
    /* Nascondi l'header della tabella */
    .table-orari-responsive thead {
        display: none;
    }
    
    /* Ogni riga diventa un blocco verticale (card) */
    .table-orari-responsive tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 2px solid #e2e8f0;
        border-radius: 10px;
        padding: 15px;
        background: white;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    
    /* Ogni cella diventa un blocco con label */
    .table-orari-responsive tbody td {
        display: block;
        text-align: left !important;
        border: none !important;
        padding: 8px 0 !important;
        position: relative;
        padding-left: 0 !important;
		background: transparent;
    }
    
    /* Mostra il data-label come etichetta prima del contenuto */
    .table-orari-responsive tbody td:before {
        content: attr(data-label);
        font-weight: 700;
        color: #667eea;
        display: block;
        margin-bottom: 5px;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Aggiungi un po' di spazio tra le celle */
    .table-orari-responsive tbody td:not(:last-child) {
        border-bottom: 1px solid #e2e8f0 !important;
        padding-bottom: 12px !important;
        margin-bottom: 8px;
		background: transparent;
    }
    
    /* Badge nella tabella più visibili su mobile */
    .table-orari-responsive .badge {
        display: inline-block;
        font-size: 0.95rem;
        padding: 6px 12px;
    }
    
    /* Bordo colorato per le righe speciali */
    .table-orari-responsive tbody tr[style*="background-color: #fff3cd"] {
        border-left: 4px solid #ffc107;
    }
}

/* Su tablet: mantieni la tabella normale ma più compatta */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .table-orari-responsive th,
    .table-orari-responsive td {
        font-size: 0.9rem;
        padding: 10px !important;
    }
    
    .table-orari-responsive .badge {
        font-size: 0.85rem;
    }
}

/* ========================================
   POPUP - Pulsante Chiusura Migliorato
======================================== */
.modal-body .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background-color: #ff6b6b;
    border-radius: 50%;
    opacity: 1;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.modal-body .btn-close:hover {
    background-color: #ff5252;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 82, 82, 0.6);
}

.modal-body .btn-close:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.5);
    opacity: 1;
}

/* Icona X più grande e bianca */
.modal-body .btn-close::before,
.modal-body .btn-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 3px;
    background-color: white;
    transform-origin: center;
}

.modal-body .btn-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal-body .btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Rimuovi il background-image di default di Bootstrap */
.modal-body .btn-close {
    background-image: none;
}

/* Versione mobile - ancora più grande */
@media (max-width: 768px) {
    .modal-body .btn-close {
        width: 50px;
        height: 50px;
        top: 10px;
        right: 10px;
    }
}