        /* ============================================
           CONTACT PAGE - Red Beard Peptides
           Matches demo-redesign.html design system
           ============================================ */

        /* ========== PAGE HERO ========== */
        .hero {
            position: relative;
            padding: 60px 24px;
            text-align: center;
            background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 400px;
            background: radial-gradient(ellipse, rgba(192, 57, 43, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 42px;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 16px;
            line-height: 1.15;
        }

        .hero h1 span {
            color: var(--primary-light);
        }

        .hero p {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ========== SECTION LAYOUT ========== */
        .section {
            max-width: 1280px;
            margin: 0 auto;
            padding: 48px 24px;
        }

        /* ========== CONTACT LAYOUT ========== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            align-items: start;
            max-width: 700px;
            margin: 0 auto;
        }

        /* ========== CONTACT FORM CARD ========== */
        .form-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 36px;
        }

        .form-card h2 {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: -0.3px;
            margin-bottom: 24px;
        }

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

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 6px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 11px 14px;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
            outline: none;
        }

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

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
        }

        .form-group select {
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b6e73' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 40px;
            cursor: pointer;
        }

        .form-group select option {
            background: var(--bg-surface);
            color: var(--text-primary);
        }

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

        .form-submit-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-top: 24px;
        }

        .form-submit-row .btn {
            padding: 12px 32px;
            font-size: 15px;
        }

        .form-hint {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ========== CONTACT METHOD CARDS ========== */
        .contact-info-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 20px;
        }

        .method-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: border-color 0.2s ease;
        }

        .method-card:hover {
            border-color: var(--border-hover);
        }


        .method-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .method-icon svg {
            width: 22px;
            height: 22px;
            color: var(--primary-light);
        }

        .method-info h3 {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 2px;
        }

        .method-info p {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
        }

        /* ========== FAQ CALLOUT ========== */
        .faq-callout {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 40px;
            text-align: center;
            max-width: 720px;
            margin: 0 auto;
        }

        .faq-callout-icon {
            font-size: 36px;
            margin-bottom: 16px;
        }

        .faq-callout h2 {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: -0.3px;
            margin-bottom: 10px;
        }

        .faq-callout p {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 24px;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        /* ========== FORM STATUS ========== */
        #contactFormStatus p {
            margin: 0;
            padding: 10px 0;
            font-size: 14px;
            font-weight: 500;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 600px) {
            .contact-info-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 40px 16px;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 15px;
            }

            .form-card {
                padding: 24px;
            }

            .form-submit-row {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
            }

            .form-submit-row .btn {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 24px;
            }

            .form-card {
                padding: 20px;
            }

            .faq-callout {
                padding: 28px 20px;
            }
        }
