/* ============================================================
   SaudiAkar ERP — Main Stylesheet
   RTL Arabic, Bootstrap 5.3 RTL
   UTF-8 encoding | All font sizes in px
   ============================================================ */

/* ---- Custom Fonts ---- */
@font-face {
    font-family: 'mothnna';
    src: url('../fonts/mothnna.eot');
    src: local('?'),
         url('../fonts/mothnna.ttf') format('truetype');
    font-weight: normal;
}


@font-face {
    font-family: 'ge-ss-bold';
    src: url('../fonts/ge-ss-bold.eot') format('woff'),
         url('../fonts/ge-ss-bold.ttf') format('truetype'),
         url('../fonts/ge-ss-bold.woff') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ge-ss-med';
    src: url('../fonts/ge-ss-med.eot') format('opentype'),
         url('../fonts/ge-ss-med.ttf') format('truetype'),
         url('../fonts/ge-ss-med.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ftl';
    src: url('../fonts/ftl.eot') format('opentype'),
         url('../fonts/ftl.ttf') format('truetype'),
         url('../fonts/ftl.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AlJazeera';
    src: url('../fonts/aljazeera.woff') format('woff'),
         url('../fonts/aljazeera.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:'F-DFont';
    src:url('../fonts/FD-Bd.eot');
    src:local('?'),
        url('../fonts/FD-Bd.ttf') format('truetype');
    font-weight:normal;
}

@font-face {
    font-family:'F-DFontSmall';
    src:url('../fonts/FD-Reg.eot');
    src:local('?'),
        url('../fonts/FD-Reg.ttf') format('truetype');
    font-weight:normal;
}


/* ---- CSS Variables ---- */
:root {
    --teal:        #00838F;
    --teal-dark:   #006b75;
    --teal-light:  #e0f5f7;
    --orange:      #EF6C00;
    --orange-dark: #c55a00;
    --orange-light:#fff3e0;
    --dark:        #1a1a2e;
    --dark-2:      #16213e;
    --gray:        #6c757d;
    --light-bg:    #F8FAFB;
    --white:       #ffffff;
    --border:      #e2e8f0;
    --shadow-sm:   0 2px 8px rgba(0,131,143,.12);
    --shadow-md:   0 4px 20px rgba(0,131,143,.18);
    --shadow-lg:   0 8px 40px rgba(0,131,143,.22);
    --radius:      12px;
    --radius-lg:   20px;
    --transition:  all .3s ease;
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html {
    direction: rtl;
    scroll-behavior: smooth;
}

body {
    font-family: 'F-DFont', 'mothnna', 'ftl' , 'AlJazeera', 'Tajawal', Arial, sans-serif;
    font-size: 19px;
    line-height: 1.8;
    color: var(--dark);
    background: var(--white);
    direction: rtl;
    text-align: right;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family:  'F-DFont', 'mothnna',  'ftl','AlJazeera','Tajawal', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark);
}

a {
    color: var(--teal);
    text-decoration: none;
    transition: var(--transition);
}
a:hover { color: var(--orange); }

img { max-width: 100%; height: auto; }

/* ---- Utilities ---- */
.text-teal   { color: var(--teal) !important; }
.text-orange { color: var(--orange) !important; }
.bg-teal     { background-color: var(--teal) !important; }
.bg-orange   { background-color: var(--orange) !important; }
.bg-light-teal { background-color: var(--teal-light) !important; }

.section-title {
    font-size: 38px;
    color: var(--dark);
    margin-bottom: 12px;
}
.section-title span { color: var(--teal); }

.section-subtitle {
    color: var(--gray);
    font-size: 19px;
    max-width: 650px;
    margin: 0 auto 40px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--orange));
    border-radius: 2px;
    margin: 0 auto 24px;
}

/* ---- Buttons ---- */
.btn-primary-sa {
    background: var(--teal);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 50px;
    font-family: 'F-DFont', 'mothnna', 'ftl', sans-serif;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid var(--teal);
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
}
.btn-primary-sa:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary-sa {
    background: transparent;
    color: var(--white);
    padding: 12px 32px;
    border-radius: 50px;
    font-family: 'F-DFont', 'mothnna', 'ftl', sans-serif;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid var(--white);
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
}
.btn-secondary-sa:hover {
    background: var(--white);
    color: var(--teal);
    transform: translateY(-2px);
}

.btn-orange-sa {
    background: var(--orange);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 50px;
    font-family: 'F-DFont', 'mothnna', 'ftl', sans-serif;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid var(--orange);
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
}
.btn-orange-sa:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(239,108,0,.3);
}

