/* =============================================
   OMX Sign - Brand Color Palette
   Orange: #F26522 | Red: #E82020 | Dark: #1B1F3B
   ============================================= */

:root {
    --brand-orange: #F26522;
    --brand-red:    #E82020;
    --brand-dark:   #1B1F3B;
    --brand-light:  #F8F9FA;
    --brand-white:  #FFFFFF;
    --brand-gray:   #6C757D;
    --gradient:     linear-gradient(135deg, #F26522 0%, #E82020 100%);
}

/* -----------------------------------------------
   Global Reset & Base
----------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

a { text-decoration: none; transition: all 0.3s ease; }
a:hover { text-decoration: none; }

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

/* -----------------------------------------------
   Navbar
----------------------------------------------- */
.navbar {
    padding: 0.75rem 0;
    background: #fff !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar-brand img {
    height: 48px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--brand-dark) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--brand-orange) !important;
    background: rgba(242, 101, 34, 0.08);
}

.navbar-toggler {
    border-color: var(--brand-orange);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F26522' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-nav-cta {
    background: var(--gradient) !important;
    color: #fff !important;
    padding: 0.55rem 1.6rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    letter-spacing: 0.4px;
    box-shadow: 0 4px 18px rgba(242, 101, 34, 0.38), 0 1px 3px rgba(0,0,0,0.12);
    border: none !important;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: all 0.3s ease !important;
}

/* glass shimmer sits BEHIND text via z-index: -1 */
.btn-nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 55%);
    border-radius: 50px;
    pointer-events: none;
}

.btn-nav-cta,
.btn-nav-cta:link,
.btn-nav-cta:visited,
.btn-nav-cta:focus,
.btn-nav-cta.active,
.navbar-nav .nav-link.btn-nav-cta.active {
    color: #fff !important;
    text-decoration: none;
}

.btn-nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(242, 101, 34, 0.55), 0 2px 6px rgba(0,0,0,0.15) !important;
    color: #fff !important;
    background: linear-gradient(135deg, #ff7133 0%, #d91a1a 100%) !important;
}

.btn-nav-cta:active {
    transform: translateY(0) !important;
    box-shadow: 0 3px 10px rgba(242, 101, 34, 0.35) !important;
    color: #fff !important;
}

/* -----------------------------------------------
   Hero Section
----------------------------------------------- */
.hero-section {
    background: var(--gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-section p.lead {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

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

.hero-screen-mockup {
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    width: 100%;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

.hero-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.hero-stat span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
}

/* -----------------------------------------------
   Buttons
----------------------------------------------- */
.btn-primary-brand {
    background: var(--gradient);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(242,101,34,0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(242,101,34,0.55);
    color: #fff;
}

.btn-outline-brand {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
    padding: 0.73rem 1.9rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-brand:hover {
    background: #fff;
    color: var(--brand-orange);
    border-color: #fff;
}

.btn-outline-dark-brand {
    background: transparent;
    color: var(--brand-orange);
    border: 2px solid var(--brand-orange);
    padding: 0.73rem 1.9rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-dark-brand:hover {
    background: var(--brand-orange);
    color: #fff;
}

/* -----------------------------------------------
   Section Titles
----------------------------------------------- */
.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title .label {
    display: inline-block;
    background: rgba(242,101,34,0.1);
    color: var(--brand-orange);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

.section-title h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 1.05rem;
    color: var(--brand-gray);
    max-width: 580px;
    margin: 0 auto;
}

/* -----------------------------------------------
   Feature Cards
----------------------------------------------- */
.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.2rem 1.8rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(242,101,34,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
    color: var(--brand-orange);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gradient);
    color: #fff;
}

.feature-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--brand-gray);
    line-height: 1.65;
    margin: 0;
}

/* -----------------------------------------------
   Stats Bar
----------------------------------------------- */
.stats-section {
    background: var(--brand-dark);
    padding: 3.5rem 0;
}

.stat-item { text-align: center; }

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.stat-item p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* -----------------------------------------------
   Solutions / Industry Cards
----------------------------------------------- */
.solution-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 220px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.solution-card:hover img {
    transform: scale(1.05);
}

.solution-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,31,59,0.85) 0%, rgba(27,31,59,0.15) 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

.solution-overlay h5 {
    color: #fff;
    font-weight: 700;
    margin: 0;
    font-size: 1.05rem;
}

/* -----------------------------------------------
   Process Steps
----------------------------------------------- */
.step-card {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 25px rgba(242,101,34,0.35);
}

.step-card h4 {
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--brand-gray);
    font-size: 0.92rem;
}

/* -----------------------------------------------
   Testimonials
----------------------------------------------- */
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.07);
    border: 1px solid #eee;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.testimonial-card .stars {
    color: var(--brand-orange);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 0.92rem;
    color: var(--brand-dark);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--brand-gray);
}

