/* Thanksgiving Landing Page Styles - Cleaning Care Solutions */
/* Modern Redesign 2025 */

body.thanksgiving-page {
    background-color: #fff8f1;
}

.thanksgiving-hero {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(0, 86, 179, 0.95) 0%, 
        rgba(0, 86, 179, 0.92) 35%,
        rgba(184, 92, 28, 0.92) 65%,
        rgba(184, 92, 28, 0.95) 100%),
        url('../img/seasonal/thanksgiving-family-dinner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 100px;
    overflow: hidden;
}

.thanksgiving-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.thanksgiving-hero-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem 2.8rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    border: 1px solid rgba(255, 255, 255, 0.9);
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tg-hero-layout {
    margin-top: 1.5rem;
}

.tg-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.tg-cta-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.tg-offer-wrapper {
    display: flex;
    align-items: center;
}

.tg-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tg-hero-right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.thanksgiving-hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

.thanksgiving-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(184, 92, 28, 0.12), rgba(184, 92, 28, 0.08));
    color: #b85c1c;
    font-weight: 700;
    border: 1px solid rgba(184, 92, 28, 0.2);
    box-shadow: 0 2px 8px rgba(184, 92, 28, 0.1);
}

.thanksgiving-badge span {
    display: inline-flex;
    align-items: center;
}

.thanksgiving-badge span::before {
    content: '\f06c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.9rem;
    margin-right: 8px;
}