.btn-outline-teal {
    background: transparent;
    color: var(--teal);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'F-DFont', 'mothnna', 'ftl', sans-serif;
    font-size: 17px;
    font-weight: 700;
    border: 2px solid var(--teal);
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
}
.btn-outline-teal:hover {
    background: var(--teal);
    color: var(--white);
}

/* ---- Navbar ---- */
#mainNav {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,.08);
    padding: 12px 0;
    transition: var(--transition);
    position: sticky;
    top: 0;
    z-index: 1000;
}
#mainNav.scrolled {
    box-shadow: 0 4px 25px rgba(0,131,143,.15);
}
.navbar-brand img {
    height: 50px;
    width: auto;
}
.nav-link {
    font-family:'F-DFont',  'mothnna', 'ftl', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark) !important;
    padding: 8px 16px !important;
    transition: var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width .3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover,
.nav-link.active { color: var(--teal) !important; }

.navbar-toggler {
    border: none;
    padding: 6px 10px;
    color: var(--teal);
}
.navbar-toggler:focus { box-shadow: none; }

/* ---- Hero Section ---- */
.hero-section {
    background: linear-gradient(160deg, #f0fafb 0%, #ffffff 50%, #fff8f2 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    border-bottom: 1px solid var(--border);
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,131,143,.10) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -60px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(239,108,0,.09) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-light);
    border: 1px solid rgba(0,131,143,.3);
    color: var(--teal-dark);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 52px;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.25;
}
.hero-title .highlight {
    color: var(--teal);
    position: relative;
}

.hero-subtitle {
    color: var(--gray);
    font-size: 20px;
    margin-bottom: 32px;
    max-width: 580px;
    line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    text-align: center;
    color: var(--dark);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.hero-stat-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.hero-stat-card .stat-num {
    font-family: 'F-DFont', 'mothnna', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--teal);
    display: block;
}
.hero-stat-card .stat-label {
    font-size: 15px;
    color: var(--gray);
}

.hero-visual { position: relative; z-index: 2; }

.hero-mock {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}
.hero-mock-bar {
    height: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}

/* ---- Hero Video ---- */
.hero-video-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(0,131,143,.18), 0 4px 20px rgba(0,0,0,.1);
    border: 3px solid rgba(0,131,143,.2);
}
.hero-video-wrap .ratio {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
}
.hero-video-wrap iframe { border: none; }
.hero-video-caption {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--teal);
    color: var(--white);
    font-family: 'mothnna', sans-serif;
    font-size: 17px;
    font-weight: 600;
}
.hero-video-caption i { font-size: 20px; color: var(--orange); }

/* ---- Stats Bar ---- */
.stats-bar {
    background: var(--teal);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-item {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}
.stat-item .stat-number {
    font-family: 'F-DFont', 'ge-ss-med', 'mothnna', 'ftl', sans-serif;
    font-size: 50px;
    font-weight: 700;
    display: block;
    line-height: 1;
}
.stat-item .stat-unit {
    font-size: 24px;
    color: var(--orange);
}
.stat-item .stat-desc {
    font-size: 17px;
    color: rgba(255,255,255,.85);
    margin-top: 6px;
    display: block;
}

/* ---- Features Section ---- */
.features-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--teal), var(--orange));
    transition: height .4s ease;
}
.feature-card:hover::before { height: 100%; }
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--teal-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--teal);
    margin-bottom: 20px;
    transition: var(--transition);
}
.feature-card:hover .feature-icon {
    background: var(--teal);
    color: var(--white);
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}
.feature-card p {
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 16px;
}
.feature-card .read-more {
    color: var(--teal);
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.feature-card .read-more i { transition: transform .3s; }
.feature-card:hover .read-more i { transform: translateX(-5px); }

/* ---- Why Choose Us ---- */
.why-section {
    padding: 80px 0;
    background: var(--white);
}
.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
}
.why-icon {
    width: 52px;
    height: 52px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    flex-shrink: 0;
}
.why-text h5 {
    font-size: 19px;
    margin-bottom: 5px;
    color: var(--dark);
}
.why-text p {
    color: var(--gray);
    font-size: 17px;
    margin: 0;
}
.why-visual {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark) 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.why-visual::after {
    content: '';
    position: absolute;
    top: -40px; left: -40px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}

