/* Vinyl Professional CSS - Community Floors LLC */

/* =======================
   COLOR PALETTE
   ======================= */
:root {
    --primary-navy: #1e3a5f;
    --accent-gold: #c8a870;
    --neutral-light: #f8f9fa;
    --neutral-gray: #6c757d;
    --neutral-dark: #343a40;
    --success-green: #28a745;
    --warning-amber: #ffc107;
    --white: #ffffff;
    --black: #000000;
}

/* =======================
   GLOBAL OVERRIDES
   ======================= */
* {
    box-sizing: border-box;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

/* Links and Buttons */
a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-gold);
    text-decoration: none;
}

/* Critical: Force strong/b to inherit color from parent (WCAG fix) */
[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b,
.text-white strong, .text-white b,
.text-light strong, .text-light b {
    color: inherit;
}

/* =======================
   HEADER STYLES
   ======================= */
.vinyl-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.vinyl-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.vinyl-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.vinyl-logo:hover {
    color: var(--accent-gold);
}

.vinyl-logo .logo-icon {
    margin-right: 0.5rem;
    color: var(--accent-gold);
}

.vinyl-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

.vinyl-nav li {
    margin-left: 2rem;
}

.vinyl-nav a {
    font-weight: 500;
    color: var(--neutral-dark);
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.vinyl-nav a:hover,
.vinyl-nav a.active {
    color: var(--accent-gold);
}

.vinyl-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.vinyl-nav a:hover::after,
.vinyl-nav a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-navy);
    cursor: pointer;
    padding: 0.5rem;
}

/* Header specific button styles */
.vinyl-header .btn-vinyl-primary {
    background: var(--accent-gold);
    color: var(--white);
    border: 2px solid var(--accent-gold);
    padding: 0.75rem 2rem;
}

.vinyl-header .btn-vinyl-primary:hover {
    background: transparent;
    color: var(--accent-gold);
}

/* =======================
   BUTTON STYLES
   ======================= */
