/* West Elm + Christmas - PREMIUM EDITION */
/* Premium typography, textures, and enhanced interactions */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Source+Sans+Pro:wght@400;600;700&display=swap');

:root {
    --primary-color: #2d5a3d;
    --primary-light: #3d6f4d;
    --accent-color: #b8936f;
    --accent-warm: #d4a574;
    --christmas-red: #8b3a3a;
    --christmas-gold: #c9a961;
    --text-primary: #2c2416;
    --text-secondary: #5a5041;
    --text-tertiary: #8a7d6f;
    --white: #fefdfb;
    --cream: #f8f6f2;
    --warm-gray: #e8e5df;
    --natural-tan: #d4cec4;
    --border-light: #e0ddd5;
    --border-warm: #c9c4b8;
    --shadow-warm: rgba(45, 36, 22, 0.08);
    --shadow-md: 0 3px 8px rgba(45, 36, 22, 0.1), 0 1px 3px rgba(45, 36, 22, 0.06);
    --shadow-lg: 0 8px 20px rgba(45, 36, 22, 0.12), 0 3px 8px rgba(45, 36, 22, 0.08);
    --shadow-premium: 0 12px 32px rgba(45, 36, 22, 0.15), 0 4px 12px rgba(45, 36, 22, 0.08);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition-smooth: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-premium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: var(--text-primary);
    background-color: var(--cream);
    font-size: 17px;
    letter-spacing: 0.01em;
    position: relative;
}

/* Subtle texture overlay for premium feel */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 3px
        );
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--christmas-gold), var(--accent-warm));
    z-index: 10000;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 8px rgba(201, 169, 97, 0.5);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-premium);
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-premium);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.02);
}

/* Header & Navigation */
header {
    background-color: rgba(254, 253, 251, 0.98);
    border-bottom: 2px solid var(--border-warm);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(45, 36, 22, 0.06);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.site-title {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: transform var(--transition-premium);
}

.site-title:hover {
    transform: translateY(-1px);
}

.site-title h1 {
    font-size: 1.65rem;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: 0.02em;
    font-family: 'Playfair Display', Georgia, serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.paw-icon {
    font-size: 2rem;
    filter: sepia(0.3) hue-rotate(-10deg) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    transition: transform var(--transition-smooth);
}

.site-title:hover .paw-icon {
    transform: rotate(-10deg) scale(1.1);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap;
}

nav a {
    display: block;
    padding: 10px 18px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-smooth);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
}

nav a:hover::after {
    transform: scaleX(1);
}

nav a:hover {
    background-color: var(--warm-gray);
    color: var(--primary-color);
    transform: translateY(-1px);
}

nav a.active {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(45, 90, 61, 0.3);
}

nav a.active::after {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--primary-color);
    font-size: 1.4rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-smooth);
}

.menu-toggle:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

/* Hero Section - Premium Christmas */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 80px 40px;
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.hero::before {
    content: '❄️ ✨ 🎄';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 2rem;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '🎁 ⭐ ❄️';
    position: absolute;
    bottom: 20px;
    left: 40px;
    font-size: 2rem;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    font-family: 'Playfair Display', Georgia, serif;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-top: 16px;
    opacity: 0.85;
    font-style: italic;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

/* Main Content - Premium Polish */
main {
    min-height: calc(100vh - 400px);
}

.content-section {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 52px 56px;
    margin-bottom: 36px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-premium);
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-color), var(--christmas-gold));
    transition: height var(--transition-premium);
}

.content-section:hover::before {
    height: 100%;
}

.content-section:hover {
    box-shadow: var(--shadow-premium);
    transform: translateY(-3px);
}

.content-section h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--accent-color);
    font-weight: 800;
    letter-spacing: 0.01em;
    font-family: 'Playfair Display', Georgia, serif;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--christmas-gold);
}

.content-section h3 {
    font-size: 1.7rem;
    color: var(--text-primary);
    margin-top: 36px;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 0.005em;
    font-family: 'Playfair Display', Georgia, serif;
}

