/*
Theme Name: Fitco Custom
Theme URI: https://www.fitcoindia.com/
Author: FITCO
Author URI: https://www.fitcoindia.com/
Description: A custom WordPress theme for FITCO with flexible header and footer, designed for injecting different HTML content into pages.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fitco-custom
Tags: custom-header, custom-menu, flexible-header, white-label
*/

:root {
    --primary-red: #a6281f;
    --primary-red-hover: #8a1f17;
    --navy-blue: #A65323;
    --navy-blue-hover: #7B3B1A;
    --navy-blue-light: #D27B45;
    --text-dark: #333333;
    --text-light: #555555;
    --bg-white: #ffffff;
    --bg-off-white: #f9fafb;
    --border-light: #e5e7eb;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --container-width: 1400px;
}

html {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main Wrapper - Match working pages structure */
body {
    width: 100%;
    min-height: 100vh;
    /* iOS Safari viewport height fix */
    min-height: -webkit-fill-available;
    background: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.6;
    font-size: 16px;
    /* Apple font smoothing */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fix for iOS Safari input styling */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="password"],
textarea {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0; /* Reset iOS rounded corners */
}

/* ==========================================================================
   Universal Image Protection - Prevent All Images from Expanding to 100%
   ========================================================================== */

img {
    max-width: 100%;
    height: auto;
    display: block;
    width: auto !important; /* Prevent images from forcing 100% width */
    object-fit: contain; /* Maintain aspect ratio */
}

/* Logos and Brand Images - Universal Protection */
img[src*="logo" i],
img[src*="Logo" i],
img[src*="LOGO" i],
img[alt*="logo" i],
img[alt*="Logo" i],
img[class*="logo" i],
img[class*="brand" i] {
    max-width: 250px !important;
    max-height: 100px !important;
    height: auto !important;
    width: auto !important;
    object-fit: contain !important;
}

/* Product and Content Images - Contain within containers */
img[src*="product" i],
img[src*="uploads" i],
img[class*="product" i],
img[class*="image" i] {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
}

/* ==========================================================================
   Custom HTML Page Protection - Prevent Theme CSS Conflicts
   ========================================================================== */

/* Button Style Protection - Prevent theme button styles from affecting custom pages */
.carver-read-more-btn,
.wabash-read-more-btn,
.kopp-read-more-btn,
.carver-hero-cta-button,
.wabash-hero-cta-button,
.kopp-hero-cta-button {
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: normal !important;
    letter-spacing: inherit !important;
    text-transform: none !important;
    padding: inherit !important;
    border-radius: inherit !important;
    box-shadow: none !important;
}

/* Typography Protection - Prevent theme typography from overriding custom styles */
.carver-wrapper h1,
.carver-wrapper h2,
.carver-wrapper h3,
.carver-wrapper h4,
.carver-wrapper h5,
.carver-wrapper h6,
.wabash-wrapper h1,
.wabash-wrapper h2,
.wabash-wrapper h3,
.wabash-wrapper h4,
.wabash-wrapper h5,
.wabash-wrapper h6,
.kopp-wrapper h1,
.kopp-wrapper h2,
.kopp-wrapper h3,
.kopp-wrapper h4,
.kopp-wrapper h5,
.kopp-wrapper h6 {
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    margin: inherit !important;
    padding: 0 !important;
    color: inherit !important;
    letter-spacing: inherit !important;
    text-transform: none !important;
}

/* Paragraph Protection */
.carver-wrapper p,
.wabash-wrapper p,
.kopp-wrapper p {
    font-size: inherit !important;
    line-height: inherit !important;
    margin: inherit !important;
    color: inherit !important;
}

/* Link Protection */
.carver-wrapper a,
.wabash-wrapper a,
.kopp-wrapper a {
    color: inherit !important;
    text-decoration: inherit !important;
}

/* List Protection */
.carver-wrapper ul,
.carver-wrapper ol,
.wabash-wrapper ul,
.wabash-wrapper ol,
.kopp-wrapper ul,
.kopp-wrapper ol {
    list-style: inherit !important;
    margin: inherit !important;
    padding: inherit !important;
}

.carver-wrapper li,
.wabash-wrapper li,
.kopp-wrapper li {
    margin: inherit !important;
    padding: inherit !important;
}

/* Card Protection */
.carver-product-card,
.carver-trust-card,
.carver-features-section,
.wabash-product-card,
.wabash-trust-card,
.wabash-features-section,
.kopp-product-card,
.kopp-trust-card,
.kopp-features-section {
    background: inherit !important;
    padding: inherit !important;
    margin: inherit !important;
    border: inherit !important;
    box-shadow: inherit !important;
}

/* Container Protection */
.carver-container,
.wabash-container,
.kopp-container {
    max-width: inherit !important;
    padding: inherit !important;
    margin: inherit !important;
}

/* Section Protection */
.carver-wrapper section,
.wabash-wrapper section,
.kopp-wrapper section {
    width: 100% !important;
    padding: inherit !important;
    margin: inherit !important;
}

/* WordPress Core Element Protection */
.carver-wrapper *,
.wabash-wrapper *,
.kopp-wrapper * {
    box-sizing: border-box !important;
}

/* Prevent WordPress alignment classes from affecting custom pages */
.carver-wrapper .alignleft,
.carver-wrapper .alignright,
.carver-wrapper .aligncenter,
.wabash-wrapper .alignleft,
.wabash-wrapper .alignright,
.wabash-wrapper .aligncenter,
.kopp-wrapper .alignleft,
.kopp-wrapper .alignright,
.kopp-wrapper .aligncenter {
    margin: inherit !important;
    float: none !important;
    display: inherit !important;
}

/* Prevent WordPress block styles from interfering */
.carver-wrapper .wp-block-*,
.wabash-wrapper .wp-block-*,
.kopp-wrapper .wp-block-* {
    margin: inherit !important;
    padding: inherit !important;
}

/* Flexbox and Grid Protection */
.carver-wrapper .carver-brand-header,
.carver-wrapper .carver-trust-grid,
.carver-wrapper .carver-products-grid,
.wabash-wrapper .wabash-brand-header,
.wabash-wrapper .wabash-trust-grid,
.wabash-wrapper .wabash-products-grid,
.kopp-wrapper .kopp-brand-header,
.kopp-wrapper .kopp-trust-grid,
.kopp-wrapper .kopp-products-grid {
    display: inherit !important;
    flex-wrap: inherit !important;
    grid-template-columns: inherit !important;
    gap: inherit !important;
}

/* Prevent content images from being affected by header/footer font-size changes */
.site-content img,
.entry-content img,
article img,
.post-thumbnail img,
.wp-block-image img {
    max-width: 100%;
    height: auto;
    width: auto;
}

/* Ensure WordPress image blocks maintain their set dimensions */
.wp-block-image {
    margin: 0 0 1em 0;
}

.wp-block-image img {
    display: block;
}

/* Prevent figure elements from expanding */
figure {
    margin: 0;
    max-width: 100%;
}

figure img {
    max-width: 100%;
    height: auto;
}

section {
    width: 100%;
    margin: 0;
    padding: 0;
}

h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    font-size: 3rem;
}

