/* =============================================
   JOSH ARKSEY SPORTS MASSAGE - CONTACT PAGE
   arksey-contact-1.css
   
   TYPOGRAPHY SCALE (below hero ceiling):
   - Section h1: 2.4rem (desktop) | 2rem (tablet) | 1.7rem (mobile) | 1.45rem (small)
   - Card h3: 1.1rem consistent across devices
   - Section p: 1.05rem (desktop) | 1rem (tablet) | 0.95rem (mobile) | 0.9rem (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;
}


/* =============================================
   CONTACT SECTION
   ============================================= */

.arksey-contact {
    padding: 100px 20px;
    background: #ffffff;
}

.arksey-contact-container {
    max-width: 1000px;
    margin: 0 auto;
}


/* =============================================
   CONTACT HEADER
   ============================================= */

.arksey-contact-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arksey-contact-label {
    display: block;
    font-family: 'K2D', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff0000;
    margin-bottom: 15px;
}

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

.arksey-contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    border-radius: 2px;
}

.arksey-contact-subtitle {
    font-family: 'K2D', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666666;
    margin: 0;
    max-width: 450px;
}


/* =============================================
   CONTACT GRID
   ============================================= */

.arksey-contact-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
}


/* =============================================
   CONTACT INTRO (Image + Text)
   ============================================= */

.arksey-contact-intro {
    /* Left column */
}

.arksey-contact-image {
    position: relative;
    margin-bottom: 25px;
}

.arksey-contact-image::before {
    content: '';
    position: absolute;
    top: 12px;
    left: -12px;
    right: 12px;
    bottom: -12px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border-radius: 14px;
    opacity: 0.1;
    z-index: 0;
}

.arksey-contact-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.arksey-contact-intro-text p {
    font-family: 'K2D', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #666666;
    margin: 0;
}


/* =============================================
   CONTACT METHODS (Cards)
   ============================================= */

.arksey-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.arksey-contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 25px;
    background: #f8f8f8;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.arksey-contact-card:hover {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.arksey-contact-card-primary {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.arksey-contact-card-primary:hover {
    background: linear-gradient(135deg, #e60000 0%, #b30000 100%);
    border-color: transparent;
    box-shadow: 0 10px 35px rgba(255, 0, 0, 0.25);
}

.arksey-contact-card-book {
    background: #333333;
}

