/* ========================================
   SHARED COMPONENTS LIBRARY
   Extracted from home-enhanced.css
   ======================================== */

/* ========================================
   1. CSS VARIABLES (Design Tokens)
   ======================================== */
:root {
    /* Color System */
    --color-primary: #0f766e;
    --color-primary-light: #14b8a6;
    --color-primary-dark: #0d5b54;
    --color-accent: #f97316;
    --color-accent-light: #fb923c;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;

    /* Text Colors */
    --color-text: #1f2937;
    --color-text-muted: #6b7280;
    --color-text-light: #9ca3af;

    /* Border Colors */
    --color-border: #d1d5db;
    --color-border-light: #e5e7eb;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    --gradient-accent: linear-gradient(135deg, #f97316 0%, #fb923c 100%);

    /* Typography */
    --font-display: 'Be Vietnam Pro', sans-serif;
    --font-body: 'Manrope', sans-serif;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px rgba(15, 118, 110, 0.3);

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 50px;
}

/* ========================================
   2. PAGE CONTAINER
   ======================================== */
.page-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .page-container {
        padding: 0 16px;
    }
}

/* ========================================
   3. GLOBAL INPUT FOCUS RESET
   ======================================== */
.search-input:focus,
.search-input-wrapper .search-input:focus,
input.search-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.search-input-wrapper:focus-within,
.search-wrapper:focus-within,
.hero__search:focus-within {
    box-shadow: none !important;
}

/* ========================================
   4. SECTION HEADERS
   ======================================== */
.section-header-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    gap: 32px;
}

.section-header-enhanced__text {
    flex: 1;
}

.section-eyebrow-enhanced {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.section-title-enhanced {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.9);
    margin: 0 0 12px;
}

.section-subtitle-enhanced {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    max-width: 600px;
}

@media (max-width: 768px) {
    .section-header-enhanced {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }
}

/* ========================================
   4. BUTTONS
   ======================================== */

/* Primary Button */
.btn-primary-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.2);
}

.btn-primary-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.3);
    color: white;
}

.btn-primary-enhanced svg {
    transition: transform 0.3s ease;
}

.btn-primary-enhanced:hover svg {
    transform: translateX(4px);
}

.btn-primary-enhanced.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

/* Secondary Button */
.btn-secondary-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-enhanced:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

/* Outline Button */
.btn-outline-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    color: var(--color-primary);
    border: 1px solid rgba(15, 118, 110, 0.3);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-enhanced:hover {
    border-color: var(--color-primary);
    background: rgba(15, 118, 110, 0.05);
}

/* ========================================
   5. CARDS
   ======================================== */
.card-enhanced {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.card-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.card-enhanced__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.card-enhanced__body {
    margin-bottom: 16px;
}

.card-enhanced__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.9);
    margin: 0 0 8px;
}

.card-description {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    margin: 0;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
}

.meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

/* ========================================
   6. STAT CARDS
   ======================================== */
.stat-card-enhanced {
    position: relative;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 118, 110, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 118, 110, 0.12);
    border-color: var(--color-primary-light);
}

.stat-card-enhanced__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: white;
    margin-bottom: 16px;
}

.stat-card-enhanced__icon svg {
    width: 28px;
    height: 28px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
}

/* ========================================
   7. BADGES
   ======================================== */
.badge-enhanced {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
}

.badge-enhanced--success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.badge-enhanced--warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-warning);
}

.badge-enhanced--danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-danger);
}

.badge-enhanced--primary {
    background: rgba(15, 118, 110, 0.1);
    color: var(--color-primary);
}

.badge-enhanced--accent {
    background: rgba(249, 115, 22, 0.1);
    color: var(--color-accent);
}

/* Trust Badge */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-soft);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
}

.trust-badge svg {
    color: var(--color-primary);
}

/* ========================================
   8. FORMS
   ======================================== */
.input-group-enhanced {
    margin-bottom: 20px;
}

.input-label-enhanced {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.85);
}

.input-enhanced {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.85);
    background: white;
    transition: all 0.3s ease;
}

.input-enhanced:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.input-enhanced::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.input-hint-enhanced {
    display: block;
    margin-top: 6px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(0, 0, 0, 0.5);
}

.input-error-enhanced {
    border-color: var(--color-danger);
}

.input-error-message {
    display: block;
    margin-top: 6px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--color-danger);
}

/* Select */
.select-enhanced {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.85);
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.select-enhanced:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

/* ========================================
   9. GRID UTILITIES
   ======================================== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   10. SPACING UTILITIES
   ======================================== */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.p-16 { padding: 16px; }
.p-24 { padding: 24px; }
.p-32 { padding: 32px; }

/* ========================================
   11. TEXT UTILITIES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.text-success { color: var(--color-success); }
.text-warning { color: var(--color-warning); }
.text-danger { color: var(--color-danger); }
.text-muted { color: rgba(0, 0, 0, 0.5); }

.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

/* ========================================
   12. ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

.animate-scale-in {
    animation: scaleIn 0.4s ease-out;
}

/* ========================================
   13. DISPLAY UTILITIES
   ======================================== */
.hide-mobile {
    display: block;
}

.show-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
    .show-mobile {
        display: block;
    }
}

/* ========================================
   14. PAGINATION
   ======================================== */
