/* Home Mortgages Italy - Mortgage Website Styles */
/* Mortgage Theme - Professional Blue & Financial Colors */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;900&family=Poppins:wght@400;600;700;800&display=swap');

/* CSS Variables - Mortgage Theme */
:root {
    /* Primary Colors - Mortgage & Blue Financial */
    --primary-blue: #0077B6;
    --primary-teal: #00B4D8;
    --primary-navy: #023E8A;
    --accent-gold: #FFD700;
    --accent-orange: #FF8C00;

    /* Mortgage Colors */
    --mortgage-blue: #0077B6;
    --mortgage-teal: #00B4D8;
    --mortgage-navy: #023E8A;
    --mortgage-gold: #FFD700;

    /* Gradients for Dynamic Feel */
    --gradient-sports: linear-gradient(135deg, #0077B6 0%, #00B4D8 50%, #FFD700 100%);
    --gradient-forest: linear-gradient(135deg, #023E8A 0%, #0077B6 50%, #00B4D8 100%);
    --gradient-nature: linear-gradient(135deg, #00B4D8 0%, #FFD700 100%);
    --gradient-leaf: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    --gradient-hero: linear-gradient(135deg, rgba(2, 62, 138, 0.95) 0%, rgba(0, 119, 182, 0.9) 50%, rgba(255, 215, 0, 0.85) 100%);

    /* Backgrounds */
    --bg-light: #F0F8FF;
    --bg-white: #FFFFFF;
    --bg-cream: #FFFEF0;
    --bg-dark: #001F3F;
    --bg-darker: #000814;

    /* Text */
    --text-dark: #000814;
    --text-medium: #0077B6;
    --text-light: #4A7BA7;
    --text-white: #FFFFFF;
    --text-gray: #6C757D;

    /* Shadows */
    --shadow-light: 0 4px 15px rgba(0, 119, 182, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 119, 182, 0.2);
    --shadow-heavy: 0 12px 40px rgba(0, 119, 182, 0.3);
    --shadow-sports: 0 8px 25px rgba(255, 215, 0, 0.4);

    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 30px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Sizes */
    --navbar-height: 85px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.8rem);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.2rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-sports {
    background: var(--gradient-sports);
    color: white;
    box-shadow: var(--shadow-sports);
}

.btn-sports:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-navy);
}

.btn-large {
    padding: 1.4rem 2.8rem;
    font-size: 1.15rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 119, 182, 0.2);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--navbar-height);
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    font-size: 1.9rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-decoration: none;
    color: var(--primary-navy);
    letter-spacing: 1px;
}

.logo-accent {
    background: var(--gradient-sports);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-sports);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-nav {
    background: var(--gradient-sports);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sports);
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.cta-nav::after {
    display: none;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: -1;
}

.energy-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50px); }
}

.particle {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { top: 60%; left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { top: 30%; left: 70%; animation-delay: 3s; }
.particle:nth-child(5) { top: 50%; left: 80%; animation-delay: 4s; }
.particle:nth-child(6) { top: 70%; left: 90%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 0 0;
    text-align: left;
    color: white;
    padding: 0 2rem;
}

.hero-title {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: nowrap;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-sports);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sports);
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Tours/Solutions Section */
.sports-tours {
    padding: 8rem 0;
    background: var(--bg-white);
}

.tour-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tour-filter {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tour-filter.active,
.tour-filter:hover {
    background: var(--gradient-sports);
    color: white;
    border-color: transparent;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.tour-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border: 2px solid transparent;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.tour-card.featured {
    border-color: var(--accent-gold);
    position: relative;
}

.featured-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.sports-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-sports);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.tour-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: var(--gradient-nature);
}

.tour-content {
    padding: 2rem;
}

.tour-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.tour-location {
    color: var(--text-medium);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.tour-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tour-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-info {
    text-align: left;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-blue);
}

.price-per {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 600;
}

/* Destinations/Savings Calculator Section */
.destinations {
    padding: 8rem 0;
    background: var(--bg-light);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.destination-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-blue);
}

.destination-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.destination-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.destination-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.tours-count {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 600;
}

/* Training/Benefits Section */
.training {
    padding: 8rem 0;
    background: var(--bg-white);
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.training-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-blue);
}

.training-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.training-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.training-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 119, 182, 0.1);
    border-radius: 4px;
    margin: 1.5rem 0 0.5rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-sports);
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 600;
}

.certifications {
    text-align: center;
    margin-top: 4rem;
}

.certifications h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cert-badge {
    background: var(--gradient-leaf);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: var(--shadow-light);
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: var(--bg-light);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: rgba(0, 119, 182, 0.1);
    font-family: 'Georgia', serif;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-sports);
    color: white;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
}

.author-tour {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* CTA/Quote Section */
.cta-booking {
    padding: 8rem 0;
    background: var(--gradient-hero);
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text h2 {
    color: white;
    margin-bottom: 2rem;
}

.cta-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-weight: 600;
}

.booking-form-container {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.booking-form-container h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.booking-form {
    display: grid;
    gap: 1.5rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(0, 119, 182, 0.3);
    border-radius: var(--radius-md);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.checkbox-label input {
    margin-top: 0.2rem;
    width: auto;
}

.checkbox-label a {
    color: var(--primary-blue);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-blue);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.contact-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-certifications span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: var(--navbar-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--navbar-height));
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-heavy);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-logo {
        font-size: 1.4rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        padding-top: var(--navbar-height);
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        margin-top: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .booking-form-container {
        padding: 2rem;
    }

    .tours-grid,
    .destinations-grid,
    .training-grid,
    .testimonials-slider,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .tour-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .price-info {
        text-align: center;
    }

    .cert-badges {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-stats {
        gap: 1rem;
        justify-content: space-around;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-benefits {
        grid-template-columns: 1fr;
    }

    .tour-filters {
        justify-content: center;
    }

    .tour-filter {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 110px;
    right: 25px;
    padding: 1.8rem 2.5rem;
    border-radius: 20px;
    color: white;
    font-weight: 700;
    z-index: 10000;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    animation: slideInRight 0.4s ease;
    max-width: 450px;
    font-size: 1.05rem;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Form Error Styles */
.field-error {
    color: #E63946;
    font-size: 0.9rem;
    margin-top: 0.4rem;
    font-weight: 600;
}