.arksey-contact-card-book:hover {
    background: #444444;
    border-color: transparent;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.arksey-contact-card-book .arksey-contact-card-icon {
    background: rgba(255, 255, 255, 0.15);
}

.arksey-contact-card-book .arksey-contact-card-icon i {
    color: #ffffff;
}

.arksey-contact-card-book .arksey-contact-card-content h3 {
    color: #ffffff;
}

.arksey-contact-card-book .arksey-contact-card-content span {
    color: rgba(255, 255, 255, 0.8);
}

.arksey-contact-card-book .arksey-contact-card-arrow i {
    color: rgba(255, 255, 255, 0.5);
}

.arksey-contact-card-book:hover .arksey-contact-card-arrow i {
    color: #ffffff;
}

.arksey-contact-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.arksey-contact-card-icon i {
    font-size: 1.2rem;
    color: #ff0000;
}

.arksey-contact-card-primary .arksey-contact-card-icon {
    background: rgba(255, 255, 255, 0.2);
}

.arksey-contact-card-primary .arksey-contact-card-icon i {
    color: #ffffff;
}

.arksey-contact-card-icon-fb {
    background: rgba(24, 119, 242, 0.1);
}

.arksey-contact-card-icon-fb i {
    color: #1877f2;
}

.arksey-contact-card-content {
    flex: 1;
    min-width: 0;
}

.arksey-contact-card-content h3 {
    font-family: 'K2D', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111111;
    margin: 0 0 4px 0;
}

.arksey-contact-card-primary .arksey-contact-card-content h3 {
    color: #ffffff;
}

.arksey-contact-card-content span {
    font-family: 'K2D', sans-serif;
    font-size: 0.9rem;
    color: #666666;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.arksey-contact-card-primary .arksey-contact-card-content span {
    color: rgba(255, 255, 255, 0.9);
}

.arksey-contact-card-arrow {
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.arksey-contact-card-arrow i {
    font-size: 0.85rem;
    color: #cccccc;
    transition: all 0.3s ease;
}

.arksey-contact-card:hover .arksey-contact-card-arrow i {
    color: #ff0000;
    transform: translateX(3px);
}

.arksey-contact-card-primary .arksey-contact-card-arrow i {
    color: rgba(255, 255, 255, 0.6);
}

.arksey-contact-card-primary:hover .arksey-contact-card-arrow i {
    color: #ffffff;
}


/* =============================================
   CONTACT NOTE
   ============================================= */

.arksey-contact-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 30px;
    background: #f8f8f8;
    border-radius: 12px;
    text-align: center;
}

.arksey-contact-note i {
    font-size: 1.1rem;
    color: #ff0000;
}

.arksey-contact-note p {
    font-family: 'K2D', sans-serif;
    font-size: 0.95rem;
    color: #666666;
    margin: 0;
}


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

@media (min-width: 769px) and (max-width: 1024px) {
    .arksey-contact {
        padding: 80px 20px;
    }
    
    .arksey-contact-header {
        margin-bottom: 50px;
    }
    
    .arksey-contact-title {
        font-size: 2rem;
    }
    
    .arksey-contact-subtitle {
        font-size: 1rem;
    }
    
    .arksey-contact-grid {
        grid-template-columns: 280px 1fr;
        gap: 40px;
        margin-bottom: 45px;
    }
    
    .arksey-contact-card {
        padding: 20px 22px;
        gap: 18px;
    }
    
    .arksey-contact-card-icon {
        width: 46px;
        height: 46px;
    }
    
    .arksey-contact-card-icon i {
        font-size: 1.1rem;
    }
    
    .arksey-contact-card-content h3 {
        font-size: 1.05rem;
    }
    
    .arksey-contact-card-content span {
        font-size: 0.88rem;
    }
}


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

@media (max-width: 768px) {
    .arksey-contact {
        padding: 60px 15px;
        overflow-x: hidden;
    }
    
    .arksey-contact-container {
        max-width: 100%;
    }
    
    .arksey-contact-header {
        margin-bottom: 40px;
    }
    
    .arksey-contact-title {
        font-size: 1.7rem;
        padding-bottom: 18px;
    }
    
    .arksey-contact-title::after {
        width: 60px;
    }
    
    .arksey-contact-subtitle {
        font-size: 0.95rem;
    }
    
    .arksey-contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 35px;
    }
    
    .arksey-contact-intro {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        text-align: center;
    }
    
    .arksey-contact-image {
        max-width: 200px;
        width: 100%;
        margin: 0 auto;
    }
    
    .arksey-contact-image::before {
        top: 8px;
        left: -8px;
        right: 8px;
        bottom: -8px;
        border-radius: 12px;
    }
    
    .arksey-contact-image img {
        border-radius: 12px;
    }
    
    .arksey-contact-intro-text {
        width: 100%;
    }
    
    .arksey-contact-intro-text p {
        font-size: 0.95rem;
        line-height: 1.75;
        text-align: center;
    }
    
    .arksey-contact-methods {
        gap: 12px;
        width: 100%;
    }
    
    .arksey-contact-card {
        padding: 18px 18px;
        gap: 15px;
        border-radius: 12px;
        width: 100%;
    }
    
    .arksey-contact-card:hover {
        transform: none;
    }
    
    .arksey-contact-card-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        flex-shrink: 0;
    }
    
    .arksey-contact-card-icon i {
        font-size: 1.05rem;
    }
    
    .arksey-contact-card-content {
        flex: 1;
        min-width: 0;
    }
    
    .arksey-contact-card-content h3 {
        font-size: 1rem;
    }
    
    .arksey-contact-card-content span {
        font-size: 0.85rem;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .arksey-contact-card-arrow {
        width: 25px;
        flex-shrink: 0;
    }
    
    .arksey-contact-note {
        padding: 18px 20px;
        gap: 10px;
        border-radius: 10px;
    }
    
    .arksey-contact-note i {
        font-size: 1rem;
    }
    
    .arksey-contact-note p {
        font-size: 0.9rem;
        text-align: left;
    }
}


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

@media (max-width: 480px) {
    .arksey-contact {
        padding: 50px 12px;
        overflow-x: hidden;
    }
    
    .arksey-contact-header {
        margin-bottom: 35px;
    }
    
    .arksey-contact-title {
        font-size: 1.45rem;
        padding-bottom: 15px;
    }
    
    .arksey-contact-title::after {
        width: 50px;
    }
    
    .arksey-contact-subtitle {
        font-size: 0.9rem;
    }
    
    .arksey-contact-grid {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .arksey-contact-intro {
        gap: 20px;
    }
    
    .arksey-contact-image {
        max-width: 160px;
    }
    
    .arksey-contact-image::before {
        top: 6px;
        left: -6px;
        right: 6px;
        bottom: -6px;
        border-radius: 10px;
    }
    
    .arksey-contact-image img {
        border-radius: 10px;
    }
    
    .arksey-contact-intro-text p {
        font-size: 0.9rem;
    }
    
    .arksey-contact-methods {
        gap: 10px;
    }
    
    .arksey-contact-card {
        padding: 15px 14px;
        gap: 12px;
        border-radius: 10px;
    }
    
    .arksey-contact-card-icon {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }
    
    .arksey-contact-card-icon i {
        font-size: 0.95rem;
    }
    
    .arksey-contact-card-content h3 {
        font-size: 0.92rem;
    }
    
    .arksey-contact-card-content span {
        font-size: 0.8rem;
    }
    
    .arksey-contact-card-arrow {
        width: 20px;
    }
    
    .arksey-contact-card-arrow i {
        font-size: 0.75rem;
    }
    
    .arksey-contact-note {
        flex-direction: column;
        padding: 16px 14px;
        gap: 8px;
    }
    
    .arksey-contact-note p {
        font-size: 0.85rem;
        text-align: center;
    }
}