/* 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 {
    position: relative;
    padding: 100px 0 140px;
    /* Increased padding for more breathing room */
    overflow: hidden;
    background: url('assets/hero-bg-dental.jpg') no-repeat center 25%;
    background-size: cover;
    background-attachment: fixed;
    /* Parallax effect */
}

@media (max-width: 768px) {
    .hero {
        background-image: url('assets/hero-bg-mobile.jpg');
        background-position: 85% center;
        /* Focus on the car front */
        background-attachment: fixed;
        padding-bottom: 60px;
        /* Reduce padding to remove space */
    }
}

/* Dark Overlay for readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Reduced opacity to let the image shine through while keeping text readable */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 50, 80, 0.3) 100%);
    z-index: 1;
}

.hero-bg-shape {
    display: none;
    /* Hide the old shape */
}

.hero-container {
    position: relative;
    z-index: 2;
    /* Ensure content is above overlay */
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 900px) {
    .hero-container {
        grid-template-columns: 1.2fr 0.8fr;
        /* Give more space to text */
    }
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text h1 .text-gradient {
    background: linear-gradient(90deg, #00ADEF, #FFFFFF);
    /* adjusted gradient for dark bg */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Glassmorphism Badge */
.hero-subtoken {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.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: 200px;
    max-height: 100px;
    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: var(--gradient-magenta);
    color: white;
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.6);
}

/* 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);
    box-shadow: 0 4px 15px rgba(0, 168, 89, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-main:hover {
    background: #008f4c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 89, 0.6);
}

/* 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-action {
    background: var(--accent-green);
    color: white;
    padding: 15px 40px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 168, 89, 0.4);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.btn-action:hover {
    background: #008f4c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 168, 89, 0.6);
}

/* 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 {
    padding: 80px 0;
    background: linear-gradient(to top, #f9f9f9, #ffffff);
    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.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
}

.btn-shiny {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: var(--gradient-magenta);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-shiny:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.5);
}

.btn-shiny i {
    font-size: 1.3rem;
    transition: transform 0.3s;
}

.btn-shiny:hover i {
    transform: translateX(5px) rotate(-45deg);
}

/* Shine Effect Animation */
.btn-shiny::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    transition: none;
}

.btn-shiny:hover::after {
    left: 120%;
    transition: left 0.6s ease-in;
}

/* Senra Partnership Section */
.senra-showcase {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.senra-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 900px) {
    .senra-layout {
        grid-template-columns: 1.2fr 1fr;
    }
}

.senra-intro {
    position: relative;
    z-index: 2;
}

.badge-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #ffd700;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.senra-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(90deg, #ffffff, #e2e8f0);
    -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;
    border-radius: 2px;
}

.senra-intro p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.7;
}

.highlight-text {
    border-left: 3px solid #ffd700;
    padding-left: 20px;
    margin-left: -20px;
    font-style: italic;
    color: #e2e8f0 !important;
}

.trust-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.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;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.senra-visual-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.senra-visual-card:hover {
    transform: translateY(-5px);
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: #ffd700;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
}

.senra-logo-main {
    position: relative;
    z-index: 2;
    max-width: 240px;
    height: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.card-footer-text {
    position: relative;
    z-index: 2;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    width: 100%;
}

.card-footer-text span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    letter-spacing: 5px;
}