/* Global Styles */
:root {
    --primary-color: #1E88E5;
    --primary-dark: #1565C0;
    --primary-light: #64B5F6;
    --accent-color: #2979FF;
    --text-color: #333333;
    --light-text: #757575;
    --background: #FFFFFF;
    --light-background: #F5F7FA;
    --border-color: #E0E0E0;
    --success-color: #4CAF50;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: white;
}

.btn-primary {
    background-color: var(--accent-color);
    font-size: 1.1rem;
    padding: 16px 32px;
}

.btn-paypal {
    background-color: #0070BA;
    width: 100%;
    padding: 16px;
    margin-top: 20px;
    font-size: 1.1rem;
}

.btn-paypal:hover {
    background-color: #005EA6;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Global Styles for sections */
section {
    padding: 120px 0;
    position: relative;
}

/* Hero Section */
.hero {
    padding: 150px 0;
    background: linear-gradient(135deg, var(--light-background) 0%, #E3F2FD 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 0 0 50%;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.hero-image {
    flex: 0 0 45%;
    animation: float 3s ease-in-out infinite;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    background-color: white;
    box-shadow: var(--shadow);
    border-radius: 20px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Trust Badges Section */
.trust-section {
    padding: 30px 0;
    background-color: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.trust-badges-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-badge {
    flex: 1;
    min-width: 200px;
    max-width: calc(33.33% - 15px);
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.payment-logo {
    height: 40px;
    margin-right: 15px;
}

.trust-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.trust-content h3 {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.trust-content p {
    font-size: 0.85rem;
    color: var(--light-text);
    margin: 0;
}

.paypal-icon {
    color: #0070BA;
    font-size: 2.5rem;
}

.trust-badge:nth-child(1) .trust-icon {
    color: #0070BA;
}

.trust-badge:nth-child(3) .trust-icon {
    color: var(--success-color);
}

@media (max-width: 992px) {
    .trust-badges-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .trust-badge {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .trust-badges-container {
        flex-direction: column;
    }
    
    .trust-badge {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.trust-badges {
    display: flex;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.trust-badges span {
    margin-right: 20px;
    display: flex;
    align-items: center;
    color: var(--light-text);
    font-size: 0.9rem;
}

.trust-badges i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Featured Pets Section */
.featured-pets {
    padding: 150px 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.featured-pets::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/Spawn_World.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 1;
    z-index: 0;
}

.featured-pets .container {
    position: relative;
    z-index: 1;
}

.featured-pets .section-title,
.featured-pets .section-subtitle {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.featured-pets .section-title {
    display: inline-block;
    background-color: rgba(30, 136, 229, 0.8);
    padding: 10px 30px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.featured-pets .section-subtitle {
    display: inline-block;
    background-color: rgba(21, 101, 192, 0.7);
    padding: 8px 20px;
    border-radius: 6px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.pets-grid {
    display: none; /* Hide the old grid */
}

/* Pets Slider */
.pets-slider-container {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    max-width: 100%;
}

.pets-slider {
    display: flex;
    transition: transform 0.8s ease-in-out;
    gap: 20px;
    padding: 10px 5px;
}

.pets-slider .pet-card {
    flex: 0 0 calc(25% - 15px);
    min-width: calc(25% - 15px);
    transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.3s ease;
}

.pets-slider .pet-card:hover {
    transform: translateY(-5px) scale(1.03);
    z-index: 1;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Purchase Section */
.purchase-section {
    padding: 150px 0;
    background-color: var(--light-background);
}

.purchase-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.packages-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
    margin-bottom: 60px;
}

.purchase-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    max-width: 400px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    min-height: 650px;
}

.purchase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.purchase-card.premium {
    background-color: #fff8e6;
    border: 2px solid #FFD700;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #FFD700;
    color: #333;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.package-image {
    margin: 0 0 30px 0;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.package-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 180px;
    border-radius: 20px;
    object-fit: contain;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.package-content {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 1;
}

.purchase-card h2 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.price-tag {
    text-align: center;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.purchase-card.premium .price {
    color: #e6aa00;
}

.package {
    display: block;
    font-size: 1.2rem;
    color: var(--light-text);
}

.benefits {
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.benefits li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.benefits i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.purchase-card.premium .benefits i {
    color: #FFD700;
}

.paypal-btn {
    text-align: center;
    width: 100%;
    padding-top: 10px;
    margin-top: auto;
}

.btn-paypal {
    background-color: #0070BA;
    width: 100%;
    padding: 16px;
    margin-top: 20px;
    font-size: 1.1rem;
    border-radius: 5px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-paypal:hover {
    background-color: #005EA6;
}

.btn-paypal i {
    margin-right: 8px;
}

.btn-paypal.gold {
    background-color: #e6aa00;
    color: #333;
}

.btn-paypal.gold:hover {
    background-color: #d49c00;
}

/* Process Steps */
.process-steps {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.process-steps h3 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--primary-dark);
    text-align: center;
}

.process-steps ol {
    counter-reset: step-counter;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 0;
    list-style: none;
}

.process-steps li {
    flex: 0 0 calc(25% - 15px);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-content {
    width: 100%;
}

.step-content h4 {
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.step-content p {
    color: var(--light-text);
}

/* Add connecting lines between steps */
.process-steps li:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -10%;
    width: 20%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

/* Responsive adjustments for process steps */
@media (max-width: 992px) {
    .process-steps li {
        flex: 0 0 calc(50% - 15px);
    }
    
    .process-steps li:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-steps li {
        flex: 0 0 100%;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 150px 0;
    background-color: var(--background);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--light-background);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stars {
    color: #FFC107;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-content h4 {
    color: var(--primary-dark);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 150px 0;
    background-color: var(--light-background);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--light-text);
}

/* Contact Section */
.contact-section {
    padding: 150px 0;
    background-color: var(--background);
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact-info, .contact-form {
    flex: 0 0 48%;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    color: var(--light-text);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
}

.contact-method i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Footer */
footer {
    background-color: #1A237E;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 0 0 30%;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
    filter: none;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.payment-methods {
    margin-top: 15px;
    display: inline-block;
}

.payment-methods p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.payment-method-logo {
    height: 30px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    background-color: white;
    padding: 6px 12px;
    border-radius: 15px;
    filter: none;
}

.payment-method-logo:hover {
    opacity: 1;
}

.footer-links, .footer-legal {
    flex: 0 0 30%;
}

.footer-links h3, .footer-legal h3 {
    margin-bottom: 20px;
    color: white;
}

.footer-links ul, .footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a, .footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-legal a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Page Content Styles for Policy Pages */
.page-content {
    padding: 60px 0;
    background-color: var(--light-background);
    min-height: 70vh;
}

.page-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.content-block {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.content-block h2 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.content-block p {
    margin-bottom: 15px;
    color: var(--text-color);
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block ul, .content-block ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-block ul li, .content-block ol li {
    margin-bottom: 10px;
    color: var(--text-color);
}

.content-block ul {
    list-style-type: disc;
}

.content-block ol {
    list-style-type: decimal;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        flex: 0 0 100%;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .trust-badges {
        justify-content: center;
    }

    .purchase-section .container {
        flex-direction: column;
    }
    
    .purchase-card, .process-steps {
        flex: 0 0 100%;
    }
    
    .purchase-card {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        flex: 0 0 100%;
    }
    
    .contact-info {
        margin-bottom: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo, .footer-links, .footer-legal {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Restore pet card styles */
.pet-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.pet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.pet-image {
    background-color: rgba(227, 242, 253, 0.8);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.pet-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: contain;
}

.pet-card h3 {
    padding: 15px 15px 5px;
    color: var(--primary-dark);
}

.pet-card p {
    padding: 0 15px 15px;
    color: var(--light-text);
    font-size: 0.9rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 150px 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4eff9 100%);
    z-index: 0;
}

.how-it-works-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive adjustments for the packages container */
@media (max-width: 768px) {
    .packages-container {
        flex-direction: column;
        align-items: center;
    }
    
    .purchase-card {
        width: 100%;
        max-width: 400px;
    }
} 