/* Reset and Base Styles */
:root {
    --primary-color: #FFB6C1;
    --secondary-color: #98FB98;
    --accent-color: #87CEEB;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-call {
    background: var(--accent-color);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                url('../images/hero-bg.jpg') center/cover;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-color);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-bg);
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-card p {
    color: #666;
    font-size: 16px;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

.reviews-slider {
    max-width: 800px;
    margin: 0 auto;
}

/* Review Cards */
.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin: 20px;
    text-align: center;
}

.review-stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.author-name {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.author-pet {
    color: #666;
    font-size: 14px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-details {
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-details h3 {
    margin-bottom: 20px;
    color: var(--text-color);
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Footer */
.footer {
    background: var(--text-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-info a {
    color: var(--white);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Slick Slider Customization */
.slick-dots li button:before {
    color: var(--primary-color);
}

.slick-dots li.slick-active button:before {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1,
.hero p,
.btn {
    animation: fadeIn 1s ease-out;
}

/* Slick Slider Customization for Reviews */
.reviews-slider .slick-prev,
.reviews-slider .slick-next {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.reviews-slider .slick-prev {
    left: -50px;
}

.reviews-slider .slick-next {
    right: -50px;
}

.reviews-slider .slick-prev:before,
.reviews-slider .slick-next:before {
    font-size: 20px;
    line-height: 40px;
}

.reviews-slider .slick-dots {
    bottom: -40px;
}

@media (max-width: 768px) {
    .reviews-slider .slick-prev {
        left: 10px;
    }
    
    .reviews-slider .slick-next {
        right: 10px;
    }
}

/* Article Section */
.article {
    padding: 80px 0;
    background: var(--white);
}

.article h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    color: var(--text-color);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #444;
}

.article-content h3 {
    font-size: 24px;
    margin: 40px 0 20px;
    color: var(--text-color);
}

.article-content h4 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: var(--text-color);
}

.article-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
    color: #444;
}

.article-content strong {
    color: var(--text-color);
}

@media (max-width: 768px) {
    .article h2 {
        font-size: 28px;
    }
    
    .article-content h3 {
        font-size: 22px;
    }
    
    .article-content h4 {
        font-size: 18px;
    }
} 