/* ================================================
   SPARKSNAP ENHANCED CSS  — FULL LIGHT THEME
   Brand: Orange (#FF7B00) + Green (#2E7D32) accent
   Bootstrap 5.3 | Mobile-First
================================================ */

:root {
    --ss-orange: #FF7B00;
    --ss-orange-light: #FF9A00;
    --ss-orange-dark: #E56800;
    --ss-orange-pale: #FFF3E0;
    --ss-green: #2E7D32;
    --ss-green-light: #43A047;
    --ss-green-pale: #E8F5E9;
    --ss-dark: #111111;
    --ss-gray: #6B7280;
    --ss-gray-light: #F3F4F6;
    --ss-border: rgba(0, 0, 0, 0.09);
    --ss-border-light: rgba(0, 0, 0, 0.06);
    --ss-shadow: 0 8px 40px rgba(0, 0, 0, 0.09);
    --ss-shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.07);
    --ss-radius: 16px;
    --ss-radius-sm: 10px;
    --ss-font-head: 'Plus Jakarta Sans', sans-serif;
    --ss-font-body: 'Plus Jakarta Sans', sans-serif;
    --ss-transition: all 0.33s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--ss-font-body);
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ss-font-head);
    font-weight: 800;
    line-height: 1.15;
}

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

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

a:hover {
    color: var(--ss-orange-dark);
}

.ss-text-orange {
    color: var(--ss-orange);
}

.ss-text-green {
    color: var(--ss-green);
}

/* ── HEADER ────────────────────────────────── */
.header__wrap.stricky {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 123, 0, 0.10);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: var(--ss-transition);
}

.header__wrap.stricky.sticky-menu {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.10);
}

.header__logo img {
    transition: var(--ss-transition);
}

.header__logo img:hover {
    transform: scale(1.04);
}

.main-menu>ul>li>a {
    position: relative;
    font-family: var(--ss-font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    color: #222 !important;
    padding: 6px 0;
}

.main-menu>ul>li>a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ss-orange), var(--ss-green));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.main-menu>ul>li:hover>a::after,
.main-menu>ul>li.active>a::after {
    width: 100%;
}

.main-menu>ul>li.active>a {
    color: var(--ss-orange) !important;
}

.ss-btn-primary {
    background: linear-gradient(135deg, var(--ss-orange), var(--ss-orange-light)) !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 10px 28px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 18px rgba(255, 123, 0, 0.32);
    transition: var(--ss-transition);
}

.ss-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 123, 0, 0.42);
}

.ss-btn-mobile {
    display: block;
    background: linear-gradient(135deg, var(--ss-orange), var(--ss-orange-light));
    color: #fff;
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 4px 18px rgba(255, 123, 0, 0.32);
}

.ss-btn-mobile:hover {
    color: #fff;
}

/* ── HERO ───────────────────────────────────── */
.hero-title,
.text-anime-stylex {
    background: linear-gradient(135deg,
            #FF7B00 0%,
            #FF9A00 30%,
            #FF5E00 60%,
            #1b0a57 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    line-height: 1.05;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-custom-img {
    width: 100%;
    max-width: 620px;
    height: auto;
    object-fit: contain;
    border-radius: var(--ss-radius);
    display: block;
    animation: ss-float 4s ease-in-out infinite;
}

@keyframes ss-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

/* ── UTILITY ────────────────────────────────── */
.ss-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 123, 0, 0.10);
    border: 1px solid rgba(255, 123, 0, 0.22);
    color: var(--ss-orange);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.ss-section-tag.green {
    background: rgba(46, 125, 50, 0.10);
    border-color: rgba(46, 125, 50, 0.22);
    color: var(--ss-green);
}

.ss-section-tag.mx-auto {
    display: flex;
    width: fit-content;
}

.ss-divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--ss-orange), var(--ss-green));
    border-radius: 2px;
    margin: 12px 0 24px;
}

.ss-divider.center {
    margin: 12px auto 24px;
}

/* ── FEATURE CARDS ──────────────────────────── */
.ixl-feature-item-one {
    border: 1.5px solid var(--ss-border);
    border-radius: var(--ss-radius);
    padding: 32px 28px;
    background: #fff;
    transition: var(--ss-transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.ixl-feature-item-one::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--ss-orange), var(--ss-green));
    transition: var(--ss-transition);
}

.ixl-feature-item-one:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(255, 123, 0, 0.12);
    border-color: rgba(255, 123, 0, 0.22);
}

