/* ============================================
   Top Delivery Elementor Widgets Styles
   ============================================ */

/* Hero Section Widget */
.td-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.td-hero-bg,
.td-hero-video,
.td-hero-youtube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.td-hero-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: none;
}

@media (max-width: 768px) {
    .td-hero-video,
    .td-hero-youtube {
        display: none;
    }
    
    .td-hero-video-fallback {
        display: block;
    }
}

.td-hero-youtube {
    overflow: hidden;
}

.td-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(30, 41, 59, 0.7) 100%);
    z-index: 1;
}

.td-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    min-height: 100vh;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.td-hero-text {
    max-width: 900px;
}

.td-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--td-primary);
    background: rgba(245, 159, 11, 0.15);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.td-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--td-primary-foreground);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.td-hero-highlight {
    color: var(--td-primary);
}

.td-hero-description {
    font-size: 1.25rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin-bottom: 2.5rem;
}

.td-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.td-hero-btn-primary,
.td-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.td-hero-btn-primary {
    background: var(--td-primary);
    color: var(--td-primary-foreground);
    box-shadow: var(--td-shadow-soft);
}

.td-hero-btn-primary:hover {
    background: var(--td-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--td-shadow-elevated);
}

.td-hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--td-primary-foreground);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.td-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.td-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.td-hero-stat {
    text-align: center;
}

.td-hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--td-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.td-hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .td-hero-content {
        min-height: auto;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .td-hero-title {
        font-size: 2rem;
    }
    
    .td-hero-description {
        font-size: 1rem;
    }
    
    .td-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .td-hero-btn-primary,
    .td-hero-btn-secondary {
        width: 100%;
    }
    
    .td-hero-stats {
        gap: 2rem;
        justify-content: center;
    }
}

/* Header Widget */
.td-header {
    position: relative;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.td-header-sticky {
    position: sticky;
    top: 0;
}

.td-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.td-header-logo img {
    display: block;
    height: auto;
}

.td-header-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.td-header-menu a {
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.td-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.td-header-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.td-header-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--td-text);
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .td-header-menu {
        display: none;
    }
    
    .td-header-mobile-toggle {
        display: flex;
    }
    
    .td-header-cta {
        display: none;
    }
}

/* Footer Widget */
.td-footer {
    color: rgba(255, 255, 255, 0.7);
}

.td-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.td-footer-col {
    display: flex;
    flex-direction: column;
}

.td-footer-logo {
    margin-bottom: 1.5rem;
}

.td-footer-logo img {
    display: block;
    height: auto;
}

.td-footer-company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.td-footer-description {
    line-height: 1.75;
    margin-bottom: 2rem;
}

.td-footer-heading {
    margin: 0 0 1.5rem 0;
}

.td-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.td-footer-link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.td-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.td-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.td-footer-contact-item svg {
    flex-shrink: 0;
    color: var(--td-primary);
}

.td-footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.td-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.td-footer-social svg {
    fill: currentColor;
}

.td-footer-bottom {
    margin-top: 3rem;
}

.td-footer-copyright {
    text-align: center;
    margin: 0;
}

@media (max-width: 992px) {
    .td-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .td-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .td-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form & Application Form Widgets */
.td-contact-form-wrapper,
.td-application-form-wrapper {
    width: 100%;
}

.td-contact-form,
.td-application-form {
    width: 100%;
}

.td-form-title {
    margin: 0 0 1rem 0;
}

.td-form-description {
    margin: 0 0 2rem 0;
}

.td-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
    .td-form-row {
        grid-template-columns: 1fr;
    }
}

.td-form-col {
    flex: 1;
}

.td-form-group {
    margin-bottom: 1.25rem;
}

.td-form-label {
    display: block;
    margin-bottom: 0.5rem;
}

.td-form-label .required {
    color: var(--td-primary);
    margin-right: 0.25rem;
}

.td-form-input,
.td-form-select,
.td-form-textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    font-family: inherit;
}

.td-form-input:focus,
.td-form-select:focus,
.td-form-textarea:focus {
    outline: none;
    border-color: var(--td-primary);
    box-shadow: 0 0 0 3px rgba(245, 159, 11, 0.1);
}

.td-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    background-size: 12px;
    padding-left: 3rem;
}

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

.td-form-submit-wrapper {
    margin-top: 2rem;
}

.td-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.td-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.td-form-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(245, 159, 11, 0.3);
}

.td-submit-loading svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.td-form-message {
    margin-top: 1.5rem;
}

