/*
 * Zafrax Limited - Corporate Website Stylesheet
 * 2013-era design: Bootstrap 3 influence, gradients, shadows, jQuery-era
 * Company No: 08742591 | Est. October 2013
 */

/* ========================================
   CSS Reset & Base Styles (2013 approach)
   ======================================== */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    background-color: #f5f5f5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #0088cc;
    text-decoration: none;
    -webkit-transition: color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: #005580;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
    -ms-interpolation-mode: bicubic;
}

/* ========================================
   Typography (2013 style)
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 15px;
}

h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

p {
    margin-bottom: 15px;
}

/* ========================================
   Grid System (Bootstrap 3 inspired)
   ======================================== */
.zfx-main-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.zfx-row {
    margin-left: -15px;
    margin-right: -15px;
}

.zfx-row:before,
.zfx-row:after {
    content: " ";
    display: table;
}

.zfx-row:after {
    clear: both;
}

[class*="col-"] {
    float: left;
    padding: 0 15px;
    min-height: 1px;
}

.zfx-col-1 { width: 8.333%; }
.zfx-col-2 { width: 16.666%; }
.zfx-col-3 { width: 25%; }
.zfx-col-4 { width: 33.333%; }
.zfx-col-5 { width: 41.666%; }
.zfx-col-6 { width: 50%; }
.zfx-col-7 { width: 58.333%; }
.zfx-col-8 { width: 66.666%; }
.zfx-col-9 { width: 75%; }
.zfx-col-10 { width: 83.333%; }
.zfx-col-11 { width: 91.666%; }
.zfx-col-12 { width: 100%; }

/* ========================================
   Buttons (2013 gradient style)
   ======================================== */