.thanksgiving-title {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    color: #1a202c;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.thanksgiving-title span {
    background: linear-gradient(135deg, #b85c1c, #d97642);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thanksgiving-subtitle {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.tg-offer-pill {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 
        0 12px 28px rgba(255, 107, 53, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset,
        0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tg-offer-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.tg-offer-pill:hover::before {
    left: 100%;
}

.tg-offer-pill:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 16px 38px rgba(255, 107, 53, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.4) inset,
        0 6px 16px rgba(0, 0, 0, 0.12);
}

.tg-offer-pill strong {
    font-size: 1.15rem;
    margin: 0 6px;
    letter-spacing: 0.02em;
}

.tg-countdown-wrapper {
    margin-top: 1.5rem;
    padding: 20px 22px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    box-shadow: 
        0 10px 30px rgba(15, 23, 42, 0.1),
        0 0 0 1px rgba(226, 232, 240, 0.5) inset;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.tg-countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.tg-countdown {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.tg-countdown-item {
    flex: 1;
    min-width: 70px;
    text-align: center;
}

.tg-countdown-number {
    border-radius: 16px;
    padding: 14px 8px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #0056b3 0%, #3a7bc8 50%, #b85c1c 100%);
    box-shadow: 
        0 8px 20px rgba(0, 86, 179, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    position: relative;
    overflow: hidden;
}

.tg-countdown-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.tg-countdown-label-small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-top: 6px;
    font-weight: 600;
}

.tg-cta-primary {
    background: linear-gradient(135deg, #0056b3, #3a8eff);
    border-radius: 999px;
    padding: 16px 36px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 
        0 12px 32px rgba(0, 86, 179, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 4px 12px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.tg-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.tg-cta-primary:hover::before {
    left: 100%;
}

.tg-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 16px 42px rgba(0, 86, 179, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset,
        0 6px 16px rgba(0, 0, 0, 0.12);
    color: white;
}

.tg-cta-icon {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.tg-cta-primary:hover .tg-cta-icon {
    transform: translateX(4px);
}

.tg-cta-secondary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(0, 86, 179, 0.15);
    box-shadow: 
        0 8px 20px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.tg-cta-secondary:hover {
    background: linear-gradient(135deg, #0056b3, #3a8eff);
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 
        0 12px 28px rgba(0, 86, 179, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.tg-phone-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.12), rgba(0, 86, 179, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056b3;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tg-cta-secondary:hover .tg-phone-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.tg-phone-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tg-phone-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    transition: color 0.3s ease;
}

.tg-cta-secondary:hover .tg-phone-label {
    color: rgba(255, 255, 255, 0.85);
}

.tg-phone-number {
    font-size: 1rem;
    font-weight: 700;
    color: #0056b3;
    transition: color 0.3s ease;
}

.tg-cta-secondary:hover .tg-phone-number {
    color: white;
}

.tg-benefits-row .tg-benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(248, 250, 252, 0.5);
    transition: all 0.3s ease;
}

.tg-benefits-row .tg-benefit:hover {
    background: rgba(248, 250, 252, 0.8);
    transform: translateX(4px);
}

.tg-benefits-row .tg-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(0, 86, 179, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #0056b3;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.tg-benefits-row .tg-benefit-title {
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.tg-benefits-row .tg-benefit-text {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .thanksgiving-hero {
        padding: 80px 0 70px;
        background-attachment: scroll;
    }

    .thanksgiving-title {
        font-size: 2.2rem;
    }

    .thanksgiving-hero-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 767.98px) {
    .thanksgiving-hero {
        padding: 60px 0 50px;
    }

    .thanksgiving-title {
        font-size: 1.9rem;
    }

    .thanksgiving-hero-card {
        padding: 2rem 1.5rem;
    }

    .tg-cta-primary {
        width: 100%;
        justify-content: center;
    }

    .tg-cta-secondary {
        width: 100%;
    }

    .tg-buttons-wrapper {
        gap: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .thanksgiving-hero {
        padding: 50px 0 40px;
    }

    .thanksgiving-title {
        font-size: 1.7rem;
    }

    .thanksgiving-subtitle {
        font-size: 0.95rem;
    }

    .tg-countdown-wrapper {
        padding: 16px;
    }

    .tg-countdown-number {
        font-size: 1.2rem;
        padding: 10px 6px;
    }

    .tg-countdown-item {
        min-width: 60px;
    }

    .tg-offer-pill {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .tg-benefits-row .tg-benefit {
        padding: 10px;
    }

    .tg-benefits-row .tg-icon {
        width: 36px;
        height: 36px;
    }
}

@media (min-width: 1200px) {
    .thanksgiving-hero-card {
        max-width: 1100px;
        padding: 3.25rem 3.5rem;
    }

    .tg-hero-layout {
        margin-top: 2rem;
    }

    .tg-hero-left,
    .tg-hero-right {
        padding: 0 1.25rem;
    }

    .tg-cta-container {
        gap: 1.5rem;
    }
}

/* ========================================
   MODERN HERO LAYOUT - 2025 REDESIGN
   ======================================== */

/* Modern Layout Container */
.tg-modern-layout {
    margin-top: 2rem;
}

/* Offer Banner - Horizontal */
.tg-offer-banner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 20px;
    margin-bottom: 1.75rem;
    box-shadow: 
        0 12px 32px rgba(255, 107, 53, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    position: relative;
    overflow: hidden;
}

.tg-offer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: bannerShine 3s infinite;
}

@keyframes bannerShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.tg-offer-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tg-offer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tg-offer-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
}

.tg-offer-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.01em;
}

.tg-offer-badge {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ff6b35;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

/* Content Grid */
.tg-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Benefits Section */
.tg-benefits-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tg-section-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.tg-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(255, 255, 255, 0.8));
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
}

.tg-benefit-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
}

.tg-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.12), rgba(0, 86, 179, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056b3;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.tg-benefit-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 6px;
}

.tg-benefit-info p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Action Section */
.tg-action-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Countdown Card - Enhanced */
.tg-countdown-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 250, 252, 0.98) 100%);
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 
        0 12px 32px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    position: relative;
    overflow: hidden;
}

.tg-countdown-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.tg-countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(226, 232, 240, 0.4);
    position: relative;
}

.tg-countdown-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #0056b3, #b85c1c);
    border-radius: 2px;
}

.tg-countdown-header i {
    font-size: 1.2rem;
    color: #0056b3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.tg-countdown-header span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: linear-gradient(135deg, #0056b3, #b85c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tg-countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.tg-time-block {
    text-align: center;
    position: relative;
}

.tg-time-value {
    background: linear-gradient(135deg, 
        #0056b3 0%, 
        #3a7bc8 35%,
        #5a9bd5 65%,
        #b85c1c 100%);
    color: white;
    font-size: 1.75rem;
    font-weight: 800;
    padding: 16px 10px;
    border-radius: 16px;
    box-shadow: 
        0 8px 24px rgba(0, 86, 179, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.25) inset,
        0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tg-time-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.25), 
        transparent);
    animation: shimmer 3s infinite;
}

