/* Full page styles for prislista.cfm (divergent chrome kept inline; app.css loaded first for shared baseline/cache). */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --deep: #ffffff;
            --navy: #f4f5f7;
            --slate: #e5e7eb;
            --gold: #f2ea25;
            --gold-light: #f5ef5a;
            --gold-dark: #c4bd00;
            --gold-glow: rgba(242, 234, 37, 0.12);
            --green: #1a1a1a;
            --green-mid: #404040;
            --green-glow: rgba(0, 0, 0, 0.05);
            --cream: #1a1a2e;
            --text-muted: #6b7280;
            --text-body: #374151;
            --glass: rgba(255, 255, 255, 0.92);
            --glass-border: rgba(0, 0, 0, 0.08);
            --radius: 16px;
            --radius-sm: 10px;
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Outfit', system-ui, sans-serif;
        }

        html { scroll-behavior: smooth; font-size: 16px; }

        body {
            font-family: var(--font-body);
            background: var(--deep);
            color: var(--text-body);
            -webkit-font-smoothing: antialiased;
        }

        /* ─── NAV ─── */
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            padding: 0.75rem 3rem;
            display: flex; align-items: center; justify-content: space-between;
            background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(24px);
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
            transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
        }

        .nav-logo { text-decoration: none; display: flex; align-items: center; position: relative; z-index: 101; }
        .nav-logo img { height: 120px; width: auto; margin: 0 0 -60px 0; }

        .nav-links {
            display: flex; gap: 2rem; list-style: none; align-items: center;
        }

        .nav-links a {
            color: #1a1a1a; text-decoration: none;
            font-size: 0.85rem; font-weight: 500;
            letter-spacing: 0.05em; text-transform: uppercase;
            transition: color 0.3s; position: relative;
        }

        .nav-links a::after {
            content: ''; position: absolute; bottom: -4px; left: 0;
            width: 0; height: 1px; background: var(--green); transition: width 0.3s;
        }

        .nav-links a:hover { color: var(--green); }
        .nav-links a:hover::after { width: 100%; }
        .nav-links a.active { color: var(--green); }
        .nav-links a.active::after { width: 100%; }

        .nav-cta {
            background: transparent; border: 1px solid var(--green);
            color: var(--green) !important; padding: 0.6rem 1.5rem;
            border-radius: 100px; font-size: 0.8rem !important;
            letter-spacing: 0.1em !important; transition: all 0.3s !important; cursor: pointer;
        }

        .nav-cta:hover { background: var(--green) !important; color: #fff !important; }
        .nav-cta::after { display: none !important; }

        .nav-hamburger {
            display: none; flex-direction: column; gap: 5px;
            cursor: pointer; padding: 4px; z-index: 110;
        }

        .nav-hamburger span {
            width: 24px; height: 2px; background: #1a1a1a; transition: all 0.3s;
        }

        .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .nav-hamburger.open span:nth-child(2) { opacity: 0; }
        .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        .nav-mobile {
            display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(24px);
            z-index: 105; flex-direction: column; align-items: center;
            justify-content: center; gap: 2rem;
        }

        .nav-mobile.open { display: flex; }

        .nav-mobile a {
            color: var(--cream); text-decoration: none; font-size: 1.25rem;
            font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
            transition: color 0.3s;
        }

        .nav-mobile a:hover { color: var(--green); }

        /* ─── PAGE HERO ─── */
        .page-hero {
            padding: 10rem 3rem 5rem;
            text-align: center;
            background: var(--navy);
        }

        .page-hero .section-label {
            font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
            text-transform: uppercase; color: var(--green-mid); margin-bottom: 1rem;
        }

        .page-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700; color: var(--cream); margin-bottom: 1rem;
        }

        .page-hero p {
            color: var(--text-muted); font-size: 1.1rem;
            max-width: 560px; margin: 0 auto; line-height: 1.7; font-weight: 300;
        }

        /* ─── SECTIONS ─── */
        section { padding: 5rem 3rem; }

        .section-label {
            font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
            text-transform: uppercase; color: var(--green-mid); margin-bottom: 1rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700; color: var(--cream);
            margin-bottom: 1rem; line-height: 1.15;
        }

        .section-desc {
            color: var(--text-muted); max-width: 560px;
            line-height: 1.7; font-weight: 300; font-size: 1.05rem;
        }

        /* ─── PARKING PRICE ─── */
        .parking-price {
            max-width: 900px;
            margin: 0 auto;
        }

        .parking-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .parking-header .section-desc { margin: 0 auto; }

        .price-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .price-highlight-card {
            background: #fff;
            border: 2px solid rgba(0, 0, 0, 0.15);
            border-radius: var(--radius);
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s;
        }

        .price-highlight-card:hover {
            border-color: var(--green);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }

        .price-highlight-card.primary {
            background: var(--green);
            border-color: var(--green);
            color: #fff;
        }

        .price-highlight-card.primary .phc-label,
        .price-highlight-card.primary .phc-note { color: rgba(255, 255, 255, 0.7); }
        .price-highlight-card.primary .phc-price { color: var(--gold); }

        .phc-label {
            font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
            text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem;
        }

        .phc-price {
            font-family: var(--font-display);
            font-size: 3rem; font-weight: 700; color: var(--green);
            margin-bottom: 0.25rem;
        }

        .phc-note {
            font-size: 0.85rem; color: var(--text-muted); font-weight: 300;
        }

        /* Price table */
        .price-table-wrapper {
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: var(--radius);
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .price-table {
            width: 100%;
            border-collapse: collapse;
        }

        .price-table thead th {
            padding: 1rem 1.5rem;
            font-size: 0.7rem; font-weight: 600;
            letter-spacing: 0.1em; text-transform: uppercase;
            color: var(--text-muted); text-align: left;
            border-bottom: 2px solid rgba(0, 0, 0, 0.06);
            background: var(--navy);
        }

        .price-table thead th:last-child { text-align: right; }

        .price-table tbody td {
            padding: 0.85rem 1.5rem;
            font-size: 0.9rem; color: var(--text-body);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }

        .price-table tbody td:last-child {
            text-align: right; font-weight: 600; color: var(--cream);
        }

        .price-table tbody tr:hover { background: rgba(0, 0, 0, 0.02); }

        .price-table tbody tr.highlight {
            background: var(--green-glow);
        }

        .price-table tbody tr.highlight td {
            color: var(--green); font-weight: 600;
        }

        .price-note {
            background: var(--gold-glow);
            border: 1px solid rgba(242, 234, 37, 0.3);
            border-radius: var(--radius-sm);
            padding: 1rem 1.5rem;
            font-size: 0.85rem;
            color: var(--text-body);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        /* ─── EV CHARGING ─── */
        .ev-section {
            background: var(--navy);
        }

        .ev-inner {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .ev-card {
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: var(--radius);
            padding: 2.5rem;
            text-align: center;
        }

        .ev-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .ev-price {
            font-family: var(--font-display);
            font-size: 2.5rem; font-weight: 700;
            color: var(--green); margin-bottom: 0.5rem;
        }

        .ev-label {
            color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem;
        }

        .connector-badges {
            display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap;
        }

        .connector-badge {
            background: var(--green-glow);
            border: 1px solid rgba(0, 0, 0, 0.15);
            color: var(--green);
            padding: 0.35rem 0.85rem;
            border-radius: 100px;
            font-size: 0.75rem; font-weight: 600;
        }

        .ev-features { text-align: left; }

        .ev-features li {
            display: flex; align-items: flex-start; gap: 0.75rem;
            padding: 0.6rem 0; font-size: 0.9rem; color: var(--text-body);
            list-style: none;
        }

        .ev-features li::before {
            content: '\2713'; color: var(--green); font-weight: 700;
            font-size: 0.8rem; margin-top: 0.15rem; flex-shrink: 0;
        }

        /* ─── CAR CARE PRICES ─── */
        .carcare-section {
            max-width: 1100px;
            margin: 0 auto;
        }

        .carcare-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .carcare-header .section-desc { margin: 0 auto; }

        .carcare-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .carcare-card {
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: var(--radius);
            padding: 2rem;
            transition: all 0.3s;
            position: relative;
        }

        .carcare-card:hover {
            border-color: rgba(0, 0, 0, 0.2);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
        }

        .carcare-card.popular {
            border-color: var(--green);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .popular-badge {
            position: absolute;
            top: -10px; right: 1.5rem;
            background: var(--green);
            color: #fff;
            font-size: 0.65rem; font-weight: 700;
            letter-spacing: 0.1em; text-transform: uppercase;
            padding: 0.3rem 0.85rem;
            border-radius: 100px;
        }

        .carcare-card h3 {
            font-family: var(--font-display);
            font-size: 1.2rem; font-weight: 600;
            color: var(--cream); margin-bottom: 0.5rem;
        }

        .carcare-card .cc-price {
            font-family: var(--font-display);
            font-size: 1.75rem; font-weight: 700;
            color: var(--green); margin-bottom: 1rem;
        }

        .carcare-card p {
            font-size: 0.85rem; color: var(--text-muted);
            line-height: 1.6;
        }

        /* Quill editor output: <ol><li data-list="bullet"> rendered as bullet list */
        .carcare-card ol {
            list-style: none; padding: 0; margin: 0;
        }
        .carcare-card ol li[data-list="bullet"] {
            display: flex; align-items: flex-start; gap: 0.6rem;
            padding: 0.4rem 0; font-size: 0.85rem; color: var(--text-body);
        }
        .carcare-card ol li[data-list="bullet"]::before {
            content: '\2713'; color: var(--green); font-weight: 700;
            font-size: 0.75rem; margin-top: 0.2rem; flex-shrink: 0;
        }
        .carcare-card .ql-ui { display: none; }

        /* ─── BUSINESS ─── */
        .business-section {
            background: var(--navy);
        }

        .business-inner {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .business-inner .section-desc { margin: 0 auto 2rem; }

        .business-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
            text-align: left;
        }

        .business-feature {
            display: flex; align-items: center; gap: 0.75rem;
            font-size: 0.9rem; color: var(--text-body);
        }

        .business-feature::before {
            content: '\2713'; color: var(--green); font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
        }

        .btn-contact {
            display: inline-block;
            background: linear-gradient(135deg, var(--green), var(--green-mid));
            color: var(--gold);
            text-decoration: none;
            padding: 1rem 2.5rem;
            border-radius: var(--radius-sm);
            font-weight: 700; font-size: 0.85rem;
            letter-spacing: 0.08em; text-transform: uppercase;
            transition: all 0.3s;
        }

        .btn-contact:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        /* ─── FOOTER ─── */
        .footer {
            background: var(--navy);
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            padding: 4rem 3rem 2rem;
        }

        .footer-grid {
            display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem; max-width: 1200px; margin: 0 auto 3rem;
        }

        .footer-brand .nav-logo { display: inline-block; margin-bottom: 1rem; }
        .footer-brand .nav-logo img { height: 60px; margin: 0; }
        .footer-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; max-width: 300px; }
        .footer-aaa-img { width: 125px; height: auto; display: block; margin-top: 25px; }

        .footer-col h4 {
            font-family: var(--font-display); font-size: 1rem; font-weight: 600;
            color: var(--cream); margin-bottom: 1.25rem;
        }

        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 0.6rem; }
        .footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
        .footer-col a:hover { color: var(--green); }
        .footer-col .contact-item { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.6rem; }

        .footer-bottom {
            max-width: 1200px; margin: 0 auto; padding-top: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            text-align: center; font-size: 0.8rem; color: var(--text-muted);
        }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 768px) {
            .nav { padding: 0.6rem 1.5rem; }
            .nav-logo img { height: 90px; margin: 5px 0 -38px 0; }
            .nav-links { display: none; }
            .nav-hamburger { display: flex; }
            .page-hero { padding: 8rem 1.5rem 3rem; }
            section { padding: 3rem 1.5rem; }
            .price-highlights { grid-template-columns: 1fr; }
            .ev-inner { grid-template-columns: 1fr; }
            .carcare-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
        }
