/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4a7c59;
    letter-spacing: 0.5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.logo::after {
    content: ".co.uk";
    font-size: 1rem;
    color: #7fb8a2;
    margin-left: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #4a7c59;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #7fb8a2;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #7fb8a2, #4a7c59);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #9ed5c5;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #7fb8a2;
}

/* Process Section */
.process {
    padding: 4rem 0;
    background-color: #f0f7f4;
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #4a7c59;
}

.process-steps {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    background: #7fb8a2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step h3 {
    color: #4a7c59;
    margin-bottom: 1rem;
}

.step ul {
    list-style-position: inside;
    margin: 1rem 0;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background-color: white;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #4a7c59;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #f0f7f4;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.pricing-card h3 {
    color: #4a7c59;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    color: #7fb8a2;
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-details {
    color: #666;
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.pricing-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card li:before {
    content: "•";
    color: #7fb8a2;
    position: absolute;
    left: 0;
}

/* Tapeworm Section */
.tapeworm {
    padding: 4rem 0;
    background-color: #f0f7f4;
}

.tapeworm h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #4a7c59;
}

.tapeworm p {
    max-width: 800px;
    margin: 0 auto 1rem;
}

.tapeworm ul {
    max-width: 800px;
    margin: 1rem auto;
    list-style: none;
    padding-left: 0;
}

.tapeworm li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tapeworm li:before {
    content: "•";
    color: #7fb8a2;
    position: absolute;
    left: 0.5rem;
    font-size: 1.5rem;
    line-height: 1;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background-color: #f0f7f4;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #4a7c59;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: #4a7c59;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: white;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #4a7c59;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    padding: 2rem;
    background: #f0f7f4;
    border-radius: 10px;
}

.contact-info h3 {
    color: #4a7c59;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info a {
    color: #7fb8a2;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    background: #f0f7f4;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4a7c59;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #7fb8a2;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #7fb8a2;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #4a7c59;
}

/* Footer */
footer {
    background-color: #4a7c59;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        margin-top: 1rem;
    }

    .nav-links li {
        margin: 0 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .step-number {
        top: -15px;
        left: -15px;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* Pet Gallery Section */
.pet-gallery {
    padding: 4rem 0;
    background-color: white;
}

.pet-gallery.secondary {
    background-color: #f0f7f4;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    aspect-ratio: 1;
}

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

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        aspect-ratio: 16/9;
    }
}

/* Booking Button Styles */
.booking-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #7fb8a2;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1.5rem;
}

.booking-button:hover {
    background-color: #4a7c59;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.close-modal:hover {
    color: #4a7c59;
}

#card-element {
    padding: 1rem;
    border: 1px solid #7fb8a2;
    border-radius: 5px;
    background-color: white;
}

#card-errors {
    color: #e74c3c;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Booking Summary Styles */
.booking-summary {
    background-color: #f0f7f4;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.booking-summary h3 {
    color: #4a7c59;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    font-weight: bold;
    color: #4a7c59;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 2px solid #7fb8a2;
}

.summary-row span:first-child {
    color: #666;
}

.summary-row span:last-child {
    font-weight: 500;
}

/* Payment Form Styles */
.modal-content h2 {
    margin-bottom: 1.5rem;
    color: #4a7c59;
}

#paymentForm {
    display: grid;
    gap: 1rem;
}

#paymentForm .form-group {
    margin-bottom: 0;
}

#paymentForm input,
#paymentForm select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #7fb8a2;
    border-radius: 5px;
    font-size: 1rem;
    background-color: white;
}

#paymentForm input:focus,
#paymentForm select:focus {
    outline: none;
    border-color: #4a7c59;
    box-shadow: 0 0 0 2px rgba(74, 124, 89, 0.1);
}

#bookingForm label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4a7c59;
    font-weight: 500;
}

.pet-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #7fb8a2;
}

.pet-section h4 {
    color: #4a7c59;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.success-message {
    text-align: center;
    padding: 2rem;
    background-color: #f0f7f4;
    border-radius: 8px;
}

.success-message h3 {
    color: #4a7c59;
    margin-bottom: 1rem;
}

.success-message p {
    margin-bottom: 0.5rem;
    color: #2c3e50;
} 