/* ---- CTA Banner ---- */
.cta-banner {
    background: linear-gradient(135deg, var(--orange) 0%, #ff8f00 100%);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 250px; height: 250px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 300px; height: 300px;
    background: rgba(0,0,0,.08);
    border-radius: 50%;
}
.cta-banner h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 16px;
}
.cta-banner p {
    color: rgba(255,255,255,.9);
    font-size: 19px;
    margin-bottom: 32px;
}

/* ---- Pricing Cards ---- */
.pricing-section {
    padding: 80px 0;
    background: var(--light-bg);
}
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.pricing-card.featured {
    border-color: var(--teal);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}
.pricing-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}
.pricing-card.featured:hover { transform: scale(1.05); }

.pricing-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--orange);
    color: var(--white);
    font-family: 'F-DFont', 'mothnna', 'ftl', sans-serif;
    font-size: 15px;
    padding: 5px 14px;
    border-radius: 50px;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    background: var(--teal-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--teal);
    margin: 0 auto 24px;
    transition: var(--transition);
}
.pricing-card.featured .pricing-icon,
.pricing-card:hover .pricing-icon {
    background: var(--teal);
    color: var(--white);
}

.pricing-card h3 {
    font-size: 23px;
    text-align: center;
    margin-bottom: 24px;
}

.price-original {
    font-size: 18px;
    color: var(--gray);
    text-decoration: line-through;
    display: block;
    text-align: center;
}
.price-current {
    font-family: 'F-DFont', 'mothnna', 'ftl', sans-serif;
    font-size: 46px;
    color: var(--teal);
    font-weight: 700;
    display: block;
    text-align: center;
    line-height: 1.1;
}
.price-currency {
    font-size: 20px;
    color: var(--gray);
}
.price-period {
    font-size: 16px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 24px;
    display: block;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}
.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i {
    color: var(--teal);
    font-size: 17px;
    flex-shrink: 0;
}

/* ---- Contact Form ---- */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}
.form-label-sa {
    font-family: 'F-DFont', 'mothnna', 'ftl', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 6px;
    display: block;
}
.form-control-sa {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: 'F-DFont', 'mothnna', 'AlJazeera', sans-serif;
    font-size: 17px;
    color: var(--dark);
    background: var(--white);
    transition: border-color .3s;
    direction: rtl;
    text-align: right;
}
.form-control-sa:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0,131,143,.12);
}
textarea.form-control-sa { resize: vertical; min-height: 130px; }

.contact-info-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}
.contact-info-card:hover {
    background: var(--teal-light);
    transform: translateX(-4px);
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}
.contact-info-text h6 {
    font-size: 15px;
    color: var(--gray);
    margin: 0;
}
.contact-info-text p {
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    font-size: 17px;
}

/* ---- About ---- */
.about-section { padding: 80px 0; }
.mission-card {
    background: linear-gradient(135deg, var(--teal), var(--dark));
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    height: 100%;
}
.mission-card h3 { color: var(--white); margin-bottom: 16px; }
.mission-card p  { color: rgba(255,255,255,.85); }

/* ---- Clients ---- */
.clients-section {
    padding: 80px 0;
    background: var(--light-bg);
}
.client-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}
.client-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal);
}
.client-logo {
    width: 80px;
    height: 80px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--teal);
    margin: 0 auto 16px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    font-size: 80px;
    color: var(--teal-light);
    position: absolute;
    top: 8px;
    right: 24px;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-stars  { color: #f59e0b; margin-bottom: 8px; font-size: 18px; }
.testimonial-text   { color: var(--gray); font-style: italic; margin-bottom: 16px; font-size: 17px; }
.testimonial-author { font-weight: 700; color: var(--dark); font-size: 17px; }
.testimonial-company { font-size: 15px; color: var(--teal); }

/* ---- Features Detail Pages ---- */
.feature-hero {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark) 100%);
    padding: 100px 0 70px;
    color: var(--white);
    text-align: center;
}
.feature-hero h1 { color: var(--white); font-size: 46px; }
.feature-hero p  { color: rgba(255,255,255,.85); font-size: 20px; }

