/* ============================================================
   Sportswear Express — Global Stylesheet
   Shared across all pages via header.cfm
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --red: #ce202f;
    --red-dark: #a91a26;
    --red-light: #e02020;
    --black: #000000;
    --dark-grey: #3b3b3b;
    --light-grey: #f5f5f5;
    --mid-grey: #e0e0e0;
    --white: #ffffff;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --radius: 4px;
    --transition: 0.3s ease;
    --gold: #f0b429;
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--dark-grey);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR (Porto-style) ===== */
.top-bar {
    background: var(--light-grey);
    border-bottom: 1px solid #e1e1e1;
    font-size: 12px;
    color: #777;
    padding: 8px 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-left span { display: flex; align-items: center; gap: 5px; }
.top-bar-left i { color: var(--red); font-size: 11px; }
.top-bar-right { display: flex; gap: 15px; align-items: center; }
.top-bar-right a { color: #777; font-size: 14px; transition: color var(--transition); }
.top-bar-right a:hover { color: var(--red); }

/* ===== HEADER (Porto-style) ===== */
.header {
    background: var(--white);
    padding: 18px 0;
    border-bottom: 1px solid #e1e1e1;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-right { display: flex; align-items: center; gap: 25px; }
.header-search {
    display: flex;
    align-items: center;
    border: 2px solid #e1e1e1;
    border-radius: var(--radius);
    overflow: hidden;
    height: 42px;
}
.header-search input {
    border: none;
    padding: 0 15px;
    font-size: 13px;
    width: 260px;
    height: 100%;
    font-family: var(--font-body);
    outline: none;
}
.header-search button {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 0 16px;
    height: 100%;
    cursor: pointer;
    transition: background var(--transition);
}
.header-search button:hover { background: var(--red-dark); }
.header-icons { display: flex; gap: 18px; }
.header-icons a {
    color: var(--dark-grey);
    font-size: 20px;
    position: relative;
    transition: color var(--transition);
}
.header-icons a:hover { color: var(--red); }
.phone-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-grey);
}
.phone-header i {
    color: var(--red);
    font-size: 24px;
}
.phone-header .ph-label { font-size: 10px; color: #777; text-transform: uppercase; }
.phone-header .ph-number {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    display: block;
}
.phone-header .ph-number:hover { color: var(--red); }

/* Mobile toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--dark-grey);
    font-size: 24px;
    cursor: pointer;
}

/* ===== MAIN NAV BAR (Porto-style) ===== */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}
.main-nav {
    background: var(--dark-grey);
}
.main-nav .container {
    display: flex;
    align-items: stretch;
}
.nav-links {
    display: flex;
    align-items: stretch;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links > li {
    position: relative;
}
.nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 20px;
    height: 50px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li:hover > a {
    background: var(--red);
    color: var(--white);
}
.nav-links > li > a i.fa-chevron-down { font-size: 9px; opacity: 0.7; }

/* Nav CTA button */
.nav-cta {
    margin-left: auto;
}
.nav-cta > a {
    background: var(--red) !important;
}
.nav-cta > a:hover {
    background: var(--red-dark) !important;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid #e1e1e1;
    box-shadow: var(--shadow-lg);
    padding: 25px 30px;
    min-width: 620px;
    display: none;
    z-index: 999;
}
.nav-links > li:hover .mega-menu { display: flex; }
.mega-col { min-width: 180px; margin-right: 30px; }
.mega-col h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--red);
}
.mega-col ul { list-style: none; margin: 0; padding: 0; }
.mega-col ul li a {
    display: block;
    padding: 4px 0;
    font-size: 13px;
    color: #777;
    transition: all var(--transition);
}
.mega-col ul li a:hover { color: var(--red); padding-left: 5px; }

/* Simple Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid #e1e1e1;
    box-shadow: var(--shadow-md);
    min-width: 220px;
    display: none;
    z-index: 999;
}
.nav-links > li:hover .dropdown { display: block; }
.dropdown ul { list-style: none; margin: 0; padding: 0; }
.dropdown ul li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--dark-grey);
    border-bottom: 1px solid var(--light-grey);
    transition: all var(--transition);
}
.dropdown ul li a:hover { background: var(--light-grey); color: var(--red); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--dark-grey); }
.btn-dark {
    background: var(--dark-grey);
    color: var(--white);
    border-color: var(--dark-grey);
}
.btn-dark:hover { background: var(--black); border-color: var(--black); }

/* ===== SECTION STYLES ===== */
.section { padding: 80px 0; }
.section-grey { background: var(--light-grey); }
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}
.section-header p {
    font-size: 16px;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}
