/* BSD Door Hardware - Professional Website Styles */

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

:root {
    /* Color Palette inspired by hardware finishes */
    --primary-brass: #B8860B;
    --secondary-brass: #DAA520;
    --primary-chrome: #708090;
    --secondary-chrome: #C0C0C0;
    --primary-black: #2C2C2C;
    --secondary-black: #1A1A1A;
    --accent-gold: #FFD700;
    
    /* Neutral colors */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --medium-gray: #CCCCCC;
    --dark-gray: #666666;
    --text-dark: #333333;
    --text-light: #777777;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Source Sans Pro', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    font-weight: 400;
}

a {
    color: var(--primary-brass);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--secondary-brass);
    text-decoration: underline;
}

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Navigation */
.nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-brass), var(--secondary-brass));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.logo-placeholder:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
}

.nav-brand h1 {
    font-size: 1.8rem;
    color: var(--primary-brass);
    margin: 0;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 6px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-brass);
    background-color: var(--light-gray);
    text-decoration: none;
}

.nav-link.active {
    color: var(--primary-brass);
    background-color: var(--light-gray);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: var(--spacing-sm);
    right: var(--spacing-sm);
    height: 2px;
    background: var(--primary-brass);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: var(--spacing-xl) 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-45deg, #f8f9fa, #e9ecef, #dee2e6, #ced4da);
    background-size: 400% 400%;
    animation: breathingGradient 8s ease-in-out infinite;
}

@keyframes breathingGradient {
    0% {
        background-position: 0% 50%;
        transform: scale(1);
    }
    25% {
        background-position: 100% 50%;
        transform: scale(1.02);
    }
    50% {
        background-position: 100% 50%;
        transform: scale(1);
    }
    75% {
        background-position: 0% 50%;
        transform: scale(1.01);
    }
    100% {
        background-position: 0% 50%;
        transform: scale(1);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(184, 134, 11, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(112, 128, 144, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 60%, rgba(218, 165, 32, 0.05) 0%, transparent 40%);
    animation: floatingOrbs 12s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatingOrbs {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.8;
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.8" fill="%23B8860B" opacity="0.03"/><circle cx="75" cy="75" r="0.6" fill="%23708090" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23DAA520" opacity="0.02"/><circle cx="10" cy="60" r="0.7" fill="%23C0C0C0" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    z-index: 1;
    animation: gentlePulse 6s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.hero-content {
    flex: 1;
    max-width: 650px;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 2;
    margin-right: var(--spacing-lg);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    max-width: 90%;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    min-width: 300px;
}

.hardware-showcase {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--secondary-brass), var(--primary-brass), var(--accent-gold));
    background-size: 200% 200%;
    box-shadow: 
        0 20px 40px rgba(184, 134, 11, 0.3),
        0 10px 20px rgba(184, 134, 11, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: rotateGradient 8s linear infinite, gentleFloat 3s ease-in-out infinite;
}

@keyframes rotateGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.02);
    }
}

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

.hardware-showcase::before {
    content: '🔧';
    font-size: 7rem;
    opacity: 0.4;
    position: absolute;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
    font-size: 1rem;
    font-family: var(--font-body);
    box-shadow: var(--shadow-light);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-brass), var(--secondary-brass));
    color: var(--white);
    transform: translateY(0);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--secondary-brass), var(--primary-brass));
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-brass);
    border: 2px solid var(--primary-brass);
}

.btn-secondary:hover {
    background: var(--primary-brass);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-brass), var(--secondary-brass));
    color: var(--white);
    text-align: center;
    padding: var(--spacing-xl) 0;
    margin-top: 80px;
}

.page-header h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: var(--spacing-sm);
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h3 {
    font-size: 2.4rem;
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Features Section */
.features {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.feature-card h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

/* Product Preview */
.product-preview {
    padding: var(--spacing-xl) 0;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.category-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.category-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.lever-handles {
    background: linear-gradient(45deg, var(--primary-brass), var(--secondary-brass));
    position: relative;
}

.knob-sets {
    background: linear-gradient(45deg, var(--primary-chrome), var(--secondary-chrome));
    position: relative;
}

.category-image::before {
    content: attr(data-icon);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
}

.category-info {
    padding: var(--spacing-lg);
}

.category-link {
    color: var(--primary-brass);
    font-weight: 600;
    display: inline-block;
    margin-top: var(--spacing-sm);
}

.category-link:hover {
    color: var(--secondary-brass);
}

/* About Section */
.about {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
}

.contact-quick {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--primary-brass);
    margin-top: var(--spacing-md);
}

.about-stats {
    display: grid;
    gap: var(--spacing-md);
}

.stat {
    text-align: center;
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-brass);
    font-family: var(--font-display);
}

.stat-label {
    color: var(--text-light);
    font-weight: 600;
}

/* Products Page */
.filter-bar {
    background: var(--white);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--medium-gray);
}

.filter-controls {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: var(--spacing-xs) var(--spacing-md);
    border: 2px solid var(--medium-gray);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 600;
    font-family: var(--font-body);
}

.filter-btn:hover {
    border-color: var(--primary-brass);
    color: var(--primary-brass);
}

.filter-btn.active {
    background: var(--primary-brass);
    border-color: var(--primary-brass);
    color: var(--white);
}

.products-section {
    padding: var(--spacing-xl) 0;
}

.products-section:nth-child(even) {
    background: var(--off-white);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.product-image {
    height: 280px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: var(--transition-medium);
}

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

.product-info {
    padding: var(--spacing-md);
    flex-grow: 1;
}

.product-info h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-size: 1.3rem;
}

.product-finish {
    color: var(--primary-brass);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.feature-tag {
    background: var(--light-gray);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-cta {
    background: var(--primary-brass);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.cta-content h3 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page */
.contact-section {
    padding: var(--spacing-xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.contact-info h3 {
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--off-white);
    border-radius: 12px;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.contact-details h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.contact-details small {
    color: var(--text-light);
    font-style: italic;
}

.contact-form-container {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: var(--shadow-light);
}

.contact-form {
    display: grid;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--spacing-sm);
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-brass);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.service-area {
    background: var(--light-gray);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.location-grid span {
    background: var(--white);
    padding: var(--spacing-sm);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.service-note {
    font-style: italic;
    color: var(--text-light);
    margin-top: var(--spacing-md);
}

.faq-section {
    padding: var(--spacing-xl) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.faq-item {
    background: var(--off-white);
    padding: var(--spacing-md);
    border-radius: 12px;
    border-left: 4px solid var(--primary-brass);
}

.faq-item h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xs);
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--secondary-brass);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--spacing-sm);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn {
    animation: fadeIn 0.5s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .nav-brand h1 {
        font-size: 1.4rem;
    }
    
    .logo-placeholder {
        width: 45px;
        height: 45px;
    }
    
    .logo {
        width: 35px;
        height: 35px;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: var(--spacing-xl);
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        max-width: 100%;
    }
    
    .hero-image {
        min-width: auto;
    }
    
    .hardware-showcase {
        width: 280px;
        height: 280px;
    }
    
    .hardware-showcase::before {
        font-size: 5rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: var(--spacing-sm);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-medium);
        padding: var(--spacing-md);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-brand {
        cursor: pointer;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-controls {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: var(--spacing-sm);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-header h2 {
        font-size: 2rem;
    }
    
    .section-header h3 {
        font-size: 1.8rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .nav,
    .hero-buttons,
    .filter-bar,
    .product-cta,
    .contact-form,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States for Keyboard Navigation */
.nav-link:focus,
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-brass);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --text-light: var(--text-dark);
        --medium-gray: var(--text-dark);
    }
}