/* ============================================
   JEFFIX LANDING PAGE STYLES
   Mobile-First Responsive Design
   ============================================ */

/* === CSS VARIABLES === */
:root {
    /* Brand Colors - Matching Jeffix Login Design */
    --jeffix-primary: #00BCD4;
    --jeffix-primary-dark: #0097A7;
    --jeffix-primary-light: #4DD0E1;
    --jeffix-secondary: #00ACC1;
    --jeffix-accent: #26C6DA;
    --jeffix-success: #00C853;

    /* Text Colors */
    --text-primary: #263238;
    --text-secondary: #546E7A;
    --text-light: #90A4AE;
    --text-muted: #B0BEC5;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fbfc;
    --bg-accent: #e0f7ff;
    --bg-light: #fafbfc;

    /* Border & Divider Colors */
    --border-light: #f1f5f9;
    --border-medium: #e2e8f0;
    --border-dark: #cbd5e1;

    /* Status Colors */
    --warning: #ff9800;
    --error: #f44336;
    --info: #2196f3;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-button: 0 2px 4px 0 rgb(0 188 212 / 0.2);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.jeffix-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.jeffix-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.jeffix-nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.jeffix-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #00BCD4;
    font-weight: 700;
    font-size: 1.5rem;
}

.jeffix-logo-img {

    object-fit: contain;
}

.jeffix-nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

.jeffix-nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.jeffix-nav-link:hover {
    color: #00BCD4;
}

.jeffix-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00BCD4;
    transition: width 0.3s ease;
}

.jeffix-nav-link:hover::after {
    width: 100%;
}

/* Language Switcher */
.jeffix-lang-switcher {
    display: flex;
    gap: 0.5rem;
}

.jeffix-lang-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.jeffix-lang-btn:hover,
.jeffix-lang-btn.active {
    background: #00BCD4;
    color: white;
    border-color: #00BCD4;
}

/* Mobile Menu Button */
.jeffix-mobile-menu-btn {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.jeffix-mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.jeffix-hero {
    background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
    color: white;
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.jeffix-hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.jeffix-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.jeffix-hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
}

.jeffix-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.jeffix-hero-image {
    text-align: center;
}

.jeffix-hero-img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

/* ============================================
   BUTTONS
   ============================================ */
.jeffix-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-button);
    min-width: 120px;
    letter-spacing: 0.025em;
}

.jeffix-btn-primary {
    background: var(--jeffix-primary);
    color: white;
    border: 1px solid var(--jeffix-primary);
}

.jeffix-btn-primary:hover {
    background: var(--jeffix-primary-dark);
    border-color: var(--jeffix-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

.jeffix-btn-outline {
    background: transparent;
    color: var(--jeffix-primary);
    border: 1.5px solid var(--jeffix-primary);
    box-shadow: none;
}

.jeffix-btn-outline:hover {
    background: var(--jeffix-primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-button);
}

.jeffix-btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-sm);
}

.jeffix-btn-secondary:hover {
    background: var(--bg-primary);
    border-color: var(--jeffix-primary);
    color: var(--jeffix-primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.jeffix-btn-full {
    width: 100%;
}

/* Button Loading State */
.jeffix-btn-loading {
    display: none;
}

.jeffix-btn.loading .jeffix-btn-text {
    display: none;
}

.jeffix-btn.loading .jeffix-btn-loading {
    display: inline;
}

/* ============================================
   SECTIONS
   ============================================ */
/* ============================================
   SECTION HEADERS
   ============================================ */
.jeffix-section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.jeffix-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--jeffix-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.jeffix-section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   SERVICES SECTION (Business Solutions)
   ============================================ */
/* ============================================
   BUSINESS SOLUTIONS SECTION
   ============================================ */
.jeffix-services {
    padding: 5rem 0;
    background: #ffffff;
}

.jeffix-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 3rem;
    margin-top: 3rem;
}

.jeffix-service-card {
    display: block;
    grid-template-columns: 2fr 300px;
    gap: 2rem;
    align-items: center;
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.jeffix-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--jeffix-primary);
}

.jeffix-service-content {
    text-align: left;
}
.jeffix-service-content .card-title{
    display: flex;
    align-items: center;
    gap: 7px;
}

.jeffix-service-icon {
    color: var(--jeffix-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.75rem;
    background: var(--bg-accent);
    border-radius: var(--radius-md);
}

.jeffix-service-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.jeffix-service-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.jeffix-service-image {
    margin-top:15px ;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--bg-light);
}

.jeffix-service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.jeffix-service-card:hover .jeffix-service-image img {
    transform: scale(1.05);
}

/* ============================================
   EQUIPMENT CATALOG SECTION
   ============================================ */
.jeffix-equipment {
    background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
    color: white;
    padding: 5rem 0;
}

.jeffix-equipment .jeffix-section-title,
.jeffix-equipment .jeffix-section-subtitle {
    color: white;
}

.jeffix-equipment-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
}

.jeffix-equipment-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.jeffix-equipment-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.jeffix-equipment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.jeffix-equipment-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.jeffix-equipment-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.jeffix-equipment-cta {
    text-align: center;
}

/* ============================================
   SOFTWARE FEATURES SECTION
   ============================================ */
.jeffix-software {
    padding: 5rem 0;
    background: #f8fbfc;
}

.jeffix-software-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
}

.jeffix-software-feature {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.jeffix-software-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.jeffix-feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.jeffix-software-feature h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.jeffix-software-feature p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.9rem;
}

