/* Landing Page Styles */
.hero {
    background: linear-gradient(135deg, #56CCF2 0%, #2D9CDB 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/paw-pattern.png');
    background-size: 300px;
    opacity: 0.1;
    z-index: 0;
}

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

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: #FF6B6B;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: rotate(5deg);
    z-index: 2;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #56CCF2, #2D9CDB);
    border-radius: 2px;
}

.feature-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #56CCF2 0%, #2D9CDB 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.step-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #56CCF2 0%, #2D9CDB 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.testimonial {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(86, 204, 242, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #56CCF2;
}

.pricing-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/paw-pattern.png');
    background-size: 300px;
    opacity: 0.05;
    z-index: 0;
}

.pricing-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    z-index: 1;
}

.pricing-card.popular {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 2px solid #56CCF2;
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    background: linear-gradient(135deg, #56CCF2 0%, #2D9CDB 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.pricing-popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: #FF6B6B;
    color: white;
    transform: rotate(45deg);
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 3;
}

.pricing-body {
    padding: 30px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.pricing-price small {
    font-size: 1rem;
    color: #6c757d;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #56CCF2;
    font-weight: bold;
}

.pricing-features li.disabled {
    color: #adb5bd;
    text-decoration: line-through;
}

.pricing-features li.disabled::before {
    content: '✕';
    color: #dc3545;
}

.cta-section {
    background: linear-gradient(135deg, #56CCF2 0%, #2D9CDB 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/paw-pattern.png');
    background-size: 300px;
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.faq-section {
    padding: 80px 0;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(86, 204, 242, 0.1);
    color: #56CCF2;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(86, 204, 242, 0.25);
}

.lead-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.lead-form-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: none;
}

.pet-stats {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #56CCF2;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    color: #6c757d;
    font-size: 1rem;
}

.compare-plans-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.compare-plans-table th,
.compare-plans-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.compare-plans-table thead th {
    background-color: #56CCF2;
    color: white;
    font-weight: bold;
    border: none;
}

.compare-plans-table tbody tr:nth-child(even) {
    background-color: rgba(86, 204, 242, 0.05);
}

.compare-plans-table tbody tr:hover {
    background-color: rgba(86, 204, 242, 0.1);
}

.compare-plans-table .feature-name {
    text-align: left;
    font-weight: 500;
}

.compare-plans-table .check-icon {
    color: #56CCF2;
    font-size: 1.2rem;
}

.compare-plans-table .times-icon {
    color: #dc3545;
    font-size: 1.2rem;
}

.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero {
        padding: 60px 0;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 40px 0;
    }
    
    .step-circle {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .pricing-card {
        margin-bottom: 30px;
    }
}
