/* BRAND-ALIGN-01: these now mirror the mobile apps design tokens
   (EgBookings-driver src/design/tokens.js) so the site and the apps
   are one brand. The 56 rules in this file that reference these
   variables pick the new palette up automatically — no rule-by-rule
   edit, and reverting is a five-line change.

   Was: primary #0ea5a4 (generic bright teal), accent #667eea (the
   Bootstrap-admin default that shipped with the template). */
:root {
    --primary-color: #0F6E68;   /* app colors.teal */
    --secondary-color: #0A4E4A; /* app colors.teal2 */
    --accent-color: #063D3A;    /* app colors.teal3 — deep gradient end */
    --dark-color: #14181A;      /* app colors.ink */
    --light-bg: #F5F5F3;        /* app colors.cream */
    --text-muted: #4B5563;      /* app colors.ink2 */
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== STICKY HEADER ===== */
.header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-area.sticky {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-top {
    transition: all 0.3s ease;
}

.header-area.sticky .header-top {
    display: none;
}

.modern-navbar {
    transition: all 0.3s ease;
    padding: 0.75rem 0;
}

.header-area.sticky .modern-navbar {
    padding: 0.5rem 0;
}

/* Body will have dynamic padding set by JavaScript */

/* ===== HERO SLIDER SECTION ===== */
.hero-professional {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    margin-top: 80px;
}

.hero-carousel-pro {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide-pro {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-slide-pro.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    animation: zoomIn 20s ease-out forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

.hero-slide-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(15, 110, 104, 0.88) 0%, 
        rgba(102, 126, 234, 0.82) 40%, 
        rgba(15, 110, 104, 0.88) 100%);
    z-index: 1;
}

.hero-slide-pro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.3) 0%, transparent 50%);
    z-index: 2;
}

