/**
 * SalesNora - Modern SaaS UI
 * Premium design system with Bootstrap 5
 */

/* =====================================================
   CSS VARIABLES & DESIGN TOKENS
   ===================================================== */
:root {
    /* Colors */
    --navy: #0A1628;
    --navy-light: #1A2942;
    --primary: #2F6BFF;
    --primary-dark: #1E4FDB;
    --primary-light: #5CA9FF;
    --gradient-start: #667eea;
    --gradient-end: #764ba2;
    --gradient-blue: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-ocean: linear-gradient(135deg, #2F6BFF 0%, #5CA9FF 100%);
    --light-bg: #F8FAFC;
    --light-bg-alt: #F1F5F9;
    --text-dark: #0F172A;
    --text-gray: #64748B;
    --text-light: #94A3B8;
    --border-color: #E2E8F0;
    --border-light: #F1F5F9;
    --white: #FFFFFF;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 10px 30px rgba(47, 107, 255, 0.2);
    --shadow-primary-lg: 0 20px 40px rgba(47, 107, 255, 0.3);
    
    /* Typography */
    --font-base: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Inter', system-ui, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

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

.display-1 { font-size: clamp(3rem, 6vw, 5rem); font-weight: 800; letter-spacing: -0.03em; }
.display-2 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.03em; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.6;
}

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

a:hover {
    color: var(--primary-dark);
}

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

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.bg-navy { background-color: var(--navy) !important; }
.bg-navy-light { background-color: var(--navy-light) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-light-bg { background-color: var(--light-bg); }
.bg-light-bg-alt { background-color: var(--light-bg-alt); }
.bg-gradient-ocean { background: var(--gradient-ocean); }
.bg-gradient-blue { background: var(--gradient-blue); }

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

.section-padding {
    padding: 5rem 0;
}

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

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

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
.navbar-modern {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 0;
   
    max-width: 1320px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.navbar-modern.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    margin-top: 1rem;
}

.navbar-modern .container {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
}

/* Adjust body/header to accommodate rounded navbar */
.navbar-modern.sticky-top {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 1320px;
    z-index: 1030;
}

.navbar-modern.sticky-top.scrolled {
    top: 0.5rem;
}

/* Logo */
.navbar-brand-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-right: auto;
}

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

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
}

/* Navigation Links */
.navbar-nav-modern {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-nav-modern .nav-item {
    list-style: none;
}

.nav-link-modern {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.375rem 0;
    transition: all 0.3s ease;
    display: block;
}

.nav-link-modern:hover,
.nav-link-modern.active {
    color: #1f2937;
}

/* Dropdown arrows */
.nav-link-modern.dropdown-toggle::after {
    content: '\F282';
    font-family: 'bootstrap-icons';
    border: none;
    margin-left: 0.375rem;
    font-size: 0.625rem;
    vertical-align: middle;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-item.show .nav-link-modern.dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu-modern {
    background: #ffffff;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    padding: 0.5rem !important;
    min-width: 220px;
    margin-top: 0.5rem !important;
}

.dropdown-menu-modern .dropdown-item {
    color: #6b7280;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu-modern .dropdown-item:hover {
    background: #f3f4f6;
    color: #1f2937;
}

/* Right Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.btn-nav-secondary {
    display: none; /* Hidden to match the screenshot */
}

.btn-nav-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.25);
}

.btn-nav-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
}

/* Mobile Toggle */
.navbar-toggler-modern {
    display: none;
    background: transparent;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar-toggler-modern:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}

.navbar-toggler-icon-modern {
    display: block;
    width: 20px;
    height: 2px;
    background: #6b7280;
    border-radius: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon-modern::before,
.navbar-toggler-icon-modern::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #6b7280;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler-icon-modern::before {
    top: -6px;
}

.navbar-toggler-icon-modern::after {
    bottom: -6px;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-nav-modern {
        display: none;
    }
    
    .navbar-actions {
        display: none;
    }
    
    .navbar-toggler-modern {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: center;
        justify-content: center;
    }
    
    .navbar-modern {
        margin: 1rem auto;
        border-radius: 14px;
    }
    
    .navbar-modern.sticky-top {
        top: 0.75rem;
        width: calc(100% - 2rem);
    }
    
    .navbar-modern .container {
        justify-content: space-between;
        padding: 0.75rem 1rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 1.125rem;
    }
}