/* ── STATS — orange background ─────────────── */
.ss-stats-section {
    background: linear-gradient(135deg, var(--ss-orange) 0%, var(--ss-orange-dark) 100%);
    padding: 60px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.ss-stats-section::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.ss-stat-item {
    text-align: center;
    padding: 16px;
}

.ss-stat-number {
    font-family: var(--ss-font-head);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.ss-stat-number .ss-stat-plus {
    color: rgba(255, 255, 255, 0.7);
}

.ss-stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 8px;
}

/* ── WHY CHOOSE US — light green bg ─────────── */
.ss-why-section {
    background: var(--ss-green-pale);
    border-radius: var(--ss-radius);
    padding: 48px 36px;
}

.ss-why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 26px;
}

.ss-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--ss-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.28);
    transition: var(--ss-transition);
}

.ss-why-item:hover .ss-why-icon {
    transform: scale(1.1) rotate(5deg);
}

.ss-why-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.ss-why-content p {
    font-size: 0.9rem;
    color: var(--ss-gray);
    margin: 0;
}

/* ── ABOUT INFO ─────────────────────────────── */
.ixl-about-info {
    background: #fff;
    border: 1.5px solid var(--ss-border);
    border-radius: var(--ss-radius-sm);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    transition: var(--ss-transition);
}

.ixl-about-info:hover {
    border-color: var(--ss-green);
    box-shadow: 0 8px 28px rgba(46, 125, 50, 0.10);
    transform: translateX(4px);
}

.ixl-about-info img {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

/* ── SERVICE CARDS ──────────────────────────── */
.ss-service-card {
    border: 1.5px solid var(--ss-border);
    border-radius: var(--ss-radius);
    padding: 36px 28px;
    background: #fff;
    transition: var(--ss-transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.ss-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ss-orange), var(--ss-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.ss-service-card:hover::after {
    transform: scaleX(1);
}

.ss-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(255, 123, 0, 0.11);
    border-color: rgba(255, 123, 0, 0.20);
}

.ss-service-card .ss-sc-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 123, 0, 0.12), rgba(255, 154, 0, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--ss-orange);
    margin-bottom: 22px;
    transition: var(--ss-transition);
}

.ss-service-card:hover .ss-sc-icon {
    background: linear-gradient(135deg, var(--ss-orange), var(--ss-orange-light));
    color: #fff;
    transform: rotate(-5deg) scale(1.05);
}

.ss-service-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.ss-service-card p {
    font-size: 0.9rem;
    color: var(--ss-gray);
    line-height: 1.7;
    margin: 0;
}

.ss-service-card.green-accent .ss-sc-icon {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.12), rgba(67, 160, 71, 0.08));
    color: var(--ss-green);
}

.ss-service-card.green-accent:hover .ss-sc-icon {
    background: linear-gradient(135deg, var(--ss-green), var(--ss-green-light));
    color: #fff;
}

.ss-service-card.green-accent::after {
    background: linear-gradient(90deg, var(--ss-green), var(--ss-orange));
}

/* ── SERVICE TWO ITEMS ──────────────────────── */
.ixl-service-two-item {
    border-radius: var(--ss-radius);
    border: 1.5px solid var(--ss-border);
    padding: 28px 24px;
    transition: var(--ss-transition);
    background: #fff;
}

.ixl-service-two-item:hover {
    box-shadow: 0 12px 40px rgba(255, 123, 0, 0.10);
    border-color: var(--ss-orange);
    transform: translateY(-4px);
}

/* ── TESTIMONIALS ───────────────────────────── */
.ixl-testimonial-item-one {
    border-radius: var(--ss-radius);
    border: 1.5px solid var(--ss-border);
    padding: 28px;
    background: #fff;
    transition: var(--ss-transition);
}

.ixl-testimonial-item-one:hover {
    border-color: var(--ss-orange);
    box-shadow: 0 12px 36px rgba(255, 123, 0, 0.09);
}

/* ── PORTFOLIO CARDS ────────────────────────── */
.ixl-project-item {
    border-radius: var(--ss-radius);
    overflow: hidden;
    transition: var(--ss-transition);
}

.ixl-project-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--ss-shadow);
}

/* ── PAGE HERO BANNER ───────────────────────── */
.ss-page-hero {
    background: linear-gradient(135deg, #fff8f0 0%, #fff 60%, #f0fff4 100%);
    padding: 80px 0 50px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 123, 0, 0.09);
}