.section-header .accent-line {
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ===== PAGE HERO (service pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--dark-grey) 0%, var(--black) 100%);
    color: var(--white);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--red);
    opacity: 0.08;
    border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
    font-size: 14px;
    margin-bottom: 16px;
    opacity: 0.7;
}
.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { margin: 0 8px; }
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}
.page-hero h1 i { color: var(--red); margin-right: 12px; }
.page-hero h1 span { color: var(--red); }
.page-hero .breadcrumb { font-size: 14px; opacity: 0.7; }
.page-hero .breadcrumb a { color: var(--white); transition: opacity var(--transition); }
.page-hero .breadcrumb a:hover { opacity: 1; }
.page-hero .breadcrumb .sep { margin: 0 8px; }
.page-hero p {
    font-size: 18px;
    opacity: 0.85;
    max-width: 650px;
    line-height: 1.7;
}

/* ===== CONTENT SECTION ===== */
.content-section { padding: 60px 0; }
.content-section h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}
.content-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--dark-grey);
}
.content-columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}
.content-sidebar {
    background: var(--light-grey);
    border-radius: var(--radius);
    padding: 30px;
    border-left: 4px solid var(--red);
}
.content-sidebar h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
}
.content-sidebar ul li {
    padding: 8px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--mid-grey);
    display: flex;
    align-items: center;
    gap: 10px;
}
.content-sidebar ul li:last-child { border-bottom: none; }
.content-sidebar ul li i { color: var(--red); font-size: 14px; min-width: 16px; }

/* ===== INFO SECTION ===== */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.info-content h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}
.info-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}
.info-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}
.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.highlight-item i {
    color: var(--red);
    font-size: 18px;
    margin-top: 3px;
    min-width: 20px;
}
.highlight-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2px;
}
.highlight-item span {
    font-size: 13px;
    color: #777;
}
.info-image {
    background: var(--light-grey);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: #aaa;
    border: 2px dashed var(--mid-grey);
}
.info-image i { font-size: 48px; }
.info-image span { font-size: 14px; }

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-item {
    background: var(--light-grey);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: #aaa;
    border: 2px dashed var(--mid-grey);
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    font-size: 13px;
}
.gallery-item:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.gallery-item i { font-size: 32px; }
.gallery-item span { font-size: 12px; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* ===== PRICING TABLE ===== */
.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 700px;
}
.pricing-table thead th {
    background: var(--dark-grey);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 12px;
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pricing-table thead th:first-child {
    background: var(--red);
    text-align: left;
    padding-left: 20px;
    border-radius: 8px 0 0 0;
}
.pricing-table thead th:last-child { border-radius: 0 8px 0 0; }
.pricing-table tbody td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid var(--mid-grey);
}
.pricing-table tbody td:first-child {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--black);
    text-align: left;
    padding-left: 20px;
    background: rgba(206,32,47,0.04);
}
.pricing-table tbody tr:hover { background: rgba(206,32,47,0.04); }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:last-child td:first-child { border-radius: 0 0 0 8px; }
.pricing-table tbody tr:last-child td:last-child { border-radius: 0 0 8px 0; }
.pricing-note {
    font-size: 13px;
    color: #777;
    margin-top: 16px;
    font-style: italic;
}

/* ===== ADDITIONAL COSTS ===== */
.addl-costs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}
.addl-cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: var(--white);
    border: 1px solid var(--mid-grey);
    border-radius: var(--radius);
    font-size: 14px;
}
.addl-cost-item .cost-label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--black);
    font-size: 13px;
    text-transform: uppercase;
}
.addl-cost-item .cost-value {
    color: var(--red);
    font-weight: 700;
}

