/* ============================================
   Petellence - Premium Pet Wellness
   Vintage / Heritage / Classic Luxury Design
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Colors */
    --color-navy: #0f1c2e;
    --color-navy-light: #1a2d47;
    --color-gold: #c9a55c;
    --color-gold-light: #d4b876;
    --color-gold-dark: #a88a3d;
    --color-parchment: #f8f5f0;
    --color-parchment-dark: #ebe6dc;
    --color-text-dark: #1a1a1a;
    --color-text-light: #f8f5f0;
    --color-text-muted: #6b6b6b;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 6rem;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text-dark);
    background-color: var(--color-parchment);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 70px; /* Account for fixed navbar */
}

/* ============================================
   Sticky Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-navy);
    border-bottom: 1px solid rgba(201, 165, 92, 0.3);
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    background-color: rgba(15, 28, 46, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 50%;
}

.nav-brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-parchment);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: width var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-gold);
    transition: all var(--transition-smooth);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-smooth);
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
.section {
    padding: var(--section-padding) 0;
}

.section-navy {
    background-color: var(--color-navy);
    color: var(--color-text-light);
}

.section-parchment {
    background-color: var(--color-parchment);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.section-title.light {
    color: var(--color-text-light);
}

/* Gold Divider */
.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.divider-diamond {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    transform: rotate(45deg);
}

/* Vintage Ornament */
.vintage-ornament {
    text-align: center;
    font-size: 2rem;
    color: var(--color-gold);
    margin-top: 3rem;
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border: 2px solid var(--color-gold);
    background: transparent;
    color: var(--color-gold);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.btn:hover {
    background-color: var(--color-gold);
    color: var(--color-navy);
}

.btn-primary {
    background-color: transparent;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 0.9375rem;
}

/* ============================================
   Hero Slider Section
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: -70px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide.prev {
    z-index: 0;
}

/* Slide Background */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.slide.active .slide-bg {
    transform: scale(1.08);
}

/* Slide Overlay - Premium Gradient */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(15, 28, 46, 0.4) 0%,
        rgba(15, 28, 46, 0.6) 40%,
        rgba(15, 28, 46, 0.85) 100%
    );
    z-index: 1;
}

.slide-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(15, 28, 46, 0.3) 100%
    );
}

/* Slide Content */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 900px;
    padding: 2rem;
}

/* Slide Logo */
.slide-logo {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.slide.active .slide-logo {
    opacity: 1;
    transform: translateY(0);
}

.slide-logo-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(201, 165, 92, 0.4);
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow: 0 0 40px rgba(201, 165, 92, 0.3);
    }
    50% {
        box-shadow: 0 0 70px rgba(201, 165, 92, 0.5);
    }
}

/* Slide Tagline */
.slide-tagline {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.slide.active .slide-tagline {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Title */
.slide-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    color: var(--color-text-light);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Divider */
.slide-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.slide.active .slide-divider {
    opacity: 1;
    transform: scaleX(1);
}

.slide-divider .divider-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.slide-divider .divider-diamond {
    width: 10px;
    height: 10px;
    background-color: var(--color-gold);
    transform: rotate(45deg);
}

.slide-divider .divider-flourish {
    font-size: 0.875rem;
    color: var(--color-gold);
    opacity: 0.8;
}

/* Slide Subtitle */
.slide-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: var(--color-parchment);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.7s, transform 0.8s ease 0.7s;
}

.slide.active .slide-subtitle {
    opacity: 0.9;
    transform: translateY(0);
}

/* Slide Button */
.btn-slider {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    padding: 1.125rem 3rem;
    border: 1px solid var(--color-gold);
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s, color 0.4s ease, background-color 0.4s ease;
}

.slide.active .btn-slider {
    opacity: 1;
    transform: translateY(0);
}

.btn-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 165, 92, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-slider:hover {
    background-color: var(--color-gold);
    color: var(--color-navy);
}

.btn-slider:hover::before {
    left: 100%;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(201, 165, 92, 0.5);
    border-radius: 50%;
    background: rgba(15, 28, 46, 0.5);
    color: var(--color-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
}

.slider-arrow:hover {
    background: var(--color-gold);
    color: var(--color-navy);
    border-color: var(--color-gold);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--color-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.dot.active::after,
.dot:hover::after {
    width: 6px;
    height: 6px;
}

.dot.active {
    border-color: var(--color-gold);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(201, 165, 92, 0.2);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
    transition: width 0.1s linear;
}

/* ============================================
   About Section
   ============================================ */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-content p {
    color: var(--color-text-muted);
    font-size: 1.0625rem;
}

/* ============================================
   Why Petellence Section (Pillars)
   ============================================ */
.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pillar {
    text-align: center;
    padding: 2rem;
}

.pillar-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--color-gold);
}

.pillar-icon svg {
    width: 100%;
    height: 100%;
}

.pillar-title {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.pillar-text {
    color: var(--color-parchment);
    opacity: 0.85;
    font-size: 0.9375rem;
}

/* ============================================
   Products Section
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border: 1px solid var(--color-parchment-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-smooth);
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.product-card:hover .product-placeholder {
    border-color: var(--color-gold);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid var(--color-gold);
}

.product-title {
    font-size: 1.25rem;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.product-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--color-gold);
}

/* ============================================
   Pets Section (Dogs & Cats)
   ============================================ */
.pets-split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.pet-column {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    text-align: center;
    padding: 2rem;
}

.pet-image-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-gold);
    box-shadow: 0 0 30px rgba(201, 165, 92, 0.2);
}

