/* ============================================
   SMS4 GLOBAL STYLES - Centralized CSS
   Consolidates all inline styles used across the site
   ============================================ */

/* COLOR VARIABLES & TEXT */
:root {
    --primary-color: #ff6b2c;
    --dark-text: #333;
    --medium-gray: #666;
    --light-gray: #999;
    --white: white;
    --bg-light: #f5f5f5;
    --bg-lighter: #f9f9f9;
    --bg-accent: #fff8f5;
    --bg-success: #f0fff4;
}

/* TEXT COLORS */
.text-primary { color: var(--primary-color); }
.text-dark { color: var(--dark-text); }
.text-gray { color: var(--medium-gray); }
.text-light-gray { color: var(--light-gray); }
.text-white { color: var(--white); }

/* TEXT ALIGNMENT */
.text-center { text-align: center; }
.text-left { text-align: left; }

/* TEXT DECORATION */
.no-decoration { text-decoration: none; }

/* FONT SIZES */
.font-size-12 { font-size: 12px; }
.font-size-13 { font-size: 13px; }
.font-size-14 { font-size: 14px; }
.font-size-16 { font-size: 16px; }
.font-size-18 { font-size: 18px; }
.font-size-40 { font-size: 40px; }
.font-size-48 { font-size: 48px; }

/* LINE HEIGHT */
.line-height-1-6 { line-height: 1.6; }
.line-height-1-8 { line-height: 1.8; }

/* BACKGROUND COLORS */
.bg-light { background-color: var(--bg-light); }
.bg-lighter { background-color: var(--bg-lighter); }
.bg-accent { background-color: var(--bg-accent); }
.bg-success { background-color: var(--bg-success); }
.bg-white { background-color: var(--white); }

/* PADDING SIZES */
.p-20 { padding: 20px; }
.p-30 { padding: 30px; }
.p-40 { padding: 40px; }
.p-50 { padding: 50px; }

/* MARGIN SIZES */
.m-0 { margin: 0; }
.m-auto { margin: 0 auto; }

