/*
 * Cosmick Media - Modern Marketing Homepage Styles
 * Brand Colors: Dark Grey #3c3c3c, Red #ff675b
 * Version: 1.0.4
 */

/* CSS Variables for Brand Colors */
:root {
    --primary-color: #ff675b;
    --secondary-color: #3c3c3c;
    --dark-bold: #3c3c3c;
    --accent-color: #ffd700;
    --text-dark: #2c2c2c;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #ff675b 0%, #ff8a7a 100%);
    --gradient-secondary: linear-gradient(135deg, #3c3c3c 0%, #2a2a2a 100%);
    --gradient-dark-bold: linear-gradient(135deg, #3c3c3c 0%, #2d2d2d 100%);
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-heavy: 0 15px 50px rgba(0,0,0,0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}

/* Universal font fix - Ensure Poppins everywhere */
*, *::before, *::after {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-style: normal !important;
}

/* Dark theme consistency */
body {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

/* Ensure all dark sections use consistent styling */
.hero-section,
.ai-cta-section,
.live-metrics,
.footer {
    background: var(--dark-bold) !important;
    color: var(--white) !important;
}

/* Bootstrap Icons Styling */
.bi {
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    font-family: "bootstrap-icons" !important;
}

/* Ensure Bootstrap Icons are visible and inherit color */
i.bi, .bi {
    visibility: visible !important;
    opacity: 1 !important;
    color: inherit !important;
    font-size: inherit !important;
}

/* Ensure text elements use Poppins, not icons */
*:not(i):not(.bi):not(.fa):not(.fas):not(.far):not(.fab) {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    white-space: nowrap;
}

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

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

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

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

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ===== NEW MODERN HEADER ===== */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 103, 91, 0.1);
    z-index: 1000;
    padding: 40px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.modern-header.scrolled .logo-img {
    height: 60px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Hamburger Menu - Left Side */
.hamburger-menu {
    order: 1;
    flex-shrink: 0;
}

/* Logo Styles - Left Side */
.header-logo {
    order: 2;
    margin-left: 20px;
    flex-shrink: 0;
}

.logo-link {
    display: block;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
    max-width: 300px;
    z-index: 1001;
    position: relative;
}

/* Header Actions - Right Side */
.header-actions {
    order: 3;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
}

/* Phone Number */
.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: var(--border-radius);
}

.header-phone:hover {
    color: var(--primary-color);
    background: rgba(255, 103, 91, 0.05);
}

.header-phone i {
    color: var(--primary-color);
    font-size: 16px;
    font-style: normal;
}

.phone-number {
    font-size: 15px;
    font-weight: 600;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
}

/* CTA Button */
.cta-button {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 103, 91, 0.2);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 103, 91, 0.3);
    color: var(--white);
}

/* Hamburger Menu */
.hamburger-menu {
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger-menu:hover .hamburger-line {
    background: var(--primary-color);
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    overflow-y: auto;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 103, 91, 0.1);
}

.mobile-logo img {
    height: 45px;
    width: auto;
}

.menu-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 103, 91, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

/* Mobile Navigation */
.mobile-navigation {
    flex: 1;
    margin-bottom: 40px;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-list li {
    margin-bottom: 4px;
}

.mobile-nav-list > li > a {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
    padding: 14px 16px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.mobile-nav-list > li > a:hover,
.mobile-nav-list .current-menu-item > a {
    color: var(--primary-color);
    background: rgba(255, 103, 91, 0.05);
}

/* Sub-menu styles */
.mobile-nav-list .sub-menu {
    list-style: none;
    margin: 4px 0 8px 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    overflow: hidden;
}

.mobile-nav-list .sub-menu li {
    margin-bottom: 0;
}

.mobile-nav-list .sub-menu a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
    padding: 12px 16px 12px 32px;
    transition: var(--transition);
    position: relative;
}

.mobile-nav-list .sub-menu a::before {
    content: '→';
    position: absolute;
    left: 16px;
    color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

.mobile-nav-list .sub-menu a:hover {
    color: var(--primary-color);
    background: rgba(255, 103, 91, 0.08);
    padding-left: 36px;
}

.mobile-nav-list .sub-menu a:hover::before {
    opacity: 1;
}

.mobile-nav-list .menu-item-has-children > a::after {
    content: '\f282';
    font-family: 'bootstrap-icons';
    margin-left: 8px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.mobile-nav-list .menu-item-has-children.open > a::after {
    transform: rotate(90deg);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 103, 91, 0.1);
}

.mobile-contact {
    margin-bottom: 30px;
}

.mobile-phone,
.mobile-email {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    padding: 12px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.mobile-phone:hover,
.mobile-email:hover {
    background: rgba(255, 103, 91, 0.05);
    color: var(--primary-color);
}

.mobile-phone i,
.mobile-email i {
    width: 20px;
    color: var(--primary-color);
    font-size: 16px;
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-cta-button {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 103, 91, 0.2);
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 103, 91, 0.3);
    color: var(--white);
}

.mobile-cta-secondary {
    background: transparent;
    color: var(--text-dark);
    padding: 16px 24px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    transition: var(--transition);
}

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

/* Body spacing for new header */
body {
    padding-top: 90px;
}

/* ===== AMAZING NEW HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: visible;
    background: var(--dark-bold);
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 103, 91, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(255, 103, 91, 0.03) 0%, transparent 25%);
    margin-top: -120px;
    padding-top: 180px;
    padding-bottom: 60px;
    color: var(--white);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
}

/* Interactive Canvas Background */
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3c3c3c;
    z-index: 2;
}

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

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,103,91,0.1);
    border: 1px solid rgba(255,103,91,0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--primary-color);
}

