:root {
    --primary-color: #6A5ACD;
    --secondary-color: #FF6B9E;
    --accent-color: #4ECDC4;
    --dark-color: #2C3E50;
    --light-color: #F7F9FC;
    --gradient-1: linear-gradient(135deg, #735D78 0%, #B99AB0 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
}

a {
    color: #547EA8;
    text-decoration: none;
}

.logo-img {
    height: 3rem;
}

.navbar {
    background-color: white !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar:hover {
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.hero-section-height {
    background: rgba(0,0,0,0.1);
    color: white;
    padding: 270px 0;
    position: relative;
    overflow: hidden;
}

/* .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://image.jimcdn.com/app/cms/image/transf/dimension=1920x10000:format=jpg/path/s3eced3faa7c7599c/image/i4443c5558b23f345/version/1680766868/allevamento-gatto-siberiano.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
} */

.hero-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://image.jimcdn.com/app/cms/image/transf/dimension=1920x10000:format=jpg/path/s3eced3faa7c7599c/image/i4443c5558b23f345/version/1680766868/allevamento-gatto-siberiano.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-allevamento::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/allevamento-2.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
}

.hero-gatti::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/allevamento-1.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
}

.hero-contatti::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/allevamento-3.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
}

.cat-card {
    transition: all 0.4s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.cat-card img {
    transition: transform 0.4s ease;
}

.cat-card:hover img {
    transform: scale(1.1);
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

#allevamento, #lastoria {
    background: linear-gradient(to right, var(--light-color), #e6eaf3);
}

#contatti {
    background-color: var(--accent-color);
    color: white;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(255,107,158,0.25);
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(42, 27, 61, 0.1);
}

.btn-modern {
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.btn-modern:hover::after {
    transform: translateX(100%);
}

.testimonials-section {
    background: linear-gradient(135deg, #f3e8ff 0%, #ffffff 100%);
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.testimonial-title {
    color: #7c3aed;
    font-weight: 700;
    margin-bottom: 50px;
}

.avatar-placeholder {
    width: 48px;
    height: 48px;
    background-color: #f3e8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
}

.testimonial-text {
    font-style: italic;
    color: #4b5563;
    line-height: 1.6;
}

.location {
    color: #6b7280;
    font-size: 0.9rem;
}

.story-section {
    background: linear-gradient(135deg, #fff 0%, #f3e8ff 100%);
    padding: 80px 0;
    overflow: hidden;
}

.section-title {
    color: #6c5ce7;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.subtitle {
    color: #ff7675;
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

.story-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.quote-card {
    background: #6c5ce7;
    color: white;
    border-radius: 20px;
    padding: 2rem;
    font-style: italic;
    position: relative;
    margin: 2rem 0;
}

.quote-card::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.2;
}

.founder-image {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-width: 100%;
    height: auto;
}

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

.values-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.values-list li:hover {
    transform: translateX(10px);
}

.values-list .emoji {
    margin-right: 1rem;
    font-size: 1.5rem;
}

.pc-intro-wrapper {
    background: linear-gradient(135deg, #f6f0ff 0%, #ffffff 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.pc-intro-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /* background: url('images/allevamento-2.jpeg') no-repeat right center; */
    opacity: 0.1;
    pointer-events: none;
}

.pc-intro-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #4a2899;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pc-intro-subheading {
    color: #6b46c1;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.pc-feature-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pc-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.pc-feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pc-intro-button {
    background: linear-gradient(45deg, #6b46c1 0%, #9f7aea 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.2);
}

.pc-intro-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.3);
    color: white;
}

.pc-img-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.pc-img-container img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.pc-img-container:hover img {
    transform: scale(1.05);
}

.pc-stat-pill {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: #4a2899;
    font-weight: 600;
    margin: 0.5rem;
    display: inline-block;
}

.pc-contact-wrapper {
    background: linear-gradient(135deg, #43c6ac 0%, #5ee7d3 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pc-contact-wrapper::before {
    content: '🐱';
    position: absolute;
    font-size: 20rem;
    opacity: 0.05;
    top: -50px;
    right: -50px;
    transform: rotate(15deg);
}

.pc-contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.pc-contact-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.pc-contact-subtitle {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.pc-contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.pc-form-group {
    margin-bottom: 1.5rem;
}

.pc-form-control {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.pc-form-control:focus {
    outline: none;
    border-color: #43c6ac;
    box-shadow: 0 0 0 3px rgba(67, 198, 172, 0.2);
}

.pc-form-control-textarea {
    min-height: 150px;
    resize: vertical;
}

.pc-submit-btn {
    background: linear-gradient(45deg, #43c6ac 0%, #5ee7d3 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: block;
    margin: 2rem auto 0;
    cursor: pointer;
}

.pc-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 198, 172, 0.3);
}

.pc-contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.pc-contact-item {
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.pc-contact-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.whatsapp-float {
    font-size: 40px;
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s ease;
    display: none; /* Il pulsante parte nascosto */
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    text-decoration: none;
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    margin-top: 15px;
}

a.nav-link.active {
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Stile per dispositivi mobili */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        font-size: 33px;
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 25px;
        height: 25px;
        margin-top: 13px;
    }
}