 'Poppins', sans-serif;
    font-size: 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    border-color: var(--icipe-primary-teal);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 76, 77, 0.1);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: block;
}

/* ========================================
   12. BREADCRUMBS
======================================== */

.breadcrumb,
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: var(--spacing-md) 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    padding: 0 0.75rem;
    color: var(--icipe-olive-green);
}

.breadcrumb-item a {
    color: var(--icipe-primary-teal);
}

.breadcrumb-item a:hover {
    color: var(--icipe-lime-green);
}

.breadcrumb-item.active {
    color: var(--text-secondary);
}

/* ========================================
   13. PAGINATION
======================================== */

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 0.5rem;
    justify-content: center;
    margin: var(--spacing-lg) 0;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0.5rem 1rem;
    border: 2px solid var(--icipe-light-green);
    background-color: var(--bg-primary);
    color: var(--icipe-primary-teal);
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background-color: var(--icipe-primary-teal);
    border-color: var(--icipe-primary-teal);
    color: var(--text-light);
}

/* ========================================
   14. TABLES
======================================== */

table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-lg) 0;
}

th {
    background-color: var(--icipe-primary-teal);
    color: var(--text-light);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

td {
    padding: 1rem;
    border-bottom: 1px solid var(--icipe-light-green);
}

tr:hover {
    background-color: rgba(225, 234, 186, 0.3);
}

/* ========================================
   15. UTILITY CLASSES
======================================== */

/* Spacing Utilities */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--spacing-xs) !important; }
.mt-2 { margin-top: var(--spacing-sm) !important; }
.mt-3 { margin-top: var(--spacing-md) !important; }
.mt-4 { margin-top: var(--spacing-lg) !important; }
.mt-5 { margin-top: var(--spacing-xl) !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--spacing-xs) !important; }
.mb-2 { margin-bottom: var(--spacing-sm) !important; }
.mb-3 { margin-bottom: var(--spacing-md) !important; }
.mb-4 { margin-bottom: var(--spacing-lg) !important; }
.mb-5 { margin-bottom: var(--spacing-xl) !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: var(--spacing-xs) !important; }
.pt-2 { padding-top: var(--spacing-sm) !important; }
.pt-3 { padding-top: var(--spacing-md) !important; }
.pt-4 { padding-top: var(--spacing-lg) !important; }
.pt-5 { padding-top: var(--spacing-xl) !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: var(--spacing-xs) !important; }
.pb-2 { padding-bottom: var(--spacing-sm) !important; }
.pb-3 { padding-bottom: var(--spacing-md) !important; }
.pb-4 { padding-bottom: var(--spacing-lg) !important; }
.pb-5 { padding-bottom: var(--spacing-xl) !important; }

/* Text Alignment */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

/* Text Colors */
.text-teal { color: var(--icipe-primary-teal) !important; }
.text-lime { color: var(--icipe-lime-green) !important; }
.text-olive { color: var(--icipe-olive-green) !important; }
.text-white { color: var(--text-light) !important; }

/* Background Colors */
.bg-teal { background-color: var(--icipe-primary-teal) !important; }
.bg-light-green { background-color: var(--icipe-light-green) !important; }
.bg-beige { background-color: var(--icipe-beige) !important; }
.bg-white { background-color: var(--bg-primary) !important; }

/* Display Utilities */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline-block { display: inline-block !important; }

/* Flexbox Utilities */
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.align-center { align-items: center !important; }
.flex-wrap { flex-wrap: wrap !important; }

/* ========================================
   16. ANIMATIONS & TRANSITIONS
======================================== */

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* ========================================
   17. RESPONSIVE UTILITIES
======================================== */

/* Mobile First Approach */
@media (max-width: 576px) {
    .hide-mobile { display: none !important; }
}

@media (min-width: 577px) and (max-width: 768px) {
    .hide-tablet { display: none !important; }
}

@media (min-width: 769px) {
    .hide-desktop { display: none !important; }
}

/* Container Max-Widths */
.container {
    width: 100%;
    padding-right: var(--spacing-md);
    padding-left: var(--spacing-md);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container { max-width: 540px; }
}

@media (min-width: 768px) {
    .container { max-width: 720px; }
}

@media (min-width: 992px) {
    .container { max-width: 960px; }
}

@media (min-width: 1200px) {
    .container { max-width: 1140px; }
}

/* ========================================
   18. PRINT STYLES
======================================== */

@media print {
    /* Hide non-essential elements */
    .no-print,
    .site-header,
    .site-footer,
    .breadcrumb,
    .social-links,
    button,
    .btn {
        display: none !important;
    }
    
    /* Optimize for printing */
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    /* Show link URLs after links */
    a[href]:after {
        content: " (" attr(href) ")";
    }
}

