/* Updated home.css - Enhanced Modern Redesign */

:root {
    --primary-blue: #0077B6;
    --secondary-teal: #20B2AA;
    --accent-orange: #FF7E5F;
    --background-white: #FFFFFF;
    --background-gray: #F8F9FA;
    --text-charcoal: #333333;
    --dentist-blue: #2193b0;
    --dentist-light-blue: #6dd5ed;
    --dentist-orange: #ff7e5f;
    --dentist-purple: #8E44AD;
    --gradient-blue: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
    --gradient-orange: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
    --gradient-purple: linear-gradient(135deg, #8E44AD 0%, #9B59B6 100%);
    --box-shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --box-shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.1);
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
}

/* Global Section Styles */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.light-text {
    color: white;
}

.section-header.light-text .section-title,
.section-header.light-text .section-subtitle {
    color: white;
}

.section-header.center-aligned {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(33, 147, 176, 0.1);
    color: var(--dentist-blue);
    border-radius: var(--border-radius-lg);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-badge.highlight-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-charcoal);
    margin-bottom: 20px;
    position: relative;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.gradient-text {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
    position: relative;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-normal);
    cursor: pointer;
    text-decoration: none;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 4px 20px rgba(33, 147, 176, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(33, 147, 176, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--dentist-blue);
    border: 2px solid rgba(33, 147, 176, 0.2);
    box-shadow: var(--box-shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-md);
    border-color: var(--dentist-blue);
}

.btn-outline {
    background: transparent;
    color: var(--dentist-blue);
    border: 2px solid var(--dentist-blue);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--dentist-blue);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(33, 147, 176, 0.3);
}

.btn-light {
    background: white;
    color: var(--dentist-blue);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: none;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0 140px;
    background: linear-gradient(120deg, #0b132b 0%, #1c2e4a 50%, #253e78 100%);
    color: white;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
}

.hero-shape.shape-1 {
    top: -5%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: var(--dentist-light-blue);
    animation: pulse 10s infinite alternate;
}

.hero-shape.shape-2 {
    bottom: -15%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--dentist-orange);
    animation: pulse 15s infinite alternate;
}

.hero-shape.shape-3 {
    top: 40%;
    right: 30%;
    width: 300px;
    height: 300px;
    background: var(--dentist-light-blue);
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

.hero-container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    margin-bottom: 24px;
}

.hero-badge span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--dentist-light-blue);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 14px;
    opacity: 0.7;
}

.hero-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.image-wrapper {
    position: relative;
    z-index: 3;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: float 5s infinite alternate;
}

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

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.floating-element i {
    font-size: 16px;
    color: var(--dentist-blue);
}

.floating-element span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-charcoal);
}

.floating-element.elem-1 {
    top: 15%;
    left: -60px;
    animation: float 4s infinite alternate;
}

.floating-element.elem-2 {
    top: 45%;
    right: -70px;
    animation: float 6s infinite alternate;
}

.floating-element.elem-3 {
    bottom: 20%;
    left: -50px;
    animation: float 5s infinite alternate;
}

.orbit-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    z-index: 2;
    opacity: 0.7;
}

.orbit-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(109, 213, 237, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(109, 213, 237, 0.1);
    border-radius: 50%;
    animation: pulse-orbit 5s infinite;
}

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

@keyframes pulse-orbit {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }
    50% {
        transform: scale(1);
        opacity: 0.2;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.5;
    }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 5;
}

/* Trusted By Section - Enhanced with Better Logo Styling */
.trusted-by-section {
    padding: 50px 0;
    background-color: var(--background-white);
    text-align: center;
}

.trusted-title {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.trusted-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 2px;
    background: var(--gradient-blue);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.logo-item {
    height: 70px;
    opacity: 0.75;
    transition: var(--transition-normal);
    filter: grayscale(80%);
    position: relative;
    overflow: hidden;
    padding: 10px;
    border-radius: var(--border-radius-md);
}

.logo-item:hover {
    opacity: 1;
    transform: translateY(-5px);
    filter: grayscale(0%);
}

.logo-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-width: 180px;
}

.logo-item::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.1) 25%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0) 75%
    );
    transform: rotate(45deg);
    z-index: 1;
    transition: all 0.7s ease;
}

.logo-item:hover::after {
    top: 100%;
    left: 100%;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--background-white);
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 24px;
    background: var(--background-gray);
    border: none;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    transition: var(--transition-normal);
}

.tab-button:hover {
    color: var(--dentist-blue);
}