/* -----------------------------------------------
   CTA Section
----------------------------------------------- */
.cta-section {
    background: var(--gradient);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin: 0 auto 2rem;
}

/* -----------------------------------------------
   About Page
----------------------------------------------- */
.page-hero {
    background: var(--gradient);
    padding: 100px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%; right: -15%;
    width: 450px; height: 450px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.25rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}

.breadcrumb-nav a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.breadcrumb-nav a:hover { color: #fff; }

.value-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    height: 100%;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.value-card h5 {
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--brand-gray);
    margin: 0;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.team-card-body {
    padding: 1.25rem;
}

.team-card-body h5 {
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.25rem;
}

.team-card-body span {
    font-size: 0.85rem;
    color: var(--brand-orange);
    font-weight: 600;
}

/* -----------------------------------------------
   Services Page
----------------------------------------------- */
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.07);
    border: 1px solid #eee;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border-color: var(--brand-orange);
}

.service-card.featured {
    border: 2px solid var(--brand-orange);
    background: linear-gradient(135deg, rgba(242,101,34,0.04) 0%, rgba(232,32,32,0.04) 100%);
}

.service-badge {
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    background: var(--gradient);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--brand-gray);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.service-features li {
    font-size: 0.88rem;
    color: #555;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--brand-orange);
    flex-shrink: 0;
}

/* -----------------------------------------------
   Contact Page
----------------------------------------------- */
.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-2px);
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(242,101,34,0.1);
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-card h6 {
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.25rem;
}

.contact-info-card p {
    color: var(--brand-gray);
    font-size: 0.9rem;
    margin: 0;
}

.contact-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.contact-form-wrap h3 {
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
}

.contact-form-wrap p {
    color: var(--brand-gray);
    font-size: 0.93rem;
    margin-bottom: 1.75rem;
}

.form-control {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.93rem;
    color: var(--brand-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(242,101,34,0.12);
    outline: none;
}

/* Phone field: country code + number */
.phone-input-group {
    display: flex;
    gap: 0;
    border: 2px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.phone-input-group:focus-within {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(242,101,34,0.12);
}
.phone-country-select {
    flex: 0 0 auto;
    border: none;
    border-right: 2px solid #eee;
    border-radius: 0;
    background: #f8f9fb;
    padding: 0 0.6rem;
    height: 52px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand-dark);
    cursor: pointer;
    outline: none;
    -webkit-appearance: auto;
    appearance: auto;
    min-width: 100px;
}
.phone-country-select:focus { outline: none; }
.phone-number-input {
    flex: 1;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 1rem;
    height: 52px;
    font-size: 0.93rem;
}
.phone-number-input:focus {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}
.phone-input-group.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220,53,69,0.12);
}
.phone-error {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.35rem;
}

select.form-control {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    background-image: none;
    overflow: visible !important;
    padding: 0 1rem !important;
    height: 52px !important;
    line-height: 52px;
}

.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--brand-dark);
    margin-bottom: 0.4rem;
}