@media (max-width: 576px) {
    .navbar-modern {
        margin: 0.75rem auto;
        border-radius: 12px;
    }
    
    .navbar-modern.sticky-top {
        top: 0.5rem;
        width: calc(100% - 1.5rem);
    }
    
    .btn-nav-primary {
        padding: 0.625rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* =====================================================
   LEGACY HEADER NAVIGATION (Mobile Menu)
   ===================================================== */

/* Top Bar */
.top-bar {
    font-size: 0.875rem;
}

.top-bar a:hover {
    opacity: 0.8;
}

.hover-underline {
    position: relative;
}

.hover-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width var(--transition-fast);
}

.hover-underline:hover::after {
    width: 100%;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

/* Navbar */
.navbar {
   
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    transition: transform var(--transition-fast);
}

.navbar-brand:hover {
    transform: scale(1.02);
    color: var(--navy);
}

/* Desktop Navigation Links */
.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.625rem 1rem;
    transition: all var(--transition-fast);
    position: relative;
}

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

/* Underline animation - exclude dropdown toggles */
.nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--primary);
    transition: transform var(--transition-base);
}

.nav-link:not(.dropdown-toggle):hover::after,
.nav-link:not(.dropdown-toggle).active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown toggle styling */
.nav-link.dropdown-toggle {
    position: relative;
}

/* Remove default Bootstrap dropdown arrow */
.navbar-light .navbar-nav .nav-link.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.25rem;
    vertical-align: 0.15em;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
    transition: transform var(--transition-fast);
}

/* Rotate arrow when dropdown is open */
.navbar-light .navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Desktop Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    margin-top: 0.75rem;
    min-width: 280px;
    animation: slideDown var(--transition-base);
}