.pagination-enhanced {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination-enhanced a,
.pagination-enhanced span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-enhanced a {
    background: white;
    color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.pagination-enhanced a:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.pagination-enhanced .active {
    background: var(--color-primary);
    color: white;
    border: 1px solid var(--color-primary);
}

.pagination-enhanced .disabled {
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
}

/* ========================================
   15. PAGE HERO (Compact)
   ======================================== */
.page-hero-compact {
    padding: 64px 0 48px;
    background: linear-gradient(to bottom, #f0fdfa 0%, #ffffff 100%);
    text-align: center;
}

.page-hero-compact .section-header-enhanced {
    justify-content: center;
    text-align: center;
    margin-bottom: 0;
}

.page-hero-compact .section-header-enhanced__text {
    text-align: center;
}

@media (max-width: 768px) {
    .page-hero-compact {
        padding: 48px 0 32px;
    }
}

/* ========================================
   16. EMPTY STATE
   ======================================== */
.empty-state {
    text-align: center;
    padding: 64px 24px;
}

.empty-state__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 118, 110, 0.1);
    border-radius: 50%;
    color: var(--color-primary);
}

.empty-state__icon svg {
    width: 40px;
    height: 40px;
}

.empty-state__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.85);
    margin-bottom: 8px;
}

.empty-state__description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 24px;
}

/* ========================================
   17. ENHANCED FOOTER
   ======================================== */
.site-footer {
    background: linear-gradient(180deg, #001529 0%, #002140 100%);
    color: rgba(255, 255, 255, 0.85);
}

.web-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 64px;
    padding: 80px 0 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-family: var(--font-display), sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
}

.footer-brand svg {
    filter: drop-shadow(0 2px 8px rgba(20, 184, 166, 0.4));
    color: var(--color-primary-light);
}

.footer-brand span {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, white 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.web-footer-top > div:first-child p {
    font-family: var(--font-body), sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-color: var(--color-primary-light);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.web-footer-top h4 {
    font-family: var(--font-display), sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.web-footer-top h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary-light) 0%, transparent 100%);
    border-radius: 2px;
}

.web-footer-top a {
    display: block;
    padding: 10px 0;
    font-family: var(--font-body), sans-serif;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.web-footer-top a:hover {
    color: var(--color-primary-light);
    padding-left: 8px;
}

.web-footer-top a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 4px;
    height: 4px;
    background: var(--color-primary-light);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.web-footer-top a:hover::before {
    transform: translateY(-50%) scaleX(1);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-family: var(--font-body), sans-serif;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.footer-contact span {
    font-size: 1.25rem;
    flex-shrink: 0;
    filter: grayscale(1) brightness(1.5);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0;
}

.footer-contact a:hover {
    color: var(--color-primary-light);
    padding-left: 0;
}

.footer-contact a:hover::before {
    display: none;
}

.web-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 0;
}

.web-footer-bottom .page-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.web-footer-bottom p {
    font-family: var(--font-body), sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 28px;
}

.footer-bottom-links a {
    font-family: var(--font-body), sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0;
}

.footer-bottom-links a:hover {
    color: var(--color-primary-light);
    padding-left: 0;
}

.footer-bottom-links a::before {
    display: none;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-primary-light);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-bottom-links a:hover::after {
    transform: scaleX(1);
}

/* Footer Responsive */
@media (max-width: 968px) {
    .web-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .web-footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0 40px;
    }

    .web-footer-bottom .page-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .footer-brand {
        font-size: 1.5rem;
    }

    .footer-brand svg {
        width: 28px;
        height: 28px;
    }

    .web-footer-top h4 {
        font-size: 1rem;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   18. NEWSLETTER SECTION
   ======================================== */
.newsletter-section-enhanced {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f0fdfa 100%);
}

.newsletter-card-enhanced {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 118, 110, 0.1);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(15, 118, 110, 0.08);
    position: relative;
    overflow: hidden;
}

.newsletter-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.newsletter-card-enhanced__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.3);
}

.newsletter-card-enhanced__icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.newsletter-card-enhanced__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.newsletter-card-enhanced__description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.newsletter-form-enhanced {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-wrapper {
    position: relative;
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-input-wrapper input {
    flex: 1;
    padding: 18px 24px;
    border: 2px solid rgba(15, 118, 110, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: white;
}

.newsletter-input-wrapper input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: none;
}

.newsletter-input-wrapper input::placeholder {
    color: #94a3b8;
}

.newsletter-submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-display);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 118, 110, 0.4);
}

.newsletter-submit-btn svg {
    width: 20px;
    height: 20px;
}

.newsletter-privacy {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-top: 16px;
}

/* Newsletter Responsive */
@media (max-width: 968px) {
    .newsletter-card-enhanced {
        padding: 48px 32px;
    }

    .newsletter-card-enhanced__title {
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .newsletter-card-enhanced {
        padding: 40px 24px;
    }

    .newsletter-card-enhanced__title {
        font-size: 1.5rem;
    }

    .newsletter-card-enhanced__description {
        font-size: 1rem;
    }

    .newsletter-input-wrapper {
        flex-direction: column;
    }

    .newsletter-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   19. CTA SECTION
   ======================================== */
.cta-section-enhanced {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-bg .floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape-cta-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-cta-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
    animation: float 6s ease-in-out infinite reverse;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section-enhanced__title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    font-family: var(--font-display);
    line-height: 1.2;
}

.cta-section-enhanced__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.cta-feature svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: white;
    color: var(--color-primary);
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-family: var(--font-display);
    border: 2px solid white;
}

.cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-display);
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

/* CTA Responsive */
@media (max-width: 968px) {
    .cta-section-enhanced__title {
        font-size: 2.25rem;
    }

    .cta-section-enhanced__subtitle {
        font-size: 1.125rem;
    }

    .cta-features {
        gap: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .cta-section-enhanced {
        padding: 80px 0;
    }

    .cta-section-enhanced__title {
        font-size: 1.875rem;
    }

    .cta-section-enhanced__subtitle {
        font-size: 1rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

/* Float animation for CTA */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}
