/* =============================================
   JOSH ARKSEY SPORTS MASSAGE - SERVICES PAGE
   arksey-services-1.css
   
   COLOUR PALETTE:
   - White: #ffffff
   - Light grey: #f8f8f8
   - Dark/Black: #111111, #1a1a1a
   - Red accent: #ff0000, #cc0000
   
   TYPOGRAPHY SCALE (below hero ceiling):
   - Section h1: 2.4rem (desktop) | 2rem (tablet) | 1.7rem (mobile) | 1.45rem (small)
   - Section h2: 1.6rem (desktop) | 1.4rem (tablet) | 1.25rem (mobile) | 1.15rem (small)
   - Section p: 1.05rem (desktop) | 1rem (tablet) | 0.95rem (mobile) | 0.9rem (small)
   - Section button: 1rem (desktop) | 0.95rem (tablet) | 0.9rem (mobile) | 0.85rem (small)
   ============================================= */

/* =============================================
   BASIC RESET
   ============================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'K2D', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* =============================================
   FONT FACE - EUROSTILE EXTENDED TWO
   ============================================= */

@font-face {
    font-family: 'Eurostile Extended Two';
    src: url('/fonts/EurostileExtendedTwo.woff2') format('woff2'),
         url('/fonts/EurostileExtendedTwo.woff') format('woff'),
         url('/fonts/EurostileExtendedTwo.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* =============================================
   SERVICES HEADER SECTION
   ============================================= */

.arksey-services {
    padding: 100px 20px 70px;
    background: linear-gradient(180deg, #cc0000 0%, #1a1a1a 100%);
}

.arksey-services-container {
    max-width: 900px;
    margin: 0 auto;
}

.arksey-services-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arksey-services-label {
    display: block;
    font-family: 'K2D', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.arksey-services-title {
    font-family: 'Eurostile Extended Two', 'K2D', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
}

.arksey-services-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.arksey-services-subtitle {
    font-family: 'K2D', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 500px;
}


/* =============================================
   TREATMENT SECTIONS
   ============================================= */

.arksey-treatment-section {
    padding: 70px 20px;
    scroll-margin-top: 100px;
}

.arksey-treatment-light {
    background: #ffffff;
}

.arksey-treatment-dark {
    background: #111111;
}

.arksey-treatment-container {
    max-width: 900px;
    margin: 0 auto;
}


/* =============================================
   TREATMENT HEADER (Icon + Title)
   ============================================= */

.arksey-treatment-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.arksey-treatment-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111111;
    border-radius: 14px;
    flex-shrink: 0;
}

.arksey-treatment-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.arksey-treatment-icon-light {
    background: #ffffff;
}

.arksey-treatment-icon-light i {
    color: #ff0000;
}

.arksey-treatment-header h2 {
    font-family: 'Eurostile Extended Two', 'K2D', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #111111;
    margin: 0;
    line-height: 1.25;
}

.arksey-treatment-dark .arksey-treatment-header h2 {
    color: #ffffff;
}

.arksey-treatment-tagline {
    font-family: 'K2D', sans-serif;
    font-size: 1rem;
    color: #666666;
    margin: 0 0 30px 0;
    line-height: 1.5;
}

.arksey-treatment-dark .arksey-treatment-tagline {
    color: rgba(255, 255, 255, 0.7);
}


/* =============================================
   TREATMENT BODY (Description + Prices)
   ============================================= */

.arksey-treatment-body {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
}

.arksey-treatment-description p {
    font-family: 'K2D', sans-serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #444444;
    margin: 0 0 25px 0;
}

.arksey-treatment-dark .arksey-treatment-description p {
    color: rgba(255, 255, 255, 0.85);
}

.arksey-treatment-expect {
    font-family: 'K2D', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666666;
    padding: 20px 25px;
    background: #f8f8f8;
    border-radius: 12px;
    border-left: 3px solid #ff0000;
}

.arksey-treatment-expect strong {
    color: #111111;
    display: block;
    margin-bottom: 8px;
}

.arksey-treatment-dark .arksey-treatment-expect {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
}

.arksey-treatment-dark .arksey-treatment-expect strong {
    color: #ffffff;
}


/* =============================================
   PRICING TABLE
   ============================================= */

.arksey-treatment-pricing-table {
    background: #f8f8f8;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.arksey-pricing-table-header {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    background: #111111;
}

.arksey-pricing-table-header span {
    font-family: 'K2D', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.arksey-pricing-table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background 0.3s ease;
}

.arksey-pricing-table-row:last-child {
    border-bottom: none;
}

.arksey-pricing-table-row:hover {
    background: #ffffff;
}

.arksey-pricing-table-time {
    font-family: 'K2D', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #333333;
}

.arksey-pricing-table-cost {
    font-family: 'K2D', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff0000;
}


/* =============================================
   PRICING CARDS (legacy - kept for compatibility)
   ============================================= */

.arksey-treatment-prices {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.arksey-price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: #f8f8f8;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.arksey-price-item:hover {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 0, 0, 0.1);
}

.arksey-price-item-light {
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.1);
}

.arksey-price-item-light:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.arksey-price-time {
    font-family: 'K2D', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #111111;
}

.arksey-price-cost {
    font-family: 'K2D', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff0000;
}


/* =============================================
   SERVICES CTA
   ============================================= */

.arksey-services-cta {
    padding: 60px 20px;
    background: linear-gradient(145deg, #ff0000 0%, #cc0000 100%);
}

.arksey-services-cta-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.arksey-services-cta p {
    font-family: 'K2D', sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 30px 0;
}

.arksey-services-cta-button {
    display: inline-block;
    padding: 16px 40px;
    font-family: 'K2D', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ff0000;
    background: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.arksey-services-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: #f8f8f8;
}


/* =============================================
   TABLET (769px - 1024px)
   ============================================= */

@media (min-width: 769px) and (max-width: 1024px) {
    .arksey-services {
        padding: 80px 20px 50px;
    }
    
    .arksey-services-title {
        font-size: 2rem;
    }
    
    .arksey-services-subtitle {
        font-size: 1rem;
    }
    
    .arksey-treatment-section {
        padding: 60px 20px;
    }
    
    .arksey-treatment-header {
        gap: 18px;
        margin-bottom: 10px;
    }
    
    .arksey-treatment-icon {
        width: 55px;
        height: 55px;
        border-radius: 12px;
    }
    
    .arksey-treatment-icon i {
        font-size: 1.35rem;
    }
    
    .arksey-treatment-header h2 {
        font-size: 1.4rem;
    }
    
    .arksey-treatment-tagline {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .arksey-treatment-body {
        grid-template-columns: 1fr 280px;
        gap: 40px;
    }
    
    .arksey-treatment-description p {
        font-size: 1rem;
    }
    
    .arksey-treatment-expect {
        font-size: 0.92rem;
        padding: 18px 22px;
    }
    
    .arksey-pricing-table-header {
        padding: 14px 20px;
    }
    
    .arksey-pricing-table-header span {
        font-size: 0.8rem;
    }
    
    .arksey-pricing-table-row {
        padding: 16px 20px;
    }
    
    .arksey-pricing-table-time {
        font-size: 0.95rem;
    }
    
    .arksey-pricing-table-cost {
        font-size: 1.2rem;
    }
    
    .arksey-price-item {
        padding: 16px 20px;
    }
    
    .arksey-price-time {
        font-size: 0.95rem;
    }
    
    .arksey-price-cost {
        font-size: 1.3rem;
    }
    
    .arksey-services-cta {
        padding: 55px 20px;
    }
    
    .arksey-services-cta p {
        font-size: 1.05rem;
    }
    
    .arksey-services-cta-button {
        padding: 15px 36px;
        font-size: 0.95rem;
    }
}


/* =============================================
   MOBILE (max-width: 768px)
   ============================================= */

@media (max-width: 768px) {
    .arksey-services {
        padding: 60px 15px 40px;
    }
    
    .arksey-services-title {
        font-size: 1.7rem;
        padding-bottom: 18px;
    }
    
    .arksey-services-title::after {
        width: 60px;
    }
    
    .arksey-services-subtitle {
        font-size: 0.95rem;
    }
    
    .arksey-treatment-section {
        padding: 50px 15px;
    }
    
    .arksey-treatment-container {
        text-align: center;
    }
    
    .arksey-treatment-header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 10px;
    }
    
    .arksey-treatment-icon {
        width: 65px;
        height: 65px;
        border-radius: 16px;
    }
    
    .arksey-treatment-icon i {
        font-size: 1.5rem;
    }
    
    .arksey-treatment-header h2 {
        font-size: 1.35rem;
    }
    
    .arksey-treatment-tagline {
        font-size: 0.92rem;
        margin-bottom: 25px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .arksey-treatment-dark .arksey-treatment-tagline {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .arksey-treatment-body {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .arksey-treatment-description {
        text-align: center;
    }
    
    .arksey-treatment-description p {
        font-size: 0.95rem;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .arksey-treatment-dark .arksey-treatment-description p {
        color: rgba(255, 255, 255, 0.85);
    }
    
    .arksey-treatment-expect {
        font-size: 0.9rem;
        padding: 18px 20px;
        border-radius: 10px;
        text-align: left;
    }
    
    .arksey-treatment-dark .arksey-treatment-expect {
        background: rgba(255, 255, 255, 0.05);
        color: rgba(255, 255, 255, 0.7);
    }
    
    .arksey-treatment-dark .arksey-treatment-expect strong {
        color: #ffffff;
    }
    
    .arksey-treatment-pricing-table {
        border-radius: 12px;
    }
    
    .arksey-pricing-table-header {
        padding: 14px 18px;
    }
    
    .arksey-pricing-table-header span {
        font-size: 0.75rem;
    }
    
    .arksey-pricing-table-row {
        padding: 16px 18px;
    }
    
    .arksey-pricing-table-time {
        font-size: 0.95rem;
    }
    
    .arksey-pricing-table-cost {
        font-size: 1.15rem;
    }
    
    .arksey-treatment-prices {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 5px;
    }
    
    .arksey-price-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 18px 15px;
        border-radius: 10px;
        gap: 6px;
    }
    
    .arksey-price-item:hover {
        transform: none;
    }
    
    .arksey-price-time {
        font-size: 0.9rem;
    }
    
    .arksey-price-cost {
        font-size: 1.25rem;
    }
    
    .arksey-services-cta {
        padding: 50px 15px;
    }
    
    .arksey-services-cta p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .arksey-services-cta-button {
        padding: 14px 34px;
        font-size: 0.9rem;
    }
}


/* =============================================
   SMALL MOBILE (max-width: 480px)
   ============================================= */

@media (max-width: 480px) {
    .arksey-services {
        padding: 50px 12px 35px;
    }
    
    .arksey-services-title {
        font-size: 1.45rem;
        padding-bottom: 15px;
    }
    
    .arksey-services-title::after {
        width: 50px;
    }
    
    .arksey-services-subtitle {
        font-size: 0.9rem;
    }
    
    .arksey-treatment-section {
        padding: 40px 12px;
    }
    
    .arksey-treatment-header {
        gap: 12px;
        margin-bottom: 8px;
    }
    
    .arksey-treatment-icon {
        width: 58px;
        height: 58px;
        border-radius: 14px;
    }
    
    .arksey-treatment-icon i {
        font-size: 1.35rem;
    }
    
    .arksey-treatment-header h2 {
        font-size: 1.2rem;
    }
    
    .arksey-treatment-tagline {
        font-size: 0.85rem;
        margin-bottom: 22px;
    }
    
    .arksey-treatment-body {
        gap: 22px;
    }
    
    .arksey-treatment-description p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .arksey-treatment-expect {
        font-size: 0.85rem;
        padding: 15px 18px;
        border-left-width: 3px;
    }
    
    .arksey-treatment-expect strong {
        font-size: 0.88rem;
    }
    
    .arksey-treatment-pricing-table {
        border-radius: 10px;
    }
    
    .arksey-pricing-table-header {
        padding: 12px 15px;
    }
    
    .arksey-pricing-table-header span {
        font-size: 0.7rem;
    }
    
    .arksey-pricing-table-row {
        padding: 14px 15px;
    }
    
    .arksey-pricing-table-time {
        font-size: 0.9rem;
    }
    
    .arksey-pricing-table-cost {
        font-size: 1.05rem;
    }
    
    .arksey-treatment-prices {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .arksey-price-item {
        padding: 14px 12px;
        border-radius: 10px;
    }
    
    .arksey-price-time {
        font-size: 0.85rem;
    }
    
    .arksey-price-cost {
        font-size: 1.1rem;
    }
    
    .arksey-services-cta {
        padding: 40px 12px;
    }
    
    .arksey-services-cta p {
        font-size: 0.95rem;
        margin-bottom: 22px;
    }
    
    .arksey-services-cta-button {
        padding: 13px 28px;
        font-size: 0.85rem;
        width: 100%;
    }
}