.ss-page-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 123, 0, 0.08) 0%, transparent 70%);
}

.ss-page-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.07) 0%, transparent 70%);
}

.ss-page-hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--ss-orange) 0%, #1b0a57 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.ss-page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--ss-gray);
    font-weight: 500;
    margin-bottom: 16px;
}

.ss-page-hero-breadcrumb a {
    color: var(--ss-orange);
    font-weight: 600;
}

.ss-page-hero-breadcrumb i {
    font-size: 0.7rem;
    color: var(--ss-gray);
}

/* ── MARQUEE ────────────────────────────────── */
.ixl-marquee-section {
    overflow: hidden;
    padding: 14px 0;
    background: linear-gradient(90deg, #fff8f0, #fff, #f0fff4, #fff);
}

.marquee-inner a span {
    color: var(--ss-orange);
}

/* ── FOUNDER CARD ───────────────────────────── */
.ss-founder-card {
    background: linear-gradient(135deg, var(--ss-green-pale) 0%, #fff 100%);
    border: 1.5px solid rgba(46, 125, 50, 0.18);
    border-radius: var(--ss-radius);
    padding: 32px;
    position: relative;
}

.ss-founder-card::before {
    content: '"';
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(46, 125, 50, 0.10);
    position: absolute;
    top: -16px;
    left: 20px;
    line-height: 1;
}

/* ── CONTACT FORM ───────────────────────────── */
.ss-contact-form-wrap {
    background: #fff;
    border-radius: var(--ss-radius);
    padding: 40px;
    box-shadow: var(--ss-shadow);
    border: 1.5px solid var(--ss-border);
}

.ss-form-group {
    margin-bottom: 20px;
}

.ss-form-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: #333;
    margin-bottom: 6px;
    display: block;
}

.ss-form-control {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid #e0e0e0;
    border-radius: var(--ss-radius-sm);
    font-family: var(--ss-font-body);
    font-size: 0.95rem;
    color: #333;
    background: #fafafa;
    transition: var(--ss-transition);
    outline: none;
}

.ss-form-control:focus {
    border-color: var(--ss-orange);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 123, 0, 0.09);
}

.ss-form-control.error {
    border-color: #dc3545;
}

textarea.ss-form-control {
    resize: vertical;
    min-height: 140px;
}

.ss-form-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.ss-submit-btn {
    background: linear-gradient(135deg, var(--ss-orange), var(--ss-orange-light));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-family: var(--ss-font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: var(--ss-transition);
    box-shadow: 0 6px 24px rgba(255, 123, 0, 0.32);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ss-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(255, 123, 0, 0.42);
}

.ss-submit-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.ss-alert {
    border-radius: var(--ss-radius-sm);
    padding: 14px 18px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    display: none;
    align-items: center;
    gap: 10px;
}

.ss-alert.show {
    display: flex;
}

.ss-alert-success {
    background: var(--ss-green-pale);
    border: 1.5px solid var(--ss-green);
    color: var(--ss-green);
}

.ss-alert-error {
    background: #fef2f2;
    border: 1.5px solid #dc3545;
    color: #dc3545;
}

.ss-contact-info-card {
    background: #fff;
    border: 1.5px solid var(--ss-border);
    border-radius: var(--ss-radius);
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 14px;
    transition: var(--ss-transition);
}

.ss-contact-info-card:hover {
    border-color: var(--ss-orange);
    box-shadow: 0 8px 28px rgba(255, 123, 0, 0.09);
    transform: translateX(4px);
}

.ss-ci-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--ss-orange), var(--ss-orange-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ss-ci-icon.green {
    background: linear-gradient(135deg, var(--ss-green), var(--ss-green-light));
}

.ss-ci-content small {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ss-gray);
    margin-bottom: 3px;
}

.ss-ci-content a,
.ss-ci-content span {
    font-size: 0.93rem;
    font-weight: 600;
    color: #222;
    display: block;
}

.ss-ci-content a:hover {
    color: var(--ss-orange);
}

/* ── MAP ────────────────────────────────────── */
.ss-map-wrap {
    border-radius: var(--ss-radius);
    overflow: hidden;
    box-shadow: var(--ss-shadow);
}

