/* Theme 4 - Corporate Professional (Deep Blue & Clean White) */

/* All styles scoped under .theme-4 */
.theme-4 {
    --t4-bg: #f0f4f8;
    /* Light Grey-Blue Background */
    --t4-card-bg: #ffffff;
    --t4-primary: #0f4c81;
    /* Classic Blue */
    --t4-secondary: #537895;
    /* Steel Blue */
    --t4-accent: #e74c3c;
    /* Alert Red for small details */
    --t4-text: #2c3e50;
    --t4-muted: #7f8c8d;
    --t4-border: #e2e8f0;

    /* Font setup */
    font-family: var(--global-font);
}

.theme-4 .section-title {
    color: var(--t4-primary);
    font-family: var(--global-font);
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    position: relative;
    padding-left: 15px;
    border-left: 5px solid var(--t4-primary);
    line-height: 1;
    display: inline-block;
}

.theme-4 .card {
    width: 350px;
    padding: 30px;
    border-radius: 8px;
    /* Classic rounded */
    background: var(--t4-card-bg);
    border: 1px solid var(--t4-border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    position: relative;
    display: flex;
    flex-direction: column;
    color: var(--t4-text);
    transition: transform 0.2s, box-shadow 0.2s;
}

.theme-4 .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.theme-4 .badge {
    color: white;
    background: var(--t4-primary);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    padding: 4px 8px;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
    border-radius: 4px;
}

.theme-4 .title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--t4-text);
}

.theme-4 .desc {
    font-size: 14px;
    color: var(--t4-muted);
    line-height: 1.6;
}

/* Icon Styles - Standard & Clean */
.theme-4 .icon {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: #eef2f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t4-primary);
    transition: background 0.3s;
    cursor: pointer;
}

.theme-4 .icon:hover {
    background: var(--t4-primary);
    color: white;
}

.theme-4 .icon:hover svg {
    color: white;
}

.theme-4 .icon svg {
    width: 22px;
    height: 22px;
    color: var(--t4-primary);
}

/* Contact Card Overrides */
.theme-4 .card.contact-card {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 20px 25px;
    background: white;
    border-left: 4px solid var(--t4-primary);
    /* Accent border */
}

.theme-4 .contact-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
}