.slide-content-pro {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    text-align: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-content-pro.active {
    opacity: 1;
    visibility: visible;
}

.slide-content-pro::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-professional h1,
.hero-professional h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700; /* BRAND-ALIGN-01: Fraunces/Manrope load to 700; anything heavier was faux-bolded */
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-content-pro.active h1,
.slide-content-pro.active h2 {
    opacity: 1;
    transform: translateY(0);
    animation: slideUp 1s ease-out 0.2s both;
}

.hero-professional h1::after,
.hero-professional h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #fbbf24, transparent);
    margin: 1rem auto 0;
    border-radius: 3px;
    animation: expandWidth 1s ease-out 0.8s both;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

.hero-professional .subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-content-pro.active .subtitle {
    opacity: 1;
    transform: translateY(0);
    animation: slideUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-content-pro.active .hero-buttons {
    opacity: 1;
    transform: translateY(0);
    animation: slideUp 1s ease-out 0.6s both;
}

.btn-hero-primary, .btn-hero-secondary {
    padding: 1.1rem 2.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 5px 15px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35), 0 8px 20px rgba(255, 255, 255, 0.15);
    color: var(--primary-color);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-hero-secondary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-4px) scale(1.02);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.trust-badges-pro {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-content-pro.active .trust-badges-pro {
    opacity: 1;
    transform: translateY(0);
    animation: slideUp 1s ease-out 0.8s both;
}

.trust-badge-pro {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.trust-badge-pro:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
}

.trust-badge-pro i {
    font-size: 1.4rem;
    color: #fbbf24;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.slider-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.slider-dot.active {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    width: 14px;
    border-radius: 50%;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.6), 0 0 5px rgba(255, 255, 255, 0.5);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(251, 191, 36, 0.6), 0 0 5px rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 25px rgba(251, 191, 36, 0.8), 0 0 10px rgba(255, 255, 255, 0.7);
    }
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.slider-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.slider-arrow:hover::before {
    width: 100%;
    height: 100%;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-50%) scale(1.15);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.slider-arrow.prev {
    left: 40px;
}

.slider-arrow.next {
    right: 40px;
}

.slider-arrow i {
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.slider-arrow:hover i {
    transform: scale(1.1);
}

/* ===== STATS SECTION ===== */
.stats-pro {
    background: #ffffff;
    padding: 4rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 5;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.08);
}

.stat-item-pro {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700; /* BRAND-ALIGN-01: see above */
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== SERVICES SECTION ===== */
.services-pro {
    padding: 6rem 0;
    background: var(--light-bg);
}

.section-header-pro {
    text-align: center;
    margin-bottom: 4rem;
}

.badge-pro {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #dbeafe;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-header-pro h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700; /* BRAND-ALIGN-01: see above */
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-header-pro p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.service-card-pro {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image-pro {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card-pro:hover .service-image-pro img {
    transform: scale(1.1);
}

.service-badge-pro {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(15, 110, 104, 0.4);
}

.service-body-pro {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-body-pro h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-body-pro p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link-pro {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-link-pro:hover {
    gap: 1rem;
}

/* ===== ABOUT SECTION ===== */
.about-pro {
    padding: 6rem 0;
    background: #ffffff;
}

.about-image-pro {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-pro img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content-pro h3 {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.about-content-pro h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700; /* BRAND-ALIGN-01: see above */
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.about-content-pro p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-list-pro {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.about-list-pro li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition);
}

.about-list-pro li:hover {
    background: #e0f2fe;
    transform: translateX(10px);
}

.about-list-pro li i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-list-pro li h6 {
    margin: 0;
    font-weight: 600;
    color: var(--dark-color);
}

.about-stats-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    padding: 3rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

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

.about-stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700; /* BRAND-ALIGN-01: see above */
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-stat-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== HOW IT WORKS ===== */
.how-works-pro {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.how-works-pro::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(15, 110, 104, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.how-works-pro::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.steps-wrapper-pro {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Vertical Timeline */
.steps-wrapper-pro::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        var(--primary-color) 0%, 
        var(--accent-color) 100%);
    transform: translateX(-50%);
    z-index: 0;
    opacity: 0.2;
}

@media (max-width: 768px) {
    .steps-wrapper-pro::before {
        left: 30px;
    }
}

.step-item-pro {
    display: flex;
    position: relative;
    margin-bottom: 4rem;
    align-items: center;
}

.step-item-pro:last-child {
    margin-bottom: 0;
}

/* Alternating Layout */
.step-item-pro:nth-child(odd) {
    flex-direction: row;
}

.step-item-pro:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .step-item-pro:nth-child(odd),
    .step-item-pro:nth-child(even) {
        flex-direction: row;
    }
}

.step-content-wrapper {
    flex: 1;
    padding: 0 3rem;
}

@media (max-width: 768px) {
    .step-content-wrapper {
        padding: 0 0 0 5rem;
    }
}

.step-card-pro {
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.step-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.step-card-pro:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(15, 110, 104, 0.15);
    border-color: rgba(15, 110, 104, 0.2);
}

/* Timeline Dot/Number */
.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700; /* BRAND-ALIGN-01: Fraunces/Manrope load to 700; anything heavier was faux-bolded */
    position: relative;
    box-shadow: 0 10px 40px rgba(15, 110, 104, 0.3);
    flex-shrink: 0;
    z-index: 1;
    transition: all 0.5s ease;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.15;
    animation: pulse-timeline 3s ease-in-out infinite;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 110, 104, 0.2) 0%, transparent 70%);
    animation: pulse-timeline 3s ease-in-out infinite 0.5s;
}

@keyframes pulse-timeline {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.step-card-pro:hover ~ .step-number,
.step-number:hover {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 50px rgba(15, 110, 104, 0.5);
}

@media (max-width: 768px) {
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        position: absolute;
        left: 0;
    }
}

.step-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 0 1.5rem 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.step-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 110, 104, 0.1), rgba(102, 126, 234, 0.1));
    border-radius: 24px;
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.step-card-pro:hover .step-icon-bg {
    transform: rotate(225deg) scale(1.1);
    background: linear-gradient(135deg, rgba(15, 110, 104, 0.2), rgba(102, 126, 234, 0.2));
}

.step-icon-wrapper img {
    width: 70px;
    height: 70px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s ease;
}

.step-card-pro:hover .step-icon-wrapper img {
    transform: scale(1.15) rotateY(360deg);
}

.step-card-pro h3 {
    font-size: 1.5rem;
    font-weight: 700; /* BRAND-ALIGN-01: see above */
    color: var(--dark-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.step-card-pro:hover h3 {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-card-pro p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.step-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(15, 110, 104, 0.1), rgba(102, 126, 234, 0.1));
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.step-card-pro:hover .step-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #ffffff;
    transform: translateY(-2px);
}

/* ===== FEATURES / WHY CHOOSE US ===== */
.features-pro {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-bg) 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.features-pro::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 110, 104, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.features-pro::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.feature-card-pro {
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    overflow: visible;
    border: 1px solid rgba(15, 110, 104, 0.08);
}

.feature-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.feature-card-pro:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(15, 110, 104, 0.15), 0 10px 30px rgba(102, 126, 234, 0.1);
    border-color: rgba(15, 110, 104, 0.2);
}

.feature-number-badge {
    position: absolute;
    top: -15px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700; /* BRAND-ALIGN-01: Fraunces/Manrope load to 700; anything heavier was faux-bolded */
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(15, 110, 104, 0.3);
    transform: rotate(15deg);
    transition: all 0.4s ease;
}

.feature-card-pro:hover .feature-number-badge {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(15, 110, 104, 0.5);
}

.feature-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-pro {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 15px 45px rgba(15, 110, 104, 0.25);
    transition: all 0.5s ease;
}

.feature-icon-pro::before {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-right-color: var(--accent-color);
    opacity: 0;
    transition: all 0.5s ease;
}

.feature-card-pro:hover .feature-icon-pro::before {
    opacity: 0.4;
    animation: rotate-border 3s linear infinite;
}

@keyframes rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.feature-icon-pro::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.15;
    animation: pulse-icon 2.5s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.05;
    }
}

.feature-card-pro:hover .feature-icon-pro {
    transform: scale(1.1);
    box-shadow: 0 20px 55px rgba(15, 110, 104, 0.4);
}

.feature-icon-pro img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.feature-card-pro:hover .feature-icon-pro img {
    transform: scale(1.15) rotate(5deg);
}

.feature-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(15, 110, 104, 0.08), rgba(102, 126, 234, 0.08));
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card-pro:hover .feature-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #ffffff;
    transform: translateY(-3px);
}