.feature-detail-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--radius);
    margin-bottom: 16px;
    transition: var(--transition);
}
.benefit-item:hover {
    background: var(--teal-light);
    transform: translateX(-4px);
}
.benefit-icon {
    width: 44px;
    height: 44px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    flex-shrink: 0;
}

/* ---- Screenshot Placeholder ---- */
.screenshot-placeholder {
    background: linear-gradient(135deg, var(--teal-light), var(--light-bg));
    border: 2px dashed var(--teal);
    border-radius: var(--radius-lg);
    padding: 64px 32px;
    text-align: center;
    color: var(--teal);
}
.screenshot-placeholder i { font-size: 64px; margin-bottom: 16px; display: block; }

/* ---- Payment Pages ---- */
.payment-result {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
}
.payment-result-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    width: 100%;
}
.payment-result-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
}
.payment-result-icon.success { background: #e8f5e9; color: #2e7d32; }
.payment-result-icon.cancel  { background: #fce4ec; color: #c62828; }

/* ---- Footer ---- */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,.8);
    padding: 60px 0 0;
}
.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}
.footer-desc {
    color: rgba(255,255,255,.65);
    font-size: 17px;
    line-height: 1.9;
}
.footer-heading {
    font-family: 'F-DFont', 'mothnna', 'ftl', sans-serif;
    font-size: 19px;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--teal);
    display: inline-block;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,.65);
    font-size: 17px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a i { color: var(--teal); font-size: 14px; }
.footer-links a:hover { color: var(--teal); padding-right: 5px; }

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255,255,255,.7);
    font-size: 17px;
}
.footer-contact-item i { color: var(--teal); font-size: 17px; flex-shrink: 0; }

.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: 17px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
    margin-top: 48px;
    text-align: center;
    color: rgba(255,255,255,.45);
    font-size: 16px;
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.12);
    color: var(--white);
    box-shadow: 0 6px 30px rgba(37,211,102,.6);
}
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,.7), 0 0 0 10px rgba(37,211,102,.1); }
}

/* ---- Breadcrumb / Page Hero ---- */
.page-hero {
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark) 100%);
    padding: 60px 0 40px;
    color: var(--white);
}
.page-hero h1  { color: var(--white); font-size: 36px; }
.breadcrumb-sa { display: flex; gap: 8px; align-items: center; margin-top: 8px; }
.breadcrumb-sa a       { color: rgba(255,255,255,.65); font-size: 16px; }
.breadcrumb-sa a:hover { color: var(--orange); }
.breadcrumb-sa span    { color: rgba(255,255,255,.4); font-size: 16px; }
.breadcrumb-sa .current { color: var(--orange); font-size: 16px; }

/* ---- Alert Messages ---- */
.alert-sa {
    padding: 16px 24px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.alert-success-sa { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.alert-error-sa   { background: #fce4ec; color: #c62828; border: 1px solid #f8bbd0; }

/* ---- Scroll to top ---- */
#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 9998;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
#scrollTop:hover {
    background: var(--teal-dark);
    transform: translateY(-3px);
}
#scrollTop.visible { display: flex; }

/* ---- Animations ---- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Section padding ---- */
.section-pad    { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .hero-title     { font-size: 40px; }
    .section-title  { font-size: 30px; }
    .pricing-card.featured { transform: scale(1); }
}

@media (max-width: 767px) {
    .hero-section   { padding: 80px 0 60px; min-height: auto; }
    .hero-title     { font-size: 32px; }
    .hero-subtitle  { font-size: 18px; }
    .hero-actions   { flex-direction: column; align-items: flex-start; }
    .btn-primary-sa, .btn-secondary-sa, .btn-orange-sa { width: 100%; text-align: center; }
    .stat-item .stat-number { font-size: 36px; }
    .cta-banner h2  { font-size: 28px; }
    .cta-banner p   { font-size: 17px; }
    .hero-stat-card { margin-bottom: 16px; }
    .whatsapp-float { bottom: 20px; left: 20px; width: 52px; height: 52px; font-size: 24px; }
    #scrollTop      { right: 20px; bottom: 80px; }
    .section-title  { font-size: 28px; }
    body            { font-size: 18px; }
}

@media (max-width: 575px) {
    .hero-title     { font-size: 27px; }
    .section-title  { font-size: 25px; }
    .pricing-card   { padding: 28px 20px; }
    .feature-hero h1 { font-size: 32px; }
    body            { font-size: 17px; }
}