.td-success-message {
    padding: 1rem 1.5rem;
    background: #d1fae5;
    color: #065f46;
    border-radius: 8px;
    border: 1px solid #a7f3d0;
}

.td-error-message {
    padding: 1rem 1.5rem;
    background: #fee2e2;
    color: #991b1b;
    border-radius: 8px;
    border: 1px solid #fecaca;
}

/* CTA Banner Widget */
.td-cta-banner {
    padding: 5rem 0;
}

.td-cta-content {
    position: relative;
    background: var(--td-gradient-primary);
    border-radius: var(--td-radius-3xl);
    padding: 2.5rem;
    overflow: hidden;
    box-shadow: var(--td-shadow-elevated);
}

.td-cta-blur-1,
.td-cta-blur-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.td-cta-blur-1 {
    top: -6rem;
    right: -6rem;
    width: 18rem;
    height: 18rem;
    background: rgba(255, 255, 255, 0.1);
}

.td-cta-blur-2 {
    bottom: -8rem;
    left: -4rem;
    width: 20rem;
    height: 20rem;
    background: rgba(0, 0, 0, 0.2);
}

.td-cta-grid {
    position: relative;
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

.td-cta-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--td-primary-foreground);
    margin-bottom: 1rem;
}

.td-cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

.td-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .td-cta-grid {
        grid-template-columns: 1fr auto;
    }
    
    .td-cta-content {
        padding: 4rem;
    }
}

/* Section Heading Widget */
.td-section-heading {
    margin-bottom: 3rem;
}

.td-eyebrow {
    display: inline-block;
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--td-accent-foreground);
    background: var(--td-accent);
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.td-section-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--td-foreground);
    margin-bottom: 1.25rem;
    margin-top: 0;
}

.td-section-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--td-muted-foreground);
    max-width: 700px;
    margin: 0;
}

[dir="rtl"] .td-section-heading[style*="text-align: center"] .td-section-description,
.td-section-heading[style*="text-align: center"] .td-section-description {
    margin-left: auto;
    margin-right: auto;
}

/* Service Cards Widget */
.td-service-cards {
    display: grid;
    gap: 1.5rem;
}

.td-service-card {
    background: var(--td-card);
    border: 1px solid var(--td-border);
    border-radius: var(--td-radius-2xl);
    padding: 1.75rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.td-service-card:hover {
    border-color: rgba(245, 159, 11, 0.4);
    box-shadow: var(--td-shadow-elevated);
}

.td-service-cards.td-hover-up .td-service-card:hover {
    transform: translateY(-4px);
}

.td-service-cards.td-hover-scale .td-service-card:hover {
    transform: scale(1.02);
}

.td-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--td-gradient-primary);
    color: var(--td-primary-foreground);
    border-radius: var(--td-radius-2xl);
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.td-service-card:hover .td-service-icon {
    transform: scale(1.1);
}

.td-service-icon img,
.td-service-icon svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.td-service-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--td-foreground);
    margin-bottom: 0.5rem;
}

.td-service-description {
    color: var(--td-muted-foreground);
    line-height: 1.75;
    margin: 0;
    flex-grow: 1;
}

/* Why Us Cards Widget */
.td-why-us-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.td-why-us-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--td-radius-3xl);
    padding: 1.75rem;
    padding-top: 5rem;
    text-align: right;
    transition: all 0.3s ease;
    height: 100%;
}

.td-why-us-card:hover {
    border-color: rgba(245, 159, 11, 0.5);
    background: rgba(255, 255, 255, 0.06);
}

.td-why-us-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    justify-center: center;
    width: 3rem;
    height: 3rem;
    background: rgba(245, 159, 11, 0.15);
    border: 1px solid rgba(245, 159, 11, 0.25);
    color: var(--td-primary);
    border-radius: var(--td-radius-xl);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.td-why-us-card:hover .td-why-us-icon {
    background: var(--td-primary);
    color: var(--td-primary-foreground);
}

.td-why-us-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--td-foreground);
    margin-bottom: 0.5rem;
}

.td-why-us-description {
    color: rgba(148, 163, 184, 0.65);
    line-height: 1.75;
    font-size: 0.875rem;
}

/* Steps Timeline Widget */
.td-steps-timeline {
    position: relative;
    display: grid;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .td-steps-timeline.td-has-connector::before {
        content: '';
        position: absolute;
        top: 58px;
        right: 6%;
        left: 6%;
        height: 3px;
        background: var(--td-primary);
        border-radius: 9999px;
        z-index: 0;
    }
}