.tg-time-value::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    border-radius: 16px 16px 0 0;
}

.tg-time-block:hover .tg-time-value {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 32px rgba(0, 86, 179, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset,
        0 6px 16px rgba(0, 0, 0, 0.15);
}

.tg-time-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    position: relative;
}

.tg-time-label::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
    border-radius: 1px;
}

/* CTA Stack */
.tg-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Primary Button */
.tg-btn-primary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, #0056b3, #3a8eff);
    border-radius: 999px;
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 
        0 12px 32px rgba(0, 86, 179, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transition: all 0.3s ease;
    overflow: hidden;
}

.tg-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 16px 42px rgba(0, 86, 179, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    color: white;
}

.tg-btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.tg-btn-content i {
    font-size: 1.1rem;
}

.tg-btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.tg-btn-primary:hover .tg-btn-shine {
    left: 100%;
}

/* Divider */
.tg-divider {
    position: relative;
    text-align: center;
    margin: 0.5rem 0;
}

.tg-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(100, 116, 139, 0.2), transparent);
}

.tg-divider span {
    position: relative;
    display: inline-block;
    padding: 0 1rem;
    background: rgba(255, 255, 255, 0.97);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
}

/* Secondary Button */
.tg-btn-secondary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(0, 86, 179, 0.15);
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

.tg-btn-secondary:hover {
    background: linear-gradient(135deg, #0056b3, #3a8eff);
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 86, 179, 0.25);
}

.tg-btn-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.12), rgba(0, 86, 179, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056b3;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tg-btn-secondary:hover .tg-btn-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.tg-btn-text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tg-btn-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    transition: color 0.3s ease;
}

.tg-btn-secondary:hover .tg-btn-label {
    color: rgba(255, 255, 255, 0.85);
}

.tg-btn-phone {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0056b3;
    transition: color 0.3s ease;
}

.tg-btn-secondary:hover .tg-btn-phone {
    color: white;
}

.tg-btn-arrow {
    font-size: 1rem;
    color: #0056b3;
    transition: all 0.3s ease;
}

.tg-btn-secondary:hover .tg-btn-arrow {
    color: white;
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .tg-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .tg-offer-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .tg-offer-content {
        align-items: center;
    }

    .tg-countdown-card {
        padding: 1.5rem 1.25rem;
    }

    .tg-countdown-header {
        margin-bottom: 1.25rem;
        padding-bottom: 0.875rem;
    }

    .tg-countdown-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .tg-time-value {
        font-size: 1.4rem;
        padding: 12px 8px;
    }

    .tg-time-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 575.98px) {
    .tg-modern-layout {
        margin-top: 1.5rem;
    }

    .tg-offer-banner {
        padding: 1.25rem;
    }

    .tg-offer-value {
        font-size: 1rem;
    }

    .tg-benefit-card {
        padding: 1rem;
    }

    .tg-benefit-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .tg-benefit-info h4 {
        font-size: 0.95rem;
    }

    .tg-benefit-info p {
        font-size: 0.85rem;
    }

    .tg-countdown-card {
        padding: 1.25rem 1rem;
    }

    .tg-countdown-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .tg-countdown-header i {
        font-size: 1rem;
    }

    .tg-countdown-header span {
        font-size: 0.7rem;
    }

    .tg-countdown-grid {
        gap: 8px;
    }

    .tg-time-value {
        font-size: 1.3rem;
        padding: 10px 6px;
    }

    .tg-time-label {
        font-size: 0.6rem;
    }

    .tg-btn-primary {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .tg-btn-secondary {
        padding: 0.875rem 1rem;
    }

    .tg-btn-icon-wrapper {
        width: 44px;
        height: 44px;
    }
}