/* Hero Title */
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
}

/* Hero CTAs */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-cta-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255,103,91,0.3);
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255,103,91,0.4);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 16px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,103,91,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

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

.stat-value-wrapper {
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-left: 2px;
}

.stat-prefix {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.25rem;
    display: block;
}

/* Social Proof */
.hero-social-proof {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.proof-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
}

.proof-logos {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.proof-item {
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* Hero Dashboard */
.hero-dashboard {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dashboard-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dashboard-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.05);
}

.metric-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,103,91,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.metric-value {
    flex: 1;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.metric-prefix {
    font-size: 1rem;
    color: var(--primary-color);
}

.metric-change {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-weight: 600;
}

.metric-change.positive {
    background: rgba(0,255,136,0.1);
    color: #00ff88;
}

.metric-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.25rem;
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: bounce 2s infinite;
    transition: var(--transition);
    cursor: pointer;
}

.scroll-arrow:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.scroll-arrow i {
    font-size: 1rem;
}

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

.section-header {
    margin-bottom: 4rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid #f0f0f0;
}

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

.service-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.service-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,103,91,0.1) 0%, rgba(255,103,91,0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 1rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.about-content {
    padding-right: 2rem;
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.about-visual {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.about-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-card .stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--white);
}

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

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-bg);
}

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

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

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

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #ffd700;
}

.testimonial-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-secondary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

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

.cta-section .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

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

/* Contact Section - Fixed Z-Index */
.contact-section {
    position: relative;
    z-index: 100;
    padding: 100px 0;
    background: var(--white);
}