/* ========================================
   END OF ICIPE BRAND GUIDELINES CSS
======================================== */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus, a:focus {
    outline: none;
    border-color: none;
    box-shadow: none;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Form Groups */
.form-group {
    margin-bottom: var(--spacing-md);
}

/* Contact Form 7 Specific */
.wpcf7-form-control-wrap {
    display: block;
}

.wpcf7-not-valid {
    border-color: #dc3545 !important;
}

.wpcf7-response-output {
    padding: 1rem;
    margin: var(--spacing-md) 0;
    border: 2px solid var(--icipe-lime-green);
    border-radius: 0;
}

/* ========================================
   12. BREADCRUMBS
======================================== */

.breadcrumbs,
.breadcrumb {
    padding: var(--spacing-md) 0;
    background-color: var(--bg-light);
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: inline-block;
    color: var(--text-secondary);
}

.breadcrumb-item a {
    color: var(--icipe-primary-teal);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--icipe-lime-green);
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--text-muted);
}

/* ========================================
   13. TABLES
======================================== */

table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-md) 0;
}

thead {
    background-color: var(--icipe-primary-teal);
    color: var(--text-light);
}

th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 3px solid var(--icipe-lime-green);
}

td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--icipe-light-green);
}

tbody tr:hover {
    background-color: var(--bg-light);
}

/* ========================================
   14. LISTS - Styled
======================================== */

.styled-list,
.content ul:not(.menu) {
    list-style: none;
    padding-left: 0;
}

.styled-list li,
.content ul:not(.menu) li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.styled-list li::before,
.content ul:not(.menu) li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--icipe-lime-green);
    border-radius: 50%;
}

/* Ordered List */
.content ol {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
}

.content ol li {
    counter-increment: item;
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.content ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    background-color: var(--icipe-primary-teal);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

/* ========================================
   15. BLOCKQUOTES
======================================== */

blockquote {
    border-left: 4px solid var(--icipe-lime-green);
    padding: var(--spacing-md) var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    background-color: var(--bg-light);
    font-style: italic;
    position: relative;
}

blockquote::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 1rem;
    font-size: 4rem;
    line-height: 1;
    color: var(--icipe-lime-green);
    opacity: 0.3;
}

blockquote p {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-primary);
}

blockquote cite {
    display: block;
    margin-top: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: normal;
}

/* ========================================
   16. PAGINATION
======================================== */

.pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    margin: var(--spacing-lg) 0;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border: 2px solid var(--icipe-primary-teal);
    color: var(--icipe-primary-teal);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination a:hover {
    background-color: var(--icipe-lime-green);
    border-color: var(--icipe-lime-green);
    color: var(--icipe-primary-teal);
}

.pagination .current {
    background-color: var(--icipe-primary-teal);
    color: var(--text-light);
}

/* ========================================
   17. BADGES & TAGS
======================================== */

.badge,
.tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background-color: var(--icipe-lime-green);
    color: var(--icipe-primary-teal);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0;
}

.badge-secondary {
    background-color: var(--icipe-olive-green);
    color: var(--text-light);
}

.badge-outline {
    background-color: transparent;
    border: 2px solid var(--icipe-primary-teal);
    color: var(--icipe-primary-teal);
}

/* ========================================
   18. ALERTS & NOTIFICATIONS
======================================== */

.alert {
    padding: 1rem 1.5rem;
    margin: var(--spacing-md) 0;
    border-left: 4px solid;
    background-color: var(--bg-light);
}

.alert-success {
    border-color: var(--icipe-lime-green);
    background-color: rgba(174, 189, 20, 0.1);
}

.alert-info {
    border-color: var(--icipe-primary-teal);
    background-color: rgba(0, 76, 77, 0.1);
}

.alert-warning {
    border-color: var(--icipe-gold);
    background-color: rgba(172, 153, 70, 0.1);
}

/* ========================================
   19. UTILITY CLASSES
======================================== */

/* Text Colors */
.text-primary { color: var(--icipe-primary-teal) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-light { color: var(--text-light) !important; }
.text-muted { color: var(--text-muted) !important; }

/* Background Colors */
.bg-primary { background-color: var(--icipe-primary-teal) !important; }
.bg-light { background-color: var(--bg-light) !important; }
.bg-accent { background-color: var(--icipe-lime-green) !important; }
.bg-beige { background-color: var(--icipe-beige) !important; }

/* Spacing Utilities */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--spacing-sm) !important; }
.mt-2 { margin-top: var(--spacing-md) !important; }
.mt-3 { margin-top: var(--spacing-lg) !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--spacing-sm) !important; }
.mb-2 { margin-bottom: var(--spacing-md) !important; }
.mb-3 { margin-bottom: var(--spacing-lg) !important; }

.pt-1 { padding-top: var(--spacing-sm) !important; }
.pt-2 { padding-top: var(--spacing-md) !important; }
.pt-3 { padding-top: var(--spacing-lg) !important; }

.pb-1 { padding-bottom: var(--spacing-sm) !important; }
.pb-2 { padding-bottom: var(--spacing-md) !important; }
.pb-3 { padding-bottom: var(--spacing-lg) !important; }

/* Text Alignment */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

/* ========================================
   20. ANIMATIONS - Subtle & Professional
======================================== */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* ========================================
   END OF ICIPE BRAND GUIDELINES CSS
======================================== */
