/* ============================================
   HeartAfrika - Custom Styles
   Author: HeartAfrika Team
   Description: Modern, responsive design with African theme
============================================ */

/* ========== ROOT VARIABLES ========== */
:root {
    /* Primary Colors */
    --primary-color: #D7263D;
    --primary-dark: #b01c2e;
    --primary-light: #ff4d6d;
    --accent-color: #FF5A5F;

    /* Neutral Colors */
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #999999;
    --text-white: #ffffff;

    /* Backgrounds */
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    --bg-darker: #020617;

    /* Functional Colors */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;

    /* UI Elements */
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    --box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 20px 40px -10px rgba(215, 38, 61, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --container-padding: 1.5rem;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Ensure all containers respect viewport */
.container,
.container-fluid {
    width: 100%;
    max-width: 100%;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    margin-left: auto;
    margin-right: auto;
}

/* Responsive base font size */
@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    .hero-stats {
        gap: 1.5rem;
        justify-content: space-around;
    }

    .stat-item {
        min-width: 30%;
        padding: 0 0.5rem;
    }

    html {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 12px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

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

.text-primary {
    color: var(--primary-color) !important;
}

/* ========== NAVIGATION ========== */
.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    z-index: 1000;
    width: 100%;
    max-width: 100%;
}

.navbar-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    padding: 0 var(--container-padding);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navbar-brand img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    margin-left: auto;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

.nav-item {
    margin: 0.3rem 0;
    width: 100%;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    display: block;
    width: 100%;
    text-align: left;
}

.nav-cta {
    background: var(--primary-color);
    color: var(--text-white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    margin: 0.5rem 0;
    text-align: center;
    display: inline-block;
    width: 100%;
    max-width: 200px;
}

/* Desktop styles */
@media (min-width: 992px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-container {
        flex-wrap: nowrap;
        padding: 0;
    }

    .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-nav {
        flex-direction: row;
        align-items: center;
        width: auto;
        padding: 0;
    }

    .nav-item {
        margin: 0 0.5rem;
        width: auto;
    }

    .nav-link {
        padding: 0.5rem 1rem !important;
        width: auto;
        text-align: center;
    }

    .nav-cta {
        margin-left: 1rem;
        margin-top: 0;
        width: auto;
        display: inline-block;
    }
}

/* Mobile menu toggle styles */
.navbar-toggler {
    display: block;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
}

/* Ensure menu is hidden by default on mobile */
@media (max-width: 991.98px) {
    .navbar-collapse {
        display: none;
    }

    .navbar-collapse.show {
        display: block;
    }
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.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='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
    transition: all 0.3s ease-in-out;
}

.navbar-nav {
    padding: 1rem 0;
}

.nav-item {
    margin: 0.3rem 0;
}

.nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    display: inline-block;
    text-align: center;
}

@media (min-width: 992px) {
    .nav-cta {
        margin-left: 1rem;
        margin-top: 0;
    }

    .navbar-nav {
        padding: 0;
    }

    .nav-item {
        margin: 0 0.2rem;
    }
}

.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    color: var(--primary-color);
    font-size: 1.8rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.brand-text {
    font-family: var(--font-heading);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-cta {
    background: var(--primary-color);
    color: var(--text-white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    margin-left: 1rem;
}

.nav-cta:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(215, 38, 61, 0.3);
}

/* ========== RESPONSIVE UTILITIES ========== */
/* Base container styles */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive typography */
h1,
.h1 {
    font-size: 2.5rem;
}

h2,
.h2 {
    font-size: 2rem;
}

h3,
.h3 {
    font-size: 1.75rem;
}

h4,
.h4 {
    font-size: 1.5rem;
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 1rem;
}

/* Responsive spacing */
:root {
    --spacing-unit: 1rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: calc(var(--spacing-unit) * 0.25);
}

.mt-2 {
    margin-top: calc(var(--spacing-unit) * 0.5);
}

.mt-3 {
    margin-top: var(--spacing-unit);
}

.mt-4 {
    margin-top: calc(var(--spacing-unit) * 1.5);
}

.mt-5 {
    margin-top: calc(var(--spacing-unit) * 3);
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }

    .container {
        max-width: 1140px;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 14px;
    }

    .container {
        max-width: 960px;
    }

    h1,
    .h1 {
        font-size: 2.25rem;
    }

    h2,
    .h2 {
        font-size: 1.875rem;
    }

    h3,
    .h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    .hero-stats {
        gap: 1.5rem;
        justify-content: space-around;
    }

    .stat-item {
        min-width: 30%;
        padding: 0 0.5rem;
    }

    html {
        font-size: 13px;
    }

    .container {
        max-width: 720px;
    }

    h1,
    .h1 {
        font-size: 2rem;
    }

    h2,
    .h2 {
        font-size: 1.75rem;
    }

    h3,
    .h3 {
        font-size: 1.375rem;
    }

    :root {
        --container-padding: 1rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }

    .container {
        max-width: 100%;
    }

    h1,
    .h1 {
        font-size: 2rem;
    }

    h2,
    .h2 {
        font-size: 1.75rem;
    }

    h3,
    .h3 {
        font-size: 1.5rem;
    }

    :root {
        --container-padding: 1rem;
    }

    .navbar-brand img {
        max-height: 32px;
    }
}

.container,
.container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (max-width: 576px) {

    .container,
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ========== HERO SECTION ========== */
/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--bg-darker) 0%, #1a0508 100%);
    color: var(--text-white);
    overflow: hidden;
    padding: 8rem 0 6rem;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title span.text-primary {
    background: linear-gradient(135deg, #ff4d6d 0%, #D7263D 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(215, 38, 61, 0.1);
    color: #ff4d6d;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(215, 38, 61, 0.2);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-pill i {
    margin-right: 0.5rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    color: var(--text-white);
    box-shadow: 0 10px 20px rgba(215, 38, 61, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(215, 38, 61, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--text-white);
}

.btn-outline-light:hover {
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-image {
    border-radius: 0;
    box-shadow: none;
    position: relative;
    z-index: 1;
    border: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    max-width: 150px;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(215, 38, 61, 0.1);
    padding: 0.75rem;
    border-radius: 12px;
}

.floating-card span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.2;
}

.card-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 15%;
    right: -20px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 15%;
    right: -20px;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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


.btn-outline-light:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 640px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    display: block;
}

.hero-image svg {
    width: 100%;
    height: auto;
}

/* Make hero image taller on desktop to match section height */
@media (min-width: 992px) {
    .hero-image-wrapper {
        min-height: min(96vh, 860px);
        align-items: flex-end;
        padding: 0;
    }

    .hero-media {
        min-height: min(94vh, 820px);
        align-items: flex-end;
        justify-content: flex-end;
    }

    .hero-image {
        width: auto;
        max-width: min(110%, 860px);
        height: min(94vh, 820px);
        max-height: none;
    }
}



.floating-card.card-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 15%;
    right: -5%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float {

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

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

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    10%,
    30% {
        transform: scale(1.1);
    }

    20%,
    40% {
        transform: scale(0.9);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    color: var(--text-white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

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

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ========== SECTION HEADERS ========== */
.section-badge {
    display: inline-block;
    background: rgba(215, 38, 61, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== HOW IT WORKS SECTION ========== */
.how-it-works-section {
    background: var(--bg-white);
    position: relative;
    padding: 8rem 0;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=400&h=400&fit=crop&q=60') center/cover;
    opacity: 0.05;
    border-radius: 50%;
}

.step-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--box-shadow);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(215, 38, 61, 0.1);
}

.step-card.active {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2d1f2f 100%);
    color: var(--text-white);
    border: none;
}

.step-card.active .step-title,
.step-card.active .step-description {
    color: var(--text-white);
}

.step-card.active .step-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
}

.step-card.active .step-number {
    color: rgba(255, 255, 255, 0.05);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(215, 38, 61, 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-color);
    color: var(--text-white);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.step-features span {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-card.active .step-features span {
    color: rgba(255, 255, 255, 0.8);
}

.step-features i {
    color: var(--success-color);
}

/* ========== CHAT ASSESSMENT SECTION ========== */
.chat-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.chat-content {
    padding: 2rem;
}

.chat-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chat-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.chat-features li i {
    font-size: 1.25rem;
    width: 30px;
    text-align: center;
}

.chat-btn {
    background: #25D366;
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.chat-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    color: white;
}

.chat-mockup {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
    max-width: 350px;
}

.chat-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* ========== MEDICAL PROFESSIONALS SECTION ========== */
.professionals-section {
    position: relative;
    overflow: hidden;
}

.professional-hero-image {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.professional-hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

/* Desktop: Increase image height/length */
@media (min-width: 992px) {
    #professional-image-wrapper {
        min-height: 700px !important;
    }
    
    .professional-hero-image {
        min-height: 650px !important;
        max-height: 700px !important;
        object-fit: cover;
    }
}

.professional-floating-card {
    transition: transform 0.3s ease;
}

.professional-floating-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.professional-features li {
    transition: all 0.3s ease;
}

.professional-features li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.professional-btn {
    position: relative;
    overflow: hidden;
}

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

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

.professional-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(215, 38, 61, 0.4);
}

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

/* Responsive adjustments for professionals section */
@media (max-width: 992px) {
    .professional-image-wrapper {
        min-height: 400px !important;
        margin-bottom: 3rem;
        margin-top: 2rem;
    }
    
    .professional-hero-image {
        max-width: 100% !important;
        min-height: 400px !important;
        max-height: 500px !important;
        object-fit: cover;
    }
    
    .professional-floating-card {
        display: none;
    }
    
    .professional-content {
        text-align: center;
        padding: 1rem 0 !important;
    }
    
    .section-title.text-start {
        text-align: center !important;
    }
    
    .section-description.text-start {
        text-align: center !important;
    }
    
    .professional-features li {
        text-align: left;
    }
    
    .professional-cta-group {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .professional-hero-image {
        max-width: 100% !important;
        transform: none !important;
    }
    
    .professional-features li {
        padding: 0.8rem !important;
    }
    
    .professional-features li h4 {
        font-size: 1rem !important;
    }
    
    .professional-features li p {
        font-size: 0.9rem !important;
    }
}

/* ========== FEATURES SECTION ========== */
.features-section {
    background: var(--bg-white);
    padding: 8rem 0;
    position: relative;
    overflow: visible;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 350px;
    height: 350px;
    background: url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?w=350&h=350&fit=crop&q=60') center/cover;
    opacity: 0.05;
    border-radius: 50%;
}

.feature-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
}

.feature-card:hover {
    background: var(--text-white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========== PRICING SECTION ========== */
.pricing-section {
    background: var(--bg-light);
    padding: 8rem 0;
    position: relative;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 3rem 2rem;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--box-shadow);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(180deg, var(--bg-white) 0%, #fff5f6 100%);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(215, 38, 61, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 60px rgba(215, 38, 61, 0.2);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-light);
    color: var(--text-light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-badge.pro {
    background: var(--primary-color);
    color: var(--text-white);
    box-shadow: 0 5px 15px rgba(215, 38, 61, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-plan {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.pricing-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    margin-right: 2px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.period {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.pricing-features li i {
    color: var(--success-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
    background: rgba(16, 185, 129, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-features li.disabled {
    color: var(--text-light);
    opacity: 0.6;
}

.pricing-features li.disabled i {
    color: var(--text-light);
    background: rgba(0, 0, 0, 0.05);
}

.pricing-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    background: var(--bg-white);
    padding: 8rem 0;
    position: relative;
}

.content-slider {
    position: relative;
}

.slider-header-controls {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.slider-control {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.slider-control:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.slider-control:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.slider-viewport {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.slider-slide {
    min-width: 100%;
    flex: 0 0 100%;
}

.testimonial-slide {
    padding: 0.25rem 0.25rem 0.75rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(215, 38, 61, 0.25);
    transition: var(--transition);
}

.slider-dot.active {
    width: 28px;
    border-radius: 999px;
    background: var(--primary-color);
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid transparent;
}

.testimonial-card:hover {
    background: var(--bg-white);
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-5px);
    border-color: rgba(215, 38, 61, 0.1);
}

.testimonial-stars {
    color: var(--warning-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1f2f 100%);
    color: var(--text-white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact-section .section-title {
    color: var(--text-white);
}

.contact-section .section-badge {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.contact-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    height: 100%;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.contact-icon.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.contact-icon.email {
    background: rgba(215, 38, 61, 0.1);
    color: var(--primary-color);
}

.contact-icon.phone {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.contact-card p {
    color: var(--text-light);
    margin: 0;
    transition: var(--transition);
}

.contact-card:hover h4,
.contact-card:hover p {
    color: var(--text-white);
}





/* ========== FOOTER ========== */
footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 0 2rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-about {
    margin-bottom: 2rem;
}

.footer-links h5,
.footer-newsletter h5 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-links h5::after,
.footer-newsletter h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
    list-style: none !important;
    padding: 0 !important;
    display: block;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-links li::before {
    display: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 50px;
    padding: 0 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--accent-color);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    .hero-stats {
        gap: 1.5rem;
        justify-content: space-around;
    }

    .stat-item {
        min-width: 30%;
        padding: 0 0.5rem;
    }

    footer {
        text-align: center;
        padding: 3rem 0 1.5rem;
    }

    .footer-links h5,
    .footer-newsletter h5 {
        margin-top: 2rem;
    }

    .footer-links h5::after,
    .footer-newsletter h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        padding: 0.8rem 1.5rem;
    }

    .footer-bottom {
        margin-top: 3rem;
        padding-top: 1.5rem;
    }
}



/* Responsive padding for sections */
.py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    .hero-stats {
        gap: 1.5rem;
        justify-content: space-around;
    }

    .stat-item {
        min-width: 30%;
        padding: 0 0.5rem;
    }

    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

/* Card adjustments for mobile */
.card {
    margin-bottom: 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    .hero-stats {
        gap: 1.5rem;
        justify-content: space-around;
    }

    .stat-item {
        min-width: 30%;
        padding: 0 0.5rem;
    }

    .card {
        margin-bottom: 1rem;
    }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
    }

    .floating-card {
        display: none;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    /* Prevent navbar from causing horizontal overflow on mobile/tablet */
    #mainNav,
    .navbar {
        width: 100%;
        overflow-x: hidden;
    }

    #mainNav .container {
        max-width: 100% !important;
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar-collapse {
        width: 100%;
    }

    .navbar-collapse.collapse.show,
    .navbar-collapse.collapsing {
        max-width: 100%;
    }

    .navbar .navbar-brand {
        max-width: calc(100% - 64px);
        /* account for toggler width */
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    /* Mobile CTA: show as full-width button inside collapsed menu */
    .navbar .nav-cta {
        display: block !important;
        width: 100%;
        margin: 12px 0 0 0;
        padding: 0.8rem 1.25rem !important;
        border-radius: 12px;
        text-align: center;
    }

    .navbar .navbar-nav {
        gap: 0.25rem;
        width: 100%;
        padding-bottom: 8px;
    }

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

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn-lg {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
}

/* ========== RESPONSIVE TABLES ========== */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

th,
td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* Responsive table */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ========== FORMS ========== */
.form-control {
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(215, 38, 61, 0.25);
}

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

/* Form groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Form validation */
.is-invalid {
    border-color: var(--danger-color);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: var(--danger-color);
}

.was-validated .form-control:invalid~.invalid-feedback,
.was-validated .form-control:invalid~.invalid-tooltip,
.form-control.is-invalid~.invalid-feedback,
.form-control.is-invalid~.invalid-tooltip {
    display: block;
}

/* Custom form controls */
.custom-control-input:checked~.custom-control-label::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: var(--primary-color);
}

/* ========== UTILITY CLASSES ========== */
.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.5rem !important;
}

.mt-2 {
    margin-top: 1rem !important;
}

.mt-3 {
    margin-top: 1.5rem !important;
}

.mt-4 {
    margin-top: 2rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 1rem !important;
}

.mb-3 {
    margin-bottom: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 2rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.5rem !important;
}

.pt-2 {
    padding-top: 1rem !important;
}

.pt-3 {
    padding-top: 1.5rem !important;
}

.pt-4 {
    padding-top: 2rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.5rem !important;
}

.pb-2 {
    padding-bottom: 1rem !important;
}

.pb-3 {
    padding-bottom: 1.5rem !important;
}

.pb-4 {
    padding-bottom: 2rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

/* Responsive spacing helpers */
@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    .hero-stats {
        gap: 1.5rem;
        justify-content: space-around;
    }

    .stat-item {
        min-width: 30%;
        padding: 0 0.5rem;
    }

    .mt-md-0 {
        margin-top: 0 !important;
    }

    .mt-md-1 {
        margin-top: 0.5rem !important;
    }

    .mt-md-2 {
        margin-top: 1rem !important;
    }

    .mt-md-3 {
        margin-top: 1.5rem !important;
    }

    .mt-md-4 {
        margin-top: 2rem !important;
    }

    .mb-md-0 {
        margin-bottom: 0 !important;
    }

    .mb-md-1 {
        margin-bottom: 0.5rem !important;
    }

    .mb-md-2 {
        margin-bottom: 1rem !important;
    }

    .mb-md-3 {
        margin-bottom: 1.5rem !important;
    }

    .mb-md-4 {
        margin-bottom: 2rem !important;
    }

    .pt-md-0 {
        padding-top: 0 !important;
    }

    .pt-md-1 {
        padding-top: 0.5rem !important;
    }

    .pt-md-2 {
        padding-top: 1rem !important;
    }

    .pt-md-3 {
        padding-top: 1.5rem !important;
    }

    .pt-md-4 {
        padding-top: 2rem !important;
    }

    .pb-md-0 {
        padding-bottom: 0 !important;
    }

    .pb-md-1 {
        padding-bottom: 0.5rem !important;
    }

    .pb-md-2 {
        padding-bottom: 1rem !important;
    }

    .pb-md-3 {
        padding-bottom: 1.5rem !important;
    }

    .pb-md-4 {
        padding-bottom: 2rem !important;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== UTILITIES ========== */
.py-5 {
    padding: 4rem 0;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Removed custom .g-4 override to preserve Bootstrap gutter behavior */

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

/* ========== LAYOUT UTILITIES (3 per row on tablet/desktop) ========== */
@media (min-width: 768px) {
    .force-three {
        flex-wrap: nowrap !important;
        /* keep 3 items on one line at >= md */
    }
}

/* ========== NOTIFICATION SYSTEM ========== */
.notification {
    position: fixed;
    top: 20px;
    right: -400px;
    min-width: 300px;
    max-width: 400px;
    background: var(--text-white);
    padding: 1.2rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    transition: all 0.3s ease;
}

.notification.show {
    right: 20px;
}

.notification i:first-child {
    font-size: 1.5rem;
}

.notification-success {
    border-left: 4px solid var(--success-color);
}

.notification-success i:first-child {
    color: var(--success-color);
}

.notification-error {
    border-left: 4px solid var(--danger-color);
}

.notification-error i:first-child {
    color: var(--danger-color);
}

.notification-info {
    border-left: 4px solid #17a2b8;
}

.notification-info i:first-child {
    color: #17a2b8;
}

.notification-warning {
    border-left: 4px solid var(--warning-color);
}

.notification-warning i:first-child {
    color: var(--warning-color);
}

.notification span {
    flex: 1;
    color: var(--text-dark);
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    font-size: 1.2rem;
    transition: var(--transition);
}

.notification-close:hover {
    color: var(--text-dark);
}

/* ========== PRICING COMPARISON TABLE ========== */
.pricing-comparison {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    overflow-x: auto;
}

.comparison-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.comparison-table th {
    padding: 1.5rem;
    color: var(--text-white);
    font-weight: 600;
    text-align: center;
    border: none;
}

.comparison-table th.feature-name {
    text-align: left;
}

.comparison-table td {
    padding: 1.25rem;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.comparison-table td.feature-name {
    text-align: left;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--bg-light);
}

.comparison-table td.feature-check {
    color: var(--primary-color);
    font-weight: 600;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover td:not(.feature-name) {
    background: rgba(215, 38, 61, 0.05);
}

@media (max-width: 768px) {
    .pricing-comparison {
        padding: 1.5rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
}

/* ========== FAQ SECTION ========== */
.faq-section {
    background: var(--bg-white);
    padding: 8rem 0;
}

.accordion {
    border: none;
}

.accordion-item {
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(215, 38, 61, 0.1);
}

.accordion-button {
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.5rem;
    border: none;
    box-shadow: none;
    font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(215, 38, 61, 0.05);
    color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D7263D'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    background: var(--bg-white);
}

@media (max-width: 768px) {
    .accordion-button {
        padding: 1.2rem;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 1.2rem;
    }
}

/* ========== TRUST & SECURITY SECTION ========== */
.trust-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 8rem 0;
}

.trust-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(215, 38, 61, 0.05);
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-color);
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
}

.trust-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.trust-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.trust-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.credentials-section {
    background: rgba(215, 38, 61, 0.02);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(215, 38, 61, 0.1);
}

.masonry-slider .slider-header-controls {
    justify-content: center;
}

.masonry-track {
    align-items: stretch;
}

.credential-slide {
    min-width: 100%;
    flex: 0 0 100%;
    padding: 0.25rem;
}

.credential-item {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    min-height: 100%;
}

.credential-tall {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.credential-short {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.masonry-offset {
    transform: translateY(20px);
}

.credential-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.credential-logo {
    width: 120px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
}

.credential-item p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.partners-showcase {
    overflow: hidden;
}

.partners-showcase-heading {
    max-width: 760px;
    margin: 0 auto 2rem;
    text-align: center;
}

.partners-showcase-heading h3 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--text-dark);
    margin: 0.75rem 0;
}

.partners-showcase-heading p {
    color: var(--text-light);
    margin: 0;
}

.partner-slide-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    min-height: 260px;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.partner-slide-card:hover {
    color: inherit;
}

.partner-logo-fallback {
    width: 118px;
    height: 82px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(215, 38, 61, 0.12), rgba(16, 185, 129, 0.14));
    color: var(--primary-dark);
    border: 1px solid rgba(215, 38, 61, 0.16);
    font-weight: 800;
    letter-spacing: 0;
}

.partners-hero {
    min-height: 66vh;
    padding: 9rem 0 4rem;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(215, 38, 61, 0.7)),
        url('../images/african-female-doctor.jpg') center/cover no-repeat;
    color: var(--text-white);
}

.partners-hero .section-badge {
    background: rgba(255, 255, 255, 0.14);
    color: var(--text-white);
}

.partners-hero-title {
    max-width: 880px;
    margin: 1rem auto;
    font-size: clamp(2.4rem, 6vw, 4.75rem);
    line-height: 1.05;
    font-weight: 800;
}

.partners-hero-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.12rem;
    line-height: 1.75;
}

.partners-grid-section {
    background: var(--bg-white);
}

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

.partner-page-card {
    min-height: 100%;
}

.partner-page-card-link {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: var(--bg-white);
    box-shadow: var(--box-shadow);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.partner-page-card-link:hover {
    color: inherit;
    transform: translateY(-4px);
    border-color: rgba(215, 38, 61, 0.18);
    box-shadow: var(--box-shadow-hover);
}

.partner-page-logo {
    min-height: 92px;
    display: flex;
    align-items: center;
}

.partner-type {
    width: fit-content;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    color: #047857;
    background: rgba(16, 185, 129, 0.12);
    font-weight: 700;
    font-size: 0.78rem;
}

.partner-page-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    color: var(--text-dark);
}

.partner-page-card p {
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.partner-page-link {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.partners-empty-state {
    max-width: 720px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .partners-hero {
        min-height: 58vh;
        padding: 8rem 0 3rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 4rem 0;
    }

    .slider-header-controls {
        justify-content: center;
    }

    .credentials-section {
        padding: 2rem 1rem;
    }

    .masonry-offset {
        transform: none;
    }
}

@media (max-width: 576px) {
    .notification {
        right: -100%;
        left: 10px;
        right: 10px;
        min-width: auto;
    }

    .notification.show {
        right: 10px;
    }
}

/* ========== FORM STYLING & VALIDATION ========== */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

.form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(215, 38, 61, 0.1);
}

.form-control.is-invalid {
    border-color: var(--danger-color);
    background: rgba(239, 68, 68, 0.05);
}

.form-control.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.invalid-feedback {
    display: block;
    color: var(--danger-color);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    animation: slideUp 0.3s ease-out;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary-light);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    white-space: nowrap;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-actions .btn {
        width: 100%;
    }
}

/* ========== ANIMATION ENHANCEMENTS ========== */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== PRINT STYLES ========== */
@media print {

    nav,
    footer,
    .btn,
    .contact-section {
        display: none;
    }

    body {
        color: black;
        background: white;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        page-break-after: avoid;
    }

    .pricing-card,
    .feature-card {
        page-break-inside: avoid;
    }
}

/* ========== HIGH CONTRAST MODE SUPPORT ========== */
@media (prefers-contrast: more) {
    .btn-primary {
        border: 2px solid var(--text-dark);
    }

    .nav-link {
        font-weight: 700;
    }

    .card {
        border: 2px solid var(--text-dark);
    }
}

/* ========== REDUCED MOTION SUPPORT ========== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ========== UTILITY CLASSES ========== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========== ENHANCED FOOTER ========== */
.footer {
    background: linear-gradient(135deg, var(--bg-darker) 0%, #0a0a0a 100%);
    color: var(--text-white);
    padding: 5rem 0 2rem;
}

.footer-brand img {
    max-height: 45px;
    transition: var(--transition);
}

.footer-brand img:hover {
    transform: scale(1.05);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover,
.footer-links a.active {
    color: var(--primary-light);
    transform: translateX(5px);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-white);
    margin-right: 0.75rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

.social-icon.whatsapp:hover {
    background: #25D366;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: var(--primary-light);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0 2rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-link:hover,
.footer-bottom-link.active {
    color: var(--primary-light);
}

.newsletter-form .input-group {
    max-width: 350px;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 0.8rem 1rem;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: none;
    color: var(--text-white);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 0.8rem 1.2rem;
}

/* ========== LEGAL PAGES ========== */
.legal-page {
    background: var(--bg-light);
}

.legal-hero {
    background: linear-gradient(135deg, var(--bg-darker) 0%, #1a0508 100%);
    color: var(--text-white);
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D7263D' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.privacy-hero::before {
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D7263D' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.legal-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(215, 38, 61, 0.3);
}

.privacy-hero .legal-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0 15px 40px rgba(215, 38, 61, 0.3);
}

.legal-icon i {
    font-size: 2.5rem;
    color: var(--text-white);
}

.legal-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.legal-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-meta span {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.legal-content {
    background: var(--bg-white);
}

/* Privacy Highlights */
.privacy-highlights {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 3rem;
    color: var(--text-white);
}

.privacy-highlights h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.highlight-card i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

.highlight-card span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Legal Table of Contents */
.legal-toc {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 3rem;
    border: 1px solid #e0e0e0;
}

.legal-toc h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.legal-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-toc li {
    margin-bottom: 0.8rem;
}

.legal-toc a {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.legal-toc a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Legal Sections */
.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.section-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.legal-section-header h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.legal-section-content {
    padding-left: 4rem;
}

@media (max-width: 768px) {
    .legal-section-content {
        padding-left: 0;
    }
}

.legal-section-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Legal Lists */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-list li i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

/* Legal Highlight Boxes */
.legal-highlight {
    display: flex;
    gap: 1rem;
    background: rgba(215, 38, 61, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.legal-highlight.success {
    background: rgba(215, 38, 61, 0.05);
    border-left-color: var(--primary-color);
}

.legal-highlight.success i {
    color: var(--primary-color);
}

.legal-highlight i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.legal-highlight p {
    margin: 0;
    color: var(--text-dark);
}

/* Legal Warning */
.legal-warning {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.legal-warning i {
    font-size: 2rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.legal-warning h4 {
    color: #d97706;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.legal-warning p {
    margin: 0;
    color: var(--text-dark);
}

/* Legal Features */
.legal-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.legal-feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.legal-feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--box-shadow);
}

.legal-feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.legal-feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.legal-feature-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Payment Cards */
.payment-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid #e0e0e0;
    transition: var(--transition);
}

.payment-card.pro {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-color: var(--primary-color);
    color: var(--text-white);
}

.payment-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.payment-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.payment-card.pro ul li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Data Categories */
.data-category {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.data-category h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.usage-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.usage-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.usage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.usage-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.usage-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.usage-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* Security Features */
.security-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.security-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.security-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.security-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.security-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.right-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.right-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.right-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.right-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.right-card p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-light);
}

/* Cookie Types */
.cookie-types {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cookie-type {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid #e0e0e0;
}

.cookie-type h4 {
    font-size: 1rem;
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.cookie-type p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.cookie-badge.essential {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.cookie-badge.analytics {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.cookie-badge.preference {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

/* Legal Contact Cards */
.legal-contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.legal-contact-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 50px;
    color: var(--text-dark);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.legal-contact-card:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.legal-contact-card i {
    font-size: 1.2rem;
}

/* Legal Navigation */
.legal-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 576px) {
    .legal-navigation {
        flex-direction: column;
    }

    .legal-navigation .btn {
        width: 100%;
    }
}

/* Legal Page Responsive */
@media (max-width: 768px) {
    .legal-hero {
        padding: 8rem 0 3rem;
    }

    .legal-hero h1 {
        font-size: 2rem;
    }

    .legal-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .legal-section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .section-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .legal-warning {
        flex-direction: column;
    }

    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .rights-grid {
        grid-template-columns: 1fr;
    }

    .usage-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== SPA TRANSITION STYLES ========== */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInPage 0.4s ease forwards;
}

@keyframes fadeInPage {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spa-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%;
    animation: loadingBar 1s ease-in-out infinite;
    z-index: 9999;
}

@keyframes loadingBar {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ============================================
   PREMIUM UI ENHANCEMENTS
   Enhanced visual design for professional look
============================================ */

/* ========== ANIMATED HERO BACKGROUND ========== */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 80% at 50% -20%, rgba(215, 38, 61, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 100% 0%, rgba(255, 90, 95, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 0% 100%, rgba(215, 38, 61, 0.08) 0%, transparent 50%);
    animation: heroGlow 10s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Floating particles effect */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D7263D' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: particleFloat 30s linear infinite;
    pointer-events: none;
}

@media (max-width: 991px) {
    .hero-section::before,
    .hero-section::after {
        animation: none !important;
    }

    .badge-pill,
    .badge-pill::before,
    .section-badge::after,
    .scroll-indicator a {
        animation: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-section::before,
    .hero-section::after,
    .badge-pill,
    .badge-pill::before,
    .section-badge::after,
    .scroll-indicator a {
        animation: none !important;
    }
}

@keyframes particleFloat {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 60px 60px;
    }
}

/* ========== ENHANCED BADGE PILL ========== */
.badge-pill {
    background: linear-gradient(135deg, rgba(215, 38, 61, 0.15) 0%, rgba(255, 90, 95, 0.1) 100%);
    border: 1px solid rgba(215, 38, 61, 0.25);
    animation: badgePulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.badge-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(215, 38, 61, 0);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(215, 38, 61, 0.15);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ========== GLASSMORPHISM FLOATING CARDS ========== */
.floating-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.floating-card i {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-card.card-1 {
    top: 15%;
    left: -10%;
    animation: float 5s ease-in-out infinite;
}

.floating-card.card-2 {
    top: 50%;
    right: -5%;
    animation: float 6s ease-in-out infinite 1s;
}

.floating-card.card-3 {
    bottom: 20%;
    left: 5%;
    animation: float 7s ease-in-out infinite 2s;
}

@keyframes float {

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

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* ========== ENHANCED SCROLL INDICATOR ========== */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator a:hover {
    color: var(--primary-light);
}

.scroll-indicator i {
    font-size: 1.5rem;
}

@keyframes scrollBounce {

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

    50% {
        transform: translateY(10px);
    }
}

/* ========== ENHANCED SECTION BADGES ========== */
.section-badge {
    background: linear-gradient(135deg, rgba(215, 38, 61, 0.12) 0%, rgba(255, 90, 95, 0.08) 100%);
    border: 1px solid rgba(215, 38, 61, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
}

.section-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 4s infinite;
}

/* ========== ENHANCED SECTION TITLES ========== */
.section-title {
    position: relative;
    display: inline-block;
}

.section-header .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ========== ENHANCED STEP CARDS ========== */
.step-card {
    background: linear-gradient(145deg, var(--bg-white) 0%, rgba(248, 249, 250, 0.8) 100%);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 50px -12px rgba(215, 38, 61, 0.15),
        0 0 0 1px rgba(215, 38, 61, 0.1);
}

.step-icon {
    position: relative;
    background: linear-gradient(135deg, rgba(215, 38, 61, 0.1) 0%, rgba(255, 90, 95, 0.05) 100%);
}

.step-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.step-card:hover .step-icon::after {
    opacity: 0.2;
}

/* Step connection line */
@media (min-width: 992px) {
    .how-it-works-section .row {
        position: relative;
    }

    .step-card::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -50%;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, rgba(215, 38, 61, 0.2), transparent);
        z-index: -1;
    }

    .step-card:last-child::after {
        display: none;
    }
}

/* ========== ENHANCED FEATURE CARDS ========== */
.feature-card {
    background: linear-gradient(145deg, var(--bg-white) 0%, rgba(248, 249, 250, 0.9) 100%);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(215, 38, 61, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 30px 60px -15px rgba(215, 38, 61, 0.12),
        0 0 0 1px rgba(215, 38, 61, 0.08);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    transition: var(--transition);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-icon i {
    color: white;
}

.feature-icon::before {
    display: none;
}

.feature-card:hover .feature-icon::before {
    display: none;
}

/* ========== ENHANCED TESTIMONIAL CARDS ========== */
.testimonial-card {
    background: linear-gradient(145deg, var(--bg-white) 0%, rgba(248, 249, 250, 0.95) 100%);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    color: rgba(215, 38, 61, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(215, 38, 61, 0.1);
}

.testimonial-stars {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.author-image {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(215, 38, 61, 0.15);
    transition: var(--transition);
}

.testimonial-card:hover .author-image {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* ========== ENHANCED PRICING CARDS ========== */
.pricing-card {
    background: linear-gradient(145deg, var(--bg-white) 0%, rgba(248, 249, 250, 0.95) 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #e0e0e0, #f0f0f0);
    transition: var(--transition);
}

.pricing-card:hover::before {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #2d1f2f 0%, #1a0a10 100%);
    border: 2px solid rgba(215, 38, 61, 0.5);
    transform: scale(1.02);
}

.pricing-card.featured .pricing-plan,
.pricing-card.featured .pricing-description,
.pricing-card.featured .pricing-price,
.pricing-card.featured .currency,
.pricing-card.featured .amount,
.pricing-card.featured .period,
.pricing-card.featured .pricing-features li,
.pricing-card.featured .pricing-note {
    color: #ffffff;
}

.pricing-card.featured .pricing-features li i {
    color: #10b981;
    background: rgba(16, 185, 129, 0.2);
}

.pricing-card.featured::before {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    height: 5px;
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--primary-color));
    border-radius: inherit;
    z-index: -1;
    opacity: 0.2;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 0.3;
    }
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow:
        0 30px 60px -15px rgba(215, 38, 61, 0.3),
        0 0 40px rgba(215, 38, 61, 0.15);
}

.pricing-badge {
    position: absolute;
    top: 1.5rem;
    right: -2rem;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    color: var(--text-dark);
    padding: 0.4rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.pricing-badge.pro {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 5px 15px rgba(215, 38, 61, 0.3);
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card.featured .pricing-price .amount {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== ENHANCED CHAT SECTION ========== */
.chat-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(248, 249, 250, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.chat-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(37, 211, 102, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.chat-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    position: relative;
    overflow: hidden;
}

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

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

/* ========== ENHANCED FAQ SECTION ========== */
.faq-section {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.accordion-item {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(215, 38, 61, 0.08);
    border-color: rgba(215, 38, 61, 0.15);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(215, 38, 61, 0.04) 0%, rgba(255, 90, 95, 0.02) 100%);
}

/* ========== ENHANCED TRUST SECTION ========== */
.trust-card {
    background: linear-gradient(145deg, var(--bg-white) 0%, rgba(248, 249, 250, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: var(--transition);
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    box-shadow: 0 10px 30px rgba(215, 38, 61, 0.25);
    position: relative;
}

.trust-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.2;
    z-index: -1;
    animation: trustPulse 2s ease-in-out infinite;
}

@keyframes trustPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

/* ========== ENHANCED CONTACT SECTION ========== */
.contact-card {
    background: linear-gradient(145deg, var(--bg-white) 0%, rgba(248, 249, 250, 0.95) 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(215, 38, 61, 0.2);
}

.contact-icon {
    background: linear-gradient(135deg, rgba(215, 38, 61, 0.1) 0%, rgba(255, 90, 95, 0.05) 100%);
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scale(1.1);
}

.contact-card:hover .contact-icon i {
    color: white;
}

/* ========== SMOOTH HOVER TRANSITIONS ========== */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========== ENHANCED BUTTONS ========== */
.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

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

.btn-outline-primary {
    position: relative;
    overflow: hidden;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transition: 0.4s;
    z-index: -1;
}

.btn-outline-primary:hover::before {
    width: 100%;
}

.btn-outline-primary:hover {
    color: white;
    border-color: transparent;
}

/* ========== BACK TO TOP BUTTON ENHANCEMENT ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 5px 20px rgba(215, 38, 61, 0.35);
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(215, 38, 61, 0.45);
}

/* ========== RESPONSIVE PREMIUM ENHANCEMENTS ========== */
@media (max-width: 768px) {
    .floating-card {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .step-card::after {
        display: none;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* ========== LOADING STATES ========== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeletonLoader 1.5s infinite;
}

@keyframes skeletonLoader {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ========== COMPACT MINI FEATURE CARDS ========== */
.feature-card-mini {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(215, 38, 61, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(215, 38, 61, 0.12);
    border-color: rgba(215, 38, 61, 0.2);
}

.feature-card-mini:hover::before {
    opacity: 1;
}

.feature-icon-mini {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.25rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-icon-mini i {
    color: white;
}

.feature-card-mini:hover .feature-icon-mini {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: scale(1.1);
}

.feature-card-mini h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.feature-card-mini p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* Responsive adjustments for mini cards */
@media (max-width: 768px) {
    .feature-card-mini {
        padding: 1rem;
    }

    .feature-icon-mini {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .feature-card-mini h4 {
        font-size: 0.85rem;
    }

    .feature-card-mini p {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .feature-card-mini {
        padding: 0.85rem;
    }

    .feature-icon-mini {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .feature-card-mini h4 {
        font-size: 0.8rem;
    }

    .feature-card-mini p {
        font-size: 0.7rem;
    }
}

/* ========== PRICING TRIAL BADGE ========== */
.pricing-trial-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.75rem 0 1rem;
    animation: pulse 2s infinite;
}

.pricing-trial-badge i {
    font-size: 1rem;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

/* ========== APP MOCKUP HERO IMAGE ========== */
.app-mockup-hero {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.app-mockup-hero:hover {
    transform: scale(1.15) !important;
}

.chat-section .chat-image-wrapper {
    overflow: visible;
}

/* Responsive app mockup */
@media (max-width: 991px) {
    .chat-section .row {
        min-height: auto !important;
    }

    .chat-section .chat-image-wrapper {
        min-height: 350px !important;
        margin-top: 2rem;
    }

    .app-mockup-hero {
        max-width: 450px !important;
        transform: scale(1) !important;
    }
}

@media (max-width: 576px) {
    .chat-section .chat-image-wrapper {
        min-height: 280px !important;
    }

    .app-mockup-hero {
        max-width: 320px !important;
    }
}

/* ========== MOBILE HERO SECTION FIXES ========== */
@media (max-width: 991px) {

    /* Center hero content on mobile */
    .hero-content {
        text-align: center !important;
        padding-right: 0 !important;
    }

    .hero-title {
        text-align: center !important;
    }

    .hero-subtitle,
    .hero-tagline {
        text-align: center !important;
        max-width: 100% !important;
    }

    .badge-pill {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center !important;
    }

    /* Stats in one horizontal line on mobile */
    .hero-stats {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        gap: 1rem !important;
        border-top: none !important;
        padding-top: 1.5rem;
    }

    .stat-item {
        min-width: auto !important;
        flex: 1 1 0;
        text-align: center;
        padding: 0 0.5rem;
    }

    .stat-item h3,
    .stat-number {
        font-size: 1.5rem !important;
        margin-bottom: 0.15rem !important;
    }

    .stat-item p,
    .stat-label {
        font-size: 0.7rem !important;
        white-space: nowrap;
    }

    /* Remove border/lines from hero image on mobile */
    .hero-image {
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        max-width: 100% !important;
    }

    .hero-image-wrapper {
        margin-top: 2rem;
        padding: 0;
    }
}

@media (max-width: 576px) {

    .stat-item h3,
    .stat-number {
        font-size: 1.25rem !important;
    }

    .stat-item p,
    .stat-label {
        font-size: 0.65rem !important;
    }

    .hero-stats {
        gap: 0.5rem !important;
    }
}
/* ========== ABOUT PAGE STYLES ========== */
.about-page .about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-darker) 0%, #1a0508 100%);
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 20%, rgba(215, 38, 61, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(255, 77, 109, 0.1) 0%, transparent 50%);
    animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, #ff4d6d 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Mission Section */
.mission-section {
    background: var(--bg-light);
}

.mission-image-wrapper {
    position: relative;
}

.mission-image-bg {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff4d6d 100%);
    border-radius: 24px;
    opacity: 0.1;
}

.mission-image {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mission-stat-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-white);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.mission-stat-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.mission-stat-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.mission-stat-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.mission-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.mission-content .lead {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mission-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.highlight-item i {
    color: var(--success-color);
    font-size: 1.1rem;
}

/* Values Section */
.values-section {
    background: var(--bg-white);
}

.value-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(215, 38, 61, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff4d6d 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.75rem;
    color: var(--text-white);
}

.value-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    margin: 0;
}

/* Timeline Section */
.timeline-section {
    background: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color) 0%, #ff4d6d 100%);
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -32px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 3px solid var(--primary-color);
    z-index: 1;
}

.timeline-marker.active {
    background: var(--primary-color);
    box-shadow: 0 0 0 6px rgba(215, 38, 61, 0.2);
}

.timeline-content {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff4d6d 100%);
    color: var(--text-white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.timeline-content h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

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

/* Team Section */
.about-team-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 249, 250, 0.96)),
        url('../images/hero-doctor.png') right bottom / 460px auto no-repeat;
}

.team-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.team-note i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--primary-color), #10b981);
    flex: 0 0 auto;
}

.team-note p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.65;
}

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

.about-team-card {
    background: var(--bg-white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    min-height: 100%;
    transition: var(--transition);
}

.about-team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(215, 38, 61, 0.18);
    box-shadow: var(--box-shadow-hover);
}

.about-team-card.featured {
    border-top: 4px solid var(--primary-color);
}

.team-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, rgba(215, 38, 61, 0.12), rgba(16, 185, 129, 0.15));
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-photo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0;
}

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

.team-role {
    display: inline-flex;
    width: fit-content;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    color: #047857;
    background: rgba(16, 185, 129, 0.12);
    font-weight: 700;
    font-size: 0.78rem;
    margin-bottom: 0.85rem;
}

.about-team-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.team-qualifications {
    display: block;
    color: var(--primary-color);
    font-size: 0.88rem;
    font-weight: 700;
    margin-top: 0.35rem;
}

.about-team-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0.85rem 0 0;
}

.team-social-links {
    display: flex;
    gap: 0.65rem;
    margin-top: 1rem;
}

.team-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.team-social-links a:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

/* Partners Section */
.partners-section {
    background: var(--bg-white);
}

.partner-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff4d6d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
}

.partner-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bg-darker) 0%, #1a0508 100%);
}

.cta-card {
    background: linear-gradient(135deg, rgba(215, 38, 61, 0.1) 0%, rgba(255, 77, 109, 0.05) 100%);
    border: 1px solid rgba(215, 38, 61, 0.2);
    border-radius: 24px;
    padding: 4rem 3rem;
    backdrop-filter: blur(10px);
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========== CONTACT PAGE STYLES ========== */
.contact-page .contact-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-darker) 0%, #1a0508 100%);
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 30%, rgba(215, 38, 61, 0.15) 0%, transparent 60%);
}

.contact-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.contact-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    margin: 0 auto;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Form Toggle */
.form-toggle-wrapper {
    margin-bottom: 2rem;
}

.form-toggle {
    display: flex;
    position: relative;
    background: var(--bg-light);
    border-radius: 50px;
    padding: 4px;
}

.toggle-btn {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50px;
    position: relative;
    z-index: 2;
}

.toggle-btn.active {
    color: var(--text-white);
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff4d6d 100%);
    border-radius: 50px;
    transition: transform 0.3s ease;
    z-index: 1;
}

/* Contact Form */
.contact-form {
    display: none;
}

.contact-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.form-header {
    margin-bottom: 1.5rem;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    margin: 0;
}

.form-floating > .form-control,
.form-floating > .form-select {
    border-radius: 12px;
    border: 2px solid var(--bg-light);
    padding: 1rem 0.75rem;
    height: auto;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(215, 38, 61, 0.1);
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff4d6d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-icon i {
    font-size: 1.25rem;
    color: var(--text-white);
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

.contact-hours, .contact-address {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Social Links */
.contact-social {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.contact-social h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-social .social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.contact-social .social-links a {
    width: 42px;
    height: 42px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}

.contact-social .social-links a:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* FAQ Quick Cards */
.faq-quick-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-white);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    color: var(--text-dark);
    text-decoration: none;
}

.faq-quick-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.faq-quick-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-quick-card span {
    font-weight: 600;
}

/* SPA Loading Indicator */
.spa-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff4d6d, var(--primary-color));
    background-size: 200% 100%;
    animation: loading-bar 1s linear infinite;
    z-index: 9999;
    display: none;
}

@keyframes loading-bar {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-hero-title, .contact-hero-title { font-size: 2.5rem; }
    .about-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cta-card { padding: 3rem 2rem; }
    .cta-content h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .about-hero-title, .contact-hero-title { font-size: 2rem; }
    .mission-stat-card { position: static; margin-top: 1rem; }
    .about-team-grid { grid-template-columns: 1fr; }
    .timeline { padding-left: 30px; }
    .timeline-marker { left: -22px; width: 12px; height: 12px; }
    .cta-buttons { flex-direction: column; }
    .toggle-btn { padding: 0.75rem 1rem; font-size: 0.85rem; }
}

/* ========== PREMIUM PROFESSIONAL ENHANCEMENT ========== */

/* Refined Color Palette Overrides for More Professional Look */
:root {
    /* More refined, deeper red - less aggressive, more premium */
    --primary-color: #C41E3A; /* Crimson - more premium feel */
    --primary-dark: #9A1831;
    --primary-light: #E63950;
    --accent-gradient: linear-gradient(135deg, #C41E3A 0%, #E63950 50%, #FF6B7A 100%);
    
    /* Enhanced neutrals for better readability */
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --text-lighter: #9CA3AF;
    
    /* Subtle warm tones in backgrounds */
    --bg-light: #FAFAFA;
    --bg-warm: #FFF9F9;
    
    /* Premium shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-primary: 0 10px 40px -10px rgba(196, 30, 58, 0.25);
}

/* Premium Button Styles */
.btn-primary {
    background: var(--accent-gradient);
    border: none;
    box-shadow: var(--shadow-primary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 45px -10px rgba(196, 30, 58, 0.35);
    filter: brightness(1.05);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Enhanced Navbar */
.navbar {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-lg);
}

/* Premium Card Hover Effects */
.step-card,
.feature-card-mini,
.pricing-card,
.testimonial-card,
.trust-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover,
.feature-card-mini:hover,
.testimonial-card:hover,
.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Premium Feature Cards */
.feature-card-mini {
    background: linear-gradient(135deg, #ffffff 0%, #FAFAFA 100%);
    border: 1px solid rgba(0,0,0,0.04);
}

.feature-card-mini:hover {
    border-color: rgba(196, 30, 58, 0.15);
    background: linear-gradient(135deg, #fff 0%, #FFF9F9 100%);
}

.feature-card-mini .feature-icon-mini {
    background: var(--accent-gradient);
    box-shadow: 0 8px 20px -5px rgba(196, 30, 58, 0.3);
    color: white;
}

.feature-card-mini .feature-icon-mini i {
    color: white;
}

/* Enhanced Pricing Cards */
.pricing-card {
    background: linear-gradient(180deg, #ffffff 0%, #FAFAFA 100%);
    border: 1px solid rgba(0,0,0,0.06);
}

.pricing-card.featured {
    background: linear-gradient(145deg, var(--bg-dark) 0%, #1a1a2e 100%);
    border: 2px solid var(--primary-color);
    box-shadow: 0 25px 50px -12px rgba(196, 30, 58, 0.25);
}

.pricing-card.featured:hover {
    box-shadow: 0 35px 60px -12px rgba(196, 30, 58, 0.35);
    transform: translateY(-10px) scale(1.02);
}

/* Premium Section Badges */
.section-badge {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(255, 107, 122, 0.1) 100%);
    border: 1px solid rgba(196, 30, 58, 0.2);
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Hero Enhancement */
.hero-section {
    background: linear-gradient(145deg, var(--bg-darker) 0%, #0a0a14 50%, #1a0a0d 100%);
}

.hero-title {
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-stats {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-stats--single {
    justify-content: flex-start;
    max-width: 12rem;
}

.hero-stats--single .stat-item {
    min-width: auto;
    text-align: left;
}

/* Floating Cards Enhancement */
.floating-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Premium Footer */
.footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(196, 30, 58, 0.3);
}

/* Subtle Animations */
@keyframes subtle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(196, 30, 58, 0.2); }
}

.hero-cta-group .btn-primary {
    animation: pulse-glow 3s infinite;
}

/* Premium FAQ Accordion */
.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(255, 107, 122, 0.05) 100%);
    color: var(--primary-color);
    font-weight: 600;
}

.accordion-item {
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(0,0,0,0.06) !important;
}

/* Trust Cards Enhancement */
.trust-card {
    background: linear-gradient(135deg, #ffffff 0%, #FAFAFA 100%);
    border: 1px solid rgba(0,0,0,0.04);
}

.trust-card .trust-icon {
    background: var(--accent-gradient);
    box-shadow: 0 10px 25px -5px rgba(196, 30, 58, 0.3);
}

/* Smooth scroll indicator */
.scroll-indicator a {
    animation: subtle-float 2s ease-in-out infinite;
}

/* Premium text formatting */
.section-title {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ========== FLOATING WHATSAPP CTA BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-float-btn i {
    font-size: 1.75rem;
    color: #fff;
}

.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsapp-ring 2s ease-in-out infinite;
    z-index: -1;
}

.whatsapp-float-label {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float-label {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float:hover .whatsapp-float-btn {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

/* Move floating WhatsApp above back-to-top on mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-float-btn {
        width: 52px;
        height: 52px;
    }

    .whatsapp-float-btn i {
        font-size: 1.5rem;
    }

    .whatsapp-float-label {
        display: none;
    }
}

/* Ensure back-to-top doesn't overlap */
.back-to-top {
    right: 30px;
    bottom: 30px;
}

@media (max-width: 768px) {
    .back-to-top {
        right: 20px;
        bottom: 20px;
    }
}

/* ========== ENHANCED NAVBAR ACTIVE LINK ========== */
.nav-link.active {
    color: var(--primary-color) !important;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

@media (max-width: 991px) {
    .nav-link.active::after {
        left: 0;
        transform: none;
        width: 4px;
        height: 20px;
        top: 50%;
        transform: translateY(-50%);
        bottom: auto;
    }
}

/* ========== SELECTION COLOR ========== */
::selection {
    background: rgba(196, 30, 58, 0.2);
    color: var(--text-dark);
}

/* ========== SMOOTH SCROLL BEHAVIOR ========== */
html {
    scroll-behavior: smooth;
}

/* ========== FOCUS VISIBLE IMPROVEMENT ========== */
:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ========== IMAGE ACCESSIBILITY ========== */
img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   NEW PAGE STYLES - Features, API, Components
   v20260415
============================================ */

/* ========== TEXT GRADIENT UTILITY ========== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== TRUST RIBBON ========== */
.trust-ribbon {
    background: var(--bg-darker);
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-ribbon-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.trust-ribbon-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.trust-ribbon-items {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.trust-ribbon-items span {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.trust-ribbon-items span i {
    color: var(--primary-color);
    font-size: 1rem;
}
@media (max-width: 768px) {
    .trust-ribbon-items { gap: 1rem; }
    .trust-ribbon-items span { font-size: 0.8rem; }
}

/* ========== WHATSAPP BUTTON ========== */
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}
.btn-whatsapp:hover {
    background: #1eba59;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* ========== UPDATED CHAT SECTION (dark, logo-consistent) ========== */
.chat-section {
    padding: 5rem 0;
    background:
        radial-gradient(900px 480px at 82% 22%, rgba(215, 38, 61, 0.18), transparent 60%),
        linear-gradient(135deg, #0d0d0f 0%, #15161a 55%, #0a0a0c 100%);
    min-height: 550px;
    overflow: visible;
    color: rgba(255, 255, 255, 0.9);
}
.chat-section .section-badge {
    background: rgba(215, 38, 61, 0.18);
    color: #ff4d6d;
    border: 1px solid rgba(215, 38, 61, 0.35);
}
.chat-section .section-title,
.chat-section h2,
.chat-section h3 {
    color: #ffffff;
}
.chat-section .section-description,
.chat-section p {
    color: rgba(255, 255, 255, 0.72);
}
.chat-section .chat-content { padding: 1rem 0; }
.chat-section .chat-features {
    list-style: none;
    padding: 0;
}
.chat-section .chat-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
}
.chat-section .chat-features li i {
    font-size: 1.2rem;
    width: 28px;
    text-align: center;
}
.chat-section .chat-features li .fa-whatsapp { color: #25D366; }
.chat-section .chat-features li .fa-lock { color: var(--primary-color); }
.chat-section .chat-features li .fa-user-md { color: var(--primary-color); }
.chat-section .chat-features li .fa-language { color: #3b82f6; }
.chat-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}
.chat-image-wrapper .app-mockup-hero {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    transform: scale(1.1);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* ========== PROFESSIONALS SECTION (homepage) ========== */
.professionals-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}
.professional-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}
.professional-hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.professional-content { padding: 2rem 0; }
.section-badge-pro {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.5rem;
    box-shadow:
        0 5px 15px rgba(215, 38, 61, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    border: none;
}
.pro-float-card {
    position: absolute;
    padding: 1.2rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    z-index: 3;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}
.pro-float-card i { font-size: 1.8rem; }
.pro-float-card span { font-weight: 600; font-size: 0.85rem; }
.pro-float-1 {
    top: 10%;
    right: -5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    animation: float 3s ease-in-out infinite;
}
.pro-float-2 {
    bottom: 15%;
    left: -5%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    animation: float 3s ease-in-out infinite 1.5s;
}
.pro-highlights { margin-bottom: 2rem; }
.pro-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: rgba(215, 38, 61, 0.03);
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
    transition: var(--transition);
}
.pro-highlight-item:hover { background: rgba(215, 38, 61, 0.06); }
.pro-highlight-item > i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
    width: 32px;
    flex-shrink: 0;
}
.pro-highlight-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}
.pro-highlight-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}
.pro-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
@media (max-width: 991px) {
    .pro-float-card { display: none; }
    .professional-image-wrapper { min-height: 300px; margin-bottom: 2rem; }
}

/* ========== PAGE HERO (Features/API pages) ========== */
.page-hero {
    background: linear-gradient(135deg, var(--bg-darker) 0%, #1a0508 100%);
    color: var(--text-white);
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 50% -20%, rgba(215, 38, 61, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 100% 50%, rgba(255, 90, 95, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
}
.page-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.page-hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
@media (max-width: 768px) {
    .page-hero { padding: 8rem 0 3rem; }
    .page-hero-title { font-size: 2rem; }
    .page-hero-subtitle { font-size: 1rem; }
}

/* ========== FEATURES DETAIL (features.html) ========== */
.features-detail-section {
    padding: 5rem 0;
    background: var(--bg-white);
}
.feature-detail-row {
    padding: 3rem 0;
    border-bottom: 1px solid #f0f0f0;
}
.feature-detail-row:last-child { border-bottom: none; }
.feature-detail-icon-wrap { margin-bottom: 1.5rem; }
.feature-detail-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
}
.feature-detail-icon.whatsapp-icon { background: linear-gradient(135deg, #25D366, #128C7E); }
.feature-detail-icon.food-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.feature-detail-icon.med-icon { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.feature-detail-icon.report-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.feature-detail-icon.goals-icon { background: linear-gradient(135deg, #10b981, #059669); }
.feature-detail-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.feature-detail-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.feature-detail-list {
    list-style: none;
    padding: 0;
}
.feature-detail-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
    color: var(--text-dark);
    font-weight: 500;
}
.feature-detail-list li i { color: var(--success-color); font-size: 1rem; }

/* Feature visual mockups */
.feature-detail-visual { display: flex; justify-content: center; align-items: center; }
.feature-visual-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    width: 100%;
    max-width: 450px;
    border: 1px solid #eee;
}
.feature-visual-header {
    background: #f5f5f5;
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
}
.feature-visual-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.feature-visual-dot.red { background: #ef4444; }
.feature-visual-dot.yellow { background: #f59e0b; }
.feature-visual-dot.green { background: #10b981; }
.feature-visual-body { padding: 2rem; }
.risk-meter { margin-bottom: 1.5rem; }
.risk-meter-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.risk-meter-bar {
    height: 12px;
    background: #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}
.risk-meter-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 6px;
    transition: width 1s ease;
}
.risk-meter-value { font-size: 0.9rem; color: var(--text-light); }
.risk-low { color: #10b981; font-weight: 600; }
.risk-factors { display: flex; flex-direction: column; gap: 0.5rem; }
.risk-factor-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}
.risk-factor-item i { color: var(--primary-color); }
.feature-phone-mockup {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
}

/* Food grid mockup */
.food-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}
.food-grid-item {
    background: var(--bg-white);
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition);
}
.food-grid-item:hover { transform: translateY(-4px); box-shadow: var(--box-shadow); }
.food-grid-item i {
    font-size: 2rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}
.food-grid-item span {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}
.food-grid-item small {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Med schedule mockup */
.med-schedule { max-width: 400px; margin: 0 auto; }
.med-schedule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border: 1px solid #eee;
    transition: var(--transition);
}
.med-schedule-item:hover { box-shadow: var(--box-shadow); }
.med-schedule-item > i { font-size: 1.5rem; width: 32px; text-align: center; }
.med-schedule-item.morning > i { color: #f59e0b; }
.med-schedule-item.afternoon > i { color: #f97316; }
.med-schedule-item.evening > i { color: #6366f1; }
.med-schedule-item div { flex: 1; }
.med-schedule-item div strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
.med-schedule-item div span { font-size: 0.85rem; color: var(--text-light); }
.med-time { font-weight: 600; color: var(--primary-color); font-size: 0.9rem; }

/* Report preview mockup */
.report-preview {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 350px;
    margin: 0 auto;
    border: 1px solid #eee;
}
.report-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
}
.report-preview-header span { font-weight: 600; color: var(--text-dark); font-size: 0.9rem; }
.report-preview-body { padding: 1.5rem; }
.report-line {
    height: 10px;
    background: #f0f0f0;
    border-radius: 5px;
    margin-bottom: 0.75rem;
}
.report-line.long { width: 100%; }
.report-line.medium { width: 75%; }
.report-line.short { width: 50%; }
.report-chart-placeholder {
    height: 100px;
    background: linear-gradient(135deg, rgba(215,38,61,0.05), rgba(255,90,95,0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}
.report-chart-placeholder i { font-size: 2rem; color: var(--primary-color); opacity: 0.5; }

/* Goals preview mockup */
.goals-preview { max-width: 400px; margin: 0 auto; }
.goal-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border: 1px solid #eee;
}
.goal-progress {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-color) calc(var(--progress) * 3.6deg), #eee 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}
.goal-progress::before {
    content: '';
    width: 42px;
    height: 42px;
    background: var(--bg-white);
    border-radius: 50%;
    position: absolute;
}
.goal-progress span {
    position: relative;
    z-index: 1;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
}
.goal-item div strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
.goal-item div small { color: var(--text-light); font-size: 0.8rem; }

/* More features section */
.more-features-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

/* ========== PAGE CTA SECTION ========== */
.page-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, #1a0508 100%);
}
.page-cta-card {
    text-align: center;
    padding: 4rem 2rem;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, rgba(215,38,61,0.1), rgba(255,90,95,0.05));
    border: 1px solid rgba(215,38,61,0.2);
}
.page-cta-card h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
}
.page-cta-card p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.page-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== API PAGE STYLES ========== */
.api-detail-section {
    padding: 5rem 0;
    background: var(--bg-white);
}
.api-use-cases { display: flex; flex-direction: column; gap: 1.25rem; }
.api-use-case {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--border-radius);
    background: var(--bg-light);
    transition: var(--transition);
}
.api-use-case:hover { transform: translateX(5px); box-shadow: var(--box-shadow); }
.api-use-case > i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 32px;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.api-use-case h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}
.api-use-case p { color: var(--text-light); margin: 0; font-size: 0.9rem; line-height: 1.5; }

/* Code preview */
.code-preview {
    background: #1e1e2e;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.code-preview-header {
    background: #2a2a3e;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.code-dot.red { background: #ef4444; }
.code-dot.yellow { background: #f59e0b; }
.code-dot.green { background: #10b981; }
.code-filename {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    margin-left: auto;
    font-family: 'Courier New', monospace;
}
.code-preview-body {
    padding: 1.5rem;
    overflow-x: auto;
}
.code-preview-body code {
    color: #cdd6f4;
    font-family: 'Courier New', Consolas, monospace;
    font-size: 0.85rem;
    line-height: 1.7;
    white-space: pre;
}
.code-keyword { color: #cba6f7; }
.code-string { color: #a6e3a1; }
.code-number { color: #fab387; }
.code-comment { color: #6c7086; }

/* API Plan cards */
.api-plan-card {
    background: var(--bg-white);
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.api-plan-card:hover { transform: translateY(-8px); box-shadow: var(--box-shadow-hover); }
.api-plan-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(215,38,61,0.12);
}
.api-plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}
.api-plan-header { margin-bottom: 1.5rem; }
.api-plan-header h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.api-plan-price {
    margin-bottom: 1.5rem;
}
.api-plan-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
}
.api-plan-price .period {
    color: var(--text-light);
    font-size: 1rem;
}
.api-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    flex: 1;
}
.api-plan-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.api-plan-features li:last-child { border-bottom: none; }
.api-plan-features li i.fa-check { color: var(--success-color); }
.api-plan-features li i.fa-times { color: #ccc; }
.api-plan-features li.disabled { color: var(--text-lighter); }

/* API Endpoint cards */
.api-docs-section {
    padding: 5rem 0;
    background: var(--bg-light);
}
.api-endpoint-card {
    background: var(--bg-white);
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    padding: 1.75rem;
    height: 100%;
    transition: var(--transition);
}
.api-endpoint-card:hover { transform: translateY(-5px); box-shadow: var(--box-shadow); }
.api-method {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: monospace;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}
.api-method.post { background: rgba(16,185,129,0.1); color: #059669; }
.api-method.get { background: rgba(59,130,246,0.1); color: #2563eb; }
.api-endpoint-card h4 {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.api-endpoint-card p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* ========== PROFESSIONALS DETAIL (api.html) ========== */
.professionals-detail-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.pro-section-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    object-fit: cover;
    max-height: 500px;
}
.pro-benefits { display: flex; flex-direction: column; gap: 1.25rem; }
.pro-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}
.pro-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pro-benefit-icon i { color: #fff; font-size: 1.3rem; }
.pro-benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}
.pro-benefit-item p { color: var(--text-light); margin: 0; font-size: 0.9rem; line-height: 1.5; }

/* Pro step cards */
.pro-step-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid #eee;
    transition: var(--transition);
    height: 100%;
}
.pro-step-card:hover { transform: translateY(-8px); box-shadow: var(--box-shadow-hover); }
.pro-step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 1.25rem;
}
.pro-step-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.pro-step-card p { color: var(--text-light); font-size: 0.95rem; margin: 0; }

/* ========== HOW-IT-WORKS SECTION SPACING ========== */
.how-it-works-section {
    padding: 5rem 0;
}

/* ========== FEATURES SECTION SPACING ========== */
.features-section {
    padding: 5rem 0;
}

/* ========== HOMEPAGE: TRANSPARENT NAVBAR OVER HERO ========== */
/* Force fixed-top behavior (the base .navbar rule sets position:relative which
   would otherwise push the hero down and make "transparent" show the white body). */
body.home-page .navbar,
body.home-page .navbar.fixed-top {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Ensure the brand logo stays visible on the dark hero (it's red + white) */
body.home-page .navbar .navbar-brand img {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

body.home-page .navbar .nav-link {
    color: rgba(255, 255, 255, 0.88);
}

body.home-page .navbar .nav-link:hover,
body.home-page .navbar .nav-link:focus {
    color: #ffffff;
}

body.home-page .navbar .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='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* When scrolled: flip to white navbar with dark text */
body.home-page .navbar.scrolled {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

body.home-page .navbar.scrolled .nav-link {
    color: var(--text-dark);
}

body.home-page .navbar.scrolled .navbar-brand img {
    filter: none;
}

body.home-page .navbar.scrolled .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='rgba%280, 0, 0, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile menu open (not scrolled): dark translucent overlay so items read on hero */
body.home-page .navbar:has(.navbar-collapse.show):not(.scrolled) {
    background: rgba(10, 4, 6, 0.85) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* Keep mobile dropdown readable on dark bg */
@media (max-width: 991.98px) {
    body.home-page .navbar-collapse.show {
        background: rgba(10, 4, 6, 0.92);
        border-radius: 0 0 18px 18px;
        padding: 0.5rem 1rem 1rem;
    }
    body.home-page .navbar-collapse .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
    }
}

/* ========== HERO BG — same palette as .page-hero (professionals banner) ========== */
.hero-section.hero-section--pro-banner {
    background: linear-gradient(135deg, #0a0a0c 0%, #14121a 42%, #1a0a0d 100%);
}

/* Static glow layers matching professionals-hero; bottom-right maroon “studio” light */
.hero-section--pro-banner .page-hero-bg {
    z-index: 0;
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 85% 70% at 100% 100%, rgba(215, 38, 61, 0.2) 0%, transparent 58%),
        radial-gradient(ellipse 80% 80% at 50% -20%, rgba(215, 38, 61, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 100% 50%, rgba(255, 90, 95, 0.08) 0%, transparent 50%);
}

/* Softer ::before so it does not fight with .page-hero-bg */
.hero-section--pro-banner::before {
    opacity: 0.45;
}

.hero-section--pro-banner::after {
    z-index: 0;
}

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

.hero-bg-pattern {
    z-index: 1;
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.55;
    background-image:
        radial-gradient(1.2px 1.2px at 12% 18%, rgba(255, 255, 255, 0.55) 50%, transparent 51%),
        radial-gradient(1px 1px at 28% 72%, rgba(255, 255, 255, 0.45) 50%, transparent 51%),
        radial-gradient(1.6px 1.6px at 46% 30%, rgba(255, 180, 190, 0.55) 50%, transparent 51%),
        radial-gradient(1px 1px at 64% 58%, rgba(255, 255, 255, 0.4) 50%, transparent 51%),
        radial-gradient(1.4px 1.4px at 82% 22%, rgba(255, 255, 255, 0.5) 50%, transparent 51%),
        radial-gradient(1px 1px at 92% 76%, rgba(255, 180, 190, 0.4) 50%, transparent 51%),
        radial-gradient(1.2px 1.2px at 8% 88%, rgba(255, 255, 255, 0.4) 50%, transparent 51%),
        radial-gradient(1px 1px at 55% 8%, rgba(255, 255, 255, 0.45) 50%, transparent 51%);
    mask-image: radial-gradient(ellipse at center, #000 55%, transparent 95%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 55%, transparent 95%);
}

.hero-bg-pattern::after {
    content: "";
    position: absolute;
    inset: -10%;
    background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 140px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 140px);
    filter: blur(0.5px);
    opacity: 0.5;
}

/* ========== MOBILE HERO: extra top padding clears fixed nav + divider above trust badge ========== */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 6.5rem 0 2.5rem;
        min-height: auto;
    }
    .hero-section .row.align-items-center.min-vh-100 {
        min-height: auto !important;
    }
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    .hero-content .section-badge-pro {
        margin-bottom: 1rem;
    }
    .hero-title {
        font-size: 2.3rem;
        margin-bottom: 0.75rem;
    }
    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    .hero-cta-group {
        margin-bottom: 1.5rem;
    }
    .hero-stats.mt-5 {
        margin-top: 1.5rem !important;
        padding-top: 1.25rem;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 6rem 0 2rem;
    }
    .hero-title {
        font-size: 2rem;
    }
}