.pet-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.pet-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 28, 46, 0.4) 100%);
    pointer-events: none;
}

.pet-column:hover .pet-photo {
    transform: scale(1.1);
}

.pet-title {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.pet-text {
    color: var(--color-parchment);
    opacity: 0.85;
    font-size: 0.9375rem;
}

.pet-divider {
    width: 1px;
    height: 200px;
    background: linear-gradient(180deg, transparent, var(--color-gold), transparent);
}

/* ============================================
   Trust & Quality Section
   ============================================ */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
}

.trust-icon {
    display: block;
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.trust-item h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.trust-item p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ============================================
   Contact Form Section
   ============================================ */
.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border: 1px solid var(--color-parchment-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--color-text-dark);
    background-color: var(--color-parchment);
    border: 1px solid var(--color-parchment-dark);
    transition: all var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(201, 165, 92, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 0.7;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

.btn-submit {
    width: 100%;
    margin-top: 0.5rem;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-emblem {
    margin-bottom: 2rem;
}

.emblem-small {
    width: 60px;
    height: 60px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.emblem-small span {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gold);
}

.cta-title {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--color-parchment);
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta-section .gold-divider {
    margin-bottom: 1.5rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--color-navy);
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-divider {
    margin-bottom: 2.5rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--color-gold);
    margin-bottom: 0.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--color-parchment);
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.footer-domain {
    font-size: 0.8125rem;
    color: var(--color-gold);
    opacity: 0.8;
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    opacity: 0.7;
    transition: opacity var(--transition-smooth);
}

.social-link:hover {
    opacity: 1;
}

.social-link svg {
    width: 100%;
    height: 100%;
}

.footer-copy {
    font-size: 0.8125rem;
    color: var(--color-parchment);
    opacity: 0.5;
    margin-bottom: 0;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }
    
    body {
        padding-top: 60px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    /* Mobile Navigation */
    .nav-container {
        height: 60px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--color-navy);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-smooth);
        border-bottom: 1px solid rgba(201, 165, 92, 0.3);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(201, 165, 92, 0.1);
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
    }
    
    .nav-brand {
        font-size: 1.25rem;
    }
    
    .nav-logo-img {
        width: 38px;
        height: 38px;
    }
    
    /* Hero Slider Mobile */
    .hero-slider {
        margin-top: -60px;
        min-height: 100vh;
    }
    
    .slide-logo-img {
        width: 100px;
        height: 100px;
    }
    
    .slide-tagline {
        font-size: 0.8125rem;
        letter-spacing: 0.2em;
    }
    
    .slide-divider .divider-line {
        width: 50px;
    }
    
    .slider-nav {
        bottom: 2rem;
        gap: 1rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .btn-slider {
        padding: 1rem 2rem;
        font-size: 0.8125rem;
    }
    
    .pillars {
        gap: 2rem;
    }
    
    .pillar {
        padding: 1.5rem;
    }
    
    .pets-split {
        gap: 2rem;
    }
    
    .pet-divider {
        width: 100px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    }
    
    .pet-image-container {
        width: 140px;
        height: 140px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.8125rem;
    }
    
    .btn-large {
        padding: 1rem 2.5rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Animations & Hover Effects
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .product-card,
    .pillar,
    .trust-item,
    .pet-column {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }
    
    .pillar:nth-child(1) { animation-delay: 0.1s; }
    .pillar:nth-child(2) { animation-delay: 0.2s; }
    .pillar:nth-child(3) { animation-delay: 0.3s; }
    
    .product-card:nth-child(1) { animation-delay: 0.1s; }
    .product-card:nth-child(2) { animation-delay: 0.2s; }
    .product-card:nth-child(3) { animation-delay: 0.3s; }
    
    .trust-item:nth-child(1) { animation-delay: 0.1s; }
    .trust-item:nth-child(2) { animation-delay: 0.15s; }
    .trust-item:nth-child(3) { animation-delay: 0.2s; }
    .trust-item:nth-child(4) { animation-delay: 0.25s; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