.zfx-call-to-action {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.zfx-call-to-action:hover {
    text-decoration: none;
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.zfx-call-to-action {
    color: #ffffff;
    background: #0088cc;
    background: -webkit-linear-gradient(top, #0099e6 0%, #0077b3 100%);
    background: -moz-linear-gradient(top, #0099e6 0%, #0077b3 100%);
    background: linear-gradient(to bottom, #0099e6 0%, #0077b3 100%);
    border-color: #006699;
}

.zfx-call-to-action:hover {
    color: #ffffff;
    background: #0077b3;
    background: -webkit-linear-gradient(top, #0088cc 0%, #006699 100%);
    background: -moz-linear-gradient(top, #0088cc 0%, #006699 100%);
    background: linear-gradient(to bottom, #0088cc 0%, #006699 100%);
}

.zfx-call-to-action-success {
    color: #ffffff;
    background: #5cb85c;
    background: -webkit-linear-gradient(top, #6ec06e 0%, #4cae4c 100%);
    background: -moz-linear-gradient(top, #6ec06e 0%, #4cae4c 100%);
    background: linear-gradient(to bottom, #6ec06e 0%, #4cae4c 100%);
    border-color: #449d44;
}

.zfx-call-to-action-success:hover {
    color: #ffffff;
    background: #449d44;
}

.zfx-call-to-action-danger {
    color: #ffffff;
    background: #d9534f;
    background: -webkit-linear-gradient(top, #e06560 0%, #c9302c 100%);
    background: -moz-linear-gradient(top, #e06560 0%, #c9302c 100%);
    background: linear-gradient(to bottom, #e06560 0%, #c9302c 100%);
    border-color: #c12e2a;
}

.zfx-call-to-action-warning {
    color: #ffffff;
    background: #f0ad4e;
    background: -webkit-linear-gradient(top, #f5bc6a 0%, #ec9e38 100%);
    background: -moz-linear-gradient(top, #f5bc6a 0%, #ec9e38 100%);
    background: linear-gradient(to bottom, #f5bc6a 0%, #ec9e38 100%);
    border-color: #eb9316;
}

.zfx-call-to-action-lg {
    padding: 14px 30px;
    font-size: 18px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.zfx-call-to-action-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.zfx-call-to-action-block {
    display: block;
    width: 100%;
}

/* ========================================
   Header - Corporate Classic Style
   ======================================== */
.zfx-header {
    background: #ffffff;
    border-bottom: 3px solid #0088cc;
}

.zfx-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

/* Logo */
.zfx-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.zfx-logo:hover {
    text-decoration: none;
}

.zfx-logo-mark {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0088cc 0%, #005580 100%);
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,136,204,0.3);
}

.zfx-logo-text {
    display: flex;
    flex-direction: column;
}

.zfx-logo-name {
    font-size: 26px;
    font-weight: 900;
    color: #2c3e50;
    letter-spacing: 2px;
    line-height: 1;
}

.zfx-logo-tagline {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

/* Header Contact */
.zfx-header-contact {
    display: flex;
    align-items: center;
    gap: 25px;
}

.zfx-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555555;
    font-size: 14px;
    font-weight: 600;
}

.zfx-contact-item i {
    color: #0088cc;
    font-size: 16px;
}

.zfx-contact-item:hover {
    color: #0088cc;
    text-decoration: none;
}

.zfx-header-cta {
    background: linear-gradient(135deg, #0088cc 0%, #0077b3 100%);
    color: #ffffff !important;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0,136,204,0.3);
    transition: all 0.3s ease;
}

.zfx-header-cta:hover {
    background: linear-gradient(135deg, #0077b3 0%, #005580 100%);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,136,204,0.4);
}

/* Mobile Toggle */
.zfx-nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.zfx-nav-toggle .zfx-icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #2c3e50;
    margin: 4px 0;
    border-radius: 1px;
}

/* Navigation Bar */
.zfx-navbar {
    background: #2c3e50;
}

.zfx-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.zfx-nav-menu li a {
    display: block;
    padding: 15px 20px;
    color: #ecf0f1;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.zfx-nav-menu li a:hover,
.zfx-nav-menu li a.zfx-nav-active {
    background: #0088cc;
    color: #ffffff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .zfx-header-inner {
        flex-wrap: wrap;
    }
    
    .zfx-header-contact {
        display: none;
    }
    
    .zfx-nav-toggle {
        display: block;
    }
    
    .zfx-nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    
    .zfx-nav-menu.zfx-active {
        display: flex;
    }
    
    .zfx-nav-menu li a {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}

/* Legacy navbar styles kept for other pages if needed */
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.zfx-navbar-nav a:hover,
.zfx-navbar-nav a.zfx-active {
    color: #0088cc;
    background: #f0f0f0;
    text-decoration: none;
}

.zfx-navbar-toggle {
    display: none;
    float: right;
    padding: 10px;
    margin-top: 8px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
}

.zfx-navbar-toggle .zfx-icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #555;
    margin: 4px 0;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

/* ========================================
   Hero Section (2013 gradient background)
   ======================================== */
.zfx-page-intro {
    background: #2c3e50;
    background: -webkit-linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    background: -moz-linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.zfx-page-intro:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.zfx-w3.zfx-org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.3;
}

.zfx-page-intro-content {
    position: relative;
    z-index: 1;
}

.zfx-page-intro h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.zfx-page-intro .zfx-lead {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.zfx-page-intro .zfx-call-to-action {
    margin: 5px;
}

/* ========================================
   Sections
   ======================================== */
.zfx-content-section {
    padding: 60px 0;
}

.zfx-content-section-white {
    background: #ffffff;
}

.zfx-content-section-gray {
    background: #f5f5f5;
}

.zfx-content-section-dark {
    background: #2c3e50;
    color: #ffffff;
}

.zfx-content-section-dark h2,
.zfx-content-section-dark h3 {
    color: #ffffff;
}

.zfx-content-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.zfx-content-section-title h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.zfx-content-section-title p {
    font-size: 16px;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.zfx-content-section-title:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #0088cc;
    margin: 20px auto 0;
}

/* ========================================
   Feature Boxes (2013 style with icons)
   ======================================== */
.zfx-feature-box {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.zfx-feature-box:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.zfx-feature-box .zfx-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 36px;
    color: #ffffff;
    background: #0088cc;
    background: -webkit-linear-gradient(135deg, #0088cc 0%, #2ecc71 100%);
    background: -moz-linear-gradient(135deg, #0088cc 0%, #2ecc71 100%);
    background: linear-gradient(135deg, #0088cc 0%, #2ecc71 100%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 0 auto 20px;
    -webkit-box-shadow: 0 4px 15px rgba(0,136,204,0.3);
    -moz-box-shadow: 0 4px 15px rgba(0,136,204,0.3);
    box-shadow: 0 4px 15px rgba(0,136,204,0.3);
}

.zfx-feature-box h4 {
    margin-bottom: 15px;
}

.zfx-feature-box p {
    color: #7f8c8d;
    font-size: 14px;
}

/* ========================================
   Service Cards
   ======================================== */
.zfx-service-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.zfx-service-card:hover {
    border-color: #0088cc;
    -webkit-box-shadow: 0 5px 15px rgba(0,136,204,0.15);
    -moz-box-shadow: 0 5px 15px rgba(0,136,204,0.15);
    box-shadow: 0 5px 15px rgba(0,136,204,0.15);
}

.zfx-service-card .zfx-service-icon {
    float: left;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 28px;
    color: #0088cc;
    background: #e8f4fc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-right: 20px;
}

.zfx-service-card .zfx-service-content {
    overflow: hidden;
}

.zfx-service-card h4 {
    margin-bottom: 10px;
}

.zfx-service-card p {
    color: #7f8c8d;
    margin-bottom: 10px;
}

/* ========================================
   Pricing Tables (2013 style)
   ======================================== */
.zfx-pricing-table {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    -moz-box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.zfx-pricing-table:hover {
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    -moz-box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.zfx-pricing-table.zfx-featured {
    border-color: #0088cc;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

.zfx-pricing-header {
    background: #f8f8f8;
    background: -webkit-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
    background: -moz-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
    padding: 25px 20px;
    border-bottom: 1px solid #e0e0e0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

.zfx-pricing-table.zfx-featured .zfx-pricing-header {
    background: #0088cc;
    background: -webkit-linear-gradient(top, #0099e6 0%, #0077b3 100%);
    background: -moz-linear-gradient(top, #0099e6 0%, #0077b3 100%);
    background: linear-gradient(to bottom, #0099e6 0%, #0077b3 100%);
    border-bottom: none;
}

.zfx-pricing-table.zfx-featured .zfx-pricing-header h3,
.zfx-pricing-table.zfx-featured .zfx-pricing-header p {
    color: #ffffff;
}

.zfx-pricing-header h3 {
    margin-bottom: 5px;
    font-size: 22px;
}

.zfx-pricing-header p {
    color: #7f8c8d;
    font-size: 13px;
    margin-bottom: 0;
}

.zfx-pricing-price {
    padding: 30px 20px;
    background: #ffffff;
}

.zfx-pricing-price .zfx-amount {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.zfx-pricing-price .zfx-currency {
    font-size: 24px;
    vertical-align: top;
}

.zfx-pricing-price .zfx-period {
    font-size: 14px;
    color: #7f8c8d;
    display: block;
    margin-top: 5px;
}

.zfx-pricing-features {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
}

.zfx-pricing-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.zfx-pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.zfx-pricing-features li:last-child {
    border-bottom: none;
}

.zfx-pricing-features i {
    color: #2ecc71;
    margin-right: 8px;
}

.zfx-pricing-features .zfx-unavailable {
    color: #bdc3c7;
    text-decoration: line-through;
}

.zfx-pricing-features .zfx-unavailable i {
    color: #e74c3c;
}

.zfx-pricing-footer {
    padding: 20px;
    background: #f8f8f8;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

/* ========================================
   Testimonials
   ======================================== */
.zfx-testimonial {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.zfx-testimonial:before {
    content: "\201C";
    font-size: 80px;
    font-family: Georgia, serif;
    color: #e0e0e0;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.zfx-testimonial-content {
    padding-left: 40px;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.zfx-testimonial-author {
    display: flex;
    align-items: center;
}

.zfx-testimonial-author img {
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-right: 15px;
}

.zfx-testimonial-author .zfx-author-info strong {
    display: block;
    color: #2c3e50;
}

.zfx-testimonial-author .zfx-author-info span {
    font-size: 12px;
    color: #7f8c8d;
}

/* ========================================
   Stats Counter
   ======================================== */
.zfx-stats-section {
    background: #2c3e50;
    background: -webkit-linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    background: -moz-linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 60px 0;
    text-align: center;
}

.zfx-stat-item {
    padding: 20px;
}

.zfx-stat-item .zfx-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #0088cc;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.zfx-stat-item .zfx-stat-label {
    font-size: 16px;
    color: #bdc3c7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Forms (2013 style)
   ======================================== */
.zfx-form-group {
    margin-bottom: 20px;
}

.zfx-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.zfx-form-control {
    display: block;
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    background: #ffffff;
    border: 1px solid #ccc;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
    -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
    -webkit-transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -moz-transition: border-color 0.2s ease, box-shadow 0.2s ease;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.zfx-form-control:focus {
    border-color: #0088cc;
    outline: none;
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.05), 0 0 5px rgba(0,136,204,0.3);
    -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.05), 0 0 5px rgba(0,136,204,0.3);
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05), 0 0 5px rgba(0,136,204,0.3);
}

textarea.zfx-form-control {
    resize: vertical;
    min-height: 120px;
}

.zfx-form-control.zfx-error {
    border-color: #e74c3c;
}

.zfx-error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
}

.zfx-checkbox-group {
    margin-bottom: 15px;
}

.zfx-checkbox-group label {
    font-weight: normal;
    display: flex;
    align-items: flex-start;
}

.zfx-checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
}

/* ========================================
   Alerts / Notices
   ======================================== */
.zfx-alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.zfx-alert-success {
    background: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d;
}

.zfx-alert-info {
    background: #d9edf7;
    border-color: #bce8f1;
    color: #31708f;
}

.zfx-alert-warning {
    background: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b;
}

.zfx-alert-danger {
    background: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}

/* ========================================
   Tables
   ======================================== */
.zfx-table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.zfx-table th,
.zfx-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.zfx-table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #2c3e50;
}

.zfx-table-striped tbody tr:nth-child(odd) {
    background: #f9f9f9;
}

.zfx-table-hover tbody tr:hover {
    background: #f0f0f0;
}

/* ========================================
   Accordion / FAQ
   ======================================== */
.zfx-accordion {
    margin-bottom: 30px;
}

.zfx-accordion-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}

.zfx-accordion-header {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #2c3e50;
    background: #f8f8f8;
    position: relative;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.zfx-accordion-header:hover {
    background: #f0f0f0;
}

.zfx-accordion-header:after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
    color: #0088cc;
}

.zfx-accordion-item.zfx-active .zfx-accordion-header:after {
    content: "-";
}

.zfx-accordion-item.zfx-active .zfx-accordion-header {
    background: #0088cc;
    color: #ffffff;
}

.zfx-accordion-content {
    padding: 20px;
    display: none;
}

.zfx-accordion-item.zfx-active .zfx-accordion-content {
    display: block;
}

/* ========================================
   Breadcrumbs
   ======================================== */
.zfx-breadcrumb {
    padding: 10px 0;
    margin-bottom: 20px;
    list-style: none;
}

.zfx-breadcrumb li {
    display: inline;
}

.zfx-breadcrumb li + li:before {
    content: "/ ";
    padding: 0 8px;
    color: #bdc3c7;
}

.zfx-breadcrumb a {
    color: #0088cc;
}

.zfx-breadcrumb .zfx-active {
    color: #7f8c8d;
}

/* ========================================
   Page Header
   ======================================== */
.zfx-page-header {
    background: #2c3e50;
    background: -webkit-linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    background: -moz-linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.zfx-page-header h1 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 10px;
}

.zfx-page-header p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 0;
}

/* ========================================
   Contact Info Boxes
   ======================================== */
.zfx-contact-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.zfx-contact-box .zfx-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 30px;
    color: #0088cc;
    background: #e8f4fc;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.zfx-contact-box h4 {
    margin-bottom: 10px;
}

.zfx-contact-box p {
    color: #7f8c8d;
    margin-bottom: 0;
}

/* ========================================
   Footer (2013 gradient style)
   ======================================== */
.zfx-footer {
    background: #2c3e50;
    color: #bdc3c7;
    padding: 60px 0 0;
}

.zfx-footer h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.zfx-footer h4:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #0088cc;
}

.zfx-footer p {
    font-size: 14px;
    line-height: 1.8;
}

.zfx-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zfx-footer ul li {
    margin-bottom: 10px;
}

.zfx-footer ul a {
    color: #bdc3c7;
    font-size: 14px;
    -webkit-transition: color 0.2s ease;
    -moz-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.zfx-footer ul a:hover {
    color: #0088cc;
    text-decoration: none;
}

.zfx-footer ul a i {
    margin-right: 8px;
    width: 15px;
}

.zfx-footer-contact li {
    display: flex;
    align-items: flex-start;
}

.zfx-footer-contact li i {
    color: #0088cc;
    margin-right: 10px;
    margin-top: 3px;
}

.zfx-footer-social {
    margin-top: 20px;
}

.zfx-footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #34495e;
    color: #ffffff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-right: 8px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.zfx-footer-social a:hover {
    background: #0088cc;
    text-decoration: none;
}

.zfx-footer-bottom {
    background: #1a252f;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
}

.zfx-footer-bottom p {
    margin-bottom: 5px;
}

.zfx-footer-bottom a {
    color: #bdc3c7;
}

.zfx-footer-bottom a:hover {
    color: #0088cc;
}

.zfx-payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.zfx-payment-methods span {
    color: #bdc3c7;
    font-size: 13px;
}

.zfx-card-icon {
    width: 48px;
    height: 32px;
    border-radius: 4px;
}

.zfx-company-info {
    font-size: 12px;
    color: #7f8c8d;
}

/* ========================================
   Trust Badges / Certifications
   ======================================== */
.zfx-trust-badges {
    text-align: center;
    padding: 30px 0;
    background: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.zfx-trust-badges img {
    height: 50px;
    margin: 10px 20px;
    opacity: 0.7;
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.zfx-trust-badges img:hover {
    opacity: 1;
}

/* ========================================
   Utility Classes
   ======================================== */
.zfx-text-center { text-align: center; }
.zfx-text-left { text-align: left; }
.zfx-text-right { text-align: right; }

.zfx-text-muted { color: #7f8c8d; }
.zfx-text-primary { color: #0088cc; }
.zfx-text-success { color: #2ecc71; }
.zfx-text-danger { color: #e74c3c; }
.zfx-text-warning { color: #f39c12; }

.zfx-mt-0 { margin-top: 0; }
.zfx-mt-10 { margin-top: 10px; }
.zfx-mt-20 { margin-top: 20px; }
.zfx-mt-30 { margin-top: 30px; }
.zfx-mb-0 { margin-bottom: 0; }
.zfx-mb-10 { margin-bottom: 10px; }
.zfx-mb-20 { margin-bottom: 20px; }
.zfx-mb-30 { margin-bottom: 30px; }

.zfx-pt-0 { padding-top: 0; }
.zfx-pt-20 { padding-top: 20px; }
.zfx-pb-0 { padding-bottom: 0; }
.zfx-pb-20 { padding-bottom: 20px; }

.zfx-clearfix:before,
.zfx-clearfix:after {
    content: " ";
    display: table;
}

.zfx-clearfix:after {
    clear: both;
}

.zfx-hidden { display: none; }
.zfx-visible { display: block; }

/* ========================================
   Cookie Banner - Corporate Modal Style
   ======================================== */
.zfx-cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
    display: none;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
.zfx-cookie-overlay.zfx-show {
    display: block;
    opacity: 1;
}

.zfx-cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    -moz-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.9);
    background: #ffffff;
    color: #333333;
    padding: 0;
    z-index: 9999;
    display: none;
    opacity: 0;
    width: 90%;
    max-width: 480px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.zfx-cookie-banner.zfx-show {
    display: block;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.zfx-cookie-header {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: #ffffff;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.zfx-cookie-header i {
    font-size: 28px;
}

.zfx-cookie-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.zfx-cookie-body {
    padding: 25px;
}

.zfx-cookie-banner p {
    margin: 0 0 20px;
    line-height: 1.6;
    color: #555;
    font-size: 14px;
}

.zfx-cookie-banner a {
    color: #0088cc;
    font-weight: 600;
}

.zfx-cookie-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.zfx-cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f5f7fa;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.zfx-cookie-option span {
    font-size: 14px;
    color: #333;
}

.zfx-cookie-option small {
    color: #888;
    font-size: 12px;
    display: block;
    margin-top: 2px;
}

.zfx-cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    background: #ccc;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    cursor: pointer;
    -webkit-transition: background 0.2s;
    -moz-transition: background 0.2s;
    transition: background 0.2s;
}

.zfx-cookie-toggle.zfx-active {
    background: #27ae60;
}

.zfx-cookie-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: left 0.2s;
    -moz-transition: left 0.2s;
    transition: left 0.2s;
}

.zfx-cookie-toggle.zfx-active::after {
    left: 22px;
}

.zfx-cookie-toggle.zfx-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.zfx-cookie-buttons {
    display: flex;
    gap: 10px;
}

.zfx-cookie-buttons .zfx-call-to-action {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
}

/* ========================================
   Back to Top
   ======================================== */
.zfx-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: #0088cc;
    color: #ffffff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 999;
}

.zfx-back-to-top:hover {
    background: #006699;
}

.zfx-back-to-top.zfx-visible {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 992px) {
    .zfx-col-md-6 { width: 50%; }
    .zfx-col-md-12 { width: 100%; }
    
    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    
    .zfx-page-intro h1 { font-size: 36px; }
    .zfx-page-intro { padding: 60px 0; }
    
    .zfx-pricing-table.zfx-featured {
        -webkit-transform: none;
        -moz-transform: none;
        transform: none;
    }
}

@media (max-width: 768px) {
    [class*="col-"] {
        float: none;
        width: 100%;
    }
    
    .zfx-navbar-toggle {
        display: block;
    }
    
    .zfx-navbar-nav {
        display: none;
        float: none;
        width: 100%;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #e0e0e0;
    }
    
    .zfx-navbar-nav.zfx-active {
        display: block;
    }
    
    .zfx-navbar-nav li {
        float: none;
        margin: 0;
    }
    
    .zfx-navbar-nav a {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .zfx-top-bar-left,
    .zfx-top-bar-right {
        float: none;
        text-align: center;
    }
    
    .zfx-top-bar-right {
        margin-top: 5px;
    }
    
    .zfx-page-intro h1 { font-size: 28px; }
    .zfx-page-intro .zfx-lead { font-size: 16px; }
    
    .zfx-content-section { padding: 40px 0; }
    
    .zfx-stat-item {
        margin-bottom: 30px;
    }
    
    .zfx-footer {
        text-align: center;
    }
    
    .zfx-footer h4:after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    
    .zfx-footer-contact li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .zfx-main-container {
        padding: 0 10px;
    }
    
    .zfx-page-intro h1 { font-size: 24px; }
    
    .zfx-call-to-action-lg {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .zfx-pricing-price .zfx-amount {
        font-size: 36px;
    }
}

/* ========================================
   MISSING CLASS DEFINITIONS (Added for compatibility)
   ======================================== */

/* Button Variants */
.zfx-call-to-action-secondary {
    color: #333333;
    background: #e0e0e0;
    background: linear-gradient(to bottom, #f0f0f0 0%, #d0d0d0 100%);
    border-color: #c0c0c0;
}

.zfx-call-to-action-secondary:hover {
    color: #333333;
    background: #d0d0d0;
}

.zfx-call-to-action-white {
    color: #333333;
    background: #ffffff;
    border-color: #ffffff;
}

.zfx-call-to-action-white:hover {
    color: #333333;
    background: #f0f0f0;
}

.zfx-call-to-action-outline-white {
    color: #ffffff;
    background: transparent;
    border: 2px solid #ffffff;
}

.zfx-call-to-action-outline-white:hover {
    color: #333333;
    background: #ffffff;
}

/* Section Styles */
.zfx-section {
    padding: 60px 0;
}

.zfx-section-alt {
    background-color: #f8f9fa;
}

.zfx-section-dark {
    background-color: #2c3e50;
    color: #ffffff;
}

/* About Page */
.zfx-about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.zfx-about-image {
    flex: 1;
    min-width: 300px;
}

.zfx-about-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Pricing Addons */
.zfx-addon-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.zfx-addon-icon {
    font-size: 2rem;
    color: #0088cc;
    margin-bottom: 0.5rem;
}

.zfx-addon-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #0088cc;
}

/* Badges */
.zfx-badge-secondary {
    background: #6c757d;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.zfx-badge-warning {
    background: #ffc107;
    color: #212529;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* Brand Sub */
.zfx-brand-sub {
    font-size: 0.75rem;
    color: #6c757d;
    display: block;
}

/* Card Icon */
.zfx-card-icon {
    font-size: 2.5rem;
    color: #0088cc;
    margin-bottom: 1rem;
}

/* Certifications */
.zfx-cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 4px;
}

.zfx-cert-icon {
    width: 24px;
    height: 24px;
}

/* Contact Page */
.zfx-callback-form-wrapper {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 6px;
}

/* Services Page */
.zfx-service-card-icon {
    font-size: 3rem;
    color: #0088cc;
    margin-bottom: 1rem;
}

/* FAQ */
.zfx-faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 0;
}

.zfx-faq-question {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zfx-faq-answer {
    margin-top: 1rem;
    color: #666666;
}

/* Testimonial */
.zfx-testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.zfx-testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.zfx-testimonial-author {
    font-weight: 600;
}

.zfx-testimonial-company {
    color: #666666;
    font-size: 0.875rem;
}

/* Client Logo Grid */
.zfx-client-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.zfx-client-logo {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.zfx-client-logo:hover {
    opacity: 1;
}

/* Process Steps */
.zfx-process-step {
    text-align: center;
    padding: 2rem;
}

.zfx-step-number {
    width: 48px;
    height: 48px;
    background: #0088cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.zfx-step-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ========================================
   ADDITIONAL CSS CLASSES
   (Comprehensive list for full HTML coverage)
   ======================================== */

/* ----------------------------------------
   Font Awesome Icon Support (fa-* classes)
   ---------------------------------------- */
.zfx-fa {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.zfx-fa-3x { font-size: 3em; }
.zfx-fa-5x { font-size: 5em; }

/* All fa-* icon classes are handled by Font Awesome CDN */
/* These are reference placeholders for icons used in the site */
.zfx-fa-angle-right:before,
.zfx-fa-apple:before,
.zfx-fa-arrow-right:before,
.zfx-fa-balance-scale:before,
.zfx-fa-bank:before,
.zfx-fa-bars:before,
.zfx-fa-building:before,
.zfx-fa-calendar:before,
.zfx-fa-cc-amex:before,
.zfx-fa-cc-mastercard:before,
.zfx-fa-cc-visa:before,
.zfx-fa-certificate:before,
.zfx-fa-check:before,
.zfx-fa-check-circle:before,
.zfx-fa-chevron-down:before,
.zfx-fa-chevron-up:before,
.zfx-fa-clock-o:before,
.zfx-fa-cloud:before,
.zfx-fa-cloud-upload:before,
.zfx-fa-code:before,
.zfx-fa-cog:before,
.zfx-fa-cogs:before,
.zfx-fa-comments:before,
.zfx-fa-credit-card:before,
.zfx-fa-desktop:before,
.zfx-fa-download:before,
.zfx-fa-envelope:before,
.zfx-fa-exchange:before,
.zfx-fa-exclamation-triangle:before,
.zfx-fa-facebook:before,
.zfx-fa-file-text:before,
.zfx-fa-file-text-o:before,
.zfx-fa-gavel:before,
.zfx-fa-gbp:before,
.zfx-fa-graduation-cap:before,
.zfx-fa-handshake-o:before,
.zfx-fa-headphones:before,
.zfx-fa-industry:before,
.zfx-fa-info-circle:before,
.zfx-fa-life-ring:before,
.zfx-fa-lightbulb-o:before,
.zfx-fa-linkedin:before,
.zfx-fa-lock:before,
.zfx-fa-map-marker:before,
.zfx-fa-medkit:before,
.zfx-fa-moon-o:before,
.zfx-fa-paper-plane:before,
.zfx-fa-phone:before,
.zfx-fa-play-circle:before,
.zfx-fa-plus:before,
.zfx-fa-print:before,
.zfx-fa-question-circle:before,
.zfx-fa-recycle:before,
.zfx-fa-refresh:before,
.zfx-fa-server:before,
.zfx-fa-share-alt:before,
.zfx-fa-shield:before,
.zfx-fa-shopping-cart:before,
.zfx-fa-sitemap:before,
.zfx-fa-star:before,
.zfx-fa-ticket:before,
.zfx-fa-times:before,
.zfx-fa-times-circle:before,
.zfx-fa-trophy:before,
.zfx-fa-truck:before,
.zfx-fa-twitter:before,
.zfx-fa-undo:before,
.zfx-fa-user:before,
.zfx-fa-users:before,
.zfx-fa-wifi:before,
.zfx-fa-windows:before {
    /* Icon content handled by Font Awesome */
}

/* ----------------------------------------
   Section Variants
   ---------------------------------------- */
.zfx-section {
    padding: 60px 0;
}

.zfx-section-light {
    background: #ffffff;
}

.zfx-section-gray {
    background: #f5f5f5;
}

.zfx-section-white {
    background: #ffffff;
}

.zfx-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.zfx-section-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.zfx-section-header p {
    font-size: 16px;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.zfx-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.zfx-section-title h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.zfx-section-title p {
    font-size: 16px;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* ----------------------------------------
   Page Header Variants
   ---------------------------------------- */
.zfx-page-header-legal {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding: 50px 0;
}

.zfx-page-header-support {
    background: linear-gradient(135deg, #2c3e50 0%, #27ae60 100%);
}

/* ----------------------------------------
   Intro Content (Homepage)
   ---------------------------------------- */
.zfx-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ----------------------------------------
   Column Offset Utilities
   ---------------------------------------- */
.zfx-col-offset-2 {
    margin-left: 16.666%;
}

.zfx-col-offset-3 {
    margin-left: 25%;
}

/* ----------------------------------------
   Navigation Toggle (Mobile)
   ---------------------------------------- */
.zfx-nav-toggle {
    display: none;
    float: right;
    padding: 10px 12px;
    margin-top: 8px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 18px;
    color: #555;
}

.zfx-nav-toggle:hover {
    background: #e8e8e8;
}

@media (max-width: 768px) {
    .zfx-nav-toggle {
        display: block;
    }
}

/* ----------------------------------------
   About Page Elements
   ---------------------------------------- */
.zfx-company-info-box {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #0088cc;
    padding: 20px;
    margin-top: 25px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.zfx-company-info-box .zfx-info-item {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.zfx-company-info-box .zfx-info-item:last-child {
    border-bottom: none;
}

.zfx-info-item strong {
    color: #2c3e50;
    display: inline-block;
    min-width: 150px;
}

.zfx-image-placeholder {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #ffffff;
    text-align: center;
    padding: 60px 30px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.zfx-image-placeholder i {
    opacity: 0.8;
    margin-bottom: 15px;
}

.zfx-image-placeholder p {
    margin: 0;
    font-size: 18px;
    opacity: 0.9;
}

/* ----------------------------------------
   Timeline Section
   ---------------------------------------- */
.zfx-timeline {
    position: relative;
    padding: 20px 0;
}

.zfx-timeline:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #0088cc;
    margin-left: -1px;
}

.zfx-timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
}

.zfx-timeline-item:nth-child(odd) {
    flex-direction: row;
}

.zfx-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.zfx-timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.zfx-timeline-marker .zfx-year {
    display: inline-block;
    background: #0088cc;
    color: #ffffff;
    padding: 8px 16px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.zfx-year {
    font-weight: 700;
    color: #0088cc;
}

.zfx-timeline-content {
    width: 45%;
    background: #ffffff;
    padding: 25px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.zfx-timeline-content h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.zfx-timeline-content p {
    color: #666;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .zfx-timeline:before {
        left: 20px;
    }
    
    .zfx-timeline-marker {
        left: 20px;
    }
    
    .zfx-timeline-item,
    .zfx-timeline-item:nth-child(odd),
    .zfx-timeline-item:nth-child(even) {
        flex-direction: column;
        padding-left: 60px;
    }
    
    .zfx-timeline-content {
        width: 100%;
    }
}

/* ----------------------------------------
   Values Section
   ---------------------------------------- */
.zfx-value-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.zfx-value-box:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.zfx-value-icon {
    font-size: 48px;
    color: #0088cc;
    margin-bottom: 20px;
}

.zfx-value-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.zfx-value-box p {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.7;
}

/* ----------------------------------------
   Team Section
   ---------------------------------------- */
.zfx-team-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.zfx-team-member {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.zfx-team-member:hover {
    -webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.zfx-member-photo {
    position: relative;
    min-height: 200px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.zfx-member-photo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.zfx-photo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
}

.zfx-member-info {
    padding: 20px;
    text-align: center;
}

.zfx-member-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.zfx-member-title {
    color: #0088cc;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.zfx-member-info p:not(.zfx-member-title) {
    color: #7f8c8d;
    font-size: 14px;
}

/* ----------------------------------------
   Certifications Grid
   ---------------------------------------- */
.zfx-certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.zfx-cert-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    padding: 25px;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.zfx-cert-item:hover {
    border-color: #0088cc;
    -webkit-box-shadow: 0 5px 15px rgba(0,136,204,0.15);
    -moz-box-shadow: 0 5px 15px rgba(0,136,204,0.15);
    box-shadow: 0 5px 15px rgba(0,136,204,0.15);
}

.zfx-cert-item .zfx-cert-icon {
    font-size: 40px;
    color: #0088cc;
    margin-bottom: 15px;
}

.zfx-cert-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.zfx-cert-item p {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 0;
}

.zfx-certification-badges {
    margin-top: 20px;
}

/* ----------------------------------------
   Stats Section Suffix
   ---------------------------------------- */
.zfx-stat-suffix {
    font-size: 24px;
    font-weight: 700;
    color: #0088cc;
    vertical-align: top;
}

/* ----------------------------------------
   Check List
   ---------------------------------------- */
.zfx-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zfx-check-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    align-items: flex-start;
}

.zfx-check-list li:last-child {
    border-bottom: none;
}

.zfx-check-list li i {
    color: #27ae60;
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ----------------------------------------
   CTA Section (Consultation Request)
   ---------------------------------------- */
.zfx-consultation-request {
    background: linear-gradient(135deg, #0088cc 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.zfx-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.zfx-cta-content h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 15px;
}

.zfx-cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.zfx-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ----------------------------------------
   Footer Extensions
   ---------------------------------------- */
.zfx-footer-about {
    padding-right: 30px;
}

.zfx-footer-about p {
    margin-bottom: 10px;
}

.zfx-footer-links h4 {
    font-size: 16px;
}

.zfx-footer-links ul {
    padding: 0;
}

.zfx-footer-links ul li {
    margin-bottom: 8px;
}

.zfx-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.zfx-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #34495e;
    color: #ffffff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-size: 16px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.zfx-social-links a:hover {
    background: #0088cc;
    text-decoration: none;
}

.zfx-social-links-large a {
    width: 44px;
    height: 44px;
    font-size: 20px;
}

/* ----------------------------------------
   Cookie Consent & Banner
   ---------------------------------------- */
.zfx-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    -webkit-box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.zfx-cookie-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.zfx-cookie-content p {
    margin-bottom: 15px;
}

.zfx-cookie-content a {
    color: #3498db;
}

/* ----------------------------------------
   Cookie Page Elements
   ---------------------------------------- */
.zfx-cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.zfx-cookie-table th,
.zfx-cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.zfx-cookie-table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #2c3e50;
}

.zfx-cookie-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.zfx-cookie-preferences-box {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    padding: 25px;
    margin: 25px 0;
    text-align: center;
}

/* ----------------------------------------
   Contact Page Elements
   ---------------------------------------- */
.zfx-contact-form-wrapper {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    padding: 30px;
}

.zfx-contact-form-wrapper h2 {
    margin-bottom: 10px;
}

.zfx-contact-form-wrapper > p {
    color: #7f8c8d;
    margin-bottom: 25px;
}

.zfx-contact-sidebar {
    padding-left: 20px;
}

.zfx-contact-info-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.zfx-contact-info-box h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.zfx-contact-info-box h3 i {
    margin-right: 8px;
    color: #0088cc;
}

.zfx-contact-info-box address {
    font-style: normal;
    line-height: 1.8;
    color: #555;
}

.zfx-contact-info-box p {
    line-height: 1.8;
    margin-bottom: 0;
}

.zfx-hours-table {
    width: 100%;
}

.zfx-hours-table td {
    padding: 6px 0;
    color: #555;
}

.zfx-hours-table td:first-child {
    font-weight: 600;
    color: #2c3e50;
}

/* ----------------------------------------
   Map Section
   ---------------------------------------- */
.zfx-map-section {
    background: #e8e8e8;
}

.zfx-map-container {
    height: 350px;
    background: #ddd;
}

.zfx-map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #ffffff;
}

.zfx-map-placeholder i {
    opacity: 0.8;
    margin-bottom: 15px;
}

.zfx-map-placeholder p {
    margin: 5px 0;
    opacity: 0.9;
}

/* ----------------------------------------
   Quick Contact Box
   ---------------------------------------- */
.zfx-quick-contact-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    padding: 30px;
    text-align: center;
    height: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.zfx-quick-contact-box:hover {
    -webkit-box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.zfx-qc-icon {
    font-size: 48px;
    color: #0088cc;
    margin-bottom: 20px;
}

.zfx-quick-contact-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.zfx-quick-contact-box p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

/* ----------------------------------------
   Form Elements
   ---------------------------------------- */
.zfx-required {
    color: #e74c3c;
}

.zfx-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: normal;
}

.zfx-checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}

.zfx-checkbox-label span {
    line-height: 1.5;
}

.zfx-small {
    font-size: 12px;
    color: #7f8c8d;
}

/* ----------------------------------------
   Pricing Page Elements
   ---------------------------------------- */
.zfx-pricing-guarantee {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.zfx-guarantee-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #27ae60;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    padding: 15px 25px;
}

.zfx-guarantee-box i {
    color: #27ae60;
    font-size: 24px;
    margin-right: 12px;
}

.zfx-guarantee-box span {
    color: #2c3e50;
}

.zfx-price-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    -moz-box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.zfx-price-card:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    -moz-box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.zfx-price-card.zfx-featured {
    border: 2px solid #0088cc;
    position: relative;
}

.zfx-price-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: #0088cc;
    color: #ffffff;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    -webkit-border-radius: 0 0 6px 6px;
    -moz-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px;
}

.zfx-price-header {
    background: linear-gradient(to bottom, #f8f8f8 0%, #f0f0f0 100%);
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.zfx-price-card.zfx-featured .zfx-price-header {
    background: linear-gradient(to bottom, #0099e6 0%, #0077b3 100%);
    border-bottom: none;
}

.zfx-price-card.zfx-featured .zfx-price-header h3,
.zfx-price-card.zfx-featured .zfx-price-header p {
    color: #ffffff;
}

.zfx-price-header h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.zfx-price-subtitle {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 0;
}

.zfx-price-amount {
    padding: 25px;
    text-align: center;
    background: #ffffff;
}

.zfx-price-amount .zfx-currency {
    font-size: 24px;
    vertical-align: top;
    color: #2c3e50;
}

.zfx-price-amount .zfx-amount {
    font-size: 56px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.zfx-price-amount .zfx-period {
    font-size: 14px;
    color: #7f8c8d;
    display: block;
    margin-top: 8px;
}

.zfx-price-description {
    text-align: center;
    padding: 0 25px 15px;
}

.zfx-price-description p {
    color: #7f8c8d;
    font-size: 13px;
    margin-bottom: 0;
}

.zfx-price-features {
    list-style: none;
    padding: 20px 25px;
    margin: 0;
    border-top: 1px solid #e0e0e0;
}

.zfx-price-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.zfx-price-features li:last-child {
    border-bottom: none;
}

.zfx-price-features li i {
    margin-right: 10px;
    width: 16px;
}

.zfx-price-features li i.zfx-fa-check {
    color: #27ae60;
}

.zfx-price-features li i.zfx-fa-times {
    color: #e74c3c;
}

.zfx-price-features li.zfx-disabled {
    color: #bdc3c7;
}

.zfx-pricing-note {
    text-align: center;
    color: #7f8c8d;
    margin-top: 30px;
}

.zfx-pricing-note i {
    margin-right: 8px;
}

.zfx-payment-methods-accepted {
    text-align: center;
}

/* ----------------------------------------
   Rate Cards
   ---------------------------------------- */
.zfx-rate-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.zfx-rate-header {
    background: linear-gradient(to bottom, #f8f8f8 0%, #f0f0f0 100%);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.zfx-rate-header i {
    font-size: 28px;
    color: #0088cc;
    margin-right: 15px;
}

.zfx-rate-header h3 {
    margin: 0;
    font-size: 20px;
}

.zfx-rate-table {
    width: 100%;
}

.zfx-rate-table td {
    padding: 14px 25px;
    border-bottom: 1px solid #f0f0f0;
}

.zfx-rate-table tr:last-child td {
    border-bottom: none;
}

.zfx-rate-value {
    font-weight: 700;
    color: #0088cc;
    text-align: right;
}

.zfx-rate-note {
    padding: 15px 25px;
    background: #f8f9fa;
    color: #7f8c8d;
    font-size: 13px;
    margin: 0;
}

/* ----------------------------------------
   Project Examples
   ---------------------------------------- */
.zfx-project-examples {
    margin-top: 20px;
}

.zfx-project-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 25px;
}

.zfx-project-card h4 {
    margin-bottom: 10px;
}

.zfx-project-card h4 i {
    margin-right: 10px;
    color: #0088cc;
}

.zfx-project-range {
    font-size: 20px;
    font-weight: 700;
    color: #0088cc;
    margin-bottom: 10px;
}

.zfx-project-card p:last-child {
    color: #7f8c8d;
    margin-bottom: 0;
}

/* ----------------------------------------
   Support Page Elements
   ---------------------------------------- */
.zfx-support-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.zfx-support-card:hover {
    -webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.zfx-support-card.zfx-urgent {
    border-color: #e74c3c;
    border-width: 2px;
}

.zfx-support-card.zfx-urgent .zfx-support-icon {
    color: #e74c3c;
}

.zfx-support-icon {
    font-size: 48px;
    color: #0088cc;
    margin-bottom: 20px;
}

.zfx-support-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.zfx-support-card p {
    color: #7f8c8d;
    margin-bottom: 15px;
}

.zfx-support-contact {
    font-size: 18px;
    margin-bottom: 10px;
}

.zfx-support-contact i {
    margin-right: 8px;
}

.zfx-support-note {
    font-size: 12px;
    color: #7f8c8d;
    display: block;
}

/* ----------------------------------------
   SLA Table
   ---------------------------------------- */
.zfx-sla-table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

.zfx-sla-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.zfx-sla-table th,
.zfx-sla-table td {
    padding: 14px 18px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.zfx-sla-table th {
    background: #2c3e50;
    color: #ffffff;
    font-weight: 600;
}

.zfx-sla-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.zfx-sla-notes {
    background: #fff3cd;
    border: 1px solid #ffc107;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    padding: 15px 20px;
    margin-top: 20px;
}

.zfx-sla-notes i {
    color: #856404;
    margin-right: 10px;
}

.zfx-sla-notes p {
    margin: 0;
    color: #856404;
}

/* ----------------------------------------
   Priority Badges
   ---------------------------------------- */
.zfx-priority-badge {
    display: inline-block;
    padding: 4px 12px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

.zfx-priority-badge.zfx-critical,
.zfx-priority-critical .zfx-priority-badge {
    background: #e74c3c;
}

.zfx-priority-badge.zfx-high,
.zfx-priority-high .zfx-priority-badge {
    background: #e67e22;
}

.zfx-priority-badge.zfx-medium,
.zfx-priority-medium .zfx-priority-badge {
    background: #f39c12;
}

.zfx-priority-badge.zfx-low,
.zfx-priority-low .zfx-priority-badge {
    background: #27ae60;
}

.zfx-critical {
    color: #e74c3c;
}

.zfx-high {
    color: #e67e22;
}

.zfx-medium {
    color: #f39c12;
}

.zfx-low {
    color: #27ae60;
}

.zfx-urgent {
    color: #e74c3c;
    font-weight: 700;
}

/* ----------------------------------------
   Ticket Form
   ---------------------------------------- */
.zfx-ticket-form-wrapper {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 35px;
}

.zfx-ticket-form-wrapper h2 {
    margin-bottom: 10px;
}

.zfx-ticket-form-wrapper h2 i {
    margin-right: 10px;
    color: #0088cc;
}

.zfx-ticket-form-wrapper > p {
    color: #7f8c8d;
    margin-bottom: 25px;
}

/* ----------------------------------------
   Remote Tool Box
   ---------------------------------------- */
.zfx-remote-tool-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.zfx-tool-icon {
    font-size: 56px;
    color: #0088cc;
    margin-bottom: 20px;
}

.zfx-remote-tool-box h3 {
    margin-bottom: 15px;
}

.zfx-remote-tool-box p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.zfx-tool-note {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
}

/* ----------------------------------------
   Status Banner
   ---------------------------------------- */
.zfx-status-banner {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.zfx-status-indicator {
    width: 12px;
    height: 12px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-right: 12px;
}

.zfx-status-indicator.zfx-status-operational {
    background: #28a745;
    -webkit-box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3);
    -moz-box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3);
}

.zfx-status-operational {
    color: #155724;
}

/* ----------------------------------------
   Services Page Elements
   ---------------------------------------- */
.zfx-service-image {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.zfx-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.zfx-service-badge {
    display: inline-block;
    background: #0088cc;
    color: #ffffff;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin-bottom: 15px;
}

.zfx-service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.zfx-service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.zfx-service-features li i {
    color: #27ae60;
    margin-right: 12px;
    width: 16px;
    flex-shrink: 0;
}

.zfx-service-pricing {
    margin: 25px 0;
}

.zfx-from-price {
    font-size: 16px;
    color: #2c3e50;
}

.zfx-from-price strong {
    font-size: 28px;
    color: #0088cc;
}

.zfx-feature-icon {
    font-size: 42px;
    color: #0088cc;
    margin-bottom: 20px;
}

.zfx-tech-stack {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.zfx-tech-tag {
    display: inline-block;
    background: #e8f4fc;
    color: #0088cc;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.zfx-partner-logos {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.zfx-partner-badge {
    display: inline-flex;
    align-items: center;
    background: #f5f5f5;
    padding: 8px 15px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
}

.zfx-partner-badge i {
    margin-right: 8px;
    color: #0088cc;
}

/* ----------------------------------------
   FAQ Page Elements
   ---------------------------------------- */
.zfx-faq-section {
    margin-bottom: 40px;
}

.zfx-faq-section .zfx-section-title {
    text-align: left;
    margin-bottom: 25px;
}

.zfx-faq-section .zfx-section-title i {
    margin-right: 10px;
    color: #0088cc;
}

/* ----------------------------------------
   Sidebar Elements
   ---------------------------------------- */
.zfx-sidebar-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 25px;
}

.zfx-sidebar-box h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.zfx-sidebar-box-primary {
    background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
    color: #ffffff;
    border: none;
}

.zfx-sidebar-box-primary h3,
.zfx-sidebar-box-primary p {
    color: #ffffff;
}

.zfx-sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zfx-sidebar-links li {
    border-bottom: 1px solid #f0f0f0;
}

.zfx-sidebar-links li:last-child {
    border-bottom: none;
}

.zfx-sidebar-links a {
    display: block;
    padding: 10px 0;
    color: #555;
}

.zfx-sidebar-links a:hover {
    color: #0088cc;
}

.zfx-sidebar-links a i {
    margin-right: 10px;
    width: 16px;
    color: #0088cc;
}

/* ----------------------------------------
   Legal Page Elements
   ---------------------------------------- */
.zfx-legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.zfx-legal-content h2 {
    margin-top: 35px;
    margin-bottom: 15px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.zfx-legal-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.zfx-legal-content h3 {
    margin-top: 25px;
    margin-bottom: 10px;
}

.zfx-legal-content p,
.zfx-legal-content li {
    line-height: 1.8;
    color: #555;
}

.zfx-legal-content ul {
    margin-bottom: 20px;
}

.zfx-legal-content ul li {
    margin-bottom: 8px;
}

.zfx-legal-meta {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.zfx-legal-meta p {
    margin: 0;
    margin-bottom: 5px;
}

.zfx-legal-meta p:last-child {
    margin-bottom: 0;
}

.zfx-policy-meta {
    background: #e8f4fc;
    border: 1px solid #b8daec;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.zfx-policy-meta p {
    margin: 0 0 5px 0;
    color: #0066aa;
}

.zfx-policy-meta p:last-child {
    margin-bottom: 0;
}

.zfx-legal-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.zfx-legal-footer p {
    margin-bottom: 10px;
}

/* ----------------------------------------
   Print Button
   ---------------------------------------- */
.zfx-print-page {
    display: inline-block;
    margin-bottom: 20px;
}

.zfx-print-page a {
    display: inline-flex;
    align-items: center;
    color: #0088cc;
}

.zfx-print-page a i {
    margin-right: 8px;
}

/* ----------------------------------------
   Payment Policy Elements
   ---------------------------------------- */
.zfx-company-details-box {
    background: #f8f9fa;
    border: 2px solid #3498db;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.zfx-payment-methods {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.zfx-payment-icons {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 15px;
}

/* ----------------------------------------
   Disabled State
   ---------------------------------------- */
.zfx-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ----------------------------------------
   Responsive Additions
   ---------------------------------------- */
@media (max-width: 768px) {
    .zfx-col-offset-2,
    .zfx-col-offset-3 {
        margin-left: 0;
    }
    
    .zfx-timeline:before {
        left: 20px;
    }
    
    .zfx-timeline-marker {
        left: 20px;
    }
    
    .zfx-timeline-content {
        width: 100%;
        margin-left: 50px;
    }
    
    .zfx-contact-sidebar {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .zfx-pricing-guarantee {
        flex-direction: column;
        align-items: center;
    }
    
    .zfx-guarantee-box {
        width: 100%;
        max-width: 350px;
    }
    
    .zfx-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .zfx-team-row {
        margin: 0;
    }
    
    .zfx-footer-about,
    .zfx-footer-links {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .zfx-value-box,
    .zfx-team-member,
    .zfx-support-card {
        margin-bottom: 20px;
    }
    
    .zfx-price-amount .zfx-amount {
        font-size: 42px;
    }
}

