/* Explain: Styles for theme components like cards, buttons, and blog content. - */
.theme-shell {
    border: 1px solid rgba(234, 215, 183, 0.75);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
}

.theme-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 999px;
    background: var(--accent-color);
    color: #ffffff;
    font-weight: 800;
    padding: 0.85rem 1.2rem;
    white-space: nowrap;
    box-shadow: 0 14px 28px rgba(249, 115, 74, 0.28);
}

.theme-button:hover {
    transform: translateY(-2px);
    background: #ea6841;
}

.theme-button-secondary {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(234, 215, 183, 0.95);
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    font-weight: 800;
    padding: 0.85rem 1.2rem;
    white-space: nowrap;
}

.theme-button-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.service-card {
    overflow: hidden;
    border-radius: var(--radius-medium);
    border: 1px solid rgba(234, 215, 183, 0.85);
    background: var(--surface-color);
    box-shadow: var(--shadow-card);
    transition: all 300ms ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 54px rgba(15, 61, 74, 0.16);
}

.layered-frame {
    position: relative;
    isolation: isolate;
}

.layered-frame::before,
.layered-frame::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(234, 215, 183, 0.9);
    border-radius: var(--radius-large);
    inset: 16px -16px -16px 16px;
    z-index: -1;
}

.layered-frame::after {
    border-color: rgba(249, 115, 74, 0.35);
    inset: -14px 18px 18px -14px;
}

.form-input {
    min-height: 48px;
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(15, 61, 74, 0.16);
    background: rgba(255, 255, 255, 0.92);
    padding: 0.85rem 1rem;
    color: var(--text-color);
}

.form-input::placeholder {
    color: #93A0A4;
}

.form-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(249, 115, 74, 0.13);
    outline: none;
}

.blog-content h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.blog-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.blog-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
}