.tab-button.active {
    background: var(--dentist-blue);
    color: white;
    box-shadow: 0 5px 15px rgba(33, 147, 176, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
    height: 100%;
    opacity: 1;
    transform: scale(1);
}

.service-card.filtered-out {
    opacity: 0;
    transform: scale(0.8);
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

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

.service-card-inner {
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(33, 147, 176, 0.2);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 12px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 12px;
}

.badge-free {
    background: #e6f9ff;
    color: var(--dentist-blue);
}

.badge-premium {
    background: #fff2e6;
    color: var(--dentist-orange);
}

.badge-ai {
    background: #f0e7ff;
    color: #8E44AD;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-charcoal);
}

.service-description {
    color: #666;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dentist-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
    margin-top: auto;
}

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

.service-link:hover {
    color: var(--dentist-orange);
}

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

/* Redesigned How It Works Section - Journey Layout */
.how-it-works {
    padding: 100px 0;
    background-color: var(--background-gray);
    position: relative;
    overflow: hidden;
}

.journey-container {
    position: relative;
    margin-top: 60px;
    padding: 30px 0;
}

.journey-timeline {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #e2e8f0;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    background: var(--gradient-blue);
    z-index: 2;
    transition: height 1.5s ease-in-out;
}

.journey-steps {
    position: relative;
    z-index: 5;
}

.journey-step {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    position: relative;
}

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

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

.step-icon-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(33, 147, 176, 0.3);
    transition: var(--transition-normal);
    position: relative;
    z-index: 10;
}

.step-number {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dentist-blue);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 2px solid var(--dentist-light-blue);
}

.journey-step:hover .step-icon {
    transform: scale(1.1);
}

.step-content {
    flex: 1;
    background: white;
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition-normal);
    position: relative;
}

.journey-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-md);
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-charcoal);
}

.step-description {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.step-feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(33, 147, 176, 0.05);
    border-radius: var(--border-radius-lg);
    font-size: 14px;
    color: var(--dentist-blue);
}

.step-feature i {
    font-size: 12px;
}

.journey-step.active .step-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(33, 147, 176, 0.4);
}

.journey-step.active .step-content {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-md);
}

/* Results Section (formerly "Success Stories") */
.success-stories-section {
    padding: 100px 0;
    background-color: var(--background-white);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 30px;
    margin-bottom: 60px;
}