.theme-4 .contact-icon {
    position: static;
    width: 40px;
    height: 40px;
    background: var(--t4-primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-4 .contact-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.theme-4 .contact-title {
    color: var(--t4-text);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.theme-4 .contact-desc {
    color: var(--t4-secondary);
    font-weight: 500;
    font-size: 15px;
}

.theme-4 .contact-arrow {
    color: var(--t4-border);
}

/* Process Card Overrides */
.theme-4 .card.process-card {
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-top: 4px solid var(--t4-secondary);
    border-radius: 4px;
}

.theme-4 .card.process-card .icon {
    position: static;
    margin-bottom: 15px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--t4-border);
    color: var(--t4-secondary);
}

.theme-4 .card.process-card .icon svg {
    color: var(--t4-secondary);
}

.theme-4 .card.process-card .title {
    font-size: 16px;
    font-weight: 600;
    color: var(--t4-text);
    margin: 0;
}

/* Separator Card Overrides */
.theme-4 .card.separator-card {
    background: var(--t4-primary);
    border: none;
    box-shadow: 0 5px 15px rgba(15, 76, 129, 0.3);
    flex-direction: row;
    align-items: center;
    padding: 20px 40px;
    width: auto;
    border-radius: 50px;
    /* Full rounded pill */
    gap: 15px;
    min-height: auto;
}

.theme-4 .card.separator-card .icon {
    position: static;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
}

.theme-4 .card.separator-card .icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.theme-4 .card.separator-card .title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Special Review Card */
.theme-4 .special-review-card {
    background: white;
    border: 1px solid var(--t4-border);
    border-bottom: 8px solid var(--t4-primary);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.theme-4 .special-review-card .icon {
    position: static;
    background: transparent;
    margin-bottom: 20px;
    width: auto;
    height: auto;
}

.theme-4 .special-review-card .icon svg {
    color: var(--t4-accent);
    width: 40px;
    height: 40px;
}

.theme-4 .special-review-card .top-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--t4-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.theme-4 .special-review-card .main-text {
    font-size: 32px;
    font-weight: 800;
    color: var(--t4-primary);
    line-height: 1.2;
}

/* Header Card Overrides */
.theme-4 .header-card {
    width: 500px;
    height: 350px;
    max-width: 100%;
    background: white;
    border: 1px solid var(--t4-border);
    border-radius: 12px;
    padding: 40px;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.theme-4 .header-card .mode-toggle {
    background: #f8f9fa;
    border: 1px solid var(--t4-border);
    border-radius: 4px;
    padding: 4px;
    margin-bottom: 30px;
}

/* R10 STRICT COLORS FOR MODE BUTTONS */
.theme-4 .header-card .mode-btn.dark {
    border: 2px solid #333539 !important;
    color: #333539 !important;
    background: transparent !important;
    margin-right: 5px;
}

.theme-4 .header-card .mode-btn.light {
    border: 2px solid #f5f8fa !important;
    color: #f5f8fa !important;
    background: transparent !important;
}

.theme-4 .header-card .subtitle {
    color: var(--t4-accent);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
}

.theme-4 .header-card .main-title {
    font-size: 60px;
    color: var(--t4-primary);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.theme-4 .header-card .cta-btn {
    background: var(--t4-primary);
    color: white;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    box-shadow: 0 4px 10px rgba(15, 76, 129, 0.2);
}

.theme-4 .header-card .cta-btn:hover {
    background: #093b67;
}

.theme-4 .header-card .cta-text {
    margin-top: 15px;
    color: var(--t4-muted);
    font-weight: 500;
    font-size: 13px;
    display: block !important;
    /* Show secondary text in this theme */
}

/* EXPORT OVERRIDES for Theme 4 */
/* Since this theme is mainly solid colors, minimal overrides needed */
.theme-4.export-mode .card,
.theme-4.export-mode .header-card {
    background: #ffffff !important;
}

.theme-4.export-mode .section-title {
    border-left-color: #0f4c81 !important;
}

/* CSS Graphic Replacement */
.theme-4 .header-mascot-img {
    display: none !important;
}

.theme-4 .header-alt-design {
    display: flex !important;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.theme-4 .alt-content {
    border: 2px solid var(--t4-border);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.theme-4 .alt-icon {
    width: 100px;
    height: 100px;
    background: var(--t4-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.3);
}

.theme-4 .alt-icon svg {
    width: 50px;
    height: 50px;
    color: white;
}

.theme-4 .alt-text {
    font-size: 36px;
    font-weight: 800;
    color: var(--t4-primary);
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Feature Description Card */
.theme-4 .card.feature-desc-card {
    width: 700px;
    max-width: 100%;
    background: white;
    border: 1px solid var(--t4-border);
    border-bottom: 8px solid var(--t4-primary);
    border-radius: 8px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.theme-4 .feature-top {
    position: relative;
    background: #f8f9fa;
    border: 1px solid var(--t4-border);
    border-radius: 50px;
    padding: 15px 40px 15px 60px;
    display: inline-flex;
    align-items: center;
    margin-left: 20px;
}

.theme-4 .feature-top .icon {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background: var(--t4-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(15, 76, 129, 0.2);
}

.theme-4 .feature-top .icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.theme-4 .feature-top .title {
    color: var(--t4-primary);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0;
}

.theme-4 .feature-desc-card .desc,
.theme-4 .text-only-card .desc {
    color: var(--t4-text);
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
}

/* Text Only Card */
.theme-4 .card.text-only-card {
    width: 700px;
    max-width: 100%;
    background: white;
    border: 1px solid var(--t4-border);
    border-bottom: 8px solid var(--t4-primary);
    border-radius: 8px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-4 .card.text-only-card.small {
    width: 350px;
}

/* Pricing Card */
.theme-4 .card.pricing-card {
    width: 350px;
    padding: 0;
    overflow: hidden;
}

.theme-4 .pricing-header {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-bottom: 1px solid var(--t4-border);
}

.theme-4 .plan-name {
    color: var(--t4-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.theme-4 .plan-price {
    font-size: 46px;
    font-weight: 800;
    color: var(--t4-text);
    line-height: 1;
    margin-bottom: 10px;
}

.theme-4 .plan-price span {
    font-size: 15px;
    color: var(--t4-muted);
    font-weight: 500;
}

.theme-4 .pricing-header .plan-desc {
    color: var(--t4-muted);
    font-size: 14px;
    line-height: 1.5;
}

.theme-4 .pricing-features {
    list-style: none;
    padding: 30px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: white;
}

.theme-4 .pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--t4-text);
    font-size: 15px;
    font-weight: 500;
}

.theme-4 .pricing-features li svg {
    color: var(--t4-primary);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* Simple Price Card */
.theme-4 .card.simple-price-card {
    width: 350px;
    background: white;
    border: 1px solid var(--t4-border);
    border-bottom: 8px solid var(--t4-primary);
    padding: 50px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.theme-4 .simple-price-card .icon {
    color: var(--t4-primary);
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.theme-4 .simple-price-card .plan-name {
    color: var(--t4-primary);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: inline-block;
}

.theme-4 .simple-price-card .plan-price {
    font-size: 54px;
    font-weight: 800;
    color: var(--t4-text);
    line-height: 1;
}