/* Global Styles */
:root {
    --primary-color: #0a192f;
    /* Deep Navy */
    --secondary-color: #172a45;
    /* Lighter Navy */
    --accent-gold: #ff6f20;
    --accent-orange: #FF4500;
    --text-light: #e6f1ff;
    --text-muted: #8892b0;
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--primary-color);
    color: var(--text-light);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Typography Utilities */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================================
   CTA HIERARCHY SYSTEM
   ===========================================
   Primary CTA: "Bid Now on HiBid" - Most prominent, drives main conversion
   Secondary CTA: Supporting actions like "View Catalog", "Sign Up"
   Tertiary CTA: Low-priority text links
   =========================================== */

/* Base Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* PRIMARY CTA - Most Prominent (Bid Now on HiBid) */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8533 100%);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 16px 32px;
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
    animation: primaryPulse 2.5s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.5);
    background: linear-gradient(135deg, #ff5500 0%, #ff9955 100%);
    color: var(--white);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

@keyframes primaryPulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
    }

    50% {
        box-shadow: 0 6px 30px rgba(255, 69, 0, 0.6);
    }
}

/* SECONDARY CTA - Less Prominent (View Catalog, etc.) */
.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 0.95rem;
    padding: 12px 24px;
}

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

/* TERTIARY CTA - Text Link Style */
.btn-tertiary {
    background: none;
    border: none;
    color: var(--accent-gold);
    padding: 8px 16px;
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.btn-tertiary:hover {
    color: var(--white);
}

/* Size Modifiers */
.btn-large {
    padding: 22px 50px;
    font-size: 1.4rem;
}

.btn-sm {
    padding: 10px 18px;
    font-size: 0.85rem;
}

/* Navigation */
.navbar {
    background-color: rgba(10, 25, 47, 0.95);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.logo-sandy {
    color: #1920CF;
    font-size: 2.15rem;
}

.logo-treasure {
    color: var(--white);
    font-size: 1.35rem;
}

.logo img {
    height: 60px;
    width: 60px;
    /* Ensure strictly square for circle */
    object-fit: cover;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-light);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100dvh;
    /* Use dynamic viewport height for better mobile browser support */
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    /* For fixed nav */
    text-align: center;
    overflow: hidden;
    /* Prevent horizontal scroll from overflowing text */
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-headline {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 10px;
}

.hero-subheadline {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--accent-gold);
    margin-bottom: 3rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 10px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.countdown-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.countdown-label {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.time-unit small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 5px;
}

.hibid-note {
    font-size: 0.8rem;
    margin-top: 10px;
    color: var(--text-muted);
    opacity: 0.8;
}

.countdown-helper {
    font-size: 0.75rem;
    margin-top: 12px;
    color: var(--text-muted);
    opacity: 0.7;
    letter-spacing: 1px;
}

.countdown-fallback {
    font-size: 1rem;
    color: var(--text-muted);
    padding: 20px;
}

/* CTA Microcopy - Small helper text under primary CTAs */
.cta-microcopy {
    font-size: 0.85rem;
    margin-top: 12px;
    color: var(--text-muted);
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* ===========================================
   TRUST CUES & CREDIBILITY ELEMENTS
   =========================================== */

/* Location Badge - Near hero headline */
.location-badge {
    display: inline-block;
    background: rgba(255, 111, 32, 0.15);
    color: var(--accent-gold);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.location-badge i {
    margin-right: 6px;
}

/* Trust Strip - Fast-scanning credibility cues */
.trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.trust-item i {
    color: var(--accent-gold);
    font-size: 1rem;
}

/* Process Confidence Notes */
.process-confidence {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.process-confidence p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.process-confidence i {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .trust-strip {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-top: 15px;
        padding-top: 15px;
    }

    .trust-item {
        font-size: 0.75rem;
    }

    .process-confidence {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .process-confidence p {
        justify-content: center;
    }
}

/* Email Banner */
.email-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3a5c 100%);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.email-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.email-banner-content {
    flex: 1;
}

.email-banner-content h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin: 0 0 5px 0;
}

.email-banner-content h3 i {
    color: var(--accent-gold);
    margin-right: 8px;
}

.email-banner-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Modal Form Enhancements */
.modal-subtext {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-gold);
}

.btn-full {
    width: 100%;
}

.privacy-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 15px;
    opacity: 0.8;
}

.privacy-note i {
    margin-right: 5px;
}

.local-note {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 10px;
    opacity: 0.6;
}

/* Sections */
.section {
    padding: 80px 0;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.step-card h3 {
    margin-bottom: 15px;
    color: var(--white);
}

.step-card p {
    color: var(--text-muted);
}

/* Auction Gallery */
.auction-gallery {
    background-color: #0b1c36;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.section-header .section-title {
    margin-bottom: 0;
}

.updated-badge {
    background: rgba(255, 111, 32, 0.2);
    color: var(--accent-gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-fallback {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.gallery-fallback p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.gallery-item {
    display: block;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-info {
    padding: 15px;
    background-color: var(--secondary-color);
    color: var(--white);
}

.lot-number {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.lot-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--white);
}

.bid-cta {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Condition Badges */
.condition-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.condition-new {
    background-color: #28a745;
    color: var(--white);
}

.condition-open-box {
    background-color: var(--accent-gold);
    color: var(--primary-color);
}

.condition-returns {
    background-color: #6c757d;
    color: var(--white);
}

.pickup-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pickup-note i {
    margin-right: 5px;
    color: var(--accent-gold);
}

/* Legacy badge support */
.badge-new,
.badge-bid {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-new {
    background-color: var(--accent-gold);
    color: var(--primary-color);
}

.badge-bid {
    background-color: var(--accent-orange);
    color: var(--white);
}

.center-cta {
    text-align: center;
    margin-top: 20px;
}

/* ===========================================
   FAQ SECTION
   =========================================== */
.faq-section {
    background-color: #0a1628;
}

.section-subtitle {
    text-align: center;
    color: var(--accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
    transition: background 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question i {
    color: var(--accent-gold);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 18px;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-answer p {
    margin: 0;
}

.faq-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 0.95rem;
        padding: 16px;
    }

    .faq-cta {
        flex-direction: column;
        align-items: center;
    }

    .faq-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

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

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.author {
    font-weight: 700;
    color: var(--accent-gold);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

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

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-info .author {
    margin-bottom: 2px;
}

.stars {
    color: #ffc107;
    font-size: 1rem;
    letter-spacing: 2px;
}

/* Footer */
footer {
    background-color: #050e1c;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    font-size: 1.5rem;
    color: var(--white);
}

.social-icons a:hover {
    color: var(--accent-gold);
}

.map-placeholder img {
    width: 100%;
    border-radius: 4px;
    opacity: 0.8;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-gold);
}

.modal-content h2 {
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

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

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: var(--primary-color);
    color: var(--text-light);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

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

#signupForm .btn {
    width: 100%;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 20px;
        text-align: center;
        border-bottom: 2px solid var(--accent-gold);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-cta {
        display: none;
        /* Keep hidden on mobile or move into nav-links if desired */
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding-top: 100px;
        min-height: 100dvh;
    }

    .hero-headline {
        font-size: 2.2rem;
        padding: 0 15px;
    }

    .hero-subheadline {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }

    .hero-actions {
        gap: 1rem;
    }

    .cta-microcopy {
        font-size: 0.75rem;
        margin-top: 8px;
    }

    .countdown-timer {
        font-size: 2rem;
        gap: 10px;
    }

    .countdown-container {
        padding: 15px;
        width: 100%;
        max-width: 350px;
    }

    .countdown-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 0 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .steps-grid,
    .testimonials-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .email-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .logo span {
        font-size: 1rem;
    }

    .logo-sandy {
        font-size: 1.7rem;
    }

    .logo-treasure {
        font-size: 1.1rem;
    }

    .location-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .trust-item {
        font-size: 0.75rem;
    }

    .btn-primary {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

/* ===========================================
   VERY SMALL SCREENS (≤400px)
   =========================================== 
   For iPhone SE, small Android devices, and older phones.
   Further reduces font sizes to prevent text overflow.
   =========================================== */
@media (max-width: 400px) {
    .hero-headline {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subheadline {
        font-size: 1.15rem;
        margin-bottom: 1.5rem;
    }

    .countdown-timer {
        font-size: 1.6rem;
        gap: 8px;
    }

    .time-unit small {
        font-size: 0.65rem;
    }

    .countdown-container {
        padding: 12px;
        max-width: 300px;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .logo img {
        height: 45px;
        width: 45px;
    }

    .logo-sandy {
        font-size: 1.45rem;
    }

    .logo-treasure {
        font-size: 0.9rem;
    }

    .location-badge {
        font-size: 0.65rem;
        padding: 5px 10px;
    }

    .btn-primary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .step-card {
        padding: 25px;
    }

    .step-icon {
        font-size: 2.5rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .quote {
        font-size: 1rem;
    }
}

/* ===========================================
   STICKY MOBILE CTA BAR
   ===========================================
   Only visible on mobile devices (≤768px)
   Always stays at bottom of viewport for easy access
   To change HiBid URL: update the href in index.html
   =========================================== */

.mobile-sticky-cta {
    display: none;
    /* Hidden on desktop by default */
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        padding: 12px 20px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        /* iOS safe area */
        z-index: 1500;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-cta-btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 1rem;
        min-height: 48px;
        /* Minimum tap target size */
    }

    .mobile-cta-subtext {
        font-size: 0.7rem;
        color: var(--text-muted);
        margin-top: 6px;
        letter-spacing: 0.5px;
    }

    /* Add bottom padding to body so content isn't hidden behind sticky bar */
    body {
        padding-bottom: 90px;
    }

    /* Reduce footer bottom padding since sticky bar provides spacing */
    footer {
        padding-bottom: 20px;
    }
}