.dropdown-menu-modern {
    background: var(--white);
    backdrop-filter: blur(10px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.dropdown-item i {
    font-size: 1.125rem;
    opacity: 0.7;
}

.dropdown-item:hover {
    background-color: var(--light-bg);
    color: var(--primary);
    transform: translateX(5px);
}

.dropdown-item:hover i {
    opacity: 1;
}

.dropdown-divider {
    margin: 0.5rem 0;
    opacity: 0.5;
}

/* =====================================================
   MOBILE MENU (Hamburger & Offcanvas)
   ===================================================== */

/* Hamburger Icon */
.mobile-menu-toggle {
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1050;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle:hover {
    opacity: 0.7;
}

.hamburger-line {
    width: 26px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Offcanvas */
.mobile-menu {
    width: 320px;
    border-left: 1px solid var(--border-light);
    box-shadow: var(--shadow-2xl);
}

.mobile-menu.offcanvas {
    transition: transform 0.3s ease-in-out;
}

.offcanvas-backdrop {
    background-color: rgba(10, 22, 40, 0.5);
    backdrop-filter: blur(4px);
}

.mobile-menu .offcanvas-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu .offcanvas-title {
    font-size: 1.5rem;
}

.btn-close-custom {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.btn-close-custom:hover {
    background: var(--light-bg);
    color: var(--primary);
}

.mobile-menu .offcanvas-body {
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Mobile Navigation Links */
.mobile-nav {
    flex: 1;
    padding: 1rem 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
}

.mobile-nav-link > div {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-nav-link i {
    font-size: 1.25rem;
    width: 24px;
    opacity: 0.7;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--light-bg);
    color: var(--primary);
}

.mobile-nav-link:hover i,
.mobile-nav-link.active i {
    opacity: 1;
}

.mobile-nav-link.active {
    border-left: 3px solid var(--primary);
}

/* Mobile Accordion */
.mobile-nav-accordion {
    border-bottom: 1px solid var(--border-light);
}

.accordion-toggle {
    cursor: pointer;
}

.accordion-toggle i.bi-chevron-down {
    transition: transform var(--transition-base);
}

.accordion-toggle[aria-expanded="true"] i.bi-chevron-down {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu {
    background: var(--light-bg-alt);
}

.mobile-submenu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem 0.875rem 3.5rem;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

.mobile-submenu-link i {
    font-size: 1rem;
    opacity: 0.6;
}

.mobile-submenu-link:hover {
    color: var(--primary);
    padding-left: 4rem;
}

.mobile-submenu-link:hover i {
    opacity: 1;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-light);
    background: var(--light-bg);
}

.mobile-contact a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

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

.mobile-contact i {
    opacity: 0.7;
}

/* Hide desktop nav on mobile */
@media (max-width: 991px) {
    .navbar-collapse {
        display: none !important;
    }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--gradient-ocean);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary-lg);
    color: var(--white);
}

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

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

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

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

.btn-light {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* =====================================================
   HERO SECTION
   ===================================================== */

/* Homepage Hero */
.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(47, 107, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(92, 169, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero .lead {
    font-size: 1.375rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

/* Center lead text properly */
.hero .lead.text-center,
.hero.text-center .lead {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.hero-image {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    animation: float 6s ease-in-out infinite;
}

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

/* =====================================================
   PAGE BANNER / INNER PAGE HERO
   ===================================================== */

/* Breadcrumb Section */
.breadcrumb-section {
    background: var(--light-bg);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 500;
}

/* Page Banner - For Inner Pages */
.page-banner {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(47, 107, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.page-banner .lead {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Center alignment for page banners */
.page-banner.text-center h1,
.page-banner .text-center h1 {
    margin-left: auto;
    margin-right: auto;
}

.page-banner.text-center .lead,
.page-banner .text-center .lead {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

/* Display headings in banners */
.page-banner .display-4 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Ensure proper spacing for centered content */
.page-banner .mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* =====================================================
   FEATURE CARDS
   ===================================================== */
.feature-card {
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-ocean);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.feature-icon.blue {
    background: var(--gradient-ocean);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: var(--gradient-ocean);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
}

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

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* =====================================================
   STATISTICS / STAT CARDS
   ===================================================== */
.stat-card {
    text-align: center;
    padding: 2rem;
    transition: transform var(--transition-base);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.stat-number i {
    font-size: 2.5rem;
}

.stat-label {
    color: var(--text-dark);
    font-size: 1.125rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-card small {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* =====================================================
   CTA SECTIONS
   ===================================================== */
.cta-section {
    background: var(--gradient-ocean);
    color: var(--white);
    padding: 4rem 3rem;
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.95);
}

/* =====================================================
   CARDS
   ===================================================== */
.card {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    overflow: hidden;
}

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

.card-header {
    background: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
    font-weight: 600;
}

.card-body {
    padding: 1.5rem;
}

/* =====================================================
   BLOG CARDS
   ===================================================== */
.blog-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

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

.blog-image {
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: transform var(--transition-slow);
}

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

.blog-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--light-bg);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-title {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-weight: 700;
}

.blog-title a {
    color: var(--text-dark);
    transition: color var(--transition-fast);
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-read-more {
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.blog-read-more:hover {
    gap: 0.75rem;
}

/* =====================================================
   BLOG SINGLE PAGE STYLES
   ===================================================== */
.blog-single-page {
    padding: 3rem 0;
}

.blog-single-header {
    margin-bottom: 3rem;
}

.blog-category-badge {
    margin-bottom: 1.5rem;
}

.blog-category-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.blog-category-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.blog-single-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .blog-single-title {
        font-size: 1.75rem;
        line-height: 1.35;
    }
}

.blog-meta-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

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

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

.blog-author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.blog-author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.blog-publish-date {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.blog-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.blog-stat-item i {
    color: var(--primary);
}

.blog-featured-image {
    margin: 3rem 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.blog-featured-image:hover img {
    transform: scale(1.02);
}

.blog-single-content {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin: 3rem 0;
}

.blog-single-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.blog-single-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-single-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.blog-single-content p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.blog-single-content ul,
.blog-single-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-single-content li {
    margin-bottom: 0.75rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.blog-single-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.blog-single-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.blog-single-content a:hover {
    color: var(--primary-dark);
}

.blog-share-section {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
}

.blog-share-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.blog-share-header i {
    color: var(--primary);
    font-size: 1.25rem;
}

.blog-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.blog-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    background: white;
    color: var(--text-dark);
}

.blog-share-btn i {
    font-size: 1.125rem;
}

.blog-share-x {
    border-color: #1DA1F2;
    color: #1DA1F2;
}

.blog-share-x:hover {
    background: #1DA1F2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
}

.blog-share-linkedin {
    border-color: #0077B5;
    color: #0077B5;
}

.blog-share-linkedin:hover {
    background: #0077B5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.blog-share-facebook {
    border-color: #1877F2;
    color: #1877F2;
}

.blog-share-facebook:hover {
    background: #1877F2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.blog-share-copy {
    border-color: var(--primary);
    color: var(--primary);
    cursor: pointer;
}

.blog-share-copy:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.blog-share-copy.copied {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.blog-author-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    margin: 3rem 0;
}

.blog-author-box-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.blog-author-box-content {
    flex: 1;
}

.blog-author-box-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.blog-author-box-bio {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.blog-related-posts {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-light);
}

.blog-related-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-related-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-related-title i {
    color: var(--primary);
}

.blog-related-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    margin: 0;
}

.blog-card-related {
    transition: all var(--transition-base);
}

.blog-card-related:hover {
    transform: translateY(-5px);
}

.blog-card-image-link {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

@media (max-width: 768px) {
    .blog-meta-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-share-buttons {
        flex-direction: column;
    }
    
    .blog-share-btn {
        width: 100%;
        justify-content: center;
    }
    
    .blog-author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-author-box-avatar {
        margin: 0 auto;
    }
}

/* =====================================================
   FORM STYLES
   ===================================================== */
.form-control,
.form-select {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(47, 107, 255, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.625rem;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.form-text {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* =====================================================
   BADGES
   ===================================================== */
.badge {
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
}

.badge-primary {
    background: var(--gradient-ocean);
    color: var(--white);
}

/* =====================================================
   MODERN HERO BANNER
   ===================================================== */
.hero-banner-modern {
    background: linear-gradient(180deg, #f8f9ff 0%, #f0f4ff 50%, #e8f0ff 100%);
    padding: 7rem 0 6rem;
    position: relative;
    overflow: hidden;
}

/* Hero Background Image */
.hero-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('../images/herobo.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Hero Content Left Alignment */
.hero-banner-modern .hero-badge {
    display: inline-flex;
}

.hero-banner-modern .hero-title,
.hero-banner-modern .hero-subtitle {
    text-align: left;
}

.hero-banner-modern .hero-cta-buttons {
    justify-content: flex-start;
}

.hero-banner-modern .hero-trust-badges {
    justify-content: flex-start;
}

.hero-banner-modern > .container {
    position: relative;
    z-index: 10;
}

.hero-banner-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(109, 98, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(92, 169, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 3;
}

/* Animated Floating Circles */
.hero-banner-modern::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 4;
}

.hero-circle-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(109, 98, 255, 0.15), rgba(92, 169, 255, 0.1));
    top: -100px;
    right: 10%;
    animation: float-1 20s ease-in-out infinite;
    filter: blur(60px);
}

.hero-circle-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(92, 169, 255, 0.12), rgba(109, 98, 255, 0.08));
    bottom: -80px;
    left: 5%;
    animation: float-2 18s ease-in-out infinite;
    filter: blur(50px);
}

.hero-circle-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(109, 98, 255, 0.1), rgba(92, 169, 255, 0.1));
    top: 40%;
    right: -50px;
    animation: float-3 15s ease-in-out infinite;
    filter: blur(40px);
}

.hero-circle-4 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(92, 169, 255, 0.15), rgba(109, 98, 255, 0.1));
    top: 20%;
    left: 15%;
    animation: float-4 22s ease-in-out infinite;
    filter: blur(35px);
}

/* Circle Float Animations */
@keyframes float-1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -20px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-25px, 20px) scale(1.05);
    }
    66% {
        transform: translate(20px, -25px) scale(0.95);
    }
}

@keyframes float-3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-30px, 20px) rotate(180deg);
    }
}

@keyframes float-4 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -30px) scale(1.15);
    }
}

.hero-banner-modern .container {
    position: relative;
    z-index: 1;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(109, 98, 255, 0.1) 0%, rgba(92, 169, 255, 0.1) 100%);
    border: 1px solid rgba(109, 98, 255, 0.2);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    color: #6d62ff;
    font-size: 0.9375rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.6s ease-out;
}

.hero-badge i {
    font-size: 1.125rem;
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.gradient-text-modern {
    background: linear-gradient(135deg, #6d62ff 0%, #5ca9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #6b7280;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

/* Modern Pricing Toggle */
.pricing-toggle-modern {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.toggle-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
    transition: color var(--transition-base);
}

.save-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6d62ff 0%, #5ca9ff 100%);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #6d62ff 0%, #5ca9ff 100%);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-xl);
    font-size: 1.0625rem;
    font-weight: 700;
    border: none;
    box-shadow: 0 8px 24px rgba(109, 98, 255, 0.3);
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(109, 98, 255, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-xl);
    font-size: 1.0625rem;
    font-weight: 600;
    border: 2px solid #e5e7eb;
    transition: all var(--transition-base);
    text-decoration: none;
    display: inline-block;
}

.btn-hero-secondary:hover {
    border-color: #6d62ff;
    color: #6d62ff;
    background: rgba(109, 98, 255, 0.05);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Hero Left-Aligned Variant (for split layout with image) */
.hero-banner-modern .text-start {
    text-align: left !important;
}

.hero-banner-modern .hero-subtitle.text-start {
    margin-left: 0;
    margin-right: 0;
}

.hero-banner-modern .hero-cta-buttons.justify-content-start {
    justify-content: flex-start;
}

.hero-banner-modern .hero-badge {
    display: inline-flex;
}

/* Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.trust-item i {
    color: #10b981;
    font-size: 1.25rem;
}

.trust-divider {
    width: 1px;
    height: 24px;
    background: #e5e7eb;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.3s backwards;
}

.hero-dashboard-img {
    border-radius: var(--radius-2xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-base);
}

.hero-dashboard-img:hover {
    transform: scale(1.02);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-banner-modern {
        padding: 3.5rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.0625rem;
    }
    
    .hero-badge {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-banner-modern .hero-badge span {
        display: none;
    }
    
    /* Hide or adjust background image on mobile */
    .hero-image-bg {
        width: 100%;
        opacity: 0.3;
        background-size: contain;
        background-position: bottom right;
    }
    
    .hero-banner-modern .hero-badge::after {
        content: 'Sales Management';
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .hero-cta-buttons.justify-content-start {
        align-items: stretch;
    }
    
    .pricing-toggle-modern {
        font-size: 0.875rem;
        padding: 0.5rem 1.25rem;
        gap: 0.75rem;
    }
    
    .hero-trust-badges {
        gap: 1rem;
    }
    
    .trust-item {
        font-size: 0.875rem;
    }
    
    .trust-item i {
        font-size: 1.125rem;
    }
}

/* =====================================================
   PRICING - BILLING TOGGLE (Legacy)
   ===================================================== */
.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
}

.pricing-toggle-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.pricing-save-badge {
    display: inline-block;
    background: var(--gradient-ocean);
    color: var(--white);
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    margin-left: 0.375rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pricing-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.pricing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border-color);
    transition: var(--transition-base);
    border-radius: var(--radius-full);
}

.pricing-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    transition: var(--transition-base);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.pricing-switch input:checked + .pricing-slider {
    background: var(--gradient-ocean);
}

.pricing-switch input:checked + .pricing-slider:before {
    transform: translateX(24px);
}

/* =====================================================
   PRICING CARDS - MODERN DESIGN
   ===================================================== */
.pricing-card-modern {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem 1.5rem 1.75rem;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.pricing-card-modern.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: scale(1.03);
    z-index: 1;
}

.pricing-card-modern.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-ocean);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-primary);
    white-space: nowrap;
}

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

.pricing-icon {
    display: none;
}


.pricing-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.375rem;
}

.pricing-subtitle {
    font-size: 0.8125rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

.pricing-price-wrapper {
    text-align: center;
    padding: 1.125rem 0;
    margin-bottom: 1.25rem;
    border-top: 2px solid var(--border-light);
    border-bottom: 2px solid var(--border-light);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    line-height: 1;
    margin-bottom: 0.375rem;
}

.pricing-price .currency {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-gray);
}

.pricing-price .amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
    transition: all var(--transition-base);
}