h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    font-size: 2.5rem;
}

h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    font-size: 1.75rem;
}

h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.utm-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Site Header */
.site-header {
    position: relative;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* Top Header - Changed to WHITE background */
.top-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
}

.top-head_inn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

#site-logo {
    transition: transform 0.3s ease;
}

#site-logo:hover {
    transform: scale(1.05);
}

#site-logo img {
    height: auto;
    max-height: 80px;
    width: auto;
    max-width: 250px;
    display: block;
}

.info-list {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.info-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--navy-blue);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.info-list li:hover {
    box-shadow: 0 4px 16px rgba(166, 83, 35, 0.15);
    transform: translateY(-3px);
    border-color: var(--navy-blue);
    background: white;
}

.info-list li:hover::before {
    transform: scaleY(1);
}

.info-list .txt {
    display: flex;
    flex-direction: column;
}

.info-list .title-info {
    font-size: 1.3rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
    display: block;
}

.info-list a {
    color: var(--text-dark);
    font-size: 1.7rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-list a:hover {
    color: var(--navy-blue);
}

.info-list i {
    font-size: 1.5rem;
    color: var(--navy-blue);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.info-list li:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.mobile-text-list {
    display: none;
}

.mobile-contact-list {
    display: none;
}

#menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Main Navigation */
.main-header {
    background: #ffffff;
    padding: 0;
    border-bottom: 1px solid var(--border-light);
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-navigation .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.main-navigation .menu > li {
    position: relative;
}

.main-navigation .menu > li > a {
    display: block;
    padding: 1.5rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 3px solid transparent;
    position: relative;
}

.main-navigation .menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: var(--navy-blue);
    transition: transform 0.3s ease;
}

.main-navigation .menu > li > a:hover,
.main-navigation .menu > li:hover > a {
    color: var(--navy-blue);
}

.main-navigation .menu > li.current-menu-item > a,
.main-navigation .menu > li.current_page_item > a {
    color: var(--navy-blue);
}

.main-navigation .menu > li > a:hover::after,
.main-navigation .menu > li:hover > a::after,
.main-navigation .menu > li.current-menu-item > a::after,
.main-navigation .menu > li.current_page_item > a::after {
    transform: translateX(-50%) scaleX(1);
}

/* Header CTA Button - Navy Blue */
.header-actions .btn-primary,
.mobile-gac-cta .btn-primary {
    background-color: var(--navy-blue);
    border-color: var(--navy-blue);
}

.header-actions .btn-primary:hover,
.mobile-gac-cta .btn-primary:hover {
    background-color: var(--navy-blue-hover);
    border-color: var(--navy-blue-hover);
}

/* LinkedIn Icon Button */
.linkedin-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
    border-radius: 4px;
    transition: all 0.3s;
    text-decoration: none;
}

.linkedin-icon-btn:hover {
    background: var(--navy-blue);
    color: white;
    border-color: var(--navy-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(166, 83, 35, 0.3);
}

.linkedin-icon-btn i {
    font-size: 1.2rem;
}

/* Dropdown Menus */
.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 320px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    list-style: none;
    margin: 0;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 4px solid var(--navy-blue);
    z-index: 1000;
    border-radius: 0 0 8px 8px;
}

.main-navigation .menu-item:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu li {
    position: relative;
}

.main-navigation .sub-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.6rem;
    transition: all 0.3s;
    border-left: 4px solid transparent;
    text-transform: none;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.main-navigation .sub-menu a:hover {
    color: var(--navy-blue);
}

.main-navigation .sub-menu .sub-menu {
    top: -1rem;
    left: 100%;
    margin-left: 0;
    border-top: none;
    border-left: 3px solid var(--navy-blue);
    border-radius: 0 4px 4px 0;
}

.main-navigation .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.5rem;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    vertical-align: middle;
    opacity: 0.5;
}

