/* Global Styles for AltiusFit Website */

/* Contact Form Success/Error Messages */
.form-success, .form-error {
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    animation: slideIn 0.3s ease-out;
}

.form-success {
    background: linear-gradient(135deg, rgba(23, 255, 138, 0.1), rgba(23, 255, 138, 0.05));
    border: 1px solid rgba(23, 255, 138, 0.3);
    color: #17FF8A;
}

.form-error {
    background: linear-gradient(135deg, rgba(255, 59, 59, 0.1), rgba(255, 59, 59, 0.05));
    border: 1px solid rgba(255, 59, 59, 0.3);
    color: #FF3B3B;
}

.success-icon, .error-icon {
    font-size: 48px;
    margin-bottom: 10px;
    display: block;
}

.form-success h3, .form-error h3 {
    margin: 10px 0;
    font-size: 24px;
    font-weight: 600;
}

.form-success p, .form-error p {
    margin: 10px 0 0 0;
    opacity: 0.9;
    font-size: 16px;
}

/* Loading state for submit buttons */
.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-loading {
    display: none;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #fff;
    background-color: #0a0a0a;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

/* Container Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Special Offer Banner */
.special-offer-banner {
    background: linear-gradient(45deg, #17FF8A, #00E676);
    color: #000;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 2px 10px rgba(23, 255, 138, 0.3);
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-text {
    flex: 1;
    text-align: center;
}

.banner-link {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.banner-link:hover {
    opacity: 0.8;
}

.banner-close {
    background: none;
    border: none;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    position: absolute;
    right: 0;
}

.banner-close:hover {
    background: rgba(0, 0, 0, 0.1);
}


/* Banner hidden state */
.special-offer-banner.hidden {
    display: none;
}

/* Adjust header when banner is hidden */
.special-offer-banner.hidden + .header {
    top: 0;
}

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 44px; /* Account for banner height */
    left: 0;
    right: 0;
    z-index: 9999;
    border-bottom: 1px solid rgba(225, 243, 246, 0.2);
    padding: 20px 20px;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    height: 70px;
    display: flex;
    align-items: center;
}

.header.sticky {
    background: rgba(2, 1, 1, 0.3);
    backdrop-filter: blur(20px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.logo-section {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.logo {
    height: 28px;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: fill;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 24px 20px;
    display: block;
    position: relative;
}

.nav-menu a:hover {
    color: #17FF8A;
}

.nav-menu a.active {
    color: #17FF8A;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(23, 255, 138, 0.3);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-menu li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown a:last-child {
    border-bottom: none;
}

.cta-section {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cta-button {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 16px 32px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1em;
    transition: all 0.3s ease;
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: #17FF8A;
    color: #000;
    border-color: #17FF8A;
}



/* =====================================
   MOBILE MENU - PROFESSIONAL IMPLEMENTATION
   ===================================== */

/* Mobile hamburger button */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: #fff;
    z-index: 99999;
    position: relative;
    width: 44px;
    height: 44px;
    transition: all 0.3s ease;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger {
    width: 20px;
    height: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-toggle:hover .hamburger-line {
    background: #17FF8A;
}

/* Mobile menu overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh; /* Use dynamic viewport height for mobile browsers */
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(23, 255, 138, 0.1);
    /* Add safe area insets for mobile browsers */
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.mobile-menu.active {
    right: 0;
}

/* Mobile menu header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 70px;
    min-height: 70px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.mobile-menu-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.mobile-menu-logo img {
    height: 28px;
    width: auto;
    object-fit: fill;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.mobile-menu-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.mobile-close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #17FF8A;
}

.mobile-close::before,
.mobile-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-close::before {
    transform: rotate(45deg);
}

.mobile-close::after {
    transform: rotate(-45deg);
}

/* Mobile navigation */
.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    margin: 0;
    position: relative;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 18px 30px;
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    min-height: 60px;
    box-sizing: border-box;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    background: rgba(23, 255, 138, 0.04);
    color: #17FF8A;
    border-left-color: #17FF8A;
    transform: translateX(3px);
}

.mobile-nav-link.active {
    color: #17FF8A;
    font-weight: 600;
    background: rgba(23, 255, 138, 0.06);
    border-left-color: #17FF8A;
    border-left-width: 4px;
}



/* Mobile CTA section */
.mobile-cta-section {
    padding: 30px;
    padding-bottom: 30px; /* Fallback */
    padding-bottom: calc(30px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    margin-top: auto; /* Push to bottom */
    position: sticky;
    bottom: 0;
}

.mobile-cta-button {
    display: block;
    width: 100%;
    text-align: center;
    background: #17FF8A;
    color: #000;
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #17FF8A;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.mobile-cta-button:hover {
    background: transparent;
    color: #17FF8A;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(23, 255, 138, 0.3);
}

.mobile-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-cta-button:hover::before {
    left: 100%;
}

/* Body scroll lock */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    touch-action: none;
}

/* Prevent checkmarks from wrapping away from text */
.hero-description span {
    white-space: nowrap;
    display: inline-block;
}



/* Footer Styles */
.footer {
    background: #0a0a0a;
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #17FF8A, transparent);
}

.footer-logo {
    max-width: 120px;
    margin: 0 auto 20px;
}

.footer-logo img {
    width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
}

.footer-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.footer-share-btn.linkedin {
    color: #ffffff;
}

.footer-share-btn.linkedin:hover {
    background: #0077B5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.footer-share-btn.x {
    color: #ffffff;
}

.footer-share-btn.x:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-share-btn.facebook {
    color: #ffffff;
}

.footer-share-btn.facebook:hover {
    background: #4267B2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 103, 178, 0.3);
}

.footer-share-btn.instagram {
    color: #ffffff;
}

.footer-share-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.3);
}

.footer-copyright {
    color: rgba(255,255,255,0.7);
    font-size: 0.9em;
}

/* Main Content Area */
.main-content {
    padding-top: 114px; /* 70px header + 44px banner */
    min-height: calc(100vh - 114px);
}

/* Hero Section Styles */
.hero-section {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    animation: fadeIn 1.2s ease-out;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 1000px;
    z-index: 2;
    position: relative;
    padding: 20px 40px 120px;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    color: #17FF8A;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Fjalla One', arial;
    font-size: 4.5em;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
}

.hero-description {
    font-size: 1.0em;
    font-weight: 300;
    margin-bottom: 50px;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Section Styles */
.section {
    padding: 120px 0;
    position: relative;
    background: #0a0a0a;
}

.section-header {
    margin-bottom: 80px;
    text-align: center;
}

.section-subtitle {
    font-family: 'Fjalla One', arial;
    font-size: 1.2em;
    color: #17FF8A;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0;
    position: relative;
}

.section-title {
    font-family: 'Fjalla One', arial;
    font-size: 3em;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 400;
    white-space: nowrap;
}

.section-description {
    font-size: 1em;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    background: linear-gradient(45deg, #17FF8A, #00E676);
    color: #000;
    padding: 18px 32px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    line-height: 1;
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: #17FF8A;
    border-color: #17FF8A;
    box-shadow: 0 10px 30px rgba(23, 255, 138, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 32px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    line-height: 1;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #17FF8A;
    color: #000;
    box-shadow: 0 10px 30px rgba(23, 255, 138, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #17FF8A;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 18px 32px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    line-height: 1;
    cursor: pointer;
}

.btn-outline:hover {
    background: #17FF8A;
    color: #000;
    border-color: #17FF8A;
    box-shadow: 0 10px 30px rgba(23, 255, 138, 0.3);
}

/* Unified Section Cards */
.section-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.section-card {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0;
    min-height: 50vh;
    transition: all 0.3s ease;
    box-shadow: none;
    display: flex; /* Ensure cards display properly */
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(-90deg, #000000 0%, #000000 100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.section-card:hover {
    transform: none;
}

.section-card:hover::before {
    opacity: 0.82;
}

.section-card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 70px;
    width: 100%;
    height: 100%;
}

.section-card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-card-title {
    font-family: 'Fjalla One', arial;
    font-size: 3em;
    color: #17FF8A;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0;
    text-align: left;
}

.section-card-divider {
    width: 23%;
    height: 3px;
    background: #17FF8A;
    margin: -20px 0 0 0;
}

.section-card-description {
    font-size: 1em;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 0;
    text-align: left;
}

.section-card-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row-reverse;
    gap: 12px;
    margin-top: auto;
    padding: -12px;
}

.section-card-arrow {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.96);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1), 
                visibility 0s linear 0.2s;
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 25px;
    background: rgba(23, 255, 138, 0.06);
    border: 1px solid rgba(23, 255, 138, 0.15);
    backdrop-filter: blur(10px);
}

.section-card:hover .section-card-arrow {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    background: rgba(23, 255, 138, 0.12);
    border-color: rgba(23, 255, 138, 0.3);
    box-shadow: 0 4px 20px rgba(23, 255, 138, 0.15);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1), 
                visibility 0s linear 0s;
    animation: arrow-magnetic 3s ease-in-out infinite;
}

.arrow-text {
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    font-weight: 500;
    line-height: 1;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.arrow-icon {
    font-size: 28px;
    color: #17FF8A;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-card:hover .arrow-icon {
    transform: translateX(3px);
    text-shadow: 0 0 8px rgba(23, 255, 138, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes arrow-magnetic {
    0%, 100% {
        transform: translateX(0) scale(1);
    }
    25% {
        transform: translateX(2px) scale(1.02);
    }
    50% {
        transform: translateX(0) scale(1);
    }
    75% {
        transform: translateX(-1px) scale(0.98);
    }
}

/* Equipment Categories Section - Legacy Support */
.equipment-section {
    background: #0a0a0a;
    padding: 80px 0;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.equipment-card {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    overflow: hidden;
    border-radius: 15px;
    min-height: 360px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.equipment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(23,255,138,0.1) 100%);
    transition: all 0.6s ease;
    border-radius: 15px;
}

.equipment-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(23, 255, 138, 0.2);
}

.equipment-card:hover::before {
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(23,255,138,0.2) 100%);
}

/* Card Background Images */
.cardio-card {
    background-image: url('../images/Cardio.jpg');
    background-color: #1a1a1a; /* Fallback color */
}

.strength-card {
    background-image: url('../images/Strength.jpg');
    background-color: #1a1a1a; /* Fallback color */
}

.accessories-card {
    background-image: url('../images/Accessories.jpg');
    background-color: #1a1a1a; /* Fallback color */
}

.branding-card {
    background-image: url('../images/Marketing.jpg');
    background-color: #1a1a1a; /* Fallback color */
}

.merchandise-card {
    background-image: url('../images/Merch.jpg');
    background-color: #1a1a1a; /* Fallback color */
}

.furnishings-card {
    background-image: url('../images/Furnishings.jpg');
    background-color: #1a1a1a; /* Fallback color */
}

.equipment-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border-radius: 15px;
}

.equipment-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.equipment-title {
    font-family: 'Fjalla One', arial;
    font-size: 2em;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 15px;
}

.equipment-description {
    font-size: 1em;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    margin-bottom: 25px;
}

.equipment-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.equipment-arrow {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    background: rgba(23, 255, 138, 0.1);
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid rgba(23, 255, 138, 0.3);
    backdrop-filter: blur(10px);
}

.equipment-card:hover .equipment-arrow {
    opacity: 1;
    visibility: visible;
    animation: arrow-pulse 2s infinite;
}

/* Products Section */
.products-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.product-card {
    background: linear-gradient(135deg, #1f1f1f 0%, #141414 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.product-card:hover {
    border-color: rgba(23, 255, 138, 0.5);
    box-shadow: 0 25px 60px rgba(23, 255, 138, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(23, 255, 138, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.15);
}

.product-content {
    padding: 30px;
    text-align: left;
}

.product-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.85em;
    color: #17FF8A;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.product-title {
    font-family: 'Fjalla One', arial;
    font-size: 1.6em;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 400;
}

.product-btn {
    background: linear-gradient(45deg, #17FF8A, #00E676);
    color: #000;
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    box-shadow: 0 5px 15px rgba(23, 255, 138, 0.3);
}

.product-btn:hover {
    background: transparent;
    color: #17FF8A;
    border: 2px solid #17FF8A;
    box-shadow: 0 8px 25px rgba(23, 255, 138, 0.4);
}

.product-btn::after {
    content: "EXPLORE NOW";
}

/* Form Styles */
.form-field {
    margin-bottom: 25px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: #fff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #17FF8A;
    background: rgba(23, 255, 138, 0.1);
    box-shadow: 0 0 20px rgba(23, 255, 138, 0.3);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.form-field select {
    cursor: pointer;
    /* iOS-specific fixes */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

.form-field select option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .form-field select {
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
    }
    
    .contact-form-black .form-field select {
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
    }
}

.form-field textarea {
    height: 140px;
    resize: vertical;
}

/* Contact Section */
.contact-section {
    background: #1a1a1a;
    text-align: center;
    padding: 84px 0 36px;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

/* Black Background Contact Section (matching Contact Page) */
.contact-section-black {
    background: #0a0a0a !important;
    background-image: none !important;
    padding: 84px 0 84px;
}

.contact-section-black .section-header {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 60px;
}

.contact-section-black .section-subtitle {
    font-size: 1.2em;
    color: #17FF8A;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-section-black .section-title {
    font-family: 'Fjalla One', arial;
    font-size: 3em;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 30px;
}

.contact-section-black .section-description {
    font-size: 1em;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.contact-form-wrapper-black {
    max-width: 600px;
    margin: 0 auto;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-form-black {
    display: grid;
    gap: 14px;
    background: transparent !important;
    margin-top: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
}

.contact-form-black .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-form-black .form-field {
    position: relative;
}

.contact-form-black .form-field input,
.contact-form-black .form-field select,
.contact-form-black .form-field textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    transition: all 0.3s ease;
    height: 54px;
    box-sizing: border-box;
}

.contact-form-black .form-field textarea {
    height: auto;
    resize: vertical;
}

.contact-form-black .form-field input::placeholder,
.contact-form-black .form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-black .form-field input:focus,
.contact-form-black .form-field select:focus,
.contact-form-black .form-field textarea:focus {
    outline: none;
    border-color: #17FF8A;
    background: rgba(255, 255, 255, 0.05);
}

.contact-form-black .form-field select {
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    /* iOS-specific fixes */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

.contact-form-black .form-field select:invalid {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-black .form-field select:valid {
    color: #fff;
}

.contact-form-black .form-field select option {
    background: #1a1a1a;
    color: #fff;
}

.contact-form-submit-black {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1em;
    transition: all 0.3s ease;
    border-radius: 5px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    width: 100%;
}

.contact-form-submit-black:hover {
    background: #17FF8A !important;
    color: #000 !important;
    border-color: #17FF8A !important;
    transform: translateY(-2px);
}





.contact-form {
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-submit {
    background: linear-gradient(45deg, #17FF8A, #00E676);
    color: #000;
    padding: 18px 32px;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    line-height: 1;
    width: 100%;
}

.form-submit:hover {
    background: transparent;
    color: #17FF8A;
    border: 2px solid #17FF8A;
    box-shadow: 0 10px 30px rgba(23, 255, 138, 0.3);
}

/* About Page CTA Section */
section.cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

section.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(23, 255, 138, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Fjalla One', arial;
    font-size: 3.5em;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 400;
}

.cta-description {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    line-height: 1.6;
}

/* Animation */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(30px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container, .container-narrow {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 3.5em;
    }

    .section-title {
        font-size: 2.8em;
    }
}

@media (max-width: 1024px) {
    .section-cards-grid, .equipment-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }
}

@media (max-width: 768px) {
    /* Force proper mobile viewport */
    html {
        width: 100vw !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    body {
        width: 100vw !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .container, .container-narrow {
        padding: 0 20px;
    }

    .header {
        padding: 20px 20px !important;
        height: 70px !important;
        min-height: 70px !important;
        width: 100vw !important;
        max-width: 100vw !important;
        overflow: visible !important;
        box-sizing: border-box !important;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important; /* Banner is now at bottom */
    }

    .header-container {
        padding: 0 20px !important;
        overflow: visible !important;
        max-width: 100vw !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
    }

    .logo-section {
        flex: 1;
        max-width: calc(100% - 100px) !important;
        overflow: hidden !important;
    }

    /* Hide desktop navigation on mobile */
    .desktop-nav {
        display: none;
    }

    /* Hide desktop CTA button on mobile */
    .cta-section {
        display: none;
    }

    /* Show mobile toggle button */
    .mobile-toggle {
        display: flex !important;
        margin-left: 0 !important;
    }

    /* Mobile menu responsive width */
    .mobile-menu {
        max-width: 100vw;
        width: 100%;
    }

    .main-content {
        padding-top: 90px; /* 70px header + 20px spacing */
    }

    /* Banner mobile styles - Sticky at bottom */
    .special-offer-banner {
        position: fixed;
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        padding: 8px 0;
        font-size: 13px;
        z-index: 10000;
        box-shadow: 0 -2px 10px rgba(23, 255, 138, 0.3);
        border-top: 1px solid rgba(23, 255, 138, 0.2);
    }

    .banner-container {
        padding: 0 15px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .banner-text {
        text-align: left;
        line-height: 1.2;
        flex: 1;
        font-size: 10px;
        font-weight: 500;
    }

    .banner-heading {
        font-weight: 700;
        font-size: 11px;
        color: #000;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: block;
        margin-bottom: 1px;
    }

    .banner-text strong {
        color: #000;
        font-weight: 700;
    }

    .banner-close {
        position: static;
        align-self: center;
        margin: 0;
        width: 20px;
        height: 20px;
        font-size: 16px;
        flex-shrink: 0;
    }

    /* Adjust main content to account for bottom banner */
    .main-content {
        padding-bottom: 80px;
    }

    /* Mobile banner improvements */
    .special-offer-banner .banner-link {
        color: #000;
        text-decoration: underline;
        font-weight: 500;
        background: none;
        padding: 0;
        border-radius: 0;
        margin-left: 0;
        transition: opacity 0.2s ease;
    }

    .special-offer-banner .banner-link:hover {
        opacity: 0.7;
    }

    /* Ensure banner doesn't interfere with mobile menu */
    .mobile-menu {
        bottom: 60px;
    }

    .hero-section {
        min-height: 80vh;
        background-attachment: scroll; /* Performance: disable fixed backgrounds on mobile */
    }

    /* Performance: Disable fixed backgrounds on mobile for all elements */
    .hero-section,
    .section,
    .business-solutions-section,
    .testimonials-section,
    .contact-section,
    .about-section,
    .blog-section,
    .equipment-section,
    .solutions-section {
        background-attachment: scroll !important;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-subtitle {
        font-size: 0.9em;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: 2.8em;
        margin-bottom: 25px;
    }

    .hero-description {
        font-size: 0.9em;
        margin-bottom: 40px;
    }

    .section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 2.2em;
        white-space: normal; /* Fix: Allow text wrapping on mobile */
    }

    .btn-primary {
        padding: 18px 35px;
        font-size: 0.85em;
    }

    .section-cards-grid, .equipment-grid, .products-grid {
        padding: 0 20px;
        gap: 20px;
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .section-card, .equipment-card {
        min-height: 400px; /* Fixed height for mobile */
        border-radius: 15px;
    }

    .section-card-content, .equipment-content {
        padding: 30px;
    }

    .section-card-title, .equipment-title {
        font-size: 2.2em;
    }

    .section-card-description {
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    /* Ensure arrow is always visible on mobile since hover doesn't work well */
    .section-card .section-card-arrow {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        background: rgba(23, 255, 138, 0.15);
        border-color: rgba(23, 255, 138, 0.4);
    }

    .arrow-icon {
        font-size: 20px;
    }

    .arrow-text {
        font-size: 0.8em;
    }

    .contact-form {
        padding: 35px 25px;
        margin-top: 40px;
    }

    .contact-form-wrapper-black {
        padding: 30px 20px;
    }

    .contact-form-black .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-field {
        margin-bottom: 20px;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 18px 20px;
        font-size: 15px;
    }

    .form-submit {
        padding: 18px 40px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 12px 20px;
        font-size: 0.9em;
        min-height: 44px; /* Accessibility: minimum tap target size */
    }

    .hero-title {
        font-size: 2.4em; /* Improved readability */
    }

    .section-title {
        font-size: 2.0em; /* Improved readability */
        white-space: normal; /* Fix: Allow text wrapping on mobile */
    }

    .btn-primary {
        padding: 16px 30px;
        min-height: 44px; /* Accessibility: minimum tap target size */
    }

    .equipment-title {
        font-size: 1.6em;
    }

    .equipment-content {
        padding: 25px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .contact-form .form-field {
        margin-bottom: 20px;
    }

    .contact-form .form-submit {
        margin-top: 20px;
    }

    .cta-title {
        font-size: 2.5em;
    }

    .cta-description {
        font-size: 1em;
        margin-bottom: 40px;
    }

    .cta-container {
        padding: 0 20px;
    }

    /* Equipment cards mobile optimization */
    .section-card {
        min-height: 350px;
    }

    .section-card-content {
        padding: 25px;
    }

    .section-card-title {
        font-size: 1.8em;
    }

    .section-card-description {
        font-size: 0.85em;
    }
}

/* =====================================
   UNIFIED MOBILE HERO SYSTEM
   ===================================== */

/* Base Hero Styles - Mobile First */
.unified-hero {
    min-height: 60vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Better performance on mobile */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.unified-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.6));
    z-index: 1;
}

.unified-hero-content {
    max-width: 1000px;
    z-index: 2;
    position: relative;
    padding: 20px 40px;
}

.unified-hero-title {
    font-family: 'Fjalla One', arial;
    font-size: 4.5em;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
}

.unified-hero-description {
    font-size: 1.0em;
    font-weight: 300;
    margin-bottom: 50px;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Tablet Responsive */
@media (min-width: 768px) {
    .unified-hero {
        background-attachment: fixed;
    }
}

/* Mobile Specific Adjustments */
@media (max-width: 768px) {
    .unified-hero-content {
        padding: 0 20px;
    }

    .unified-hero-title {
        font-size: 2.5em;
    }

    .unified-hero-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .unified-hero-title {
        font-size: 2.2em;
    }

    .unified-hero-description {
        font-size: 1.0em;
    }

    .unified-hero-content {
        padding: 0 15px;
    }
}



/* =====================================
   SOLUTIONS PAGE MOBILE OPTIMIZATION
   ===================================== */

/* Mobile-First Solution Sections */
.solution-section-mobile {
    background: #0a0a0a;
    padding: 60px 0;
    position: relative;
}

.solution-section-mobile:nth-child(even) {
    background: #1a1a1a;
}

.solution-content-mobile {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.solution-header-mobile {
    text-align: center;
    margin-bottom: 50px;
}

.solution-badge-mobile {
    display: inline-block;
    background: rgba(23, 255, 138, 0.15);
    color: #17FF8A;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(23, 255, 138, 0.3);
    backdrop-filter: blur(10px);
}

.solution-title-mobile {
    font-family: 'Fjalla One', arial;
    font-size: 2.5em;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.solution-description-mobile {
    font-size: 1.1em;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.solution-image-mobile {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 0 auto 40px;
    display: block;
}

.solution-features-mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.solution-feature-mobile {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.solution-feature-mobile:hover {
    background: rgba(23, 255, 138, 0.08);
    border-color: rgba(23, 255, 138, 0.3);
    transform: translateY(-2px);
}

.solution-feature-header-mobile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.solution-feature-icon-mobile {
    width: 24px;
    height: 24px;
    color: #17FF8A;
    flex-shrink: 0;
}

.solution-feature-title-mobile {
    font-family: 'Fjalla One', arial;
    font-size: 1.2em;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.solution-feature-description-mobile {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.solution-cta-mobile {
    text-align: center;
    margin-top: 40px;
}

.solution-cta-button-mobile {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #17FF8A, #00E676);
    color: #000;
    padding: 16px 30px;
    text-decoration: none;
    font-family: 'Fjalla One', arial;
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(23, 255, 138, 0.3);
}

.solution-cta-button-mobile:hover {
    background: transparent;
    color: #17FF8A;
    border: 2px solid #17FF8A;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(23, 255, 138, 0.4);
}

/* Tablet Responsive */
@media (min-width: 768px) {
    .solution-section-mobile {
        padding: 80px 0;
    }
    
    .solution-content-mobile {
        padding: 0 40px;
    }
    
    .solution-title-mobile {
        font-size: 3.2em;
    }
    
    .solution-features-mobile {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .solution-feature-mobile {
        padding: 30px;
    }
}

/* Desktop Responsive */
@media (min-width: 1024px) {
    .solution-section-mobile {
        padding: 100px 0;
    }
    
    .solution-title-mobile {
        font-size: 3.8em;
    }
    
    .solution-features-mobile {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Pagination Styles */
.pagination-container {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.9em;
    font-weight: 500;
    min-width: 44px;
    text-align: center;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(23, 255, 138, 0.2);
    border-color: rgba(23, 255, 138, 0.4);
    color: #17FF8A;
}

.pagination-btn.active {
    background: linear-gradient(135deg, #17FF8A, #00E676);
    color: #000;
    border-color: #17FF8A;
    font-weight: 600;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-ellipsis {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9em;
    font-family: 'Inter', sans-serif;
    padding: 12px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .pagination-container {
        margin-top: 50px;
        gap: 18px;
    }
    
    .pagination {
        gap: 6px;
        padding: 0 20px;
    }
    
    .pagination-btn {
        padding: 11px 14px;
        font-size: 0.87em;
        min-width: 42px;
    }
    
    .pagination-ellipsis {
        padding: 12px 7px;
        font-size: 0.85em;
    }
}

/* Mobile Specific */
@media (max-width: 480px) {
    .pagination-container {
        margin-top: 40px;
        gap: 15px;
    }
    
    .pagination {
        gap: 4px;
        padding: 0 15px;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .pagination::-webkit-scrollbar {
        display: none;
    }
    
    .pagination-btn {
        padding: 10px 12px;
        font-size: 0.85em;
        min-width: 40px;
        flex-shrink: 0;
    }
    
    .pagination-ellipsis {
        padding: 12px 6px;
        font-size: 0.8em;
        flex-shrink: 0;
    }
    
    .pagination-info {
        font-size: 0.8em;
        padding: 0 15px;
    }

    .solution-section-mobile {
        padding: 50px 0;
    }
    
    .solution-content-mobile {
        padding: 0 15px;
    }
    
    .solution-header-mobile {
        margin-bottom: 40px;
    }
    
    .solution-badge-mobile {
        font-size: 0.75em;
        padding: 6px 16px;
        margin-bottom: 15px;
    }
    
    .solution-title-mobile {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    
    .solution-description-mobile {
        font-size: 1em;
        margin-bottom: 30px;
    }
    
    .solution-feature-mobile {
        padding: 20px;
    }
    
    .solution-feature-title-mobile {
        font-size: 1.1em;
    }
    
    .solution-cta-button-mobile {
        padding: 14px 26px;
        font-size: 0.9em;
    }
}

/* =====================================
   BLOG CONTENT LINK STYLES
   ===================================== */

/* Consistent link styling for blog content */
.blog-post-content a {
    color: #17FF8A;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(23, 255, 138, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.blog-post-content a:hover {
    color: #00E676;
    border-bottom-color: #00E676;
    text-shadow: 0 0 8px rgba(23, 255, 138, 0.4);
}

.blog-post-content a:focus {
    outline: 2px solid #17FF8A;
    outline-offset: 2px;
    border-radius: 2px;
}

/* External link indicator */
.blog-post-content a[target="_blank"]::after {
    content: "↗";
    font-size: 0.8em;
    margin-left: 4px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.blog-post-content a[target="_blank"]:hover::after {
    opacity: 1;
} 