.content-section h4 {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 24px;
    margin-bottom: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.content-section p {
    margin-bottom: 20px;
    line-height: 1.85;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.content-section ul,
.content-section ol {
    margin-left: 32px;
    margin-bottom: 24px;
}

.content-section li {
    margin-bottom: 12px;
    line-height: 1.85;
    font-size: 1.05rem;
    color: var(--text-secondary);
    position: relative;
}

.content-section ul li::marker {
    color: var(--accent-color);
}

.content-section strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Collapsible Sections - Premium */
.collapsible {
    background: linear-gradient(to right, var(--cream), var(--white));
    border: 2px solid var(--border-warm);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all var(--transition-premium);
    box-shadow: 0 2px 6px rgba(45, 36, 22, 0.04);
}

.collapsible:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
    transform: translateX(3px);
}

.collapsible-header {
    padding: 20px 28px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Source Sans Pro', sans-serif;
}

.collapsible-header:hover {
    background: linear-gradient(to right, var(--warm-gray), transparent);
}

.collapsible-icon {
    transition: transform var(--transition-premium);
    color: var(--accent-color);
    font-size: 1.4rem;
    font-weight: bold;
}

.collapsible.active .collapsible-icon {
    transform: rotate(180deg);
    color: var(--christmas-red);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collapsible.active .collapsible-content {
    max-height: 2500px;
}

.collapsible-inner {
    padding: 0 28px 24px 28px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.85;
}

/* Info Boxes - Premium Christmas */
.info-box {
    background: linear-gradient(135deg, #f0f7f4 0%, #e8f4ef 100%);
    border-left: 4px solid var(--primary-color);
    padding: 24px 28px;
    margin: 28px 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.info-box:hover::before {
    opacity: 1;
}

.info-box:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

.info-box h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.warning-box {
    background: linear-gradient(135deg, #fef8f0 0%, #fcf3e8 100%);
    border-left: 4px solid var(--christmas-red);
    padding: 24px 28px;
    margin: 28px 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.warning-box:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

.warning-box h4 {
    color: var(--christmas-red);
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.success-box {
    background: linear-gradient(135deg, #faf9f5 0%, #f5f3ec 100%);
    border-left: 4px solid var(--christmas-gold);
    padding: 24px 28px;
    margin: 28px 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.success-box:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

.success-box h4 {
    color: var(--accent-color);
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

/* Tables - Premium */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 28px 0;
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--border-warm);
    box-shadow: var(--shadow-md);
}

thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
}

th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    font-size: 1.05rem;
    color: var(--text-secondary);
    transition: all var(--transition-smooth);
}

tr:last-child td {
    border-bottom: none;
}

tbody tr {
    transition: all var(--transition-smooth);
}

tbody tr:hover {
    background: linear-gradient(to right, var(--cream), var(--white));
    transform: scale(1.01);
}

tbody tr:nth-child(even) {
    background-color: rgba(248, 246, 242, 0.5);
}

/* Cards - Premium */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 36px 0;
}

.card {
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 2px solid var(--border-warm);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-premium);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.1;
    transition: all var(--transition-premium);
}

.card:hover::before {
    width: 120px;
    height: 120px;
    opacity: 0.15;
}

.card:hover {
    box-shadow: var(--shadow-premium);
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-color);
}

.card h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-family: 'Playfair Display', Georgia, serif;
}

.card p {
    color: var(--text-secondary);
    margin-bottom: 14px;
    font-size: 1.05rem;
    line-height: 1.75;
}

/* Links - Premium underline animation */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-smooth);
    position: relative;
}

a:hover {
    color: var(--accent-color);
}

.content-section a:not(.btn):not(.quick-nav-item):not(.resource-link) {
    border-bottom: 1px solid transparent;
    transition: all var(--transition-smooth);
}

.content-section a:not(.btn):not(.quick-nav-item):not(.resource-link):hover {
    border-bottom-color: var(--accent-color);
}

.external-link::after {
    content: " ↗";
    font-size: 0.85em;
    opacity: 0.7;
}

/* Buttons - Premium */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: all var(--transition-premium);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-premium);
    border-bottom: none;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-warm) 100%);
}

/* Resource Links - Premium */
.resource-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin: 28px 0;
}

