/* VedaTricks Technologies - Premium CSS */
/* Modern, Responsive, Professional Design */

/* ============================================
   CSS VARIABLES & ROOT STYLES
   ============================================ */
:root {
    --primary-color: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #52b788;
    --secondary-color: #f59e0b;
    --success-color: #2d6a4f;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;

    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;

    --bg-primary: #ffffff;
    --bg-secondary: #f1f8f4;
    --bg-dark: #111827;

    --border-color: #d8e9e0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    --gradient-primary: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
    --gradient-secondary: linear-gradient(135deg, #52b788 0%, #2d6a4f 100%);
    --gradient-success: linear-gradient(135deg, #74c69d 0%, #2d6a4f 100%);

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', serif;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 90px; /* Account for fixed navbar when jumping to anchors */
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Ensure all anchor targets have proper spacing from top */
section[id],
div[id] {
    scroll-margin-top: 90px;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Professional Focus States for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: var(--border-radius-sm);
}

/* Smooth animations for all interactive elements */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        padding: 0 2rem;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
        padding: 0 3rem;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
}

section {
    padding: 5rem 0;
    position: relative;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.4);
}

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

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

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-outline-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-block {
    width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: white;
    box-shadow: var(--shadow-xl);
    border-radius: var(--border-radius-md);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin-bottom: 0.5rem;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    color: var(--text-secondary);
}

.dropdown-menu a:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.dropdown-menu a::after {
    display: none;
}

.nav-cta {
    margin-left: 1.5rem;
}

.nav-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.nav-cta .btn:hover {
    background: transparent;
    color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: none;
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}

.nav-cta .btn i {
    font-size: 1.125rem;
    margin-right: 0.5rem;
    color: inherit;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.375rem;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-base);
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all var(--transition-base);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0.5rem;
        padding-left: 1rem;
    }

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

    .nav-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
}

/* ============================================
   WHATSAPP CHAT WIDGET
   ============================================ */
.whatsapp-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.whatsapp-bubble {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    position: relative;
}

.whatsapp-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-bubble i {
    font-size: 2rem;
    color: white;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 3px solid white;
}

.whatsapp-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    max-width: calc(100vw - 3rem);
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all var(--transition-base);
    overflow: hidden;
}

.whatsapp-chat-box.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.whatsapp-chat-header {
    background: #25D366;
    color: white;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.chat-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    padding: 0.375rem;
}

.header-text h4 {
    margin: 0;
    font-size: 1rem;
    color: white;
}