.ss-map-wrap iframe {
    display: block;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER — FULLY LIGHT THEME
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* CTA strip — very light orange tint */
.ss-footer-cta {
    background: var(--ss-orange-pale);
    border-top: 2px solid rgba(255, 123, 0, 0.12);
    border-bottom: 1px solid rgba(255, 123, 0, 0.10);
    padding: 48px 0;
}

.ss-footer-cta-title {
    font-family: var(--ss-font-head);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #111;
    margin: 0;
}

.ss-footer-cta-sub {
    color: var(--ss-gray);
    margin: 6px 0 0;
}

.ss-btn-footer-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--ss-orange), var(--ss-orange-light));
    color: #fff !important;
    border-radius: 50px;
    padding: 14px 34px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 24px rgba(255, 123, 0, 0.30);
    transition: var(--ss-transition);
}

.ss-btn-footer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(255, 123, 0, 0.42);
}

/* Main footer body — pure white */
.ss-footer-main {
    background: #fff;
    border-top: 1px solid var(--ss-border-light);
    padding: 64px 0 40px;
}

/* Brand column */
.ss-footer-brand p {
    color: var(--ss-gray);
    font-size: 0.9rem;
    line-height: 1.75;
}

.ss-badge-green {
    display: inline-flex;
    align-items: center;
    background: var(--ss-green-pale);
    border: 1px solid rgba(46, 125, 50, 0.28);
    color: var(--ss-green);
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Column headings */
.ss-footer-heading {
    font-family: var(--ss-font-head);
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.ss-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--ss-orange), var(--ss-green));
    border-radius: 2px;
}

/* Links */
.ss-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ss-footer-links li {
    margin-bottom: 10px;
}

.ss-footer-links a {
    color: var(--ss-gray);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--ss-transition);
    display: flex;
    align-items: center;
}

.ss-footer-links a i {
    font-size: 0.65rem;
    color: var(--ss-orange);
}

.ss-footer-links a:hover {
    color: var(--ss-orange);
    padding-left: 4px;
}

/* Contact items */
.ss-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.ss-fc-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 123, 0, 0.10);
    color: var(--ss-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.ss-footer-contact-item small {
    color: var(--ss-gray);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ss-footer-contact-item a,
.ss-footer-contact-item span {
    color: #333;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.4;
}

.ss-footer-contact-item a:hover {
    color: var(--ss-orange);
}

/* Social icons */
.ss-footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ss-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ss-gray-light);
    color: var(--ss-gray) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--ss-transition);
    border: 1px solid var(--ss-border);
}

.ss-footer-social a:hover {
    background: var(--ss-orange);
    color: #fff !important;
    transform: translateY(-3px);
    border-color: var(--ss-orange);
    box-shadow: 0 6px 18px rgba(255, 123, 0, 0.28);
}

/* Footer bottom bar — very light gray */
.ss-footer-bottom {
    background: var(--ss-gray-light);
    padding: 18px 0;
    border-top: 1px solid var(--ss-border);
}

.ss-footer-bottom p {
    color: var(--ss-gray);
    font-size: 0.85rem;
    margin: 0;
}

/* ── WHATSAPP FLOAT ─────────────────────────── */
.ss-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 28px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.7rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.42);
    transition: var(--ss-transition);
    animation: ss-wa-pulse 2.5s infinite;
}

.ss-whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
}

@keyframes ss-wa-pulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.42), 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.42), 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

.ss-wa-tooltip {
    position: absolute;
    right: 70px;
    background: #25D366;
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--ss-transition);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28);
}

.ss-whatsapp-float:hover .ss-wa-tooltip {
    opacity: 1;
    right: 74px;
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 991px) {
    .ss-contact-form-wrap {
        padding: 28px 20px;
    }

    .ss-why-section {
        padding: 36px 22px;
        margin: 0;
    }
}

@media (max-width: 767px) {
    .hero-custom-img {
        max-width: 100%;
    }

    .ss-footer-cta {
        text-align: center;
    }

    .ss-btn-footer-cta {
        margin-top: 16px;
    }

    .ss-page-hero {
        padding: 125px 0 36px;
    }

    .ss-whatsapp-float {
        bottom: 20px;
        right: 16px;
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }

    .ss-service-card {
        padding: 28px 20px;
    }

    .ss-stats-section {
        padding: 40px 0;
    }
}

@media (max-width: 575px) {
    .ss-footer-main {
        padding: 48px 0 32px;
    }

    .ss-contact-info-card {
        padding: 18px 16px;
    }
}