/* Reset & Variables */
:root {
    --primary-blue: #00ADEF;
    --primary-dark: #0081B4;
    --accent-magenta: #E91E63;
    --accent-green: #00A859;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --white: #FFFFFF;
    --bg-light: #F4F6F8;
    --gradient-blue: linear-gradient(135deg, #00ADEF 0%, #0077A3 100%);
    --gradient-magenta: linear-gradient(135deg, #FF4081 0%, #C2185B 100%);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

strong {
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.logo i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.highlight {
    color: var(--primary-blue);
    font-size: 0.9em;
}

.desktop-nav {
    display: none;
}

@media (min-width: 900px) {
    .desktop-nav {
        display: flex;
        gap: 25px;
        align-items: center;
    }
}

.desktop-nav a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--primary-blue);
}

.btn-nav {
    background: var(--primary-blue);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--radius-full);
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    display: block;
}

@media (min-width: 900px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 80px 30px;
    gap: 20px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu a {
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* Hero Section */
/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 160px;
    overflow: hidden;
    background: url('assets/hero-bg-updated.png') no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
    /* Fixed behavior can be buggy on some mobile */
}

@media (max-width: 768px) {
    .hero {
        background-position: 70% center;
        /* Adjust to show faces on mobile */
        padding: 80px 0 100px;
    }
}

/* Dark Overlay for readability - Slightly darker on left */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-bg-shape {
    display: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}

@media (min-width: 900px) {
    .hero-container {
        grid-template-columns: 60% 40%;
    }
}

/* Hero Typography Refined */
.hero-tags-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 20px;
}

.tag-pink {
    background: #E91E63;
    color: white;
    font-weight: 800;
    font-size: 1.4rem;
    padding: 5px 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
}

.hero-title {
    font-family: var(--font-main);
    color: white;
    font-size: 2.2rem;
    font-weight: 400;
    /* Light for first line */
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title strong {
    font-weight: 900;
    font-size: 2.8rem;
    display: block;
}

.hero-brand-slogan {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--primary-blue);
    margin-bottom: 20px;
}

.hero-experience {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bottom Strip */
.hero-bottom-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.strip-label {
    font-size: 2rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.strip-blue {
    background: var(--primary-blue);
    color: white;
    padding: 10px 25px;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0, 173, 239, 0.4);
}

@media (max-width: 768px) {
    .tag-pink {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-title strong {
        font-size: 2rem;
    }

    .hero-experience {
        font-size: 1rem;
    }

    .strip-label {
        font-size: 1.5rem;
    }

    .strip-blue {
        font-size: 0.9rem;
        padding: 8px 15px;
        width: 100%;
        justify-content: space-between;
    }
}


.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    height: 100%;
    min-height: 300px;
    /* Ensure space if empty */
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        display: none;
        /* Hide wrapper on mobile to remove extra space */
    }
}

/* Hide image mask since we are using bg */
.image-mask {
    display: none;
}

/* Adjust floating badge for the new look */
.floating-badge {
    position: absolute;
    bottom: 20px;
    /* Adjust position as needed */
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 5px solid var(--accent-magenta);
    animation: floatBadge 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .floating-badge {
        display: none;
    }
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-badge .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-magenta);
    line-height: 1;
}

.floating-badge .label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
}

/* Partners */
.partners {
    background: var(--white);
    padding: 60px 0 100px 0;
    /* Increased top padding for better spacing */
    text-align: center;
    border-bottom: 1px solid #eee;
}

.partners p {
    font-size: 1.5rem;
    /* Increased text size significantly */
    font-weight: 700;
    color: var(--text-light);
    /* Made slightly darker/standard */
    letter-spacing: 1px;
    margin-bottom: 30px;
}


.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
    opacity: 1;
    /* Reset opacity from previous text style */
}

@media (min-width: 600px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 900px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        /* 4x2 grid looks balanced for 8 items */
        gap: 50px;
    }
}

.partner-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s, filter 0.3s;
    filter: grayscale(100%);
    opacity: 0.7;
}

.partner-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.partner-item img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Benefits & Form */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: -50px;
    /* Overlap effect if wanted, or just standard spacing */
    padding-top: 50px;
    padding-bottom: 80px;
}

@media (min-width: 900px) {
    .grid-layout {
        grid-template-columns: 1fr 1.2fr;
    }
}

.benefits-card {
    background: var(--gradient-blue);
    padding: 40px;
    border-radius: var(--radius-lg);
    color: white;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.benefits-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.benefits-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
}