.result-card {
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
    padding: 30px;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

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

.result-card.highlight-card {
    grid-column: span 2;
    background: var(--gradient-blue);
    color: white;
}

.result-card.highlight-card .metric-number {
    background: white;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.result-card.highlight-card .metric-label,
.result-card.highlight-card .result-content p {
    color: white;
}

.result-metric {
    text-align: center;
    margin-bottom: 20px;
}

.metric-number {
    font-size: 60px;
    font-weight: 800;
    color: var(--dentist-blue);
    line-height: 1;
    margin-bottom: 5px;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-symbol {
    font-size: 30px;
    vertical-align: super;
}

.metric-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.result-content {
    text-align: center;
}

.result-content p {
    font-size: 16px;
    color: #666;
}

.partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.partners-label {
    font-size: 16px;
    font-weight: 500;
    color: #666;
}

.partners-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.partners-logos img {
    height: 40px;
    opacity: 0.7;
    transition: var(--transition-normal);
}

.partners-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.result-card:nth-child(1) .metric-number {
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.result-card:nth-child(2) .metric-number {
    background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.result-card:nth-child(3) .metric-number {
    background: linear-gradient(135deg, #8a2387 0%, #e94057 50%, #f27121 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.result-card:nth-child(4) .metric-number {
    background: linear-gradient(135deg, #8E44AD 0%, #9B59B6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Enhanced Features Showcase Section */
.features-showcase {
    padding: 100px 0;
    background-color: var(--background-gray);
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--box-shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.feature-card:last-child {
    margin-bottom: 0;
}

.feature-card.reverse {
    flex-direction: row-reverse;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-blue);
}

.feature-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: var(--border-radius-lg);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.premium-badge {
    background-color: #fff2e6;
    color: var(--dentist-orange);
    position: relative;
}

.premium-badge::before {
    content: '★';
    margin-right: 6px;
}

.data-badge {
    background-color: #e6f9ff;
    color: var(--dentist-blue);
}

.feature-text {
    flex: 1.2;
}

.feature-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-charcoal);
}

.feature-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-benefits {
    list-style: none;
    margin-bottom: 32px;
}

.feature-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-charcoal);
}

.feature-benefits li i {
    color: var(--dentist-blue);
    margin-top: 4px;
}

.feature-note {
    display: block;
    font-size: 14px;
    color: #888;
    margin-top: 15px;
    font-style: italic;
}

.feature-cta {
    margin-top: 10px;
}

.feature-image {
    flex: 1;
    position: relative;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
}

.feature-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(circle, rgba(109, 213, 237, 0.2) 0%, rgba(33, 147, 176, 0) 70%);
    z-index: 0;
    animation: rotate-glow 10s linear infinite;
}

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

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.feature-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
}

.feature-stat {
    text-align: center;
    padding: 15px 20px;
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

/* Consultation Section */
.consultation-section {
    padding: 100px 0;
    background: var(--gradient-blue);
    color: white;
    position: relative;
    overflow: hidden;
}

.consultation-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.consultation-content {
    flex: 1;
}

.consultation-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.feature-item .feature-text {
    font-size: 16px;
    flex: 1;
}

.form-container {
    flex: 1;
    background: white;
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
}

.form-container:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    margin-bottom: 5px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-charcoal);
    font-size: 14px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.textarea-wrapper i {
    top: 20px;
    transform: none;
}

.form-control {
    width: 100%;
    padding: 16px 16px 16px 45px;
    border: 1px solid #eee;
    border-radius: var(--border-radius-md);
    font-size: 16px;
    transition: var(--transition-normal);
    background: #f9f9f9;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
    padding-top: 20px;
}

.form-control:focus {
    border-color: var(--dentist-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(33, 147, 176, 0.1);
    outline: none;
}

.form-btn {
    margin-top: 20px;
    padding: 16px 28px;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.form-btn span {
    position: relative;
    z-index: 2;
}

.form-btn i {
    position: relative;
    z-index: 2;
}

.form-btn:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    z-index: 1;
    opacity: 0;
}

.form-btn:hover:after {
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% { 
        top: -50%;
        left: -50%;
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% { 
        top: 150%;
        left: 150%;
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-content {
        max-width: 500px;
    }

    .hero-image {
        max-width: 450px;
    }

    .section-title {
        font-size: 32px;
    }

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

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

    .feature-card {
        gap: 40px;
        padding: 30px;
    }
    
    .feature-title {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0 80px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 60px;
    }

    .hero-buttons, .hero-stats {
        justify-content: center;
    }

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

    .journey-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 80px;
    }

    .journey-step:nth-child(even) {
        flex-direction: column;
    }

    .journey-timeline {
        left: 50%;
        width: 6px;
    }

    .step-icon-container {
        margin-bottom: 20px;
    }

    .step-content {
        width: 100%;
    }
    
    .step-features {
        justify-content: center;
    }
    
    .feature-card, .feature-card.reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 30px;
    }
    
    .feature-benefits li {
        justify-content: center;
    }
    
    .feature-image {
        max-width: 450px;
        margin: 0 auto;
    }

    .consultation-wrapper {
        flex-direction: column;
    }

    .consultation-content {
        margin-bottom: 40px;
        text-align: center;
    }

    .feature-item {
        justify-content: center;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .result-card.highlight-card {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 60px;
    }

    .hero-wave {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 20px;
    }
    
    .stat-item {
        flex: 0 0 45%;
    }

    .section-title {
        font-size: 28px;
    }

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

    .logos-container {
        gap: 30px;
    }

    .floating-element {
        display: none;
    }
    
    .image-wrapper {
        display: none;
    }
    
    .partners-row {
        flex-direction: column;
    }
    
    .feature-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-stat {
        margin: 0 auto;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-badge span {
        font-size: 12px;
    }

    .logos-container {
        gap: 20px;
    }

    .logo-item {
        height: 50px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .section-badge {
        font-size: 12px;
    }

    .services-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

    .services-tabs::-webkit-scrollbar {
        height: 4px;
    }
    
    .services-tabs::-webkit-scrollbar-track {
        background: var(--background-gray);
        border-radius: 10px;
    }
    
    .services-tabs::-webkit-scrollbar-thumb {
        background: var(--dentist-blue);
        border-radius: 10px;
    }

    .tab-button {
        font-size: 14px;
        padding: 10px 15px;
    }

    .feature-title {
        font-size: 24px;
    }

    .feature-description {
        font-size: 16px;
    }

    .metric-number {
        font-size: 48px;
    }
    
    .metric-symbol {
        font-size: 24px;
    }

    .metric-label {
        font-size: 14px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }

    .form-container {
        padding: 30px 20px;
    }
    
    .step-feature {
        width: 100%;
        justify-content: center;
    }
}