.btn-vinyl-primary {
    background: var(--primary-navy);
    color: var(--white);
    border: 2px solid var(--primary-navy);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn-vinyl-primary:hover {
    background: transparent;
    color: var(--primary-navy);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}
.btn-vinyl-primary.active {
    background: transparent;
    color: var(--primary-navy);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.btn-vinyl-secondary {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn-vinyl-secondary:hover {
    background: var(--primary-navy);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-vinyl-gold {
    background: var(--accent-gold);
    color: var(--white);
    border: 2px solid var(--accent-gold);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn-vinyl-gold:hover {
    background: transparent;
    color: var(--accent-gold);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 168, 112, 0.3);
}

/* Button spacing for adjacent buttons */
.btn + .btn {
    margin-left: 1rem;
}

/* =======================
   HERO SECTION
   ======================= */
.vinyl-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2c5282 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.vinyl-hero::before {
    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="vinyl-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23vinyl-pattern)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding-top: 40px;
}

.vinyl-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.vinyl-hero .hero-subtitle {
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero section specific button styles for better readability */
.vinyl-hero .btn-vinyl-primary {
    background: var(--accent-gold);
    color: var(--white);
    border: 2px solid var(--accent-gold);
}

.vinyl-hero .btn-vinyl-primary:hover {
    background: var(--white);
    color: var(--primary-navy);
    border-color: var(--white);
}

.vinyl-hero .btn-vinyl-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.vinyl-hero .btn-vinyl-secondary:hover {
    background: var(--white);
    color: var(--primary-navy);
    text-decoration: none;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =======================
   SECTIONS
   ======================= */
.vinyl-section {
    padding: 5rem 0;
}

.vinyl-section-light {
    background: var(--neutral-light);
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* =======================
   CARDS AND COMPONENTS
   ======================= */
.vinyl-card {
    background: var(--white);
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    padding: 1.5rem;
}

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

.vinyl-card-header {
    background: var(--primary-navy);
    color: var(--white);
    padding: 1.5rem;
    border: none;
}

.vinyl-card-body {
    padding: 2rem;
    color: var(--neutral-dark);
}

.vinyl-card-footer {
    background: var(--neutral-light);
    padding: 1.5rem;
    border: none;
}

/* Service Cards */
.service-card {
    text-align: center;
    height: 100%;
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.service-title {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--neutral-gray);
    margin-bottom: 1.5rem;
}

/* Team Cards */
.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.team-card .card-body {
    text-align: center;
    padding: 2rem;
}

.team-name {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--neutral-gray);
    font-size: 0.9rem;
}

/* Feature Cards */
.feature-card {
    height: 100%;
    background: var(--white);
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.feature-highlights {
    margin-top: 1.5rem;
}

.feature-highlights ul {
    margin: 0;
    padding: 0;
}

.feature-highlights li {
    color: var(--neutral-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Application Cards */
.application-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.application-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.application-card h5 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.application-card p {
    color: var(--neutral-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h5 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--neutral-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

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

.pricing-card h4 {
    padding: 1.5rem;
    margin: 0;
    text-align: center;
}

.pricing-card .price {
    text-align: center;
    padding: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    background: var(--neutral-light);
}

.pricing-card ul {
    padding: 2rem 1.5rem;
    margin: 0;
}

.pricing-card li {
    color: var(--neutral-dark);
    font-size: 0.9rem;
}

/* Service Features */
.service-features {
    background: var(--neutral-light);
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.service-features h6 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-features ul {
    margin: 0;
    padding: 0;
}

.service-features li {
    color: var(--neutral-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Price Info */
.price-info {
    background: var(--accent-gold);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
}

/* Maintenance Programs */
.maintenance-program {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.maintenance-program:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: var(--accent-gold);
}

.maintenance-program h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.maintenance-program .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.maintenance-program ul {
    margin: 0;
    padding: 0;
    text-align: left;
}

.maintenance-program li {
    color: var(--neutral-dark);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

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

/* Issue Solution */
.issue-solution {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--accent-gold);
}

.issue-solution:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.issue-solution h5 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.issue-solution p {
    color: var(--neutral-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.issue-solution p:last-child {
    margin-bottom: 0;
}

/* Care Tips */
.care-tip {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.care-tip:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.care-tip h5 {
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.care-tip ul {
    margin: 0;
    padding: 0;
    text-align: left;
}

.care-tip li {
    color: var(--neutral-gray);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

/* Compliance Items */
.compliance-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.compliance-item h5 {
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.compliance-item ul {
    margin: 0;
    padding: 0;
}

.compliance-item li {
    color: var(--neutral-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-navy), var(--accent-gold));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 0.9;
}

.gallery-info {
    text-align: center;
    color: var(--white);
}

.gallery-info h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

/* =======================
   TESTIMONIALS
   ======================= */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    height: 100%;
}

.testimonial-quote {
    font-size: 1.1rem;
    color: var(--neutral-dark);
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    color: var(--primary-navy);
}

.testimonial-location {
    color: var(--neutral-gray);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/* =======================
   FORMS
   ======================= */
.vinyl-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.vinyl-form label {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    display: block;
}

.vinyl-form input,
.vinyl-form textarea,
.vinyl-form select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    color: var(--neutral-dark);
    background-color: var(--white);
}

.vinyl-form input:focus,
.vinyl-form textarea:focus,
.vinyl-form select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(200, 168, 112, 0.1);
}

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

.form-required {
    color: var(--warning-amber);
}

.form-help {
    color: var(--neutral-gray);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Bootstrap Form Checkbox Custom Styles */
.form-check {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.form-check-input {
    position: absolute;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    margin-left: -1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: auto !important;
}

.form-check-input:checked {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m13.854 3.646-7.5 7.5a.5.5 0 0 1-.708 0L2.146 8.354a.5.5 0 1 1 .708-.708L6 10.293l7.146-7.147a.5.5 0 0 1 .708.708z'/%3e%3c/svg%3e");
}

.form-check-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(200, 168, 112, 0.1);
    outline: none;
}

.form-check-input:hover {
    border-color: var(--accent-gold);
}

.form-check-label {
    color: var(--neutral-dark);
    font-weight: 500;
    cursor: pointer;
    padding-left: 0.5rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
}

.form-check-label:hover {
    color: var(--primary-navy);
}

/* =======================
   FAQ ACCORDION
   ======================= */
.faq-item {
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    background: var(--neutral-light);
    padding: 1.5rem;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 600;
    color: var(--primary-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question.active {
    background: var(--primary-navy);
    color: var(--white);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

/* =======================
   FOOTER
   ======================= */
.vinyl-footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
}

/* =======================
   COOKIE BANNER
   ======================= */
.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 1.5rem;
    z-index: 9999;
    max-width: 400px;
    margin: 0 auto;
}

.cookie-banner-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-banner-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-right: 0.5rem;
}

.cookie-banner-title {
    font-weight: 700;
    color: var(--primary-navy);
    margin: 0;
    font-size: 1.1rem;
}

.cookie-banner-text {
    color: var(--neutral-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 100px;
}

.cookie-accept {
    background: var(--primary-navy);
    color: var(--white);
}

.cookie-accept:hover {
    background: #2c5282;
}

.cookie-decline {
    background: var(--neutral-gray);
    color: var(--white);
}

.cookie-decline:hover {
    background: #5a6268;
}

/* =======================
   UTILITY CLASSES
   ======================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.text-primary { color: var(--primary-navy) !important; }
.text-secondary { color: var(--neutral-gray) !important; }
.text-gold { color: var(--accent-gold) !important; }
.text-white { color: var(--white) !important; }
.text-dark { color: var(--neutral-dark) !important; }

.bg-primary { background-color: var(--primary-navy) !important; }
.bg-light { background-color: var(--neutral-light) !important; }
.bg-white { background-color: var(--white) !important; }
.bg-dark { background-color: var(--neutral-dark) !important; }

.border-radius { border-radius: 8px; }
.shadow { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.shadow-hover:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.15); }

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =======================
   RESPONSIVE DESIGN
   ======================= */

/* Large screens */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Medium screens (tablets) */
@media (max-width: 991px) {
    .vinyl-hero h1 {
        font-size: 2.5rem;
    }
    
    .vinyl-section {
        padding: 3rem 0;
    }
    
    .vinyl-nav {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transition: top 0.3s ease;
    }
    
    .vinyl-nav.active {
        top: 100%;
    }
    
    .vinyl-nav ul {
        flex-direction: column;
        padding: 2rem;
    }
    
    .vinyl-nav li {
        margin: 0 0 1rem 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-consent-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        border-radius: 8px 8px 0 0;
    }
}

/* Small screens (mobile) */
@media (max-width: 767px) {
    .vinyl-hero {
        min-height: 80vh;
        text-align: center;
    }
    
    .vinyl-hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .btn + .btn {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .vinyl-form {
        padding: 1.5rem;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* Extra small screens */
@media (max-width: 575px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .vinyl-section {
        padding: 2rem 0;
    }
    
    .vinyl-hero h1 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .card-body,
    .vinyl-card-body {
        padding: 1.5rem;
    }
}