.jeffix-software-cta {
    text-align: center;
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.jeffix-why-choose {
    padding: 5rem 0;
}

.jeffix-why-choose-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.jeffix-why-choose-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.jeffix-why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.jeffix-why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.jeffix-why-choose-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.jeffix-why-choose-item p {
    color: #64748b;
    line-height: 1.6;
}

/* ============================================
   SUCCESS STORIES SECTION
   ============================================ */
.jeffix-success-stories {
    background: linear-gradient(135deg, #0097A7 0%, #00BCD4 100%);
    color: white;
    padding: 5rem 0;
}

.jeffix-success-stories .jeffix-section-title,
.jeffix-success-stories .jeffix-section-subtitle {
    color: white;
}

.jeffix-success-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.jeffix-success-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.jeffix-success-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.jeffix-success-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    display: block;
}

.jeffix-success-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.jeffix-success-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.jeffix-testimonials {
    padding: 5rem 0;
}

.jeffix-testimonials-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.jeffix-testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #00BCD4;
}

.jeffix-testimonial-content {
    margin-bottom: 1.5rem;
}

.jeffix-testimonial-content p {
    font-style: italic;
    color: #475569;
    line-height: 1.7;
}

.jeffix-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.jeffix-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.jeffix-testimonial-info h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.jeffix-testimonial-info p {
    color: #64748b;
    font-size: 0.875rem;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.jeffix-process {
    padding: 5rem 0;
    background: #f8fbfc;
}

.jeffix-process-steps {
    display: grid;
    gap: 3rem;
}

.jeffix-process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.jeffix-process-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #00BCD4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jeffix-step-number {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.jeffix-process-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.jeffix-process-content p {
    color: #64748b;
    line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.jeffix-contact {
    padding: 5rem 0;
}

.jeffix-contact-content {
    display: grid;
    gap: 3rem;
    align-items: start;
}

.jeffix-contact-info h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.jeffix-contact-info p {
    color: #64748b;
    margin-bottom: 2rem;
}

.jeffix-contact-details {
    display: grid;
    gap: 1.5rem;
}

.jeffix-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.jeffix-contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: #e0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jeffix-contact-item h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.jeffix-contact-item p {
    color: #64748b;
    margin: 0;
}

/* Form Styles */
.jeffix-form {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.jeffix-form-group {
    margin-bottom: 1.5rem;
}

.jeffix-form-label {
    display: block;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.jeffix-form-input,
.jeffix-form-textarea,
select.jeffix-form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: all 0.2s ease;
    appearance: none;
}

select.jeffix-form-input {
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23546E7A" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 0.65rem auto;
    padding-right: 2.5rem;
}

.jeffix-form-input:focus,
.jeffix-form-textarea:focus,
select.jeffix-form-input:focus {
    outline: none;
    border-color: var(--jeffix-primary);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
    background: var(--bg-primary);
}

.jeffix-form-input::placeholder,
.jeffix-form-textarea::placeholder {
    color: var(--text-light);
    opacity: 1;
}

.jeffix-form-error {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

.jeffix-whatsapp-link {
    color: #25d366;
    text-decoration: none;
    font-weight: 500;
}

.jeffix-whatsapp-link:hover {
    color: #128c7e;
    text-decoration: underline;
}

.jeffix-error-message {
    color: var(--error);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.jeffix-form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   FOOTER
   ============================================ */
.jeffix-footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.jeffix-footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.jeffix-footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.jeffix-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.jeffix-footer-logo-img {
    width: 35px;
    height: 35px;
}

.jeffix-footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.jeffix-footer-description {
    color: #94a3b8;
    line-height: 1.6;
    max-width: 300px;
}

.jeffix-footer-links {
    list-style: none;
}

.jeffix-footer-links li {
    margin-bottom: 0.5rem;
}

.jeffix-footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.jeffix-footer-links a:hover {
    color: white;
}

.jeffix-footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.jeffix-footer-bottom p {
    color: #94a3b8;
    margin: 0;
}

.jeffix-social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.jeffix-social-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.jeffix-social-link:hover {
    color: white;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */
@media (min-width: 768px) {
    .jeffix-container {
        padding: 0 40px;
    }

    .jeffix-nav-menu {
        display: flex;
    }

    .jeffix-mobile-menu-btn {
        display: none;
    }

    .jeffix-hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .jeffix-hero-title {
        font-size: 3rem;
    }

    .jeffix-services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .jeffix-service-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .jeffix-service-content {
        text-align: center;
    }

    .jeffix-service-image {
        order: -1;
    }

    .jeffix-service-image img {
        height: 250px;
    }

    .jeffix-equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jeffix-software-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jeffix-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jeffix-success-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .jeffix-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .jeffix-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jeffix-contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .jeffix-footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .jeffix-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ============================================
   RESPONSIVE DESIGN - DESKTOP
   ============================================ */
@media (min-width: 1024px) {
    .jeffix-hero-title {
        font-size: 3.5rem;
    }

    .jeffix-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 3rem;
    }

    .jeffix-service-card {
        grid-template-columns: 1fr 300px;
        gap: 2rem;
        text-align: left;
    }

    .jeffix-service-content {
        text-align: left;
    }

    .jeffix-service-image {
        order: unset;
    }

    .jeffix-service-image img {
        height: 200px;
    }

    .jeffix-equipment-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .jeffix-software-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .jeffix-why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .jeffix-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .jeffix-process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .jeffix-process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .jeffix-footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   ANIMATIONS & INTERACTIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jeffix-service-card,
.jeffix-testimonial-card,
.jeffix-process-step {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations will be handled by JavaScript */
.jeffix-animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.jeffix-animate-on-scroll.jeffix-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.jeffix-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.jeffix-text-center {
    text-align: center;
}

.jeffix-mb-0 {
    margin-bottom: 0;
}

.jeffix-mt-4 {
    margin-top: 1rem;
}