.pricing-price .period {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 500;
}

.pricing-price.custom .amount-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--navy);
}

.pricing-annual-note {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
}

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

.pricing-features-modern li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

.pricing-features-modern li i {
    color: var(--primary);
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* Compact Pricing Cards */
.pricing-card-compact {
    height: auto;
    min-height: auto;
    padding: 1.75rem 1.25rem 1.5rem;
}

.pricing-card-compact .pricing-header {
    margin-bottom: 0.875rem;
}

.pricing-card-compact .pricing-icon {
    display: none;
}

.pricing-card-compact .pricing-title {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.pricing-card-compact .pricing-subtitle {
    font-size: 0.75rem;
}

.pricing-card-compact .pricing-price-wrapper {
    padding: 0.875rem 0;
    margin-bottom: 0.875rem;
}

.pricing-card-compact .pricing-price {
    margin-bottom: 0.25rem;
}

.pricing-card-compact .currency {
    font-size: 0.875rem;
}

.pricing-card-compact .amount {
    font-size: 1.875rem;
}

.pricing-card-compact .period {
    font-size: 0.6875rem;
}

.pricing-card-compact .pricing-annual-note {
    font-size: 0.6875rem;
}

/* Core and Extra Features */
.pricing-features-core {
    margin-bottom: 0;
}

.pricing-features-extra {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.pricing-features-modern li strong {
    font-weight: 700;
}

/* Features Toggle Button */
.btn-features-toggle {
    width: 100%;
    padding: 0.625rem 0.875rem;
    margin: 0.75rem 0 0;
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-features-toggle:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 107, 255, 0.2);
}

.btn-features-toggle .toggle-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.pricing-card-modern.expanded {
    box-shadow: var(--shadow-xl);
}

.pricing-card-modern.featured .btn-features-toggle {
    background: rgba(47, 107, 255, 0.08);
    border-color: rgba(47, 107, 255, 0.2);
}

.pricing-card-modern.featured .btn-features-toggle:hover {
    background: var(--primary);
    color: var(--white);
}

.pricing-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: rgba(47, 107, 255, 0.03);
    border-radius: var(--radius-xl);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.875rem;
}

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

/* Quick Actions Bar */
.pricing-quick-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.quick-action-link {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid var(--border-color);
    transition: all var(--transition-base);
    cursor: pointer;
}

.quick-action-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.quick-action-link.primary {
    background: var(--gradient-ocean);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}

.quick-action-link.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary-lg);
}