/* -----------------------------------------------
   Footer
----------------------------------------------- */
.footer {
    background: var(--brand-dark);
    color: rgba(255,255,255,0.75);
    padding: 4rem 0 0;
}

.footer-brand img {
    height: 44px;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-title {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--brand-orange);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 1.25rem;
}

.social-link {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--brand-orange);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 0;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* -----------------------------------------------
   Scroll to top
----------------------------------------------- */
#scrollTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(242,101,34,0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: transform 0.3s ease;
}

#scrollTop:hover {
    transform: translateY(-2px);
}

/* -----------------------------------------------
   WhatsApp Side Sticky Tab
----------------------------------------------- */
#whatsappSticky {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
}

#whatsappSticky .wa-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 0.7rem 0.9rem 0.7rem 1rem;
    border-radius: 12px 0 0 12px;
    box-shadow: -3px 4px 18px rgba(37,211,102,0.45);
    font-size: 1.4rem;
    font-weight: 700;
    white-space: nowrap;
    /* Start collapsed – only icon visible */
    max-width: 52px;
    overflow: hidden;
    transition: max-width 0.35s ease, box-shadow 0.3s ease;
}

#whatsappSticky .wa-btn:hover {
    max-width: 220px;
    box-shadow: -5px 6px 24px rgba(37,211,102,0.55);
    color: #fff;
    text-decoration: none;
}

#whatsappSticky .wa-btn i {
    flex-shrink: 0;
    font-size: 1.45rem;
}

#whatsappSticky .wa-label {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    opacity: 0;
    transition: opacity 0.2s ease 0.1s;
    white-space: nowrap;
}

#whatsappSticky .wa-btn:hover .wa-label {
    opacity: 1;
}

@media (max-width: 575px) {
    #whatsappSticky .wa-btn {
        padding: 0.6rem 0.75rem 0.6rem 0.85rem;
        font-size: 1.25rem;
        max-width: 46px;
    }
    #whatsappSticky .wa-btn:hover {
        max-width: 180px;
    }
}

/* -----------------------------------------------
   Utilities & Helpers
----------------------------------------------- */
.text-brand-orange { color: var(--brand-orange) !important; }
.text-brand-red    { color: var(--brand-red) !important; }
.text-brand-dark   { color: var(--brand-dark) !important; }
.bg-brand-light    { background: var(--brand-light) !important; }
.bg-dark-brand     { background: var(--brand-dark) !important; }

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: var(--gradient);
    margin: 0 auto 1.5rem;
}

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

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* -----------------------------------------------
   Responsive
----------------------------------------------- */
@media (max-width: 992px) {
    .hero-section h1 { font-size: 2.2rem; }
    .section-title h2 { font-size: 1.9rem; }
    .page-hero h1 { font-size: 2.1rem; }
    .cta-section h2 { font-size: 2rem; }
    .hero-stats { gap: 1.5rem; }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 0.65rem 0;
    }

    .navbar > .container,
    .navbar > .container-fluid {
        position: relative;
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    .navbar-brand img {
        height: 42px;
    }

    .navbar-toggler {
        padding: 0.25rem 0.45rem;
        border-width: 1.5px;
        border-radius: 8px;
    }

    .navbar-collapse,
    .navbar-collapse.collapsing {
        position: absolute;
        top: calc(100% + 8px);
        left: 1.25rem;
        right: 1.25rem;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 12px;
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
        padding: 0.65rem;
        z-index: 1001;
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 0.7rem 0.8rem !important;
        border-radius: 8px;
    }

    .navbar-nav .nav-item.ml-lg-3 {
        margin-left: 0 !important;
        margin-top: 0.3rem;
    }

    .btn-nav-cta {
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-section { padding: 80px 0 60px; }
    .hero-section h1 { font-size: 1.85rem; }
    .hero-stats { flex-wrap: wrap; gap: 1rem; }
    .hero-stat strong { font-size: 1.5rem; }
    .section-title h2 { font-size: 1.65rem; }
    .contact-form-wrap { padding: 1.75rem; }
}
