/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 {
    font-size: 2.5rem;
    color: #2563eb;
}

h2 {
    font-size: 2.25rem;
    color: #1e293b;
}

h3 {
    font-size: 1.875rem;
    color: #334155;
}

h4 {
    font-size: 1.25rem;
    color: #475569;
}

p {
    color: #64748b;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.footer-logo-img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.875rem;
    color: #2563eb;
    margin: 0;
}

.logo span {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #2563eb;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background: #2563eb;
    transition: all 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
    left: 0;
}

/* Buttons */
.cta-button, .primary-btn {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-button:hover, .primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.secondary-btn {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.secondary-btn:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 120px 24px 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h2 {
    font-size: 3.5rem;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.hero-image {
    display: flex;
    justify-content: center;
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 500;
    text-align: center;
    border: 2px dashed #94a3b8;
}

.hero-img {
    width: 500px;
    height: 400px;
    font-size: 1.1rem;
}

.service-img {
    width: 80px;
    height: 80px;
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 0.75rem;
}

.about-img {
    width: 100%;
    height: 400px;
    font-size: 1.1rem;
}

/* Trust Indicators */
.trust-indicators {
    padding: 60px 24px;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.indicator h3 {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 8px;
}

.indicator p {
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

/* Services Section */
.services {
    padding: 100px 24px;
    background: #f1f5f9;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header p {
    font-size: 1.25rem;
    color: #64748b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.service-card.featured {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    transform: scale(1.05);
}

.service-card.featured h3,
.service-card.featured p {
    color: white;
}

.service-card ul {
    list-style: none;
    margin-top: 24px;
}

.service-card ul li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
}

.service-card.featured ul li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.service-card.featured ul li::before {
    color: white;
}

/* Testimonials */
.testimonials {
    padding: 100px 24px;
    background: white;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid #2563eb;
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #475569;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1rem;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.875rem;
}

/* About Section */
.about {
    padding: 100px 24px;
    background: #f1f5f9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features {
    margin-top: 40px;
}

.feature {
    margin-bottom: 32px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.feature h4 {
    color: #2563eb;
    margin-bottom: 8px;
}

.feature p {
    margin: 0;
    color: #64748b;
}

/* Contact Section */
.contact {
    padding: 100px 24px;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h4 {
    color: #2563eb;
    margin-bottom: 8px;
}

.contact-item p {
    margin: 0;
    color: #64748b;
    font-weight: 500;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.contact-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    margin-top: 16px;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 24px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Track My Pet Link */
.track-link {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.track-link:hover {
    background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
    transform: translateY(-1px);
}

.track-link::after {
    display: none;
}

/* Tracking Section */
.tracking-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.tracking-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.tracking-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.tracking-card h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.tracking-card p {
    margin-bottom: 24px;
    color: #64748b;
}

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

.modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.close {
    color: #94a3b8;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    position: absolute;
    right: 20px;
    top: 20px;
}

.close:hover,
.close:focus {
    color: #2563eb;
}

/* Detailed Quote Form */
.detailed-quote-form {
    margin-top: 20px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    color: #2563eb;
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.form-note {
    background: #f1f5f9;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #475569;
    font-style: italic;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.detailed-quote-form input,
.detailed-quote-form select,
.detailed-quote-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
}

.detailed-quote-form input:focus,
.detailed-quote-form select:focus,
.detailed-quote-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.detailed-quote-form input[required],
.detailed-quote-form select[required] {
    border-left: 4px solid #ef4444;
}

.detailed-quote-form input[required]:valid,
.detailed-quote-form select[required]:valid {
    border-left: 4px solid #22c55e;
}

/* Tracking Modal */
.tracking-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.tracking-method {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    text-align: center;
}

.tracking-method h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.tracking-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.tracking-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
}

.tracking-form input:focus {
    outline: none;
    border-color: #2563eb;
}

.tracking-form button {
    white-space: nowrap;
}

.tracking-divider {
    text-align: center;
    font-weight: 600;
    color: #64748b;
    position: relative;
    margin: 20px 0;
}

.tracking-divider::before,
.tracking-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e2e8f0;
}

.tracking-divider::before {
    left: 0;
}

.tracking-divider::after {
    right: 0;
}

.tracking-results {
    margin-top: 30px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #2563eb;
}

.tracking-results h3 {
    color: #2563eb;
    margin-bottom: 20px;
}

.tracking-status {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.status-item {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.status-item h4 {
    color: #374151;
    font-size: 1rem;
    margin-bottom: 8px;
}

.status-item p {
    color: #2563eb;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .indicators {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tracking-cards {
        grid-template-columns: 1fr;
    }
    
    .tracking-status {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .indicators {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-buttons button {
        width: 100%;
        max-width: 300px;
    }
    
    .form-group {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-img {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 16px 60px;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .testimonial {
        padding: 24px;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .modal-content {
        padding: 20px;
        margin: 5% auto;
        width: 95%;
    }
    
    .tracking-form {
        flex-direction: column;
    }
    
    .close {
        font-size: 24px;
        right: 15px;
        top: 15px;
    }
}

/* FAQ Page Styles */
.faq-main {
    margin-top: 80px;
}

.faq-hero {
    padding: 60px 24px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    text-align: center;
}

.faq-hero h1 {
    font-size: 3rem;
    color: #1e293b;
    margin-bottom: 16px;
}

.faq-hero p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.faq-content {
    padding: 80px 24px;
}

.faq-navigation {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    margin-bottom: 40px;
    border: 1px solid #e2e8f0;
}

.faq-navigation h3 {
    color: #2563eb;
    margin-bottom: 20px;
    text-align: center;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.category-link {
    background: #f1f5f9;
    color: #2563eb;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-link:hover,
.category-link.active {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.faq-sections {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.faq-section h2 {
    color: #2563eb;
    font-size: 2rem;
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 3px solid #e2e8f0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.faq-item h3 {
    color: #1e293b;
    font-size: 1.25rem;
    padding: 24px 32px;
    margin: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: #fafafa;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item h3:hover {
    color: #2563eb;
    background: #f8fafc;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 32px;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 0 32px 24px;
}

.faq-answer p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
}

.faq-answer ul {
    margin: 16px 0;
    padding-left: 20px;
}

.faq-answer li {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 8px;
}

.faq-answer strong {
    color: #1e293b;
    font-weight: 600;
}

.faq-contact {
    padding: 80px 24px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    text-align: center;
}

.faq-contact h2 {
    color: #1e293b;
    margin-bottom: 16px;
}

.faq-contact p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu .active {
    color: #2563eb;
    font-weight: 600;
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 2.5rem;
    }
    
    .faq-hero p {
        font-size: 1.1rem;
    }
    
    .faq-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-link {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .faq-item h3 {
        padding: 20px 24px;
        font-size: 1.1rem;
    }
    
    .faq-item h3::after {
        right: 24px;
    }
    
    .faq-answer {
        padding: 0 24px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 24px 20px;
    }
    
    .faq-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-contact-buttons button {
        width: 100%;
        max-width: 300px;
    }
}

/* Travel Crates Page Styles */
.crates-main {
    margin-top: 80px;
}

.crates-hero {
    padding: 60px 24px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    text-align: center;
}

.crates-hero h1 {
    font-size: 3rem;
    color: #1e293b;
    margin-bottom: 16px;
}

.crates-hero p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 24px;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-features .icon {
    color: #22c55e;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Sizing Guide */
.sizing-guide {
    padding: 80px 24px;
    background: #f1f5f9;
}

.guide-header {
    text-align: center;
    margin-bottom: 60px;
}

.guide-header h2 {
    color: #2563eb;
    margin-bottom: 16px;
}

.guide-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.measurement-guide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.measurement-img {
    width: 100%;
    height: 400px;
    font-size: 1rem;
    line-height: 1.4;
}

.measurement-instructions h3 {
    color: #2563eb;
    margin-bottom: 24px;
}

.measurement-list {
    margin-bottom: 32px;
}

.measurement-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
}

.measurement-letter {
    background: #2563eb;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.sizing-formula {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #2563eb;
}

.sizing-formula h4 {
    color: #2563eb;
    margin-bottom: 16px;
}

.sizing-formula ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sizing-formula li {
    margin-bottom: 8px;
    color: #1e293b;
}

/* Crate Calculator */
.crate-calculator {
    padding: 80px 24px;
    background: #e2e8f0;
}

.calculator-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.calculator-card h2 {
    color: #2563eb;
    margin-bottom: 16px;
}

.calculator-card p {
    color: #64748b;
    margin-bottom: 32px;
}

.calculator-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.calculator-form .form-group {
    text-align: left;
}

.calculator-form label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.calculator-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.calculator-form input:focus {
    outline: none;
    border-color: #2563eb;
}

.calculator-result {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border: 2px solid #2563eb;
}

.calculator-result h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.result-details p {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Crate Sizes Grid */
.crate-sizes {
    padding: 80px 24px;
    background: white;
}

.crate-sizes h2 {
    text-align: center;
    color: #2563eb;
    margin-bottom: 60px;
}

.sizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.size-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    padding: 32px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.size-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.size-card.popular {
    border-color: #2563eb;
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.size-header {
    text-align: center;
    margin-bottom: 24px;
}

.size-header h3 {
    color: #1e293b;
    margin-bottom: 8px;
}

.size-weight {
    background: #f1f5f9;
    color: #2563eb;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.size-details {
    margin-bottom: 24px;
}

.size-details > div {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.size-details > div:last-child {
    border-bottom: none;
}

.dimensions {
    color: #374151;
}

.suitable-for {
    color: #64748b;
    font-size: 0.95rem;
}

.price-range {
    color: #2563eb;
    font-weight: 600;
}

.crate-img {
    width: 100%;
    height: 120px;
    font-size: 0.9rem;
}

/* Features Grid */
.crate-features {
    padding: 80px 24px;
    background: #e2e8f0;
}

.crate-features h2 {
    text-align: center;
    color: #2563eb;
    margin-bottom: 60px;
}

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

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    font-size: 0.8rem;
}

.feature-card h3 {
    color: #1e293b;
    margin-bottom: 16px;
}

.feature-card p {
    color: #64748b;
    margin: 0;
}

/* Special Considerations */
.special-considerations {
    padding: 80px 24px;
    background: white;
}

.special-considerations h2 {
    text-align: center;
    color: #2563eb;
    margin-bottom: 60px;
}

.considerations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.consideration-card {
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
}

.consideration-card.warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
}

.consideration-card.info {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #3b82f6;
}

.consideration-card h3 {
    color: #1e293b;
    margin-bottom: 16px;
}

.breeds-list {
    margin-bottom: 20px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    font-size: 0.95rem;
}

.special-requirements h4 {
    color: #1e293b;
    margin-bottom: 12px;
    font-size: 1rem;
}

.special-requirements ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.special-requirements li {
    color: #374151;
    margin-bottom: 8px;
}

.price-impact {
    font-weight: 600;
    color: #1e293b;
}

/* Accessories */
.accessories {
    padding: 80px 24px;
    background: #e2e8f0;
}

.accessories h2 {
    text-align: center;
    color: #2563eb;
    margin-bottom: 60px;
}

.accessories-grid {
    max-width: 800px;
    margin: 0 auto;
}

.accessory-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 24px 32px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.accessory-info h3 {
    color: #1e293b;
    margin-bottom: 8px;
}

.accessory-info p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}

.accessory-price {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Guidance Section */
.crate-guidance {
    padding: 80px 24px;
    background: white;
}

.guidance-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.guidance-content h2 {
    color: #2563eb;
    margin-bottom: 16px;
}

.guidance-content p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guidance-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.guidance-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    text-align: left;
}

.guidance-card h3 {
    color: #2563eb;
    margin-bottom: 20px;
    text-align: center;
}

.guidance-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guidance-card li {
    color: #374151;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.guidance-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* Contact Section */
.crate-contact {
    padding: 80px 24px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    text-align: center;
}

.crate-contact h2 {
    color: #1e293b;
    margin-bottom: 16px;
}

.crate-contact p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Crates Page */
@media (max-width: 768px) {
    .crates-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .measurement-guide {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .calculator-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .sizes-grid {
        grid-template-columns: 1fr;
    }
    
    .considerations-grid {
        grid-template-columns: 1fr;
    }
    
    .accessory-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .guidance-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons button {
        width: 100%;
        max-width: 300px;
    }
}