.feature-card-pro h5 {
    font-size: 1.5rem;
    font-weight: 700; /* BRAND-ALIGN-01: see above */
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card-pro:hover h5 {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card-pro p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
    text-align: center;
    font-size: 1rem;
}

.feature-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--light-bg);
    border-radius: 12px;
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-stat i {
    font-size: 1.125rem;
}

.feature-card-pro:hover .feature-stat {
    background: linear-gradient(135deg, rgba(15, 110, 104, 0.1), rgba(102, 126, 234, 0.1));
    transform: translateY(-3px);
}

/* ===== TESTIMONIALS ===== */
.testimonials-pro {
    padding: 6rem 0;
    background: var(--light-bg);
}

.testimonial-card-pro {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: var(--transition);
}

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

.testimonial-header-pro {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar-pro {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-info-pro h6 {
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 0.25rem 0;
}

.testimonial-info-pro p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.testimonial-rating-pro {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-text-pro {
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
}

/* ===== FAQ SECTION ===== */
.faq-pro {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-bg) 50%, #ffffff 100%);
    position: relative;
}

.faq-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(15, 110, 104, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.faq-wrapper-pro {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.faq-container-pro {
    flex: 1;
    max-width: 100%;
}

.faq-image-container-pro {
    flex: 0 0 450px;
    align-self: center;
}

.faq-image-pro {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 110, 104, 0.15);
    position: relative;
    transition: all 0.5s ease;
}

.faq-image-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 110, 104, 0.1), rgba(102, 126, 234, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.faq-image-pro:hover::before {
    opacity: 1;
}

.faq-image-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(15, 110, 104, 0.2), 0 15px 40px rgba(102, 126, 234, 0.15);
}

.faq-image-pro img {
    width: 100%;
    height: 650px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.faq-item-pro {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.faq-item-pro:hover {
    border-color: rgba(15, 110, 104, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question-pro {
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
    background: var(--light-bg);
}

.faq-question-pro:hover {
    background: #ffffff;
}

.faq-question-pro h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon-pro {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item-pro.active .faq-icon-pro {
    transform: rotate(45deg);
}

.faq-answer-pro {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.faq-item-pro.active .faq-answer-pro {
    max-height: 500px;
    padding: 0 2rem 1.75rem 2rem;
}

.faq-answer-pro p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1.5px solid rgba(15, 110, 104, 0.3);
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(15, 110, 104, 0.08);
    white-space: nowrap;
}

.contact-chip i {
    font-size: 0.85rem;
    opacity: 0.8;
}

.contact-chip:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 110, 104, 0.25);
}

.contact-chip:hover i {
    opacity: 1;
}

/* ===== BLOG SECTION ===== */
.blog-pro {
    padding: 6rem 0;
    background: var(--light-bg);
}

.blog-card-pro {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image-pro {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-image-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card-pro:hover .blog-image-pro img {
    transform: scale(1.1);
}

.blog-category-pro {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(15, 110, 104, 0.4);
}

.blog-content-pro {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta-pro {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.blog-meta-item-pro {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta-item-pro i {
    color: var(--primary-color);
}

.blog-content-pro h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content-pro p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-link-pro {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
    font-size: 1rem;
}

.blog-link-pro:hover {
    gap: 1rem;
    color: var(--accent-color);
}

.blog-link-pro i {
    transition: transform 0.3s ease;
}

.blog-link-pro:hover i {
    transform: translateX(5px);
}

/* ===== CTA SECTION ===== */
.cta-pro {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
    color: #ffffff;
}

.cta-pro h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700; /* BRAND-ALIGN-01: see above */
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-pro p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    opacity: 1;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

/* ===== FLEXIBLE HOURS & HIGH EARNINGS SECTION ===== */
.earnings-pro {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.earnings-pro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 110, 104, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.earnings-content-pro {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.earnings-text-pro {
    flex: 1;
}

.earnings-features-pro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.earnings-feature-item-pro {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #ffffff;
    border-radius: var(--border-radius);
    border: 2px solid rgba(15, 110, 104, 0.1);
    transition: var(--transition);
}

.earnings-feature-item-pro:hover {
    border-color: rgba(15, 110, 104, 0.3);
    box-shadow: 0 8px 25px rgba(15, 110, 104, 0.15);
    transform: translateY(-5px);
}

.earnings-feature-icon-pro {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(15, 110, 104, 0.25);
}

.earnings-feature-content-pro h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.earnings-feature-content-pro p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.earnings-image-pro {
    flex: 0 0 450px;
    position: relative;
}

.earnings-image-pro img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 25px 70px rgba(15, 110, 104, 0.2);
    transition: var(--transition);
}

.earnings-image-pro img:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 90px rgba(15, 110, 104, 0.3);
}

.btn-download-app {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #ffffff;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(15, 110, 104, 0.3);
}

.btn-download-app:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(15, 110, 104, 0.4);
    color: #ffffff;
}

.btn-download-app i {
    font-size: 1.25rem;
    transition: var(--transition);
}

.btn-download-app:hover i {
    transform: scale(1.15);
}

/* ===== RESPONSIVE ===== */

/* Tablets and Large Mobile (991px and below) */
@media (max-width: 991px) {
    .hero-professional {
        min-height: 85vh;
        margin-top: 75px;
    }
    
    .slide-content-pro {
        padding: 0 30px;
        max-width: 100%;
    }
    
    .hero-professional h1,
.hero-professional h2 {
        font-size: 2.2rem;
    }
    
    .hero-professional h1::after,
.hero-professional h2::after {
        width: 85px;
    }
    
    .hero-professional .subtitle {
        font-size: 1.15rem;
        max-width: 650px;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        padding: 1rem 2.25rem;
        font-size: 1rem;
    }
    
    .trust-badges-pro {
        gap: 1.75rem;
    }
    
    .trust-badge-pro {
        padding: 0.75rem 1.35rem;
        font-size: 0.95rem;
    }
    
    .slider-arrow {
        width: 55px;
        height: 55px;
    }
    
    .slider-arrow.prev {
        left: 25px;
    }
    
    .slider-arrow.next {
        right: 25px;
    }
}

/* Tablets and Mobile (768px and below) */
@media (max-width: 768px) {
    .hero-professional {
        min-height: 100vh;
        margin-top: 70px;
    }
    
    .hero-professional h1,
.hero-professional h2 {
        font-size: 1.85rem;
        margin-bottom: 1.25rem;
        line-height: 1.2;
    }
    
    .hero-professional h1::after,
.hero-professional h2::after {
        width: 70px;
        height: 4px;
        margin-top: 0.75rem;
    }
    
    .hero-professional .subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        max-width: 90%;
    }
    
    .slide-content-pro {
        padding: 0 25px;
        max-width: 100%;
    }
    
    .hero-buttons {
        gap: 1rem;
        margin-bottom: 2.5rem;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        padding: 0.95rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
        max-width: 350px;
    }
    
    .trust-badges-pro {
        gap: 1.25rem;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .trust-badge-pro {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        min-width: 200px;
        justify-content: center;
    }
    
    .trust-badge-pro i {
        font-size: 1.2rem;
    }
    
    .slider-arrow {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.2);
    }
    
    .slider-arrow.prev {
        left: 20px;
    }
    
    .slider-arrow.next {
        right: 20px;
    }
    
    .slider-arrow i {
        font-size: 1.2rem;
    }
    
    .slider-controls {
        bottom: 30px;
        padding: 10px 16px;
    }
    
    .slider-dot {
        width: 12px;
        height: 12px;
    }
    
    .slider-dot.active {
        width: 12px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .faq-wrapper-pro {
        flex-direction: column;
        gap: 2rem;
    }
    
    .faq-image-container-pro {
        flex: 0 0 auto;
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .faq-question-pro {
        padding: 1.5rem 1.75rem;
    }
    
    .faq-question-pro h5 {
        font-size: 1.0625rem;
    }
    
    .faq-item-pro.active .faq-answer-pro {
        padding: 0 1.75rem 1.5rem 1.75rem;
    }
    
    .earnings-content-pro {
        flex-direction: column;
        gap: 3rem;
    }
    
    .earnings-image-pro {
        flex: 0 0 auto;
        max-width: 100%;
    }
    
    .earnings-features-pro {
        grid-template-columns: 1fr;
    }
    
    .btn-download-app {
        width: 100%;
        justify-content: center;
    }
    
    .contact-chip {
        padding: 0.38rem 0.7rem;
        font-size: 0.95rem;
    }
    
    .blog-image-pro {
        height: 220px;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .hero-professional {
        margin-top: 60px;
        min-height: 100vh;
        padding: 0;
    }
    
    .hero-professional h1,
.hero-professional h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        line-height: 1.25;
        letter-spacing: -0.01em;
    }
    
    .hero-professional h1::after,
.hero-professional h2::after {
        width: 60px;
        height: 3px;
        margin-top: 0.65rem;
    }
    
    .hero-professional .subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .slide-content-pro {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .hero-buttons {
        gap: 0.85rem;
        margin-bottom: 2.5rem;
        max-width: 100%;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        padding: 0.85rem 1.5rem;
        font-size: 0.875rem;
        max-width: 100%;
        letter-spacing: 0.3px;
    }
    
    .btn-hero-primary i,
    .btn-hero-secondary i {
        font-size: 0.95rem;
    }
    
    .trust-badges-pro {
        gap: 0.85rem;
    }
    
    .trust-badge-pro {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        min-width: 180px;
    }
    
    .trust-badge-pro i {
        font-size: 1.1rem;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
        opacity: 0.85;
        background: rgba(255, 255, 255, 0.25);
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
    
    .slider-arrow i {
        font-size: 1.1rem;
    }
    
    .slider-controls {
        bottom: 20px;
        padding: 8px 14px;
        gap: 12px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dot.active {
        width: 10px;
    }
    
    .faq-image-container-pro {
        display: none;
    }
    
    .faq-question-pro {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question-pro h5 {
        font-size: 1rem;
    }
    
    .faq-icon-pro {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    .faq-item-pro.active .faq-answer-pro {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
    
    .contact-chip {
        padding: 0.35rem 0.65rem;
        font-size: 0.9rem;
        border-radius: 16px;
    }
    
    .contact-chip i {
        font-size: 0.8rem;
    }
    
    .earnings-image-pro {
        display: none;
    }
    
    .btn-download-app {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .blog-image-pro {
        height: 200px;
    }
    
    .blog-content-pro {
        padding: 1.5rem;
    }
    
    .blog-content-pro h4 {
        font-size: 1.125rem;
    }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
    .hero-professional {
        margin-top: 55px;
    }
    
    .hero-professional h1,
.hero-professional h2 {
        font-size: 1.35rem;
    }
    
    .hero-professional .subtitle {
        font-size: 0.85rem;
    }
    
    .slide-content-pro {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.8125rem;
    }
    
    .trust-badge-pro {
        padding: 0.5rem 0.85rem;
        font-size: 0.8rem;
        min-width: 160px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow.prev {
        left: 8px;
    }
    
    .slider-arrow.next {
        right: 8px;
    }
    
    .slider-arrow i {
        font-size: 1rem;
    }
    
    .slider-controls {
        padding: 6px 12px;
        gap: 10px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-dot.active {
        width: 8px;
    }
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(15, 110, 104, 0.4);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(15, 110, 104, 0.6);
}

.scroll-to-top i {
    font-size: 1.25rem;
}

/* Progress ring around button */
.scroll-to-top::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--secondary-color);
    animation: rotate 2s linear infinite;
}

.scroll-to-top:hover::before {
    animation-duration: 1s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top i {
        font-size: 1.1rem;
    }
}

/* CONVERSION-CTA-01: WhatsApp-first hero actions.
   Sits alongside the existing .btn-hero-primary / .btn-hero-secondary
   rules rather than replacing them, so nothing else that uses those
   classes changes. WhatsApp green is deliberate — it is the visual
   cue people recognise faster than any label. */
.btn-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-hero-whatsapp:hover,
.btn-hero-whatsapp:focus {
    background: #1FBE59;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

.btn-hero-whatsapp i {
    font-size: 1.25rem;
}

/* Tertiary action: always visible, never competing with the buttons. */
.hero-call-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-call-link:hover,
.hero-call-link:focus {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 575.98px) {
    /* On a phone the two buttons stack; full width gives a thumb-sized
       target instead of two cramped pills. */
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .btn-hero-whatsapp,
    .hero-buttons .btn-hero-secondary {
        justify-content: center;
        width: 100%;
    }
}

/* QUOTE-REQ-01: the quotation form that replaced the generic
   "download our app" band. Kept inside .cta-pro so the section's
   existing background/spacing still applies. */
.quote-section .quote-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
    max-width: 920px;
    margin: 0 auto;
    text-align: left;
}

.quote-intro { text-align: center; margin-bottom: 1.75rem; }
.quote-intro h2 { margin-bottom: 0.6rem; }
.quote-intro p { color: #4B5563; margin: 0; }

.quote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
}

.quote-field-wide { grid-column: 1 / -1; }

.quote-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.35rem;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
    width: 100%;
    padding: 0.8rem 0.95rem;
    border: 1px solid #D1D5DB;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #111827;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(15, 110, 104, 0.18);
}

.quote-submit {
    margin-top: 1.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.quote-submit:hover { background: var(--secondary-color); transform: translateY(-1px); }

.quote-alt {
    margin: 1rem 0 0;
    text-align: center;
    font-size: 0.9rem;
    color: #4B5563;
}
.quote-alt a { color: var(--primary-color); font-weight: 600; }

.quote-alert {
    padding: 0.9rem 1.1rem;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
}
.quote-alert-ok  { background: #E7F6EF; color: #0F7B4F; border: 1px solid #A7E3C6; }
.quote-alert-err { background: #FDECEA; color: #B42318; border: 1px solid #F5C2BE; }

/* Off-screen rather than display:none — some bots skip hidden inputs. */
.quote-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .quote-section .quote-card { padding: 1.5rem; }
    .quote-grid { grid-template-columns: 1fr; }
}

/* QUOTE-REQ-01 fix: .cta-pro was built as a dark gradient band, so it
   forces `color: #fff` (plus a text-shadow) on the section and on its
   h2/p. The quotation card sits on WHITE, so those inherited rules
   rendered the heading white-on-white — invisible.

   Reset text colour inside the card explicitly rather than weakening
   .cta-pro, because the same section styles are still used elsewhere. */
.quote-section .quote-card,
.quote-section .quote-card h2,
.quote-section .quote-card p,
.quote-section .quote-card label,
.quote-section .quote-card input,
.quote-section .quote-card select,
.quote-section .quote-card textarea {
    text-shadow: none;
}

.quote-section .quote-card { color: #111827; }

.quote-section .quote-intro h2 {
    color: #111827;
    text-shadow: none;
}

.quote-section .quote-intro p {
    color: #4B5563;
    font-size: 1.05rem;
    margin-bottom: 0;
    text-shadow: none;
    font-weight: 400;
}

.quote-section .quote-field label { color: #374151; }
.quote-section .quote-alt { color: #4B5563; }

/* Placeholders inherited the white too, so the hints were invisible. */
.quote-section .quote-card ::placeholder { color: #9CA3AF; opacity: 1; }

/* Keep the card clear of the gradient edges on narrow screens. */
.quote-section .container { padding-left: 16px; padding-right: 16px; }

/* Inputs are width:100% with padding — without border-box they overflow
   their grid cell and push the card wider than its container. */
.quote-section .quote-card,
.quote-section .quote-card * {
    box-sizing: border-box;
}

.quote-section .quote-card { width: 100%; }