.mb-5 { margin-bottom: 5px; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-25 { margin-top: 25px; }
.mt-30 { margin-top: 30px; }
.mt-60 { margin-top: 60px; }
.mt-80 { margin-top: 80px; }

.ml-10 { margin-left: 10px; }
.ml-20 { margin-left: 20px; }
.ml-30 { margin-left: 30px; }
.ml-35 { margin-left: 35px; }

.mx-auto { margin-left: auto; margin-right: auto; }

/* LIST STYLES */
.list-unstyled {
    list-style: none;
    padding: 0;
}

/* BORDER RADIUS */
.rounded-5 { border-radius: 5px; }
.rounded-10 { border-radius: 10px; }

/* BORDERS */
.border-left-primary {
    border-left: 5px solid var(--primary-color);
}

.border-left-4-primary {
    border-left: 4px solid var(--primary-color);
}

/* BOX SHADOWS */
.shadow-light {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* TRANSITIONS */
.transition-all {
    transition: all 0.3s ease;
}

/* CONTAINER CARDS & BOXES */
.card-light {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.card-light-full {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.card-accent {
    background-color: var(--bg-accent);
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 30px;
}

.card-accent-large {
    background-color: var(--bg-accent);
    padding: 40px;
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
    margin-bottom: 60px;
}

.card-success {
    background-color: var(--bg-success);
    padding: 40px;
    border-radius: 10px;
    height: 100%;
}

/* HEADING STYLES */
h2.section-title {
    margin-bottom: 20px;
}

h2.section-title.text-center {
    text-align: center;
    margin-bottom: 40px;
}

h3.section-heading {
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 40px;
}

h3.heading-primary {
    color: var(--primary-color);
    margin-bottom: 20px;
}

h3.heading-dark {
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 20px;
}

h4.heading-primary {
    color: var(--primary-color);
    margin-bottom: 15px;
}

h4.heading-dark {
    color: var(--dark-text);
    margin-bottom: 15px;
}

h5.heading-dark {
    color: var(--dark-text);
    margin-bottom: 10px;
}

h5.heading-secondary {
    color: var(--dark-text);
    margin-top: 20px;
    margin-bottom: 10px;
}

/* ICON STYLES */
.icon-primary {
    color: var(--primary-color);
    margin-right: 10px;
}

.icon-large {
    font-size: 48px;
    color: var(--primary-color);
}

.icon-medium {
    font-size: 40px;
    color: var(--primary-color);
}

/* BUTTONS */
button.btn-primary,
a.btn-primary,
.modren-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 40px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

button.btn-primary-large,
a.btn-primary-large {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 50px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

/* TABLE STYLES */
table.table-light { font-size: 14px; }

table.table-light thead {
    background-color: var(--bg-light);
}

table.table-light tbody tr {
    background-color: var(--bg-lighter);
}

/* LISTS WITH ICONS */
li.list-item-icon {
    margin-bottom: 10px;
}

li.list-item-icon i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* PARAGRAPHS */
p.text-muted {
    color: var(--medium-gray);
}

p.text-muted-light {
    color: var(--light-gray);
    font-size: 12px;
}

p.help-text {
    margin-bottom: 15px;
}

/* FEATURE BOXES */
.feature-box {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
}

.feature-icon {
    text-align: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 48px;
    color: var(--primary-color);
}

/* STAT BOXES */
.stat-box {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.stat-number {
    font-size: 48px;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
}

/* RESPONSIVE CONTAINERS */
.container-responsive { 
    margin-bottom: 60px; 
}

.row-responsive {
    margin-bottom: 60px;
}

/* SPACING UTILITIES */
.max-width-700 {
    max-width: 700px;
}

.max-width-800 {
    max-width: 800px;
}

/* CASE STUDY CARDS */
.case-study-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.case-study-card-center {
    text-align: center;
    margin-bottom: 30px;
}

/* CONTACT INFO BOX */
.contact-info-box {
    background-color: var(--bg-accent);
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
}

.contact-info-item {
    margin-bottom: 20px;
}

.contact-info-label {
    color: var(--light-gray);
    margin: 0 0 5px 0;
    font-size: 12px;
}

.contact-info-value {
    color: var(--dark-text);
    margin: 0;
    line-height: 1.6;
}

/* CTA SECTION */
.cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.cta-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 16px;
}

/* PRICING TABLE */
.pricing-table {
    font-size: 14px;
    margin-bottom: 60px;
}

.pricing-table thead {
    background-color: var(--bg-light);
}

.pricing-table tbody tr {
    background-color: var(--bg-lighter);
}

/* BREADCRUMB STYLING */
.breadcrumb-item {
    margin: 5px 0;
}

/* FOOTER LEGAL LINKS */
a.legal-link {
    color: var(--medium-gray);
    text-decoration: none;
}

a.legal-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* MAXIMIZE CONTENT WIDTH */
.content-wide {
    max-width: 100%;
}

/* UTILITY FOR FULL HEIGHT */
.h-full { height: 100%; }
.h-fit { height: fit-content; }

/* DISPLAY UTILITIES */
.d-inline-block { display: inline-block; }
.d-block { display: block; }

/* JOURNEY STEPS */
.journey-step {
    text-align: center;
    padding: 20px;
}

.journey-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

/* USE CASE CARDS */
.use-case-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
}

.use-case-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* FEATURE ITEMS */
.feature-item {
    margin-bottom: 25px;
}

.feature-item h5 {
    color: var(--dark-text);
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--medium-gray);
    margin-left: 30px;
}

/* FEATURE ICON */
.feature-icon {
    color: var(--primary-color);
    margin-right: 10px;
}

/* MEDIA RESPONSIVE */
@media (max-width: 768px) {
    .p-40 { padding: 25px; }
    .mb-60 { margin-bottom: 40px; }
    .mt-80 { margin-top: 50px; }
    .font-size-48 { font-size: 36px; }
    .font-size-40 { font-size: 32px; }
}