.quick-action-link i {
    flex-shrink: 0;
}

/* =====================================================
   PRICING COMPARISON TABLE
   ===================================================== */
.pricing-comparison-table {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.pricing-comparison-table .table {
    margin-bottom: 0;
}

.pricing-comparison-table thead {
    background: linear-gradient(135deg, rgba(47, 107, 255, 0.05) 0%, rgba(92, 169, 255, 0.05) 100%);
}

.pricing-comparison-table th {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--text-dark);
    padding: 1rem 0.75rem;
    border: none;
    text-align: center;
    vertical-align: middle;
}

.pricing-comparison-table th.feature-col {
    text-align: left;
    width: 40%;
}

.pricing-comparison-table th.featured-col {
    background: var(--primary);
    color: var(--white);
    position: relative;
}

.pricing-comparison-table td {
    padding: 0.875rem 0.75rem;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
    vertical-align: middle;
    font-weight: 500;
    font-size: 0.875rem;
}

.pricing-comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-comparison-table .category-row td {
    background: var(--light-bg);
    padding: 0.75rem 0.75rem;
    font-weight: 700;
    color: var(--navy);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-comparison-table i {
    font-size: 1.25rem;
}

.pricing-comparison-table tbody tr:hover {
    background: rgba(47, 107, 255, 0.02);
}

/* Pricing Sticky CTA (Mobile) */
.pricing-sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.pricing-sticky-cta .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(47, 107, 255, 0.4);
    animation: float-bounce 3s ease-in-out infinite;
}

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