.online-status {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.close-chat {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.close-chat:hover {
    background: rgba(255, 255, 255, 0.3);
}

.whatsapp-chat-body {
    padding: 1.25rem;
    max-height: 500px;
    overflow-y: auto;
}

/* WhatsApp Form */
.whatsapp-form {
    margin-top: 1rem;
}

.whatsapp-form .form-group {
    margin-bottom: 1rem;
}

.whatsapp-form input,
.whatsapp-form select,
.whatsapp-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    transition: all var(--transition-base);
    background: white;
    color: var(--text-primary);
}

.whatsapp-form input:focus,
.whatsapp-form select:focus,
.whatsapp-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.whatsapp-form input::placeholder,
.whatsapp-form textarea::placeholder {
    color: var(--text-light);
}

.whatsapp-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

.whatsapp-form select option {
    padding: 0.5rem;
}

.whatsapp-form textarea {
    resize: vertical;
    min-height: 60px;
}

.business-hours-mini {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.chat-message {
    background: #f0f0f0;
    padding: 0.875rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 1rem;
    position: relative;
}

.bot-message {
    background: #e7f5ec;
}

.chat-message p {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.chat-message p:last-of-type {
    margin-bottom: 0;
}

.message-time {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.5rem;
}

.business-hours-section {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 1rem;
}

.business-hours-section h5 {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.hours-list {
    margin-bottom: 0.75rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.375rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.current-status {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.875rem;
}

.status-open {
    color: var(--success-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.status-open i {
    animation: pulse 2s infinite;
}

.status-closed {
    color: var(--danger-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    color: var(--text-primary);
    transition: var(--transition-base);
}

.quick-action-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--bg-secondary);
}

.whatsapp-chat-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border-color);
}

.wa-consent-group {
    margin-bottom: 0.5rem;
}

.wa-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.4;
    cursor: pointer;
}

.wa-consent-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 1px;
    flex-shrink: 0;
    accent-color: #25D366;
}

.wa-consent-label a {
    color: #25D366;
    text-decoration: underline;
}

.start-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem;
    background: #25D366;
    color: white;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.start-chat-btn:hover {
    background: #1ea952;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.start-chat-btn:active {
    transform: translateY(0);
}

.start-chat-btn i {
    font-size: 1.25rem;
}

@media (max-width: 480px) {
    .whatsapp-widget {
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-bubble {
        width: 50px;
        height: 50px;
    }

    .whatsapp-bubble i {
        font-size: 1.5rem;
    }

    .whatsapp-chat-box {
        width: calc(100vw - 2rem);
        right: -1rem;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.05) 0%, rgba(82, 183, 136, 0.05) 100%);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(45, 106, 79, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(45, 106, 79, 0.2);
    transition: all var(--transition-base);
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.2);
}

.hero-badge.primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.75rem;
    font-family: var(--font-primary);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

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

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-cta-wrapper {
    margin-bottom: 3rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    margin-bottom: 1rem;
}

.hero-cta .btn {
    flex-shrink: 0;
}

.btn-hero {
    min-width: 240px;
    padding: 1.125rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

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

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

.btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

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

.hero-cta-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.hero-cta-note i {
    color: var(--success-color);
}

@media (min-width: 1400px) {
    .hero-cta {
        gap: 1.5rem;
    }

    .btn-hero {
        min-width: 260px;
        padding: 1.25rem 2.25rem;
    }
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.trust-item i {
    color: var(--success-color);
    font-size: 1.25rem;
}

/* Modern Stats Section */
.hero-stats-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2.5rem 0;
    border-top: 2px solid rgba(45, 106, 79, 0.1);
}

.stat-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
    border: 1px solid rgba(45, 106, 79, 0.1);
}

.stat-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(45, 106, 79, 0.1);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.stat-modern:hover .stat-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: color var(--transition-base);
}

.stat-modern:hover .stat-icon i {
    color: white;
}

.stat-content {
    flex: 1;
}

.stat-modern .stat-number {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
    white-space: nowrap;
}

.stat-modern .stat-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-card {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: white;
    padding: 1.25rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.floating-card strong {
    display: block;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.floating-card span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.floating-card-2 {
    position: absolute;
    top: 2rem;
    right: -2rem;
    background: white;
    padding: 1.25rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.floating-card-2 i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.floating-card-2 strong {
    display: block;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.floating-card-2 span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--text-light);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--text-light);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Shimmer effect for loading states */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .hero-stats-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .floating-card,
    .floating-card-2 {
        position: static;
        margin: 1rem 0;
    }

    .hero-badge-group {
        justify-content: center;
    }

    .hero-title,
    .hero-description {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .stat-modern {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
    }

    .stat-icon i {
        font-size: 1.25rem;
    }

    .stat-modern .stat-number {
        font-size: 1.625rem;
    }

    .stat-modern .stat-label {
        font-size: 0.75rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .stat-desc {
        font-size: 0.8125rem;
    }

    .dark-stat-value {
        font-size: 2.5rem !important;
    }

    .dark-stat-label {
        font-size: 1rem !important;
    }

    .dark-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
}

@media (max-width: 576px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

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

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

    .hero-stats-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-badge-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-badge {
        width: 100%;
        justify-content: center;
    }

    .stat-modern .stat-number {
        font-size: 1.375rem;
    }

    .stat-modern .stat-label {
        font-size: 0.6875rem;
    }

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

    .stat-desc {
        font-size: 0.75rem;
    }

    .dark-stat-value {
        font-size: 2rem !important;
    }

    .dark-stat-label {
        font-size: 0.875rem !important;
    }

    .dark-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(45, 106, 79, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ============================================
   DENTRICKS SHOWCASE
   ============================================ */
.dentricks-showcase {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.dentricks-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(20, 184, 166, 0.15) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(6,182,212,0.08)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 1;
}

.dentricks-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

.dentricks-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* White showcase badge with elevation */
.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #06b6d4 0%, #14b8a6 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
}

.showcase-badge i {
    color: white;
}

.dentricks-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.dentricks-content .lead {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
}

.dentricks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.dentricks-feature {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.dentricks-feature:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.dentricks-feature h4 {
    color: var(--text-primary);
}

.dentricks-feature p {
    color: var(--text-secondary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #06b6d4 0%, #14b8a6 100%);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

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

.dentricks-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-box:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #06b6d4 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.dentricks-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.dentricks-cta .btn-primary {
    background: linear-gradient(135deg, #06b6d4 0%, #14b8a6 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.dentricks-cta .btn-primary:hover {
    background: linear-gradient(135deg, #0891b2 0%, #0d9488 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5);
}

.dentricks-cta .btn-outline {
    border-color: #06b6d4;
    color: #06b6d4;
}

.dentricks-cta .btn-outline:hover {
    background: #06b6d4;
    color: white;
    border-color: #06b6d4;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.1) 0%, rgba(82, 183, 136, 0.1) 100%);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.service-card > p {
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.service-features i {
    color: var(--success-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    gap: 0.75rem;
}

.service-price {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.service-price strong {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.services-cta {
    text-align: center;
}

/* ============================================
   WHY CHOOSE US & FEATURES
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(45, 106, 79, 0.3);
}

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

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

.feature-card p {
    margin: 0;
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */
.industries-section {
    background: var(--bg-secondary);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

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

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

.industry-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.industry-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    gap: 1rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.client-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.client-company {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.client-industry {
    font-size: 0.75rem;
    color: var(--primary-color);
    background: rgba(45, 106, 79, 0.1);
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    color: var(--warning-color);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-footer span {
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.testimonials-cta {
    text-align: center;
}

/* ============================================
   ROI SECTION
   ============================================ */
.roi-section {
    background: var(--bg-secondary);
}

.roi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.roi-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.roi-item {
    display: flex;
    gap: 1rem;
}

.roi-icon {
    width: 50px;
    height: 50px;
    background: rgba(45, 106, 79, 0.1);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.roi-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.roi-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.roi-item p {
    margin: 0;
}

.roi-example {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

.roi-example h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.roi-example ul {
    list-style: none;
}

.roi-example li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.roi-example li i {
    color: var(--success-color);
}

.roi-example li:last-child {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 1.125rem;
    color: var(--primary-color);
}

.roi-chart-wrapper {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.roi-chart-wrapper img {
    width: 100%;
    height: auto;
}

.roi-stat-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.roi-percentage {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.roi-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.roi-timeframe {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

@media (max-width: 992px) {
    .roi-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ============================================
   OFFERS SECTION
   ============================================ */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.offer-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    position: relative;
    border: 2px solid transparent;
}

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

.offer-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.offer-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-badge.premium {
    background: var(--primary-color);
}

.offer-icon {
    width: 70px;
    height: 70px;
    background: rgba(45, 106, 79, 0.1);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.offer-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.offer-card h3 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.offer-desc {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.offer-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-strike {
    font-size: 1.25rem;
    color: var(--text-light);
    text-decoration: line-through;
    display: block;
}

.price-main {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.price-period {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.offer-features {
    margin-bottom: 2rem;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    color: var(--text-secondary);
}

.offer-features i {
    color: var(--success-color);
    font-size: 1.125rem;
}

.offer-guarantee {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.guarantee-content i {
    font-size: 3rem;
    color: var(--success-color);
    flex-shrink: 0;
}

.guarantee-content h4 {
    margin-bottom: 0.5rem;
}

.guarantee-content p {
    margin: 0;
}

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

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

    .offer-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 50%, #081c15 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(82, 183, 136, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 106, 79, 0.2) 0%, transparent 50%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100% 100%, 100% 100%, 20px 20px;
    opacity: 1;
}

.final-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.final-cta .btn-primary {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.final-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.final-cta .btn-outline {
    border-color: white;
    color: white;
}

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

.cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-col h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.footer-tagline {
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
}

.trust-badge i {
    color: var(--success-color);
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

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

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-links i {
    width: 16px;
    color: var(--primary-light);
}

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

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.footer-contact i {
    font-size: 1.25rem;
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-contact strong {
    display: block;
    color: white;
    margin-bottom: 0.25rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-base);
}

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

.business-hours-title {
    margin-top: 2rem;
}

.business-hours {
    margin-bottom: 2rem;
}

.business-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

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

.footer-office {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-office:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.footer-office strong {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

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

.footer-office p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: var(--transition-base);
}

.footer-map-link:hover {
    color: white;
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

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

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

.footer-offices-compact {
    margin-bottom: 1.5rem;
}

.footer-offices-compact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-offices-compact strong {
    color: white;
}

.hours-compact {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin: 0;
}

.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.newsletter-text h3 {
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

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

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-light);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

.footer-bottom-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        max-width: none;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 998;
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.4);
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .back-to-top {
        left: 1rem;
        width: 45px;
        height: 45px;
    }
}

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

/* Large Screens - Better spacing and alignment */
@media (min-width: 1200px) {
    .btn-lg {
        padding: 1.25rem 2.5rem;
        font-size: 1.125rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-stats {
        gap: 3rem;
    }

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

/* Extra Large Screens - Maximum readability */
@media (min-width: 1600px) {
    .hero-content {
        gap: 5rem;
    }

    section {
        padding: 6rem 0;
    }

    .btn {
        padding: 1rem 2rem;
    }
}

/* Tablet Landscape */
@media (max-width: 992px) and (min-width: 768px) {
    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile Devices */
@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

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

/* ============================================
   PROFESSIONAL UTILITY CLASSES
   ============================================ */

/* Enhanced Shadow Depths */
.shadow-soft {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.shadow-professional {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.shadow-deep {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Elevated Cards */
.card-elevated {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
}

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

/* Professional Text Effects */
.text-gradient-green {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-shimmer {
    background: linear-gradient(
        90deg,
        var(--text-primary) 0%,
        var(--primary-color) 50%,
        var(--text-primary) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* Professional Spacing */
.section-spacing {
    padding: 5rem 0;
}

.section-spacing-lg {
    padding: 7rem 0;
}

/* Professional Borders */
.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(135deg, #2d6a4f, #52b788) 1;
}

.border-top-accent {
    border-top: 3px solid var(--primary-color);
}

/* Professional Backgrounds */
.bg-gradient-soft {
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.05) 0%, rgba(82, 183, 136, 0.05) 100%);
}

.bg-pattern {
    background-image:
        radial-gradient(circle at 25px 25px, rgba(45, 106, 79, 0.05) 2%, transparent 0%),
        radial-gradient(circle at 75px 75px, rgba(82, 183, 136, 0.05) 2%, transparent 0%);
    background-size: 100px 100px;
}

/* Professional Hover Effects */
.hover-scale {
    transition: transform var(--transition-base);
}

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

.hover-lift {
    transition: all var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Professional Loading States */
.skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--border-radius-md);
}

/* Professional Badges */
.badge-professional {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(45, 106, 79, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(45, 106, 79, 0.2);
}

.badge-premium {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
}

/* Smooth Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Professional Dividers */
.divider-gradient {
    height: 3px;
    background: var(--gradient-primary);
    border: none;
    margin: 3rem 0;
}

.divider-dotted {
    border: none;
    border-top: 2px dotted var(--border-color);
    margin: 2rem 0;
}

/* Enhanced Accessibility */
.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;
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-widget,
    .back-to-top,
    .footer {
        display: none !important;
    }

    body {
        background: white;
    }

    .container {
        max-width: 100%;
    }
}

/* ============================================
   KYNDRYL-INSPIRED MODERN DESIGN ELEMENTS
   ============================================ */

/* Large Impact Typography (Kyndryl Style) */
.impact-text {
    font-size: clamp(2rem, 5vw, 2.85rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.impact-text strong {
    font-weight: 600;
}

/* Dark Hero Sections */
.dark-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid-dark" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(16,185,129,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid-dark)"/></svg>');
    opacity: 0.3;
}

.dark-section .section-content {
    position: relative;
    z-index: 1;
}

.dark-section h2,
.dark-section h3 {
    color: white;
}

.dark-section p {
    color: rgba(255, 255, 255, 0.85);
}

/* Outcome-Focused Section */
.outcome-section {
    padding: 6rem 0;
    background: white;
}

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

.outcome-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.outcome-header h2 strong {
    font-weight: 700;
    color: var(--primary-color);
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.outcome-card {
    background: white;
    border: 2px solid rgba(45, 106, 79, 0.1);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.outcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 0.4s ease;
}

.outcome-card:hover::before {
    height: 100%;
}

.outcome-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 106, 79, 0.15);
    border-color: var(--primary-color);
}

.outcome-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.1) 0%, rgba(82, 183, 136, 0.1) 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.outcome-card:hover .outcome-card-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.outcome-card-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color var(--transition-base);
}

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

.outcome-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.outcome-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.outcome-card .btn {
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
}

/* Tabbed Content Section */
.tabbed-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    border-bottom: 2px solid rgba(45, 106, 79, 0.2);
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1.0625rem;
    cursor: pointer;
    position: relative;
    transition: all var(--transition-base);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

.tab-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tab-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
}

.tab-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tab-item-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tab-item-icon i {
    font-size: 1.75rem;
    color: white;
}

.tab-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.tab-item p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Testimonial Carousel (Kyndryl Style) */
.testimonial-carousel-enhanced {
    position: relative;
    padding: 2rem 0;
}

.testimonial-main {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.testimonial-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all var(--transition-base);
    opacity: 0.6;
}

.testimonial-thumb:hover,
.testimonial-thumb.active {
    opacity: 1;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.testimonial-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modern Card with Visual Depth */
.depth-card {
    background: white;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.depth-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.depth-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(45, 106, 79, 0.2);
}

.depth-card:hover::after {
    opacity: 0.03;
}

.depth-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.depth-card:hover .depth-card-image {
    transform: scale(1.05);
}

.depth-card-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .impact-text {
        font-size: 1.75rem;
    }

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

    .tab-navigation {
        flex-direction: column;
        border-bottom: none;
    }

    .tab-btn {
        border-bottom: none;
        border-left: 3px solid transparent;
        text-align: left;
        padding: 0.875rem 1.5rem;
    }

    .tab-btn.active {
        border-left-color: var(--primary-color);
        background: rgba(45, 106, 79, 0.05);
    }
}

/* ============================================
   ENHANCED VISIBILITY ON GREEN BACKGROUNDS
   ============================================ */

/* Section badges on green backgrounds - make white with elevation */
section[class*="showcase"].dentricks-showcase .section-badge,
section.by-numbers .section-badge,
section.final-cta .section-badge,
section.testimonials-cta .section-badge,
section[style*="gradient-primary"] .section-badge,
.dark-section .section-badge {
    background: white !important;
    color: var(--primary-color) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Stat modern cards on green/dark backgrounds */
.dark-section .stat-modern,
section[style*="gradient-primary"] .stat-modern {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.dark-section .stat-modern .stat-icon,
section[style*="gradient-primary"] .stat-modern .stat-icon {
    background: var(--gradient-primary);
}

.dark-section .stat-modern .stat-icon i,
section[style*="gradient-primary"] .stat-modern .stat-icon i {
    color: white;
}

.dark-section .stat-modern .stat-number,
section[style*="gradient-primary"] .stat-modern .stat-number {
    color: var(--primary-color);
}

.dark-section .stat-modern .stat-label,
section[style*="gradient-primary"] .stat-modern .stat-label {
    color: var(--text-secondary);
}

/* Ensure all white cards on green backgrounds have proper elevation */
section[style*="gradient-primary"] .card,
section.dentricks-showcase .card,
section.by-numbers .card,
.dark-section .card {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* ============================================
   LEGAL PAGES STYLING
   ============================================ */

/* Page Header for Legal Pages */
.page-header {
    padding: 8rem 0 4rem;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin: 0;
}

/* Legal Content */
.legal-content {
    padding: 5rem 0;
    background: white;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 3rem;
}

.legal-text h2 {
    color: var(--primary-color);
    font-size: 1.875rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
    font-weight: 700;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    color: var(--text-primary);
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legal-text h3::before {
    content: '';
    width: 4px;
    height: 1.5rem;
    background: var(--primary-color);
    border-radius: 2px;
}

.legal-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.legal-text ul,
.legal-text ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-text ul li,
.legal-text ol li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    position: relative;
}

.legal-text ul li::marker {
    color: var(--primary-color);
    font-weight: 700;
}

.legal-text ol li::marker {
    color: var(--primary-color);
    font-weight: 700;
}

.legal-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: all var(--transition-base);
}

.legal-text a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Highlight boxes for important info */
.legal-text .highlight-box {
    background: var(--bg-secondary);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: var(--border-radius-md);
}

.legal-text .highlight-box p {
    margin: 0;
}

/* Table of contents (if needed) */
.legal-toc {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 3rem;
}

.legal-toc h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

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

.legal-toc ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-toc ul li a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.legal-toc ul li a::before {
    content: '→';
    color: var(--primary-color);
    font-weight: 700;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }

    .legal-wrapper {
        padding: 2rem 1.5rem;
        border-radius: var(--border-radius-lg);
    }

    .legal-text h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .legal-text h3 {
        font-size: 1.125rem;
    }

    .legal-text ul,
    .legal-text ol {
        padding-left: 1.25rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 5rem 0 2rem;
    }

    .legal-wrapper {
        padding: 1.5rem 1rem;
        box-shadow: none;
    }

    .legal-text h2 {
        font-size: 1.375rem;
    }
}

/* ============================================
   BUG FIXES - December 2024
   ============================================ */

/* FIX 1: Hero Image Display Issue */
.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 750px;
}

.hero-image-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* FIX 2: Home Page Spacing Issues */
.hero-section .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero-badge-group {
    margin-bottom: 1.5rem;
}

.hero-title {
    margin-bottom: 1.25rem;
}

.hero-description {
    margin-bottom: 2rem;
}

.hero-stats-modern {
    margin-top: 2rem;
}

/* FIX 3: Explore/Outcome Section Missing Icon Fix */
.outcome-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.outcome-card-icon i {
    font-size: 2rem;
    color: white;
}

/* FIX 4: About Page Text Alignment */
.story-text {
    text-align: left;
}

.story-text .section-badge {
    display: inline-flex;
}

.story-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.story-text p {
    text-align: left;
}

.mvv-card p,
.mvv-card ul {
    text-align: left;
}

/* FIX 5: Service Page Text Visibility */
.service-detailed-card {
    background: white;
}

.service-detailed-header {
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.08) 0%, rgba(82, 183, 136, 0.08) 100%);
}

.service-detailed-header p {
    color: var(--text-primary);
    font-weight: 500;
}

.service-full-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.service-detailed-features li {
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Tech stack text visibility */
.tech-item {
    background: white;
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* FIX 6: Contact Page Empty Space */
.contact-form-section {
    padding: 4rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-sidebar {
    position: sticky;
    top: 100px;
}

.contact-methods {
    padding: 4rem 0 3rem;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Additional responsive fixes */
@media (max-width: 992px) {
    .hero-image {
        max-width: 100%;
        margin-top: 2rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero-image {
        order: -1;
    }

    .hero-image-wrapper {
        aspect-ratio: 16/9;
    }

    .outcome-card-icon {
        width: 60px;
        height: 60px;
    }

    .outcome-card-icon i {
        font-size: 1.5rem;
    }
}

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

    .hero-badge {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   UI/UX ENHANCEMENTS - December 2025
   Premium Features for Industry-Standard UX
   ============================================ */

/* --- Scroll Progress Indicator --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    z-index: 1001;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(45, 106, 79, 0.5);
}

/* --- Trusted By / Client Logos Section --- */
.trusted-by-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, white 100%);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.trusted-by-section .section-label {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.client-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.client-logo {
    height: 40px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Infinite scroll animation for logos */
.logos-scroll-container {
    overflow: hidden;
    position: relative;
}

.logos-scroll-container::before,
.logos-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.logos-scroll-container::before {
    left: 0;
    background: linear-gradient(90deg, white 0%, transparent 100%);
}

.logos-scroll-container::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, white 100%);
}

.logos-track {
    display: flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Trust Badges & Certifications (Trusted By Section) --- */
.trusted-by-section .trust-badges {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    margin-bottom: 0;
}

.trusted-by-section .trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.trusted-by-section .trust-badge:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.1);
}

.trusted-by-section .trust-badge i {
    font-size: 1rem;
    color: var(--primary-color);
}

.trusted-by-section .trust-badge.verified {
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.05) 0%, rgba(82, 183, 136, 0.05) 100%);
    border-color: var(--primary-light);
}

.trusted-by-section .trust-badge.verified i {
    color: var(--primary-color);
}

/* Industry Icons in Trusted By Section */
.trusted-by-section .client-logos {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.industry-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.industry-icon:hover {
    opacity: 1;
}

.industry-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.industry-icon span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* --- Enhanced Micro-interactions --- */
@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(45, 106, 79, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(45, 106, 79, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(45, 106, 79, 0);
    }
}

.pulse-animation {
    animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

/* Button Click Ripple Effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform 0.5s, opacity 1s;
}

.btn-ripple:active::after {
    transform: scale(0, 0);
    opacity: 0.3;
    transition: 0s;
}

/* Enhanced Card Hover */
.card-hover-lift {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-hover-lift:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.03),
        0 4px 8px rgba(0, 0, 0, 0.04),
        0 16px 32px rgba(0, 0, 0, 0.08),
        0 24px 48px rgba(0, 0, 0, 0.04);
}

/* Icon Bounce Animation */
@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.icon-bounce:hover i {
    animation: icon-bounce 0.6s ease-in-out;
}

/* --- Improved Form Styles --- */
.form-group-enhanced {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group-enhanced label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group-enhanced .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background: white;
    transition: all 0.3s ease;
}

.form-group-enhanced .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.1);
}

.form-group-enhanced .form-control.is-valid {
    border-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%232d6a4f' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.form-group-enhanced .form-control.is-invalid {
    border-color: var(--danger-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23ef4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ef4444' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.form-feedback {
    font-size: 0.8125rem;
    margin-top: 0.375rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.form-feedback.valid {
    color: var(--primary-color);
}

.form-feedback.invalid {
    color: var(--danger-color);
}

/* Button Loading State */
.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading .btn-text {
    opacity: 0;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: button-loading-spinner 0.8s linear infinite;
}

@keyframes button-loading-spinner {
    from { transform: rotate(0turn); }
    to { transform: rotate(1turn); }
}

/* --- Accessibility Improvements --- */
/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    z-index: 9999;
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 1rem;
}

/* Improved Focus Visible States */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

/* High Contrast Text - Accessibility Fix */
.text-accessible {
    color: var(--text-primary); /* #1f2937 - AAA compliant */
}

/* Fix placeholder contrast */
::placeholder {
    color: #6b7280; /* Improved from lighter gray */
    opacity: 1;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .logos-track {
        animation: none;
    }
}

/* --- Team Section Styles --- */
.team-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-image .initials {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.team-card-info {
    padding: 1.5rem;
}

.team-card-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.team-card-info .role {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-card-info .bio {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* --- Statistics Counter Animation --- */
.stat-counter {
    font-variant-numeric: tabular-nums;
}

/* --- Page Transition Animation --- */
.page-transition {
    animation: fadeInUp 0.5s ease-out;
}

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

/* --- Skeleton Loading States --- */
.skeleton {
    background: linear-gradient(
        90deg,
        var(--bg-secondary) 25%,
        #e5e7eb 50%,
        var(--bg-secondary) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: var(--border-radius-sm);
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
}

.skeleton-title {
    height: 2rem;
    width: 60%;
    margin-bottom: 1rem;
}

.skeleton-image {
    width: 100%;
    height: 200px;
}

/* --- Enhanced Footer Trust Section --- */
.footer-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    flex-wrap: wrap;
}

.footer-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-trust-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

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

/* --- Success/Error Toast Notifications --- */
.toast-container {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    padding: 1rem 1.5rem;
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideUp 0.3s ease-out;
    min-width: 300px;
}

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

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

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

.toast-error i {
    color: var(--danger-color);
}

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

/* --- Floating CTA (Mobile) --- */
@media (max-width: 768px) {
    .mobile-cta-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 0.75rem 1rem;
        padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 998;
        display: flex;
        gap: 0.75rem;
    }

    .mobile-cta-bar .btn {
        flex: 1;
        justify-content: center;
        padding: 0.875rem;
        font-size: 0.9375rem;
    }

    /* Add bottom padding to body when mobile CTA is visible */
    body.has-mobile-cta {
        padding-bottom: 80px;
    }
}

/* --- Improved WhatsApp Widget --- */
.whatsapp-widget {
    z-index: 997;
}

@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 5.5rem; /* Above mobile CTA bar */
    }
}

/* --- Stats Animation on Scroll --- */
.stat-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.stat-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Premium Gradient Text --- */
.gradient-text-premium {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Live Indicator --- */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
}

.live-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: live-pulse 2s ease-in-out infinite;
}

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

/* --- Notification Badge Enhanced --- */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    height: 20px;
    background: var(--danger-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badge-bounce 2s ease-in-out infinite;
}

@keyframes badge-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ============================================
   CRITICAL: Hero Section Visibility Fix
   AOS library sets opacity:0 on [data-aos] elements
   This ensures hero is visible even if AOS fails
   ============================================ */

/* Force hero content visibility - override AOS initial state */
.hero-section .hero-text,
.hero-section .hero-image {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) !important;
    visibility: visible !important;
}

/* Ensure hero container and content have proper z-index */
.hero-section > .container {
    position: relative;
    z-index: 2;
}

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

.hero-text {
    position: relative;
    z-index: 3;
}

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

/* Hero floating cards visibility */
.hero-section .floating-card,
.hero-section .floating-card-2 {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

/* Ensure all hero badges are visible */
.hero-badge-group,
.hero-badge {
    opacity: 1 !important;
    visibility: visible !important;
}

/* AOS fallback for critical above-the-fold content */
.hero-section [data-aos] {
    opacity: 1 !important;
    transform: none !important;
}
