/* Contact page. Extracted verbatim from an inline <style> block in contact.php. */
        /* Header Section */
        .contact-header-section {
            text-align: center;
            padding: 2rem 1rem 1rem;
            border-radius: var(--radius-lg);
            color: var(--brand-black);
            margin: 0 auto 2.5rem;
        }

        .contact-main-title {
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            letter-spacing: -0.01em;
        }

        .contact-main-icon {
            font-size: 2rem;
            animation: pulse 2.4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.08); }
        }

        .contact-intro {
            font-size: 1.05rem;
            max-width: 560px;
            margin: 0 auto;
            opacity: 0.92;
            line-height: 1.6;
        }

        /* Section Titles */
        .section-title {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            font-size: 2rem;
            color: var(--brand-gold);
            margin-bottom: 1.5rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--brand-gold), var(--brand-black));
            border-radius: 2px;
        }

        /* Locations Section */
        .locations-section {
            margin-bottom: 2rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        /* Location Cards */
        .location-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
            overflow: hidden;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            border: 1px solid var(--brand-gold-soft);
            position: relative;
        }

        .location-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 28px rgba(0,0,0,0.08);
        }

        .card-header {
            padding: 1.5rem 1.5rem 1rem;
            text-align: center;
            position: relative;
        }

        .icon-wrapper {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: var(--surface);
            font-size: 1.5rem;
            position: relative;
        }

        .icon-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: inherit;
            border-radius: 50%;
            filter: blur(15px);
            opacity: 0.2;
            z-index: -1;
        }

        .repair-icon {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
        }

        .money-icon {
            background: linear-gradient(135deg, #4ecdc4, #26a69a);
        }

        .owner-icon {
            background: linear-gradient(135deg, var(--brand-gold), var(--brand-black));
        }

        .card-header h3 {
            font-size: 1.3rem;
            color: var(--brand-black);
            margin: 0;
            font-weight: 600;
        }

        .card-content {
            padding: 0 1.5rem 1.5rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.75rem;
            background: var(--surface-alt);
            border-radius: var(--radius);
            border-left: 3px solid var(--brand-gold);
        }

        .info-item i {
            font-size: 1.2rem;
            color: var(--brand-gold);
            margin-top: 0.2rem;
            min-width: 20px;
        }

        .info-item strong {
            display: block;
            color: var(--brand-black);
            margin-bottom: 0.25rem;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .info-item a {
            color: var(--text);
            text-decoration: none;
            transition: var(--transition);
            line-height: 1.4;
            display: block;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            max-width: 100%;
        }

        .info-item a:hover {
            color: var(--brand-gold);
        }

        /* For addresses that have line breaks, create a separate class */
        .address-link {
            white-space: normal !important; /* Allow line breaks for addresses */
            text-overflow: unset !important; /* Don't truncate addresses */
        }

        /* For contact methods in owner card, apply ellipsis to the span */
        .contact-method span {
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            display: block;
            max-width: 200px; /* Adjust as needed */
        }

        /* Owner / Boss Featured Section */
        .owner-section {
            max-width: 1000px;
            margin: 0 auto 3rem;
        }

        .owner-contact-card {
            position: relative;
            background: linear-gradient(135deg, var(--surface) 0%, var(--surface-alt) 100%);
            border-radius: var(--radius-lg);
            padding: 2.25rem 2rem;
            box-shadow: 0 6px 24px rgba(0,0,0,0.06);
            border: 1px solid var(--brand-gold-soft);
            overflow: hidden;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }

        .owner-contact-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, var(--brand-gold), var(--brand-black));
        }

        .owner-contact-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(0,0,0,0.10);
        }

        .owner-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.35rem 0.9rem;
            background: linear-gradient(135deg, var(--brand-gold), var(--brand-black));
            color: var(--surface);
            border-radius: var(--radius-xl);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            margin-bottom: 1.25rem;
        }

        .owner-badge i {
            font-size: 0.75rem;
        }

        .owner-info {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 2rem;
        }

        .owner-avatar {
            width: 88px;
            height: 88px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--surface);
            font-size: 2.4rem;
            background: linear-gradient(135deg, var(--brand-gold), var(--brand-black));
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
            flex-shrink: 0;
        }

        .owner-details h3 {
            font-size: 1.75rem;
            color: var(--brand-black);
            margin: 0 0 0.2rem;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        .owner-details .owner-role {
            color: var(--brand-gold);
            margin: 0 0 0.5rem;
            font-size: 0.95rem;
            font-weight: 600;
        }

        .owner-details .owner-tagline {
            color: var(--text-muted);
            margin: 0;
            font-size: 0.92rem;
            line-height: 1.5;
            max-width: 420px;
        }

        .owner-contact-methods {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.7rem 1.25rem;
            background: var(--surface);
            border-radius: var(--radius-xl);
            text-decoration: none;
            color: var(--text);
            transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
            border: 1.5px solid var(--brand-gold-soft);
            font-size: 0.92rem;
            font-weight: 500;
            white-space: nowrap;
        }

        .contact-method:hover {
            background: var(--brand-gold);
            color: var(--surface);
            border-color: var(--brand-gold);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.12);
        }

        .contact-method i {
            font-size: 1rem;
        }

        /* FAQ Section */
        .faq-section {
            margin-bottom: 2rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .faq-container {
            max-width: 100%;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 1.25rem;
            margin-bottom: 1rem;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--brand-gold);
            transition: var(--transition);
        }

        .faq-item:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .faq-question {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .faq-question i {
            font-size: 1.2rem;
            color: var(--brand-gold);
            min-width: 20px;
        }

        .faq-question h4 {
            color: var(--brand-black);
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .faq-item p {
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
            padding-left: 2rem;
            font-size: 0.95rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-main-title {
                font-size: 2rem;
                flex-direction: column;
                gap: 0.5rem;
            }

            .contact-main-icon {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
                flex-direction: column;
                gap: 0.5rem;
            }

            .locations-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .owner-contact-card {
                padding: 1.75rem 1.25rem;
            }

            .owner-info {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 1.25rem;
                justify-items: center;
            }

            .owner-details .owner-tagline {
                margin-left: auto;
                margin-right: auto;
            }

            .owner-contact-methods {
                flex-direction: column;
                width: 100%;
            }

            .contact-method {
                justify-content: center;
            }

            .card-header, .card-content {
                padding: 1.5rem;
            }

            .faq-item {
                padding: 1.5rem;
            }

            .faq-question {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .faq-item p {
                padding-left: 0;
            }

            .contact-info {
                gap: 1rem;
            }

            .info-item {
                padding: 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .contact-header-section {
                margin-bottom: 2rem;
                padding: 1.5rem 1rem;
            }

            .contact-intro {
                font-size: 1rem;
            }

            .icon-wrapper {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .card-header h3 {
                font-size: 1.3rem;
            }

            .owner-details h4 {
                font-size: 1.5rem;
            }
        }