/* Show sticky CTA on mobile scroll */
.pricing-sticky-cta.show {
    display: block;
    animation: slideInUp 0.3s ease-out;
}

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

/* Mobile Responsive */
@media (max-width: 992px) {
    .pricing-card-modern.featured {
        transform: scale(1);
    }
    
    .pricing-card-modern.featured:hover {
        transform: translateY(-4px);
    }
    
    .pricing-toggle {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .pricing-toggle-label {
        font-size: 0.875rem;
    }
    
    .pricing-comparison-table {
        overflow-x: auto;
    }
    
    .pricing-comparison-table .table {
        min-width: 600px;
    }
    
    .pricing-trust-badges {
        gap: 1rem;
        padding: 1rem;
    }
    
    .pricing-quick-actions {
        gap: 0.75rem;
    }
    
    .quick-action-link {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .pricing-price .amount {
        font-size: 2.25rem;
    }
    
    .pricing-card-modern {
        margin-bottom: 1.5rem;
    }
    
    .trust-badge {
        font-size: 0.8125rem;
    }
    
    .trust-badge span {
        display: none;
    }
    
    .trust-badge::after {
        content: attr(data-short);
    }
    
    .pricing-icon {
        width: 48px;
        height: 48px;
        font-size: 1.375rem;
    }
    
    .pricing-title {
        font-size: 1.375rem;
    }
    
    .pricing-comparison-table th,
    .pricing-comparison-table td {
        font-size: 0.8125rem;
        padding: 0.75rem 0.5rem;
    }
}

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.accordion {
    --bs-accordion-border-radius: var(--radius-lg);
    --bs-accordion-border-color: var(--border-light);
}

.accordion-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg) !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.125rem;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-bg);
    color: var(--primary);
    box-shadow: none;
}

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

