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

:root {
    --petsmart-red: #E31837;
    --petsmart-blue: #0074E4;
    --dark-blue: #00205B;
    --white: #FFFFFF;
    --light-bg: #F8F8F8;
    --text-dark: #333333;
    --border: #E5E5E5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

/* Navigation - Fixed Horizontal Display */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 12px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon { font-size: 2rem; }

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--petsmart-red);
}

.location-badge {
    background: var(--petsmart-blue);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
}

.nav-menu {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: inline-block;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--petsmart-red);
}

.nav-menu a.active {
    color: var(--petsmart-red);
}

.btn-nav {
    background: var(--petsmart-blue);
    color: white !important;
    padding: 10px 24px;
    border-radius: 24px;
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--dark-blue);
}

/* Hero */
.hero {
    margin-top: 64px;
    background: linear-gradient(135deg, var(--petsmart-red) 0%, #C91230 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-location {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.trust-badges {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.2);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1.05rem;
}

.btn-primary {
    background: white;
    color: var(--petsmart-red);
}

.btn-primary:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--petsmart-red);
}

.btn-lg { padding: 18px 48px; font-size: 1.1rem; }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--light-bg); }

h2 {
    font-size: 2.8rem;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 800;
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.about-text h3 {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.check-list li {
    padding: 14px 0 14px 40px;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--petsmart-red);
    font-weight: 900;
    font-size: 1.4rem;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 14px 32px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--petsmart-red);
    color: white;
    border-color: var(--petsmart-red);
}

/* Product Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 20px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.status-available { background: #28a745; color: white; }
.status-reserved { background: #ffc107; color: #333; }
.status-upcoming { background: var(--petsmart-blue); color: white; }

.card-content { padding: 24px; }

.card h3 {
    font-size: 1.6rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
    font-weight: 700;
}

.card p {
    color: #666;
    margin: 12px 0;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.feature-icon { font-size: 4rem; margin-bottom: 20px; }

.feature-card h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Care */
.care-content {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.care-content h3 {
    color: var(--dark-blue);
    font-size: 2rem;
    margin: 30px 0 20px 0;
    font-weight: 700;
}

.care-content h3:first-child {
    margin-top: 0;
}

.care-list {
    list-style: none;
    padding: 0;
}

.care-list li {
    padding: 18px 0 18px 40px;
    position: relative;
    border-bottom: 1px solid var(--border);
    color: #555;
    line-height: 1.8;
}

.care-list li:last-child { border-bottom: none; }

.care-list li::before {
    content: '🐾';
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}

.rating { color: #FFD700; font-size: 1.4rem; margin-bottom: 15px; }
.testimonial-text { font-style: italic; color: #666; margin-bottom: 20px; line-height: 1.8; }
.testimonial-author strong { color: var(--dark-blue); font-size: 1.1rem; }
.location { color: #888; font-size: 0.9rem; display: block; margin-top: 5px; }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    color: var(--dark-blue);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item .icon { font-size: 2rem; }
.contact-item strong { display: block; color: var(--dark-blue); margin-bottom: 5px; font-weight: 600; }
.contact-item p { margin: 0; color: #555; line-height: 1.6; }

/* Form */
.contact-form {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.contact-form h3 {
    color: var(--dark-blue);
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 700;
}

.form-group { margin-bottom: 24px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--petsmart-blue);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer p { color: rgba(255,255,255,0.8); margin: 8px 0; }

/* Mobile */
@media (max-width: 968px) {
    .nav-menu { display: none; }
    .hero h1 { font-size: 2.2rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--petsmart-red);
    transition: all 0.3s;
}

@media (max-width: 968px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        gap: 10px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px;
    }
}
/* Mobile Menu Fix */
@media (max-width: 968px) {
    .mobile-toggle {
        display: flex !important;
        position: relative;
        z-index: 1001;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
}