.contact-info {
    padding-right: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, rgba(255,103,91,0.1) 0%, rgba(255,103,91,0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.method-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.method-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Form */
.contact-form-container {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255,103,91,0.1);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
    background: var(--white);
    padding: 0 0.5rem;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* ===== RESPONSIVE DESIGN FOR NEW HEADER ===== */
@media (max-width: 991px) {
    .header-container {
        padding: 0 20px;
    }

    .header-actions {
        gap: 20px;
    }

    .phone-number {
        display: none;
    }

    .header-phone i {
        font-size: 18px;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .logo-img {
        height: 70px;
    }

    .modern-header.scrolled .logo-img {
        height: 50px;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .hero-cta-primary,
    .btn-outline-white {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-item {
        flex-direction: row;
        gap: 1rem;
    }

    .stat-content {
        text-align: left;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .contact-info {
        padding-right: 0;
        margin-bottom: 3rem;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Hero dashboard improvements */
    .hero-dashboard {
        margin-top: 3rem;
        padding: 1.5rem;
    }

    .dashboard-metrics {
        gap: 1rem;
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 100vh;
        margin-top: 0;
        padding-top: 140px;
        padding-bottom: 60px;
        display: block;
        overflow: visible;
    }

    .hero-section .row {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        min-height: -webkit-fill-available;
        display: block;
        overflow: visible;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 0;
    }

    .modern-header {
        padding: 12px 0;
    }

    .hero-section {
        margin-top: 0 !important;
        padding-top: 100px !important;
        padding-bottom: 60px !important;
        min-height: auto !important;
        height: auto !important;
        display: block !important;
        overflow: visible !important;
    }

    .hero-section .container {
        height: auto;
    }

    .hero-section .row {
        min-height: auto !important;
        height: auto !important;
    }

    .home .hero-section {
        height: auto !important;
        overflow: visible !important;
    }

    .header-container {
        padding: 0 15px;
    }

    .logo-img {
        height: 55px;
    }

    .modern-header.scrolled .logo-img {
        height: 45px;
    }

    .header-actions {
        gap: 10px;
    }

    .header-phone {
        padding: 8px;
    }

    .cta-button {
        padding: 10px 16px;
        font-size: 13px;
    }

    .header-logo {
        margin-left: 15px;
    }

    .mobile-menu-content {
        padding: 20px;
    }

    .mobile-nav-list a {
        font-size: 20px;
        padding: 14px 0;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.25rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .hero-cta-primary,
    .btn-outline-white {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .stat-item {
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        width: 100%;
    }

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

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

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

    .stat-suffix {
        font-size: 1.2rem;
    }

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

    .hero-dashboard {
        margin-top: 2rem;
        padding: 1rem;
    }

    .dashboard-title {
        font-size: 0.9rem;
    }

    .metric-card {
        padding: 0.65rem;
    }

    .metric-icon {
        width: 28px;
        height: 28px;
    }

    .metric-icon i {
        font-size: 0.85rem;
    }

    .metric-number {
        font-size: 1.1rem;
    }

    .metric-label {
        font-size: 0.65rem;
    }

    .hero-social-proof {
        padding-top: 1.5rem;
        margin-top: 1rem;
    }

    .proof-text {
        font-size: 0.8rem;
    }

    .proof-logos {
        gap: 0.75rem;
    }

    .proof-item {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }

    .scroll-indicator {
        bottom: 2rem;
        display: none;
    }

    .scroll-text {
        font-size: 0.8rem;
    }

    .scroll-arrow {
        width: 35px;
        height: 35px;
    }

    .hero-content {
        padding-bottom: 2rem;
    }

    .floating-card {
        position: static;
        margin: 1rem 0;
        animation: none;
    }

    .floating-elements {
        position: static;
        display: flex;
        flex-direction: column;
        margin-top: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

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

    .contact-form-container {
        padding: 1.5rem;
    }

    .service-card {
        margin-bottom: 1.5rem;
        padding: 2rem;
    }

    .service-icon {
        width: 65px;
        height: 65px;
    }

    .service-icon i {
        font-size: 1.75rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .step-content h3 {
        font-size: 1.15rem;
    }
}

@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.65rem;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .hero-social-proof {
        padding-top: 1.5rem;
    }

    .proof-logos {
        gap: 1rem;
    }

    .proof-item {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .ai-title {
        font-size: 1.5rem;
    }

    .ai-description {
        font-size: 1rem;
    }

    .ai-stats {
        gap: 1.5rem;
    }

    .ai-stat-number {
        font-size: 2rem;
    }

    .ai-stat-label {
        font-size: 0.8rem;
    }

    .ai-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .btn-ai-primary,
    .btn-ai-outline {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .contact-method h4 {
        font-size: 1rem;
    }

    .feature-item {
        gap: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-content h4 {
        font-size: 1.1rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* ===== ADVANCED MARKETING WEBSITE FEATURES ===== */

/* Advanced Scroll-Triggered Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* Animation Classes */
.scroll-trigger {
  animation: fadeInUp 0.8s ease-out;
}

.scroll-trigger-left {
  animation: fadeInLeft 0.8s ease-out;
}

.scroll-trigger-right {
  animation: fadeInRight 0.8s ease-out;
}

.scroll-trigger-scale {
  animation: scaleIn 0.8s ease-out;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* Glassmorphism Effects */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

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

/* Enhanced Interactive Hover Effects */
.service-card, .case-study-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 103, 91, 0.1), transparent);
  transition: left 0.6s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 103, 91, 0.2);
}

/* Social Proof Notifications */
.social-proof-notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 15px 20px;
  padding-right: 40px;
  box-shadow: var(--shadow-medium);
  border-left: 4px solid var(--primary-color);
  z-index: 1000;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.5s ease;
  max-width: 350px;
  position: relative;
}

.notification-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.notification-close:hover {
  background: #f0f0f0;
  color: #333;
  transform: rotate(90deg);
}

.social-proof-notification.show {
  opacity: 1;
  transform: translateX(0);
}

.social-proof-notification .notification-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  margin-right: 12px;
}

.social-proof-notification .notification-content {
  flex: 1;
}

.social-proof-notification .notification-text {
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
}

.social-proof-notification .notification-time {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 15px 20px;
  text-align: center;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.sticky-cta.show {
  transform: translateY(0);
}

.sticky-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.sticky-cta-text {
  font-weight: 600;
  margin: 0;
}

.sticky-cta-button {
  background: var(--white);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.sticky-cta-button:hover {
  transform: scale(1.05);
  color: var(--primary-color);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 40px 0;
  background: rgba(248, 249, 250, 0.5);
  margin: 60px 0;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0.7;
  transition: var(--transition);
}

.trust-badge:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.trust-badge img {
  height: 60px;
  margin-bottom: 10px;
  filter: grayscale(100%);
  transition: var(--transition);
}

.trust-badge:hover img {
  filter: grayscale(0%);
}

.trust-badge-text {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
}

/* Enhanced Form Styling */
.multi-step-form {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-medium);
  max-width: 600px;
  margin: 0 auto;
}

.form-progress {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.form-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e9ecef;
  transform: translateY(-50%);
}

.form-progress-fill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: var(--primary-color);
  transform: translateY(-50%);
  transition: width 0.5s ease;
}

.form-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.form-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e9ecef;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 8px;
  transition: var(--transition);
}

.form-step.active .form-step-number,
.form-step.completed .form-step-number {
  background: var(--primary-color);
  color: var(--white);
}

.form-step-text {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
}

.form-step.active .form-step-text {
  color: var(--primary-color);
  font-weight: 600;
}

/* Bento Box Layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px 0;
}

.bento-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.bento-card.featured {
  grid-column: span 2;
  background: var(--gradient-primary);
  color: var(--white);
}

.bento-card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 24px;
}

.bento-card.featured .bento-card-icon {
  background: rgba(255, 255, 255, 0.2);
}

/* Real-time Metrics Dashboard */
.live-metrics {
  background: var(--dark-bold);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 103, 91, 0.06) 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(255, 103, 91, 0.04) 0%, transparent 30%),
    linear-gradient(180deg, var(--dark-bold) 0%, rgba(60, 60, 60, 0.95) 100%);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  border-top: 1px solid rgba(255, 103, 91, 0.2);
  border-bottom: 1px solid rgba(255, 103, 91, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.3);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.metric-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.metric-label {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 5px;
}

.metric-change {
  font-size: 0.875rem;
  opacity: 0.7;
}

.metric-change.positive {
  color: #4ade80;
}

.metric-change.negative {
  color: #f87171;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  opacity: 0;
}

.custom-cursor.active {
  opacity: 1;
}

.custom-cursor.hover {
  transform: scale(2);
  background: transparent;
  border: 2px solid var(--primary-color);
}

/* Bold Dark Section Utility Class */
.section-dark-bold {
  background: var(--dark-bold) !important;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255, 103, 91, 0.04) 0%, transparent 25%),
    radial-gradient(circle at 70% 70%, rgba(255, 103, 91, 0.02) 0%, transparent 25%);
  color: var(--white);
  position: relative;
}

.section-dark-bold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
    rgba(60, 60, 60, 1) 0%,
    rgba(60, 60, 60, 0.98) 50%,
    rgba(60, 60, 60, 0.95) 100%);
  z-index: -1;
}

.section-dark-bold h1,
.section-dark-bold h2,
.section-dark-bold h3,
.section-dark-bold h4,
.section-dark-bold h5,
.section-dark-bold h6 {
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Enhanced contrast for dark sections */
.dark-section-content {
  position: relative;
  z-index: 1;
}

/* AI-Powered CTA Section */
.ai-cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--dark-bold);
}

.ai-particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 103, 91, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(255, 103, 91, 0.06) 0%, transparent 30%),
    radial-gradient(circle at 40% 60%, rgba(255, 103, 91, 0.04) 0%, transparent 25%);
  animation: ai-particles-float 20s infinite ease-in-out;
  z-index: 1;
}

@keyframes ai-particles-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.ai-cta-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 103, 91, 0.15);
  border: 1px solid rgba(255, 103, 91, 0.3);
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  animation: ai-badge-glow 3s infinite ease-in-out;
}