.accordion-body {
    padding: 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
}

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

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

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

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

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: none;
}

/* =====================================================
   WHATSAPP FLOAT BUTTON
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
        transform: scale(1.05);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: #ffffff;
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #25d366;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
        bottom: 90px;
        right: 20px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .whatsapp-float {
        right: 90px;
    }
}

.footer h6 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* =====================================================
   BREADCRUMB
   ===================================================== */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item {
    font-size: 0.9375rem;
}

.breadcrumb-item a {
    color: var(--text-gray);
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--primary);
    font-weight: 600;
}

/* =====================================================
   PAGINATION
   ===================================================== */
.pagination {
    gap: 0.5rem;
}

.page-link {
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    border-radius: var(--radius-md);
    padding: 0.625rem 1rem;
    transition: all var(--transition-fast);
}

.page-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.page-item.active .page-link {
    background: var(--gradient-ocean);
    border-color: var(--primary);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 992px) {
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-padding-lg {
        padding: 5rem 0;
    }
    
    .hero {
        padding: 4rem 0 3rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 3rem 0 2rem;
    }
    
    .hero .lead {
        font-size: 1.125rem;
    }
    
    .feature-card,
    .pricing-card {
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-section {
        padding: 3rem 2rem;
    }
}

/* =====================================================
   PERFORMANCE OPTIMIZATIONS
   ===================================================== */
.lazy {
    opacity: 0;
    transition: opacity 0.4s;
}

.lazy.loaded {
    opacity: 1;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =====================================================
   DEMO BOOKING MODAL POPUP
   ===================================================== */

/* Modal Overlay */
.demo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease-out;
}

.demo-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

/* Modal Content */
.demo-modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-2xl);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-2xl);
    animation: slideInUp 0.4s ease-out;
    z-index: 1;
}

.demo-modal-content::-webkit-scrollbar {
    width: 6px;
}

.demo-modal-content::-webkit-scrollbar-track {
    background: var(--light-bg);
}

.demo-modal-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

/* Close Button */
.demo-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--light-bg);
    color: var(--text-dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 2;
}

.demo-modal-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

/* Modal Header */
.demo-modal-header {
    text-align: center;
    padding: 3rem 2.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(47, 107, 255, 0.05) 0%, rgba(92, 169, 255, 0.05) 100%);
}

.demo-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-ocean);
    color: var(--white);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-primary);
}

.demo-modal-header h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.demo-modal-header p {
    font-size: 1rem;
    color: var(--text-gray);
}

/* Modal Body */
.demo-modal-body {
    padding: 2rem 2.5rem;
}

.demo-modal-body .form-label {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.demo-modal-body .form-control,
.demo-modal-body .form-select {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: all var(--transition-fast);
}

.demo-modal-body .form-control:focus,
.demo-modal-body .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(47, 107, 255, 0.15);
}

/* Modal Footer */
.demo-modal-footer {
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--border-light);
    margin-top: 1.5rem;
}

.demo-modal-footer .btn {
    font-size: 1.125rem;
    padding: 1rem;
}

.demo-modal-footer p {
    font-size: 0.875rem;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .demo-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: var(--radius-xl);
    }
    
    .demo-modal-header {
        padding: 2.5rem 1.5rem 1.5rem;
    }
    
    .demo-modal-body {
        padding: 1.5rem;
    }
    
    .demo-modal-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .demo-modal-header h3 {
        font-size: 1.5rem;
    }
    
    .demo-modal-close {
        width: 36px;
        height: 36px;
        top: 1rem;
        right: 1rem;
    }
}