.main-navigation .sub-menu .menu-item-has-children > a::after {
    float: right;
    margin-top: 0.4rem;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid currentColor;
}

/* Header Social & Search */
.social-list {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s;
    text-decoration: none;
    border: 1px solid transparent;
}

.social-list a:hover {
    background: white;
    color: var(--primary-red);
    border-color: var(--border-light);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Material Design Search
   ========================================================================== */

/* Search Toggle Button */
.search-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-hover) 100%);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(166, 83, 35, 0.3);
    margin-left: 2rem;
    position: relative;
    overflow: hidden;
}

.search-toggle-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.search-toggle-btn:hover::before {
    width: 100px;
    height: 100px;
}

.search-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(166, 83, 35, 0.4);
}

.search-toggle-btn:active {
    transform: translateY(0);
}

.search-icon {
    position: relative;
    z-index: 1;
}

/* Inline Search Box */
.inline-search-box {
    display: none;
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.inline-search-box.active {
    display: block;
    opacity: 1;
    transform: scaleX(1);
}

.inline-search-wrapper {
    width: 100%;
    background: white;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 4px 16px rgba(166, 83, 35, 0.15);
    border: 2px solid rgba(166, 83, 35, 0.2);
}

/* Search Form - Minimal Design */
.search-form {
    width: 100%;
}

.search-form label {
    display: block;
    width: 100%;
    margin: 0;
}

.search-field {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(166, 83, 35, 0.2);
    background: white;
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-field:focus {
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 3px rgba(166, 83, 35, 0.1);
}

.search-field::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

/* Search Container Position */
.search-toggle-btn {
    position: relative;
}

/* Responsive Search */
@media (max-width: 768px) {
    /* Mobile Universal Image Control */
    img {
        width: auto !important;
        max-width: 100% !important;
    }

    /* Mobile Logo Protection */
    img[src*="logo" i],
    img[alt*="logo" i],
    img[class*="logo" i],
    img[class*="brand" i] {
        max-width: 180px !important;
        max-height: 70px !important;
    }

    /* Mobile Typography Reset */
    .carver-wrapper,
    .wabash-wrapper,
    .kopp-wrapper {
        font-size: 16px !important;
    }

    /* Mobile Container Protection */
    .carver-container,
    .wabash-container,
    .kopp-container {
        padding: inherit !important;
        width: 100% !important;
    }

    /* Mobile Button Protection */
    .carver-read-more-btn,
    .wabash-read-more-btn,
    .kopp-read-more-btn,
    .carver-hero-cta-button,
    .wabash-hero-cta-button,
    .kopp-hero-cta-button {
        padding: inherit !important;
        font-size: inherit !important;
        display: inline-block !important;
        width: auto !important;
    }

    /* Mobile Grid Protection */
    .carver-products-grid,
    .wabash-products-grid,
    .kopp-products-grid,
    .carver-trust-grid,
    .wabash-trust-grid,
    .kopp-trust-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: inherit !important;
    }

    .search-toggle-btn {
        width: 42px;
        height: 42px;
        margin-left: 1rem;
    }

    .inline-search-box {
        position: absolute;
        top: calc(100% + 1rem);
        left: 0;
        right: 0;
        max-width: 100%;
        margin: 0 1rem;
        transform-origin: top;
        transform: scaleY(0);
    }

    .inline-search-box.active {
        transform: scaleY(1);
    }

    .search-submit span {
        display: none;
    }

    .search-submit {
        padding: 0.9rem 1.2rem;
    }

    .search-submit svg {
        margin: 0;
    }
}

.mobile-gac-cta {
    display: none;
}

.mobile-linkedin {
    display: none;
}

.mobile-menu-extras {
    display: none;
}

.mobile-contact-boxes {
    display: none;
}

.contact-box {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    line-height: 1.2;
    border: none;
    white-space: nowrap;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-hover) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(166, 83, 35, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(166, 83, 35, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: white;
}

/* ==========================================================================
   Footer Styles - Modern Redesign
   ========================================================================== */

.site-footer {
    background: white;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

/* Footer CTA Section */
/* Hero CTA Section - Premium Redesign */
.cta-hero {
    background: linear-gradient(165deg, 
        rgba(123, 59, 26, 0.03) 0%, 
        rgba(255, 255, 255, 1) 25%, 
        rgba(255, 255, 255, 1) 75%, 
        rgba(166, 83, 35, 0.03) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(166, 83, 35, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(210, 123, 69, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.blob-1,
.blob-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
    animation: float 25s infinite ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #D27B45 0%, transparent 70%);
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #A65323 0%, transparent 70%);
    bottom: -120px;
    right: -80px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg); 
        opacity: 0.15;
    }
    25% { 
        transform: translate(40px, -40px) scale(1.15) rotate(90deg); 
        opacity: 0.2;
    }
    50% { 
        transform: translate(-30px, 30px) scale(0.95) rotate(180deg); 
        opacity: 0.12;
    }
    75% { 
        transform: translate(30px, 40px) scale(1.05) rotate(270deg); 
        opacity: 0.18;
    }
}

.cta-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.cta-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 5rem 4rem;
    border-radius: 32px;
    box-shadow: 
        0 30px 90px rgba(166, 83, 35, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(166, 83, 35, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}



.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, 
        #7B3B1A 0%, 
        #A65323 25%, 
        #D27B45 50%, 
        #A65323 75%, 
        #7B3B1A 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    animation: gradientShift 4s ease infinite;
    text-shadow: 0 2px 4px rgba(166, 83, 35, 0.1);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.cta-subtitle-container {
    max-width: 900px;
    margin: 0 auto 3.5rem;
    padding: 0 2rem;
}

.cta-subtitle {
    font-size: 1.35rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 2.2rem 3rem;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 250, 0.9) 100%);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
    box-shadow: 
        0 8px 25px rgba(166, 83, 35, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #A65323, #D27B45, #A65323);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 20px 45px rgba(166, 83, 35, 0.25),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(252, 253, 254, 0.98) 100%);
}

.stat-item:hover::before {
    opacity: 0.8;
}

.stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, 
        #7B3B1A 0%, 
        #A65323 35%, 
        #D27B45 65%, 
        #A65323 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
    transition: transform 0.4s ease;
}

.stat-item:hover .stat-value {
    transform: scale(1.08);
}

.stat-label {
    font-size: 0.95rem;
    color: #7B3B1A;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    opacity: 0.85;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.8rem;
    margin: 4rem 0;
    align-items: center;
}

.fitco-hero-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    border: 1.5px solid rgba(166, 83, 35, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 110px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.fitco-hero-logo-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(166, 83, 35, 0.03) 0%, 
        rgba(210, 123, 69, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fitco-hero-logo-item:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 15px 35px rgba(166, 83, 35, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(166, 83, 35, 0.25);
    background: linear-gradient(145deg, #ffffff 0%, #ffffff 100%);
}

.fitco-hero-logo-item:hover::before {
    opacity: 1;
}

.fitco-hero-logo-item img {
    max-width: 100%;
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.fitco-hero-logo-item:hover img {
    filter: brightness(1.05);
    transform: scale(1.08);
}

.fitco-hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.6rem 4rem;
    background: linear-gradient(135deg, 
        #7B3B1A 0%, 
        #A65323 25%, 
        #D27B45 50%, 
        #A65323 75%, 
        #7B3B1A 100%);
    background-size: 200% auto;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(166, 83, 35, 0.35),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.fitco-hero-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;
}

.fitco-hero-cta-button:hover::before {
    left: 100%;
}

.fitco-hero-cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 45px rgba(166, 83, 35, 0.45),
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background-position: 100% center;
}

.fitco-hero-cta-button:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 
        0 8px 20px rgba(166, 83, 35, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Scroll to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #A65323 0%, #D27B45 50%, #A65323 100%);
    background-size: 200% auto;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(166, 83, 35, 0.35),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.back-to-top::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #D27B45, #7B3B1A);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.back-to-top i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 
        0 15px 45px rgba(166, 83, 35, 0.45),
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background-position: 100% center;
}

.back-to-top:hover::before {
    opacity: 1;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1);
    box-shadow: 
        0 8px 20px rgba(166, 83, 35, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Main Footer */
.main-footer {
    padding: 5rem 0 3rem;
    background: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
}

/* Footer Brand Column */
.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 120px;
    height: auto;
    display: block;
}

.brand-tagline {
    font-size: 1.6rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.brand-year {
    font-size: 1.4rem;
    color: var(--text-light);
    margin: 0 0 2rem 0;
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.footer-social a:hover {
    transform: translateY(-3px);
    background: var(--navy-blue);
    color: white;
}

.footer-social i {
    font-size: 1.8rem;
}

.footer-contact-info {
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-light);
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.8rem 0;
    font-size: 1.4rem;
    color: var(--text-light);
}

.footer-contact-info i {
    color: var(--navy-blue);
    font-size: 1.3rem;
    width: 20px;
    text-align: center;
}

.footer-contact-info a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-info a:hover {
    color: var(--navy-blue);
}

/* Footer Columns */
.footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--navy-blue);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
    padding: 0.3rem 0;
}

.footer-links li a i {
    font-size: 1rem;
    color: var(--navy-blue);
    transition: transform 0.3s;
}

.footer-links li a:hover {
    color: var(--navy-blue);
    padding-left: 0.5rem;
}

.footer-links li a:hover i {
    transform: translateX(4px);
}

/* Footer Bottom */
.footer-bottom {
    background: white;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright p,
.footer-credits p {
    margin: 0;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #A65323 0%, #D27B45 50%, #A65323 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.footer-credits i {
    color: var(--navy-blue);
    margin: 0 0.3rem;
    font-size: 1.2rem;
}

/* Content Area */
.site-content {
    padding: 0;
    margin: 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* ==========================================================================
   Comments
   ========================================================================== */

.comment-form p {
    margin-bottom: 1rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.comment-form .required {
    color: var(--primary-red);
}

.comment-reply-link:hover,
.comment-edit-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .site-header {
        box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    }

    .top-header {
        padding: 1.25rem 0;
    }

    .info-list {
        display: none !important;
    }

    .header-actions {
        display: none !important;
    }

    .search-toggle-btn {
        margin-left: 0;
    }

    .mobile-text-list {
        display: none;
    }

    .mobile-contact-list {
        display: none;
    }

    #menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-hover) 100%);
        color: white;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1.4rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 12px rgba(166, 83, 35, 0.4);
        z-index: 1001;
        position: relative;
    }

    #menu-btn:hover,
    #menu-btn:active {
        background: linear-gradient(135deg, var(--navy-blue-hover) 0%, #05101d 100%);
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(166, 83, 35, 0.5);
    }

    #site-logo {
        grid-column: 1;
        display: flex;
        align-items: center;
    }

    #site-logo img {
        max-height: 60px;
        width: auto;
        max-width: 140px;
    }

    .top-head_inn {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 0;
        width: 100%;
    }

    .main-header {
        display: block;
    }

    .main-navigation {
        display: block;
    }

    .menu-wrapper {
        display: none !important;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 340px;
        height: 100vh;
        background: linear-gradient(180deg, white 0%, #f8f9fa 100%);
        flex-direction: column;
        overflow-y: auto;
        box-shadow: -8px 0 30px rgba(166, 83, 35, 0.25);
        z-index: 9999;
        animation: slideInRight 0.3s ease-out;
    }

    @keyframes slideInRight {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(0);
        }
    }

    .main-navigation .menu {
        display: flex;
        flex-direction: column;
        padding: 2rem 0 0;
    }

    .main-navigation .menu.mobile-active {
        display: flex;
    }

    .menu-wrapper.mobile-active {
        display: flex !important;
    }

    .mobile-menu-extras {
        display: block !important;
        padding: 0 0 2rem;
    }

    .mobile-contact-boxes {
        display: flex !important;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 2rem;
        margin-bottom: 1rem;
    }

    .contact-box {
        display: flex !important;
        align-items: center;
        gap: 1rem;
        padding: 1.2rem 1.5rem;
        background: white;
        border: 2px solid rgba(166, 83, 35, 0.1);
        border-radius: 10px;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .contact-box:hover {
        border-color: var(--navy-blue);
        box-shadow: 0 4px 16px rgba(166, 83, 35, 0.15);
        transform: translateX(4px);
    }

    .contact-box i {
        font-size: 1.5rem;
        color: var(--navy-blue);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(166, 83, 35, 0.1);
        border-radius: 8px;
        flex-shrink: 0;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        flex: 1;
    }

    .contact-label {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .contact-value {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-dark);
    }

    .contact-box:hover .contact-value {
        color: var(--navy-blue);
    }

    .main-navigation .menu > li {
        border-bottom: 1px solid var(--border-light);
    }

    .main-navigation .menu > li > a {
        color: var(--text-dark);
        font-size: 1.3rem;
        padding: 1.25rem 2rem;
        font-weight: 600;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .main-navigation .menu > li > a::after {
        display: none;
    }

    .main-navigation .menu > li > a:hover {
        color: var(--navy-blue);
    }

    .main-navigation .menu > li.current-menu-item > a {
        color: var(--navy-blue);
    }

    .main-navigation .menu-item-has-children > a:active {
        background: linear-gradient(90deg, rgba(166, 83, 35, 0.1) 0%, transparent 100%);
        transition: background 0.1s ease;
    }

    .main-navigation .sub-menu {
        display: none;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(166, 83, 35, 0.05);
        border-top: none;
        border-left: 3px solid var(--navy-blue);
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .main-navigation .sub-menu li {
        border-bottom: 1px solid rgba(166, 83, 35, 0.1);
    }

    .main-navigation .sub-menu a {
        display: block;
        font-size: 1.4rem;
        padding: 1rem 2.5rem;
        color: var(--text-light);
        font-weight: 500;
        text-decoration: none;
    }

    .main-navigation .sub-menu a:hover {
        color: var(--navy-blue);
    }

    .main-navigation .menu-item.submenu-open > .sub-menu {
        display: block;
    }

    .main-navigation .menu-item-has-children > a::before {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .main-navigation .menu-item-has-children.submenu-open > a::before {
        transform: rotate(90deg);
    }

    .mobile-gac-cta {
        display: block !important;
        padding: 1.5rem 2rem;
        border-top: 1px solid var(--border-light);
        margin-top: 1rem;
    }

    .mobile-gac-cta .btn-primary {
        width: 100%;
        text-align: center;
        justify-content: center;
        font-size: 1.6rem;
        padding: 1.2rem 2rem;
    }

    .mobile-linkedin {
        display: block !important;
        padding: 1rem 2rem;
        border-top: 1px solid var(--border-light);
    }

    .mobile-linkedin a {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem;
        background: linear-gradient(135deg, rgba(166, 83, 35, 0.05) 0%, rgba(166, 83, 35, 0.02) 100%);
        border-radius: 8px;
        color: var(--navy-blue);
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: 500;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(166, 83, 35, 0.1);
    }

    .mobile-linkedin a:hover,
    .mobile-linkedin a:active {
        background: linear-gradient(135deg, rgba(166, 83, 35, 0.1) 0%, rgba(166, 83, 35, 0.05) 100%);
        border-color: rgba(166, 83, 35, 0.2);
    }

    .mobile-linkedin i {
        font-size: 1.6rem;
    }

    .utm-container {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Footer Mobile Styles */
    .cta-hero {
        padding: 3.5rem 0;
    }

    .cta-container {
        padding: 0 1.5rem;
    }

    .cta-card {
        padding: 3rem 2rem;
        border-radius: 24px;
    }

    .cta-title {
        font-size: 2.4rem;
        margin-bottom: 1.2rem;
    }

    .cta-subtitle-container {
        padding: 0 1rem;
        margin-bottom: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.15rem;
    }

    .cta-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin: 2.5rem 0;
    }

    .stat-item {
        width: 100%;
        padding: 1.8rem 2rem;
    }

    .stat-value {
        font-size: 2.3rem;
    }

    .stat-label {
        font-size: 0.92rem;
    }

    .client-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
        margin: 3rem 0;
    }

    .fitco-hero-logo-item {
        height: 90px;
        padding: 0.8rem;
    }

    .fitco-hero-logo-item img {
        max-height: 55px;
    }

    .fitco-hero-cta-button {
        font-size: 1.5rem;
        padding: 1.4rem 3rem;
        width: 100%;
        justify-content: center;
    }

    .blob-1 {
        width: 300px;
        height: 300px;
        top: -80px;
        left: -60px;
    }

    .blob-2 {
        width: 250px;
        height: 250px;
        bottom: -60px;
        right: -50px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        padding-right: 0;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact-info p {
        justify-content: center;
    }

    .footer-title {
        font-size: 1.6rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Extra Small Mobile - CTA Hero */
@media (max-width: 480px) {
    .cta-hero {
        padding: 2.5rem 0;
    }

    .cta-card {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .cta-title {
        font-size: 2rem;
        line-height: 1.25;
    }

    .cta-subtitle-container {
        padding: 0 0.5rem;
    }

    .cta-subtitle {
        font-size: 1.05rem;
    }

    .cta-stats {
        gap: 1.2rem;
        margin: 2rem 0;
    }

    .stat-item {
        padding: 1.5rem 1.5rem;
        min-width: auto;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.88rem;
    }

    .client-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 2.5rem 0;
    }

    .fitco-hero-logo-item {
        height: 75px;
        padding: 0.6rem;
    }

    .fitco-hero-logo-item img {
        max-height: 48px;
    }

    .fitco-hero-cta-button {
        font-size: 1.4rem;
        padding: 1.2rem 2.5rem;
    }

    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }
}