@keyframes ai-badge-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 103, 91, 0.3); }
  50% { box-shadow: 0 0 40px rgba(255, 103, 91, 0.5); }
}

.ai-badge i {
  font-size: 16px;
  animation: ai-icon-pulse 2s infinite ease-in-out;
}

@keyframes ai-icon-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.ai-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--white);
}

.ai-highlight {
  background: linear-gradient(45deg, var(--primary-color), #ff8a7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.ai-description {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.ai-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

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

.ai-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(255, 103, 91, 0.5);
}

.ai-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.ai-cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-ai-primary {
  background: linear-gradient(45deg, var(--primary-color), #ff8a7a);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-ai-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-ai-primary:hover::before {
  left: 100%;
}

.btn-ai-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 103, 91, 0.4);
  color: var(--white);
}

.btn-ai-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 14px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
}

.btn-ai-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* AI Visual Container */
.ai-visual-container {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-brain-animation {
  position: relative;
  width: 300px;
  height: 300px;
  margin-bottom: 40px;
}

.ai-node {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 103, 91, 0.6);
  animation: ai-node-pulse 2s infinite ease-in-out;
}

.ai-node-1 { top: 20%; left: 20%; animation-delay: 0s; }
.ai-node-2 { top: 20%; right: 20%; animation-delay: 0.5s; }
.ai-node-3 { bottom: 30%; left: 30%; animation-delay: 1s; }
.ai-node-4 { bottom: 30%; right: 30%; animation-delay: 1.5s; }