.td-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.td-step-number {
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: var(--td-secondary);
    color: var(--td-secondary-foreground);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 800;
    box-shadow: var(--td-shadow-soft);
}

.td-step-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    background: var(--td-gradient-primary);
    color: var(--td-primary-foreground);
    border-radius: 50%;
    font-size: 2.5rem;
    box-shadow: var(--td-shadow-elevated);
    transition: all 0.3s ease;
    margin-bottom: 1.75rem;
}

.td-step-icon-wrapper img,
.td-step-icon-wrapper svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.td-step-item:hover .td-step-icon-wrapper {
    transform: scale(1.1);
}

.td-step-item:not(:first-child) .td-step-icon-wrapper {
    background: var(--td-card);
    color: var(--td-primary);
    border: 1px solid var(--td-border);
}

.td-step-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--td-foreground);
    margin-bottom: 0.75rem;
}

.td-step-description {
    color: var(--td-muted-foreground);
    line-height: 1.75;
    max-width: 300px;
    margin: 0 auto;
}

/* Benefits Grid Widget */
.td-benefits-grid {
    display: grid;
    gap: 1.25rem;
}

.td-benefits-grid.td-grid-cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.td-benefits-grid.td-grid-cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.td-benefits-grid.td-grid-cols-4 {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.td-benefits-grid.td-grid-cols-6 {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.td-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--td-card);
    border: 1px solid var(--td-border);
    border-radius: var(--td-radius-2xl);
    padding: 1.25rem;
    transition: all 0.3s ease;
    height: 100%;
}

.td-benefit-item:hover {
    border-color: var(--td-primary);
    box-shadow: var(--td-shadow-soft);
}

.td-benefit-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--td-accent);
    color: var(--td-primary);
    border-radius: var(--td-radius-xl);
    font-size: 1.5rem;
}

.td-benefit-title {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--td-foreground);
}

.td-benefit-check {
    flex-shrink: 0;
    color: var(--td-primary);
    margin-right: auto;
}

/* Stats Counter Widget */
.td-stats-counter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 600px;
}

.td-stat-item {
    text-align: right;
}

.td-stat-number {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--td-primary);
}

.td-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

/* Marquee Bar Widget */
.td-marquee-bar {
    background: var(--td-primary);
    color: var(--td-primary-foreground);
    padding: 0.75rem 0;
    overflow: hidden;
    position: relative;
}

.td-marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    will-change: transform;
}

.td-marquee-pause-hover:hover {
    animation-play-state: paused !important;
}

.td-marquee-item {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.td-marquee-text {
    font-weight: 700;
    letter-spacing: 0.025em;
    display: inline-block;
}

.td-marquee-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.td-marquee-icon i {
    font-size: inherit;
}

.td-marquee-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.td-marquee-image {
    height: 24px;
    width: auto;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.td-marquee-svg {
    display: inline-flex;
    align-items: center;
}

.td-marquee-svg svg {
    fill: currentColor;
    width: auto;
    height: 1.5em;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Page Hero Widget */
.td-page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.td-page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.td-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(30, 41, 59, 0.7) 100%);
}

.td-page-hero-content {
    position: relative;
    z-index: 10;
    padding: 5rem 0;
}

.td-page-hero-eyebrow {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--td-primary-foreground);
    background: rgba(245, 159, 11, 0.2);
    border: 1px solid rgba(245, 159, 11, 0.4);
    border-radius: 9999px;
    backdrop-filter: blur(10px);
    margin-bottom: 1.25rem;
}

.td-page-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.td-page-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* Button Styles */
.td-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    font-weight: 800;
    border-radius: 9999px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.td-btn-primary {
    background: var(--td-gradient-primary);
    color: var(--td-primary-foreground);
    box-shadow: var(--td-shadow-elevated);
}

.td-btn-primary:hover {
    box-shadow: var(--td-shadow-glow);
    transform: scale(1.05);
}

.td-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.td-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.td-btn-cta-primary {
    background: var(--td-secondary);
    color: var(--td-secondary-foreground);
}

.td-btn-cta-primary:hover {
    transform: scale(1.05);
}

.td-btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--td-primary-foreground);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.td-btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.td-btn-icon {
    transition: transform 0.3s ease;
}

.td-btn:hover .td-btn-icon {
    transform: translateX(-4px);
}

/* Responsive */
@media (max-width: 767px) {
    .td-hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .td-stats-counter {
        grid-template-columns: repeat(3, 1fr);
    }
}
