@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Header Section */
.header {
    background: linear-gradient(135deg, #0f2438 0%, #1a3a52 100%);
    color: white;
    padding-top: 28px;
    text-align: center;
}

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

.logo {
    margin-bottom: 30px;
}

.logo h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 5px;
    color: #27ae60;
}

.logo p {
    font-size: 1rem;
    color: #ecf0f1;
}

.header-lines {
    position: relative;
    width: 100%;
    padding: 40px 0;
}

.line-bar {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    border-top: 2px solid #27ae60;
    border-bottom: 2px solid #27ae60;
    transform: translateY(-50%);
}

.header-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.circular-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #27ae60;
    margin-bottom: 30px;
    display: block;
}

/* Services Section */
.services {
    background-color: white;
    padding: 20px;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a3a52;
}

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

.service-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e9ecef;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-box i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0f2438;
}

.service-box p {
    color: #666;
    font-size: 1rem;
}

.price-panel {
    max-width: 1200px;
    margin: 40px auto 40px;
    padding: 30px;
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.price-panel p {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

/* Pet Reviews Section */
.pet-reviews {
    background: #82CDBE;
    padding: 30px 20px;
}

.pet-reviews h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2rem;
    color: #1a3a52;
}

.pet-reviews-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.pet-review-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.carousel-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.carousel-slide.active {
    display: grid;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.carousel-dots {
    text-align: center;
    padding: 30px 0 0;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 8px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #27ae60;
}

.dot:hover {
    background-color: #27ae60;
}

.pet-review-image {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pet-review-content {
    background-color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 15px;
    opacity: 0.3;
    line-height: 1;
}

.quote-icon.quote-close {
    text-align: right;
    margin-bottom: 0;
}

.pet-review-content blockquote {
    margin: 0 0 20px 0;
    border-left: 4px solid #27ae60;
    padding-left: 20px;
}

.pet-review-content blockquote p {
    color: #666;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 0;
}

.pet-review-content h3 {
    color: #0f2438;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.pet-review-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.pet-name {
    color: #27ae60;
    font-weight: bold !important;
}

/* Text Reviews Section */
.text-reviews {
    background-color: white;
    padding: 60px 20px;
}

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

.review-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #27ae60;
    transition: transform 0.3s ease;
}

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

.review-card h4 {
    color: #0f2438;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.review-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
    font-style: italic;
}

.stars {
    color: #27ae60;
    font-size: 1rem;
}

.stars i {
    margin-right: 5px;
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #0f2438 0%, #1a3a52 100%);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.footer-image {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    object-fit: cover;
    border: 3px solid #27ae60;
}

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #27ae60;
}

.footer-info p {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: #ecf0f1;
}

.payment-methods {
    font-size: 1rem;
    list-style-position: inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.payment-methods li {
    margin-bottom: 8px;
    color: #ecf0f1;
}

.payment-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.payment-column {
    flex: 1;
}

.payment-column p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #ecf0f1;
}

.social-column {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.social-link {
    display: inline-block;
    background-color: #27ae60;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background-color: #1e8449;
}

.social-link i {
    margin-right: 10px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #ecf0f1;
}

/* Responsive Design */
/** Tablet (768px and below) */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2rem;
    }

    .logo p {
        font-size: 0.9rem;
    }

    .nav ul {
        gap: 15px;
    }

    .nav a {
        font-size: 0.9rem;
    }

    .header-hero h2 {
        font-size: 1.5rem;
    }

    .circular-image {
        width: 150px;
        height: 150px;
    }

    .services h2 {
        font-size: 2rem;
    }

    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .service-box {
        padding: 30px;
    }

    .service-box i {
        font-size: 2.5rem;
    }

    .service-box h3 {
        font-size: 1.2rem;
    }

    .price-panel {
        padding: 25px;
    }

    .price-panel p {
        font-size: 1rem;
    }

    .pet-reviews h2 {
        font-size: 2rem;
    }

    .pet-review-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pet-review-image {
        max-width: 100%;
    }

    .text-reviews h2 {
        font-size: 2rem;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .review-card {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-image {
        max-width: 100%;
    }

    .payment-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-column {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

/** Mobile (480px and below) */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .logo p {
        font-size: 0.8rem;
    }

    .header {
        padding: 30px 15px;
    }

    .header-hero h2 {
        font-size: 1.2rem;
    }

    .header-hero p {
        font-size: 0.9rem;
    }

    .circular-image {
        width: 120px;
        height: 120px;
        border-width: 4px;
    }

    .services,
    .pet-reviews,
    .text-reviews {
        padding: 30px 15px;
    }

    .services h2,
    .pet-reviews h2,
    .text-reviews h2 {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-box {
        padding: 20px;
    }

    .service-box i {
        font-size: 2rem;
    }

    .service-box h3 {
        font-size: 1rem;
    }

    .service-box p {
        font-size: 0.9rem;
    }

    .price-panel {
        padding: 20px;
    }

    .price-panel p {
        font-size: 0.95rem;
    }

    .pet-review-content {
        padding: 25px;
    }

    .pet-review-content h3 {
        font-size: 1.3rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .review-card {
        padding: 15px;
    }

    .review-card h4 {
        font-size: 1rem;
    }

    .review-card p {
        font-size: 0.9rem;
    }

    .footer {
        padding: 40px 15px 20px;
    }

    .footer-info h3 {
        font-size: 1.4rem;
    }

    .footer-info p {
        font-size: 1.1rem;
    }

    .social-link {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .payment-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .social-column {
        justify-content: flex-start;
    }
}
