/* CT Deals Widget - Elementor */

.ctd-section {
    background-color: #1e2535;
    padding: 70px 40px 80px;
    box-sizing: border-box;
    font-family: 'Barlow', sans-serif;
}

.ctd-header {
    max-width: 1200px;
    margin: 0 auto 48px;
}

.ctd-eyebrow-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.ctd-eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 3px;
    background: #f47c20;
    flex-shrink: 0;
}

.ctd-eyebrow {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f47c20;
}

.ctd-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 56px;
    color: #ffffff;
    line-height: 1.05;
    text-transform: uppercase;
    margin: 0 0 10px;
    padding: 0;
}

.ctd-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    color: #9aa3b5;
    margin: 0;
    padding: 0;
}

.ctd-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.ctd-card {
    background: #232d42;
    border: 2px dashed #f47c20;
    border-radius: 6px;
    padding: 32px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-sizing: border-box;
}

.ctd-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(244, 124, 32, 0.2);
}

.ctd-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 68px;
    color: #f47c20;
    line-height: 1;
    margin-bottom: 2px;
}

.ctd-qualifier {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    color: #f47c20;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ctd-service {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ctd-desc {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: #9aa3b5;
    line-height: 1.6;
    flex-grow: 1;
    margin: 0 0 20px;
    padding: 0;
}

.ctd-btn {
    display: block;
    width: 100%;
    padding: 13px 16px;
    background: #f47c20;
    color: #ffffff !important;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 12px;
    transition: background 0.2s ease;
    text-align: center;
}

.ctd-btn:hover {
    background: #d96c10;
    color: #ffffff !important;
    text-decoration: none !important;
}

.ctd-fine {
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    color: #9aa3b5;
    margin: 0;
    padding: 0;
    opacity: 0.8;
}

@media ( max-width: 1024px ) {
    .ctd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ctd-title {
        font-size: 42px;
    }
}

@media ( max-width: 600px ) {
    .ctd-section {
        padding: 50px 20px 60px;
    }
    .ctd-grid {
        grid-template-columns: 1fr;
    }
    .ctd-title {
        font-size: 34px;
    }
    .ctd-value {
        font-size: 56px;
    }
}