.resource-link {
    display: block;
    padding: 20px 24px;
    background: linear-gradient(to right, var(--white), var(--cream));
    border: 2px solid var(--border-warm);
    border-radius: var(--radius-md);
    transition: all var(--transition-premium);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.resource-link::before {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    opacity: 0;
    transition: all var(--transition-smooth);
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.resource-link:hover::before {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

.resource-link:hover {
    border-color: var(--christmas-gold);
    background: linear-gradient(to right, var(--cream), var(--warm-gray));
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
    padding-right: 50px;
}

/* Footer - Premium */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 44px 40px;
    margin-top: 80px;
    text-align: center;
    border-top: 4px solid var(--christmas-gold);
    position: relative;
    box-shadow: 0 -4px 12px rgba(45, 36, 22, 0.1);
}

footer::before {
    content: '🎄 ✨';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    opacity: 0.3;
    animation: twinkle 2s ease-in-out infinite;
}

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

footer p {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 20px;
}

/* Image Placeholders - Premium */
.image-placeholder {
    background: linear-gradient(135deg, var(--warm-gray) 0%, var(--natural-tan) 100%);
    border-radius: var(--radius-lg);
    padding: 72px 48px;
    text-align: center;
    margin: 36px 0;
    border: 3px dashed var(--border-warm);
    transition: all var(--transition-premium);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.image-placeholder:hover::before {
    opacity: 1;
}

.image-placeholder:hover {
    border-color: var(--christmas-gold);
    background: linear-gradient(135deg, var(--natural-tan) 0%, var(--warm-gray) 100%);
    transform: scale(1.01);
    box-shadow: var(--shadow-md);
}

.image-placeholder-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    opacity: 0.5;
    transition: all var(--transition-smooth);
}

.image-placeholder:hover .image-placeholder-icon {
    transform: scale(1.1);
    opacity: 0.7;
}

.image-placeholder p {
    color: var(--text-tertiary);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 600;
}

/* Quick Navigation - Premium Christmas */
.quick-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 44px 0;
}

.quick-nav-item {
    display: block;
    padding: 32px 28px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-premium);
    border: 3px solid transparent;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.quick-nav-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s;
}

.quick-nav-item:hover::before {
    opacity: 1;
    top: -25%;
    right: -25%;
}

.quick-nav-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-premium);
    border-color: var(--christmas-gold);
}

.quick-nav-item h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Playfair Display', Georgia, serif;
}

.quick-nav-item p {
    font-size: 1rem;
    opacity: 0.92;
    color: var(--white);
    line-height: 1.65;
}

/* FAQ Accordion - Premium */
.faq-item {
    background-color: var(--white);
    border: 2px solid var(--border-warm);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-premium);
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(3px);
}

.faq-question {
    padding: 20px 28px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.faq-question:hover {
    background: linear-gradient(to right, var(--cream), transparent);
}

.faq-answer {
    padding: 0 28px 24px 28px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.85;
}

/* Responsive Design */
@media (max-width: 968px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 100%;
        background-color: rgba(254, 253, 251, 0.98);
        backdrop-filter: blur(12px);
        box-shadow: var(--shadow-md);
        transition: left var(--transition-premium);
        padding: 24px 0;
        border-top: 2px solid var(--border-warm);
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav a {
        padding: 16px 40px;
        border-radius: 0;
        font-size: 1.05rem;
    }

    nav a::after {
        display: none;
    }

    .container {
        padding: 0 24px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 16px;
    }

    .hero {
        padding: 56px 28px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .content-section {
        padding: 36px 28px;
    }

    .content-section h2 {
        font-size: 2rem;
    }
}

/* Smooth Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Staggered animations for cards */
.card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }

/* PREMIUM PRINT STYLESHEET */
@media print {
    @page {
        margin: 1.5cm;
        size: letter;
    }

    body {
        background: white;
        font-size: 11pt;
        line-height: 1.6;
    }

    body::before {
        display: none;
    }

    header, footer, nav, .menu-toggle, .back-to-top, .scroll-progress {
        display: none;
    }

    .hero {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        padding: 30px;
        margin-bottom: 20px;
        page-break-after: avoid;
    }

    .hero::before, .hero::after {
        display: none;
    }

    .content-section {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
        margin-bottom: 20px;
        padding: 20px;
    }

    .content-section::before {
        display: none;
    }

    .content-section h2 {
        color: var(--primary-color);
        page-break-after: avoid;
        border-bottom: 2px solid var(--accent-color);
    }

    .content-section h3 {
        page-break-after: avoid;
    }

    .collapsible-content {
        max-height: none !important;
        display: block !important;
    }

    .collapsible {
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }

    .collapsible-icon {
        display: none;
    }

    .info-box, .warning-box, .success-box {
        page-break-inside: avoid;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .card {
        border: 1px solid #ddd;
        page-break-inside: avoid;
        margin-bottom: 15px;
    }

    .card::before {
        display: none;
    }

    table {
        page-break-inside: avoid;
        border: 1px solid #999;
    }

    thead {
        background: var(--primary-color);
        color: white;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    a {
        color: var(--primary-color);
        text-decoration: underline;
    }

    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 0.9em;
        color: #666;
    }

    .image-placeholder {
        border: 2px dashed #999;
        page-break-inside: avoid;
    }
}