@keyframes ai-node-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.8; }
}

.ai-connection {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  opacity: 0.6;
  animation: ai-connection-flow 3s infinite ease-in-out;
}

.ai-connection-1 {
  top: 30%;
  left: 25%;
  width: 50%;
  transform: rotate(15deg);
}

.ai-connection-2 {
  bottom: 40%;
  left: 35%;
  width: 30%;
  transform: rotate(-30deg);
  animation-delay: 1s;
}

.ai-connection-3 {
  top: 50%;
  right: 25%;
  width: 40%;
  transform: rotate(45deg);
  animation-delay: 2s;
}

@keyframes ai-connection-flow {
  0% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
  100% { opacity: 0.3; transform: scale(1); }
}

.ai-pulse-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, var(--primary-color), rgba(255, 103, 91, 0.3));
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ai-center-pulse 1.5s infinite ease-in-out;
}

@keyframes ai-center-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
}

.ai-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.ai-feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  color: var(--white);
}

.ai-feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 103, 91, 0.1);
  border-color: rgba(255, 103, 91, 0.3);
}

.ai-feature-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  display: block;
}

.ai-feature-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--white);
}

/* Responsive Design for Advanced Features */
@media (max-width: 768px) {
  .trust-badges {
    flex-wrap: wrap;
    gap: 20px;
  }

  .bento-card.featured {
    grid-column: span 1;
  }

  .social-proof-notification {
    bottom: 10px;
    left: 10px;
    right: 10px;
    max-width: none;
  }

  .sticky-cta-content {
    flex-direction: column;
    gap: 15px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* AI Section Responsive */
  .ai-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .ai-badge {
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  .ai-description {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .ai-stats {
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .ai-stat {
    flex: 1;
    min-width: 120px;
  }

  .ai-cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .btn-ai-primary,
  .btn-ai-outline {
    width: 100%;
    justify-content: center;
  }

  .ai-brain-animation {
    width: 200px;
    height: 200px;
  }

  .ai-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .ai-feature-card {
    padding: 16px;
  }

  .ai-feature-card i {
    font-size: 1.5rem;
  }

  .ai-feature-card h4 {
    font-size: 0.9rem;
  }

  .ai-visual-container {
    height: auto;
    margin-top: 40px;
    padding: 20px 0;
  }

  .ai-cta-section {
    padding: 80px 0;
  }

  /* Sections padding */
  .services-section,
  .about-section,
  .process-section,
  .testimonials-section,
  .contact-section {
    padding: 60px 0;
  }

  /* Better touch targets for mobile */
  .service-link,
  .contact-method,
  .feature-item {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Improved form elements for mobile */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 14px;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  /* Hero section spacing */
  .hero-cta {
    margin-bottom: 2.5rem;
  }

  .hero-social-proof {
    margin-top: 1.5rem;
  }

  /* Metric cards in dashboard */
  .metric-card {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .metric-value {
    flex-direction: column;
    align-items: flex-start;
  }

  .metric-label {
    position: static;
    margin-top: 0.25rem;
  }
}

/* Final Cosmetic Enhancements */

/* Enhanced global shadows and depth */
.service-card,
.case-study-card,
.glass-card,
.ai-feature-card {
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 1px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover,
.case-study-card:hover {
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(255, 103, 91, 0.1);
    transform: translateY(-8px) scale(1.02);
}

/* Enhanced button animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn > * {
    position: relative;
    z-index: 2;
}

/* Enhanced section transitions */
section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 103, 91, 0.01) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

section > .container {
    position: relative;
    z-index: 2;
}

/* Enhanced text styling */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title {
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Enhanced icon animations */
.service-icon i,
.method-icon i,
.bi {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i,
.contact-method:hover .method-icon i {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-color);
}

/* Enhanced scroll indicators */
.scroll-arrow {
    animation: bounce-scroll 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

@keyframes bounce-scroll {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.scroll-arrow:hover {
    transform: scale(1.2);
    color: var(--primary-color);
}

/* Enhanced loading animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.aos-animate {
    animation: fadeInScale 0.8s ease-out;
}

/* Enhanced gradient text effects */
.highlight-text,
.ai-highlight {
    background: linear-gradient(45deg, var(--primary-color), #ff8a7a, #ffa07a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Enhanced focus states for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Enhanced mobile optimizations */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .ai-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .service-card,
    .case-study-card {
        margin-bottom: 30px;
    }
}

/* Extra small devices optimization */
@media (max-width: 400px) {
    body {
        padding-top: 0;
    }

    .modern-header {
        padding: 10px 0;
    }

    .hero-section {
        margin-top: 0 !important;
        padding-top: 95px !important;
        padding-bottom: 50px !important;
        min-height: auto !important;
        height: auto !important;
    }

    .header-logo {
        margin-left: 10px;
    }

    .logo-img {
        height: 50px;
    }

    .modern-header.scrolled .logo-img {
        height: 40px;
    }

    .header-actions {
        gap: 8px;
    }

    .cta-button {
        padding: 8px 12px;
        font-size: 12px;
    }

    .hero-title {
        font-size: 1.4rem;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .hero-stats {
        gap: 0.5rem;
    }

    .stat-item {
        padding: 0.6rem;
    }

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

    .stat-suffix {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }

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

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

    .hero-cta-primary,
    .btn-outline-white {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .ai-title {
        font-size: 1.4rem;
    }

    .ai-stat-number {
        font-size: 1.75rem;
    }

    .ai-features-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .testimonial-card {
        padding: 1.25rem;
    }

    .service-icon {
        width: 55px;
        height: 55px;
    }

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

    .service-card h3 {
        font-size: 1.1rem;
    }

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

    .feature-content h4 {
        font-size: 1rem;
    }

    .contact-form-container {
        padding: 1.25rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Footer Social Media Icons Fix */
.footer .footer_row .footer-item .social-sec li a {
    background-color: #fff !important;
    color: #3c3c3c !important;
}

.footer .footer_row .footer-item .social-sec li a:hover {
    background-color: #ff675b !important;
    color: #fff !important;
}

.footer .footer_row .footer-item .social-sec li a i {
    color: inherit !important;
    font-style: normal !important;
}

/* Performance optimizations */
* {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

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

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    /* Optimize animations for mobile */
    * {
        animation-duration: 0.5s !important;
        transition-duration: 0.3s !important;
    }

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

    /* Fix viewport height issues on mobile */
    .hero-section {
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }

    /* Prevent text size adjustment on orientation change */
    html {
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    /* Smooth scrolling on touch devices */
    body,
    .mobile-menu-overlay {
        -webkit-overflow-scrolling: touch;
    }

    /* Optimize tap highlight */
    * {
        -webkit-tap-highlight-color: rgba(255, 103, 91, 0.1);
    }

    a,
    button,
    .btn {
        touch-action: manipulation;
    }
}