/* ===== FORM STYLES (shared) ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    border: 1px solid var(--mid-grey);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--dark-grey);
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
}
.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--red);
}

/* ===== CALCULATOR (embroidery style) ===== */
.calc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.calc-form {
    background: var(--white);
    border: 1px solid var(--mid-grey);
    border-radius: 8px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
}
.calc-form h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}
.calc-form > p {
    font-size: 14px;
    color: #777;
    margin-bottom: 24px;
}
.calc-result {
    background: var(--white);
    border: 2px solid var(--red);
    border-radius: 8px;
    padding: 36px;
    position: sticky;
    top: 100px;
}
.calc-result h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.calc-result h3 i { color: var(--red); }
.result-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-grey);
    font-size: 14px;
}
.result-line .label { color: #777; }
.result-line .value {
    font-weight: 600;
    color: var(--dark-grey);
}
.result-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0 0;
    margin-top: 6px;
    font-family: var(--font-heading);
}
.result-total .label {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
}
.result-total .value {
    font-size: 28px;
    font-weight: 800;
    color: var(--red);
}
.result-per-item {
    text-align: right;
    font-size: 13px;
    color: #777;
    margin-top: 4px;
    margin-bottom: 20px;
}
.result-note {
    font-size: 12px;
    color: #999;
    margin-top: 16px;
    line-height: 1.6;
    padding-top: 16px;
    border-top: 1px solid var(--light-grey);
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    background: linear-gradient(135deg, var(--dark-grey) 0%, var(--black) 100%);
    color: var(--white);
    padding: 80px 0;
}
.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.quote-info h2 {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
}
.quote-info h2 i { color: var(--red); margin-right: 10px; }
.quote-info p {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 28px;
}
.quote-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    margin-bottom: 14px;
}
.quote-features li i { color: var(--red); font-size: 16px; min-width: 20px; }
.quote-form-card {
    background: var(--white);
    border-radius: 8px;
    padding: 36px;
    color: var(--dark-grey);
}
.quote-form-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--red);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}
.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}
.cta-banner p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-banner .btn-outline {
    border-color: var(--white);
    color: var(--white);
}
.cta-banner .btn-outline:hover {
    background: var(--white);
    color: var(--red);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: all var(--transition);
}
.footer-social a:hover { background: var(--red); }
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
    font-size: 14px;
    transition: color var(--transition);
}
.footer ul li a:hover { color: var(--red); }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 14px;
}
.footer-contact li i {
    color: var(--red);
    margin-top: 3px;
    min-width: 16px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

/* ===== RESPONSIVE — 992px ===== */
@media (max-width: 992px) {
    .content-columns { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .info-image { max-height: 350px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .calc-wrapper { grid-template-columns: 1fr; }
    .calc-result { position: static; }
    .quote-grid { grid-template-columns: 1fr; }
    .addl-costs-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .page-hero h1 { font-size: 34px; }
}

/* ===== RESPONSIVE — 768px ===== */
@media (max-width: 768px) {
    .top-bar { display: none; }
    .header-search { display: none; }
    .phone-header { display: none; }
    .mobile-toggle { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 999;
    }
    .main-nav.open {
        display: block;
    }
    .main-nav .container { flex-direction: column; }
    .nav-links {
        flex-direction: column;
    }
    .nav-links > li > a {
        height: auto;
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .mega-menu {
        position: static !important;
        min-width: auto !important;
        box-shadow: none !important;
        border: none !important;
        padding: 10px 20px !important;
        flex-direction: column;
        background: var(--light-grey) !important;
    }
    .nav-links > li:hover .mega-menu { display: flex; flex-direction: column; }
    .mega-col { min-width: auto; margin-right: 0; margin-bottom: 10px; }
    .dropdown {
        position: static !important;
        min-width: auto !important;
        box-shadow: none !important;
        border: none !important;
    }
    .nav-links > li:hover .dropdown { display: block; }
    .nav-cta { margin-left: 0; }
    .page-hero { padding: 50px 0; }
    .page-hero h1 { font-size: 28px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .info-highlights { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 50px 0; }
}

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--mid-grey); }
.faq-item summary {
    padding: 18px 0;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--red);
    transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(90deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 0 18px; font-size: 15px; line-height: 1.7; color: #555; }

/* ===== UTILITY ===== */
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }
.btn-sm { display:inline-block;padding:10px 20px;background:var(--white);border:2px solid var(--mid-grey);border-radius:var(--radius);font-family:var(--font-heading);font-size:13px;font-weight:600;color:var(--dark-grey);text-decoration:none;transition:all var(--transition); }
.btn-sm:hover { border-color:var(--red);color:var(--red); }