.badge-featured {
    background: var(--accent-magenta);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price-economies {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.big-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.sub-text {
    font-size: 1rem;
    opacity: 0.9;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.benefits-list li i {
    color: #b3e5fc;
    font-size: 1.3rem;
}

.btn-secondary {
    display: inline-block;
    margin-top: 20px;
    background: white;
    color: var(--primary-blue);
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-weight: 700;
}

/* Wizard Form */
.quote-form-container {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}



.form-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.form-header p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.wizard-form {
    position: relative;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.progress-bar .step {
    width: 35px;
    height: 35px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #fff;
    z-index: 2;
    transition: all 0.3s;
}

.progress-bar .step.active {
    background: var(--primary-blue);
}

.progress-bar .line {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    margin: 0 10px;
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: var(--radius-md);
    font-size: 1rem;
    margin-bottom: 20px;
    transition: border-color 0.3s;
    font-family: inherit;
}

input:focus {
    border-color: var(--primary-blue);
    outline: none;
}

.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.radio-card {
    border: 2px solid #eee;
    border-radius: var(--radius-md);
    padding: 20px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
}

.radio-card:has(input:checked) {
    border-color: var(--primary-blue);
    background: rgba(0, 173, 239, 0.05);
}

.radio-card input {
    display: none;
}

.radio-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-light);
}

.radio-card:has(input:checked) .radio-content {
    color: var(--primary-blue);
}

.radio-content i {
    font-size: 1.8rem;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.btn-next,
.btn-main {
    flex: 1;
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 15px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.btn-next:hover,
.btn-main:hover {
    background: var(--primary-dark);
}

.btn-prev {
    background: transparent;
    border: 2px solid #eee;
    color: var(--text-light);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
}

.btn-prev:hover {
    background: #f9f9f9;
}

.btn-main {
    background: var(--accent-green);
}

.btn-main:hover {
    background: #008f4c;
}

.form-disclaimer {
    font-size: 0.7rem;
    color: #999;
    text-align: center;
    margin-top: 15px;
    line-height: 1.3;
}

/* Animations */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 168, 89, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 168, 89, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 168, 89, 0);
    }
}

/* CTA Strip */
.cta-strip {
    background: var(--primary-dark);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.cta-strip h2 {
    margin-bottom: 5px;
    font-size: 2rem;
    line-height: 1.2;
}

.cta-strip h2:last-of-type {
    margin-bottom: 30px;
}

.btn-white {
    background: white;
    color: var(--primary-dark);
    padding: 15px 40px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
}

/* Footer */
footer {
    background: #f9f9f9;
    padding: 60px 0 20px;
    border-top: 1px solid #eee;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.footer-col a,
.footer-col p {
    display: block;
    margin-bottom: 15px;
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #999;
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    z-index: 100;
    transition: transform 0.3s;
}


.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* App Logos Styling */
.app-badges {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.app-badge {
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.app-badge:hover {
    transform: translateY(-5px) scale(1.05);
}

.app-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

/* Mini Logos in Form */
.mini-app-logos {
    display: flex;
    gap: 8px;
    margin-bottom: 5px;
    justify-content: center;
}

.mini-app-logos img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
    background: #f5f5f5;
    /* Subtle bg for transparent logos if any */
    padding: 2px;
}

/* Logo Image Styling */
.logo-img {
    height: 60px;
    /* Reduced from potential large original size */
    width: auto;
    object-fit: contain;
    display: block;
}

/* Adjust header vertical alignment if needed */
.logo {
    display: flex;
    align-items: center;
}

/* Other Services Section */
.other-services {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.other-services h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.other-services p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Shiny Button */
.btn-shiny {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient-magenta);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-shiny:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.5);
}

.btn-shiny i {
    font-size: 1.3rem;
    transition: transform 0.3s;
}

.btn-shiny:hover i {
    transform: translate(3px, -3px);
}

.btn-shiny::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.5s;
}

.btn-shiny:hover::before {
    left: 100%;
    transition: left 0.7s ease-in-out;
}

@media (max-width: 768px) {
    .other-services {
        padding: 50px 0;
    }

    .other-services h2 {
        font-size: 1.8rem;
    }

    .btn-shiny {
        width: 100%;
        justify-content: center;
    }
}

/* Senra Exclusive Section */
.senra-showcase {
    background: #0a192f;
    /* Deep Premium Blue */
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.senra-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(30, 58, 138, 0.4) 0%, transparent 60%);
    z-index: 1;
}

.senra-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 900px) {
    .senra-layout {
        grid-template-columns: 1.2fr 1fr;
    }
}

.badge-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.15);
    /* Gold Tint */
    color: #ffd700;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
}

.senra-intro h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(90deg, #fff, #b3e5fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider-gold {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, transparent);
    margin-bottom: 30px;
}

.senra-intro p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.7;
}

.highlight-text {
    font-size: 1.2rem !important;
    color: white !important;
    font-weight: 500;
}

.trust-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.3;
}

/* Card Visual */
.senra-visual-card {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    /* Stronger shadow for depth */
    border: none;
    border-radius: 20px;
    padding: 60px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.senra-visual-card:hover {
    transform: translateY(-10px) rotateX(2deg);
}

.card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: #ffd700;
    filter: blur(80px);
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.senra-logo-main {
    max-width: 250px;
    width: 100%;
    height: auto;
    /* Removed drop-shadow that might look bad on white or adjusted it */
    filter: none;
    transition: transform 0.5s;
    margin-bottom: 10px;
}

.senra-visual-card:hover .senra-logo-main {
    transform: scale(1.05);
}

.card-footer-text {
    margin-top: 20px;
    text-align: center;
}

.card-footer-text span {
    display: block;
    font-size: 0.8rem;
    color: #475569;
    /* Darker gray for white background */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 600;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .senra-showcase {
        padding: 60px 0;
    }

    .senra-intro h2 {
        font-size: 2rem;
    }

    .trust-stats {
        flex-direction: row;
        gap: 30px;
    }
}