/**
 * NuwairSystems Main CSS
 *
 * Main stylesheet with TailwindCSS components and custom styles.
 *
 * @package NuwairSystems
 * @since 1.0.0
 */

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   Colors are customizable via WordPress Customizer
   ========================================================================== */

:root {
    /* Primary Colors - Professional Blue (matches reference) */
    --ns-primary: #2563eb;
    --ns-primary-hover: #1d4ed8;
    --ns-primary-light: #3b82f6;
    --ns-primary-dark: #1e40af;
    --ns-primary-rgb: 37, 99, 235;
    
    /* Secondary Colors - Indigo/Purple accent (customizable) */
    --ns-secondary: #4f46e5;
    --ns-secondary-dark: #4338ca;
    --ns-secondary-light: #6366f1;
    --ns-secondary-rgb: 79, 70, 229;
    
    /* Accent Colors - Cyan/Teal for highlights (customizable) */
    --ns-accent: #06b6d4;
    --ns-accent-rgb: 6, 182, 212;
    --ns-success: #10b981;
    --ns-success-rgb: 16, 185, 129;
    --ns-warning: #f59e0b;
    --ns-error: #ef4444;
    --ns-info: #0ea5e9;
    
    /* Text Colors (customizable) */
    --ns-text-dark: #1e293b;
    --ns-text-light: #64748b;
    
    /* Background Colors (customizable) */
    --ns-bg-light: #f8fafc;
    --ns-bg-dark: #1e293b;
    --ns-header-bg: #ffffff;
    --ns-footer-bg: #0f172a;
    
    /* Border Color (customizable) */
    --ns-border: #e2e8f0;
    
    /* Neutral Colors */
    --ns-white: #ffffff;
    --ns-black: #000000;
    --ns-gray-50: #f8fafc;
    --ns-gray-100: #f1f5f9;
    --ns-gray-200: #e2e8f0;
    --ns-gray-300: #cbd5e1;
    --ns-gray-400: #94a3b8;
    --ns-gray-500: #64748b;
    --ns-gray-600: #475569;
    --ns-gray-700: #334155;
    --ns-gray-800: #1e293b;
    --ns-gray-900: #0f172a;
    
    /* Typography */
    --ns-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --ns-font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --ns-font-secondary: 'Playfair Display', Georgia, serif;
    --ns-font-mono: 'Fira Code', 'Monaco', 'Consolas', monospace;
    
    /* Font Sizes */
    --ns-text-xs: 0.75rem;
    --ns-text-sm: 0.875rem;
    --ns-text-base: 1rem;
    --ns-text-lg: 1.125rem;
    --ns-text-xl: 1.25rem;
    --ns-text-2xl: 1.5rem;
    --ns-text-3xl: 1.875rem;
    --ns-text-4xl: 2.25rem;
    --ns-text-5xl: 3rem;
    
    /* Spacing */
    --ns-spacing-xs: 0.25rem;
    --ns-spacing-sm: 0.5rem;
    --ns-spacing-md: 1rem;
    --ns-spacing-lg: 1.5rem;
    --ns-spacing-xl: 2rem;
    --ns-spacing-2xl: 3rem;
    --ns-spacing-3xl: 4rem;
    
    /* Border Radius */
    --ns-radius-sm: 0.25rem;
    --ns-radius-md: 0.375rem;
    --ns-radius-lg: 0.5rem;
    --ns-radius-xl: 0.75rem;
    --ns-radius-2xl: 1rem;
    --ns-radius-full: 9999px;
    
    /* Shadows */
    --ns-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --ns-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --ns-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --ns-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --ns-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --ns-transition-fast: 150ms;
    --ns-transition-normal: 300ms;
    --ns-transition-slow: 500ms;
    
    /* Z-Index Scale */
    --ns-z-dropdown: 1000;
    --ns-z-sticky: 1020;
    --ns-z-fixed: 1030;
    --ns-z-modal-backdrop: 1040;
    --ns-z-modal: 1050;
    --ns-z-popover: 1060;
    --ns-z-tooltip: 1070;
}

/* Dark mode variables */
[data-theme="dark"] {
    --ns-primary: #60a5fa;
    --ns-gray-50: #1e293b;
    --ns-gray-100: #0f172a;
    --ns-gray-800: #f1f5f9;
    --ns-gray-900: #f8fafc;
}

/* ==========================================================================
   Front Page Styles
   ========================================================================== */

.front-page-content {
    /* Remove default padding for full-width sections */
}

.front-page-content .entry-content {
    max-width: none;
}

.front-page-content .entry-content > * {
    margin-left: auto;
    margin-right: auto;
}

.front-page-content .entry-content > .alignfull {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.front-page-content .entry-content > .alignwide {
    max-width: 1400px;
}

/* Front page section spacing */
.front-page-content .wp-block-group,
.front-page-content .wp-block-cover {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .front-page-content .wp-block-group,
    .front-page-content .wp-block-cover {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* ==========================================================================
   Base Styles - Cross-browser Compatible
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Prevent iOS text size adjust after orientation change */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--ns-font-primary);
    font-size: var(--ns-text-base);
    line-height: 1.6;
    color: var(--ns-gray-700);
    background-color: var(--ns-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height */
    overflow-x: hidden;
}

/* Reset margins on sections to prevent unexpected spacing */
section,
article,
aside,
main {
    display: block;
    margin: 0;
    padding: 0;
}

/* Prevent Edge/IE from collapsing empty flex items */
.flex > *:empty {
    display: none;
}

/* Fix for inset property (not supported in older Edge) */
.inset-0,
[class*="inset-"] {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ns-font-heading);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--ns-gray-900);
}

h1 { font-size: var(--ns-text-4xl); }
h2 { font-size: var(--ns-text-3xl); }
h3 { font-size: var(--ns-text-2xl); }
h4 { font-size: var(--ns-text-xl); }
h5 { font-size: var(--ns-text-lg); }
h6 { font-size: var(--ns-text-base); }

@media (min-width: 768px) {
    h1 { font-size: var(--ns-text-5xl); }
    h2 { font-size: var(--ns-text-4xl); }
}

a {
    color: var(--ns-primary);
    text-decoration: none;
    transition: color var(--ns-transition-fast);
}

a:hover {
    color: var(--ns-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Layout Components
   ========================================================================== */

.ns-container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--ns-spacing-md);
    padding-right: var(--ns-spacing-md);
}

@media (min-width: 640px) {
    .ns-container {
        padding-left: var(--ns-spacing-lg);
        padding-right: var(--ns-spacing-lg);
    }
}

@media (min-width: 1024px) {
    .ns-container {
        padding-left: var(--ns-spacing-xl);
        padding-right: var(--ns-spacing-xl);
    }
}

.ns-section {
    padding-top: var(--ns-spacing-lg);
    padding-bottom: var(--ns-spacing-lg);
}

@media (min-width: 768px) {
    .ns-section {
        padding-top: var(--ns-spacing-xl);
        padding-bottom: var(--ns-spacing-xl);
    }
}

/* ==========================================================================
   Modern Design System (from reference)
   ========================================================================== */

/* Modern Text Gradients */
.text-gradient-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-modern 4s ease infinite;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 50%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern Glass Effects */
.glass-card {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.glass-card-dark {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(17, 24, 39, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* Modern Card Styles */
.card-modern {
    border-radius: 1.5rem;
    border: 1px solid #f3f4f6;
    background-color: white;
    padding: 2rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-modern:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    transform: translateY(-0.25rem);
}

.card-feature {
    border-radius: 1.5rem;
    border: 1px solid #f3f4f6;
    background-color: white;
    padding: 2rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.card-feature:hover {
    border-color: #bfdbfe;
    background: linear-gradient(to bottom right, rgba(239, 246, 255, 0.5), rgba(245, 243, 255, 0.5));
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    transform: translateY(-0.25rem);
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 15px 25px rgba(0, 0, 0, 0.05);
}

/* Modern Gradients */
.bg-gradient-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-gradient-blue-modern {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
}

.bg-gradient-purple-modern {
    background: linear-gradient(135deg, #8b5cf6 0%, #c084fc 100%);
}

.bg-gradient-mesh {
    background: 
        radial-gradient(at 40% 20%, hsla(228, 100%, 74%, 0.05) 0px, transparent 50%),
        radial-gradient(at 80% 0%, hsla(189, 100%, 56%, 0.05) 0px, transparent 50%),
        radial-gradient(at 0% 50%, hsla(355, 100%, 93%, 0.05) 0px, transparent 50%),
        radial-gradient(at 80% 50%, hsla(340, 100%, 76%, 0.05) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(22, 100%, 77%, 0.05) 0px, transparent 50%),
        radial-gradient(at 80% 100%, hsla(242, 100%, 70%, 0.05) 0px, transparent 50%);
}

/* Section Background Variants */
.bg-section-primary {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.bg-section-secondary {
    background: #f9fafb;
}

.bg-section-tertiary {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.bg-section-accent {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.bg-section-contact {
    background: linear-gradient(135deg, #eff6ff 0%, #faf5ff 100%);
}

/* Modern Animations */
@keyframes gradient-modern {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float-modern {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes glow-modern {
    0% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.15); }
    100% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.3), 0 0 60px rgba(59, 130, 246, 0.1); }
}

@keyframes slide-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulse-slow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

@keyframes bounce-slow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.animate-float-modern { animation: float-modern 6s ease-in-out infinite; }
.animate-glow-modern { animation: glow-modern 3s ease-in-out infinite alternate; }
.animate-slide-up { animation: slide-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-fade-in { animation: fade-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-shimmer { animation: shimmer 2s linear infinite; }
.animate-pulse-slow { animation: pulse-slow 4s ease-in-out infinite; }
.animate-bounce-slow { animation: bounce-slow 6s ease-in-out infinite; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Modern Selection */
::selection {
    background: #2563eb;
    color: #ffffff;
}

/* ==========================================================================
   Button Components
   ========================================================================== */

.ns-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: var(--ns-text-sm);
    font-weight: 600;
    line-height: 1;
    border: none;
    border-radius: var(--ns-radius-lg);
    cursor: pointer;
    transition: all var(--ns-transition-fast);
    text-decoration: none;
}

.ns-btn:focus {
    outline: 2px solid var(--ns-primary);
    outline-offset: 2px;
}

.ns-btn-primary {
    background-color: var(--ns-primary);
    color: var(--ns-white);
}

.ns-btn-primary:hover {
    background-color: var(--ns-primary-dark);
    color: var(--ns-white);
}

.ns-btn-secondary {
    background-color: var(--ns-gray-100);
    color: var(--ns-gray-700);
}

.ns-btn-secondary:hover {
    background-color: var(--ns-gray-200);
}

.ns-btn-outline {
    background-color: transparent;
    color: var(--ns-primary);
    border: 2px solid var(--ns-primary);
}

.ns-btn-outline:hover {
    background-color: var(--ns-primary);
    color: var(--ns-white);
}

.ns-btn-ghost {
    background-color: transparent;
    color: var(--ns-gray-600);
}

.ns-btn-ghost:hover {
    background-color: var(--ns-gray-100);
}

.ns-btn-sm {
    padding: 0.5rem 1rem;
    font-size: var(--ns-text-xs);
}

.ns-btn-lg {
    padding: 1rem 2rem;
    font-size: var(--ns-text-base);
}

/* ==========================================================================
   Card Components
   ========================================================================== */

.ns-card {
    background-color: var(--ns-white);
    border-radius: var(--ns-radius-xl);
    box-shadow: var(--ns-shadow);
    overflow: hidden;
    transition: box-shadow var(--ns-transition-normal);
}

.ns-card:hover {
    box-shadow: var(--ns-shadow-lg);
}

.ns-card-body {
    padding: var(--ns-spacing-lg);
}

.ns-card-title {
    font-size: var(--ns-text-xl);
    font-weight: 700;
    margin-bottom: var(--ns-spacing-sm);
}

.ns-card-text {
    color: var(--ns-gray-600);
}

.ns-card-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.ns-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ns-gray-900);
    color: var(--ns-white);
    overflow: hidden;
}

@media (min-width: 768px) {
    .ns-hero {
        min-height: 80vh;
    }
}

.ns-hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.ns-hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.ns-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
    text-align: center;
}

.ns-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--ns-white);
}

@media (min-width: 768px) {
    .ns-hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .ns-hero-title {
        font-size: 4.5rem;
    }
}

.ns-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .ns-hero-subtitle {
        font-size: 1.5rem;
    }
}

.ns-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .ns-hero-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.ns-hero-cta {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--ns-radius-lg);
    text-decoration: none;
    transition: all var(--ns-transition-fast);
}

.ns-hero-cta-primary {
    background-color: var(--ns-primary);
    color: var(--ns-white);
}

.ns-hero-cta-primary:hover {
    background-color: var(--ns-primary-dark);
    color: var(--ns-white);
    transform: translateY(-2px);
}

.ns-hero-cta-secondary {
    background-color: transparent;
    color: var(--ns-white);
    border: 2px solid var(--ns-white);
}

.ns-hero-cta-secondary:hover {
    background-color: var(--ns-white);
    color: var(--ns-gray-900);
}

/* Page Hero */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--ns-gray-900) 0%, var(--ns-gray-800) 100%);
}

.page-hero .ns-container {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

.ns-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.ns-section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ns-primary);
    margin-bottom: 0.75rem;
}

.ns-section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--ns-gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .ns-section-title {
        font-size: 2.75rem;
    }
}

.ns-section-subtitle {
    font-size: 1.125rem;
    color: var(--ns-gray-600);
    line-height: 1.6;
}

/* ==========================================================================
   Header Styles
   ========================================================================== */

.ns-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--ns-white);
    z-index: var(--ns-z-sticky);
    transition: box-shadow var(--ns-transition-normal);
}

.ns-header.scrolled {
    box-shadow: var(--ns-shadow-md);
}

.ns-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.ns-logo img {
    height: 40px;
    width: auto;
}

/* Navigation */
.ns-nav {
    display: none;
}

@media (min-width: 1024px) {
    .ns-nav {
        display: flex;
        align-items: center;
        gap: var(--ns-spacing-xl);
    }
}

.ns-nav-list {
    display: flex;
    align-items: center;
    gap: var(--ns-spacing-lg);
    list-style: none;
    margin: 0;
    padding: 0;
}

.ns-nav-link {
    font-weight: 500;
    color: var(--ns-gray-700);
    padding: 0.5rem 0;
    position: relative;
}

.ns-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--ns-primary);
    transition: width var(--ns-transition-fast);
}

.ns-nav-link:hover,
.ns-nav-link.active {
    color: var(--ns-primary);
}

.ns-nav-link:hover::after,
.ns-nav-link.active::after {
    width: 100%;
}

/* Mega Menu */
.ns-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 600px;
    background-color: var(--ns-white);
    border-radius: var(--ns-radius-xl);
    box-shadow: var(--ns-shadow-xl);
    padding: var(--ns-spacing-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--ns-transition-normal);
}

.menu-item-has-children:hover .ns-mega-menu {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Toggle */
.ns-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

@media (min-width: 1024px) {
    .ns-mobile-toggle {
        display: none;
    }
}

.ns-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--ns-gray-700);
    transition: all var(--ns-transition-fast);
}

.ns-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ns-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.ns-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu - Improved */
.ns-mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    padding: 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 40;
}

.ns-mobile-menu.active {
    transform: translateX(0);
}

/* Mobile Navigation Styling */
#mobile-navigation {
    background: white;
    border-top: 1px solid #e2e8f0;
}

#mobile-navigation .mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

#mobile-navigation .mobile-menu li {
    border-bottom: 1px solid #f1f5f9;
}

#mobile-navigation .mobile-menu li:last-child {
    border-bottom: none;
}

#mobile-navigation .mobile-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 0.375rem;
}

#mobile-navigation .mobile-menu > li > a:hover {
    color: #2563eb;
    background-color: #f8fafc;
}

/* Mobile Submenu */
#mobile-navigation .mobile-menu .sub-menu {
    list-style: none;
    margin: 0 0 0.5rem 0;
    padding: 0.5rem;
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
    border-radius: 0.75rem;
}

#mobile-navigation .mobile-menu .sub-menu li {
    border-bottom: none;
}

#mobile-navigation .mobile-menu .sub-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    font-size: 0.875rem;
    color: #334155;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

#mobile-navigation .mobile-menu .sub-menu a:hover {
    background-color: white;
    color: #2563eb;
}

#mobile-navigation .mobile-menu .sub-menu .menu-item-icon {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

#mobile-navigation .mobile-menu .sub-menu .menu-item-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

#mobile-navigation .mobile-menu .sub-menu .menu-item-text > span:first-child {
    font-weight: 600;
}

#mobile-navigation .mobile-menu .sub-menu .menu-item-desc {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.125rem;
}

/* Mobile submenu toggle arrow */
.mobile-submenu-arrow {
    cursor: pointer;
    padding: 0.25rem;
}

.mobile-submenu-arrow svg {
    color: #64748b;
}

/* Mobile icon colors */
#mobile-navigation .icon-blue { background-color: #dbeafe; color: #2563eb; }
#mobile-navigation .icon-purple { background-color: #f3e8ff; color: #9333ea; }
#mobile-navigation .icon-pink { background-color: #fce7f3; color: #db2777; }
#mobile-navigation .icon-orange { background-color: #ffedd5; color: #ea580c; }
#mobile-navigation .icon-indigo { background-color: #e0e7ff; color: #4f46e5; }
#mobile-navigation .icon-green { background-color: #dcfce7; color: #16a34a; }
#mobile-navigation .icon-red { background-color: #fee2e2; color: #dc2626; }
#mobile-navigation .icon-cyan { background-color: #cffafe; color: #0891b2; }

.ns-mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ns-mobile-nav-item {
    border-bottom: 1px solid #f1f5f9;
}

.ns-mobile-nav-link {
    display: block;
    padding: 1rem 0;
    font-weight: 500;
    color: #334155;
}

/* WordPress Menu Styles */
.primary-menu {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    position: relative;
}

.primary-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    border-radius: 0.5rem;
    letter-spacing: 0.01em;
}

.primary-menu > li > a:hover {
    color: #2563eb;
    background-color: rgba(37, 99, 235, 0.04);
}

.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-menu-ancestor > a {
    color: #2563eb;
}

/* Dropdown Arrow Icon */
.primary-menu .dropdown-icon {
    display: inline-flex;
    transition: transform 0.25s ease;
    color: #9ca3af;
}

.primary-menu > li > a:hover .dropdown-icon {
    color: #2563eb;
}

.primary-menu > li:hover > a .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu - Clean Professional Style */
.primary-menu .sub-menu,
.primary-menu .mega-menu-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(0.5rem);
    min-width: 240px;
    background-color: white;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 50;
    list-style: none;
}

/* Arrow indicator on dropdown */
.primary-menu .sub-menu::before,
.primary-menu .mega-menu-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 2px;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.03);
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:hover > .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Enhanced Mega Menu with Icons */
.primary-menu .mega-menu-dropdown {
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
}

.primary-menu .mega-menu-dropdown li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: #334155;
    text-decoration: none;
    transition: all 0.2s ease;
}

.primary-menu .mega-menu-dropdown li a:hover {
    background-color: #f8fafc;
}

/* Menu Item Icon - Color variants */
.primary-menu .mega-menu-dropdown .menu-item-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.primary-menu .mega-menu-dropdown .menu-item-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
}

/* Icon color variants */
.menu-item-icon.icon-blue { background-color: #eff6ff; color: #2563eb; }
.menu-item-icon.icon-purple { background-color: #faf5ff; color: #9333ea; }
.menu-item-icon.icon-pink { background-color: #fdf2f8; color: #db2777; }
.menu-item-icon.icon-orange { background-color: #fff7ed; color: #ea580c; }
.menu-item-icon.icon-indigo { background-color: #eef2ff; color: #4f46e5; }
.menu-item-icon.icon-green { background-color: #f0fdf4; color: #16a34a; }
.menu-item-icon.icon-red { background-color: #fef2f2; color: #dc2626; }
.menu-item-icon.icon-cyan { background-color: #ecfeff; color: #0891b2; }

/* Hover states for icons */
.primary-menu .mega-menu-dropdown li a:hover .menu-item-icon.icon-blue { background-color: #dbeafe; }
.primary-menu .mega-menu-dropdown li a:hover .menu-item-icon.icon-purple { background-color: #f3e8ff; }
.primary-menu .mega-menu-dropdown li a:hover .menu-item-icon.icon-pink { background-color: #fce7f3; }
.primary-menu .mega-menu-dropdown li a:hover .menu-item-icon.icon-orange { background-color: #ffedd5; }
.primary-menu .mega-menu-dropdown li a:hover .menu-item-icon.icon-indigo { background-color: #e0e7ff; }
.primary-menu .mega-menu-dropdown li a:hover .menu-item-icon.icon-green { background-color: #dcfce7; }
.primary-menu .mega-menu-dropdown li a:hover .menu-item-icon.icon-red { background-color: #fee2e2; }
.primary-menu .mega-menu-dropdown li a:hover .menu-item-icon.icon-cyan { background-color: #cffafe; }

.primary-menu .mega-menu-dropdown li a:hover {
    color: #1e40af;
}

.primary-menu .mega-menu-dropdown .menu-item-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-top: 0.125rem;
}

.primary-menu .mega-menu-dropdown .menu-item-text > span:first-child {
    font-size: 0.875rem;
    font-weight: 500;
    color: #0f172a;
    transition: color 0.2s ease;
    line-height: 1.3;
}

.primary-menu .mega-menu-dropdown li a:hover .menu-item-text > span:first-child {
    color: #2563eb;
}

.primary-menu .mega-menu-dropdown .menu-item-desc {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 0.125rem;
}

/* Two Column Mega Menu for larger menus */
.primary-menu .has-mega-menu .mega-menu-dropdown {
    min-width: 340px;
}

@media (min-width: 1024px) {
    .primary-menu .has-mega-menu:has(> ul > li:nth-child(5)) .mega-menu-dropdown {
        min-width: 620px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.25rem;
    }
}

/* Simple submenu (no icons) */
.primary-menu .sub-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: #475569;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.primary-menu .sub-menu li a:hover {
    background-color: #f8fafc;
    color: #2563eb;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */

.ns-footer {
    background-color: var(--ns-gray-900);
    color: var(--ns-gray-400);
}

.ns-footer a {
    color: var(--ns-gray-400);
}

.ns-footer a:hover {
    color: var(--ns-white);
}

.ns-footer-widgets {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--ns-spacing-xl);
    padding: var(--ns-spacing-3xl) 0;
}

@media (min-width: 640px) {
    .ns-footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ns-footer-widgets {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ns-footer-widget h4 {
    color: var(--ns-white);
    margin-bottom: var(--ns-spacing-md);
}

.ns-footer-bottom {
    border-top: 1px solid var(--ns-gray-800);
    padding: var(--ns-spacing-lg) 0;
    display: flex;
    flex-direction: column;
    gap: var(--ns-spacing-md);
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .ns-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ==========================================================================
   Form Styles
   ========================================================================== */

.ns-form-group {
    margin-bottom: var(--ns-spacing-md);
}

.ns-form-label {
    display: block;
    font-size: var(--ns-text-sm);
    font-weight: 500;
    color: var(--ns-gray-700);
    margin-bottom: var(--ns-spacing-xs);
}

.ns-form-input,
.ns-form-textarea,
.ns-form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: var(--ns-text-base);
    font-family: inherit;
    color: var(--ns-gray-700);
    background-color: var(--ns-white);
    border: 1px solid var(--ns-gray-300);
    border-radius: var(--ns-radius-lg);
    transition: border-color var(--ns-transition-fast), box-shadow var(--ns-transition-fast);
}

.ns-form-input:focus,
.ns-form-textarea:focus,
.ns-form-select:focus {
    outline: none;
    border-color: var(--ns-primary);
    box-shadow: 0 0 0 3px rgba(var(--ns-primary-rgb), 0.1);
}

.ns-form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Search Form */
.ns-search-form {
    position: relative;
}

.ns-search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 1px solid var(--ns-gray-300);
    border-radius: var(--ns-radius-full);
}

.ns-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ns-gray-400);
}

/* ==========================================================================
   Post Styles
   ========================================================================== */

.ns-post-card {
    border-radius: var(--ns-radius-xl);
    overflow: hidden;
    background: var(--ns-white);
    box-shadow: var(--ns-shadow);
    transition: all var(--ns-transition-normal);
}

.ns-post-card:hover {
    box-shadow: var(--ns-shadow-lg);
    transform: translateY(-4px);
}

.ns-post-thumbnail {
    position: relative;
    overflow: hidden;
}

.ns-post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--ns-transition-slow);
}

.ns-post-card:hover .ns-post-thumbnail img {
    transform: scale(1.05);
}

.ns-post-content {
    padding: var(--ns-spacing-lg);
}

.ns-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ns-spacing-md);
    font-size: var(--ns-text-sm);
    color: var(--ns-gray-500);
    margin-bottom: var(--ns-spacing-sm);
}

.ns-post-title {
    font-size: var(--ns-text-xl);
    margin-bottom: var(--ns-spacing-sm);
}

.ns-post-title a {
    color: var(--ns-gray-900);
}

.ns-post-title a:hover {
    color: var(--ns-primary);
}

.ns-post-excerpt {
    color: var(--ns-gray-600);
    margin-bottom: var(--ns-spacing-md);
}

/* Single Post */
.ns-single-post {
    max-width: 800px;
    margin: 0 auto;
}

.ns-post-header {
    text-align: center;
    margin-bottom: var(--ns-spacing-2xl);
}

.ns-post-featured-image {
    border-radius: var(--ns-radius-xl);
    overflow: hidden;
    margin-bottom: var(--ns-spacing-2xl);
}

.ns-prose {
    font-size: var(--ns-text-lg);
    line-height: 1.8;
    color: var(--ns-gray-700);
}

.ns-prose h2 {
    margin-top: var(--ns-spacing-2xl);
    margin-bottom: var(--ns-spacing-md);
}

.ns-prose h3 {
    margin-top: var(--ns-spacing-xl);
    margin-bottom: var(--ns-spacing-sm);
}

.ns-prose p {
    margin-bottom: var(--ns-spacing-md);
}

.ns-prose ul,
.ns-prose ol {
    margin-bottom: var(--ns-spacing-md);
    padding-left: var(--ns-spacing-lg);
}

.ns-prose li {
    margin-bottom: var(--ns-spacing-xs);
}

.ns-prose blockquote {
    border-left: 4px solid var(--ns-primary);
    padding-left: var(--ns-spacing-lg);
    margin: var(--ns-spacing-xl) 0;
    font-style: italic;
    color: var(--ns-gray-600);
}

.ns-prose code {
    font-family: var(--ns-font-mono);
    font-size: 0.9em;
    background-color: var(--ns-gray-100);
    padding: 0.125rem 0.375rem;
    border-radius: var(--ns-radius-sm);
}

.ns-prose pre {
    background-color: var(--ns-gray-900);
    color: var(--ns-gray-100);
    padding: var(--ns-spacing-md);
    border-radius: var(--ns-radius-lg);
    overflow-x: auto;
    margin: var(--ns-spacing-xl) 0;
}

/* Entry Content - WordPress default content class */
.entry-content,
.prose,
.prose-lg {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--ns-gray-700);
}

.entry-content > *:first-child {
    margin-top: 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: var(--ns-gray-900);
    margin-top: 2em;
    margin-bottom: 0.75em;
}

.entry-content h1 { font-size: 2.25rem; }
.entry-content h2 { font-size: 1.875rem; }
.entry-content h3 { font-size: 1.5rem; }
.entry-content h4 { font-size: 1.25rem; }

.entry-content p {
    margin-bottom: 1.25em;
}

.entry-content a {
    color: var(--ns-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.entry-content a:hover {
    color: var(--ns-primary-dark);
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.25em;
    padding-left: 1.75rem;
}

.entry-content li {
    margin-bottom: 0.5em;
}

.entry-content ul {
    list-style-type: disc;
}

.entry-content ol {
    list-style-type: decimal;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--ns-radius-lg);
    margin: 1.5rem 0;
}

.entry-content blockquote {
    border-left: 4px solid var(--ns-primary);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--ns-gray-600);
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.entry-content th,
.entry-content td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--ns-gray-200);
    text-align: left;
}

.entry-content th {
    background-color: var(--ns-gray-50);
    font-weight: 600;
}

.entry-content code {
    font-family: var(--ns-font-mono);
    font-size: 0.9em;
    background-color: var(--ns-gray-100);
    padding: 0.2em 0.4em;
    border-radius: var(--ns-radius-sm);
}

.entry-content pre {
    background-color: var(--ns-gray-900);
    color: var(--ns-gray-100);
    padding: 1.25rem;
    border-radius: var(--ns-radius-lg);
    overflow-x: auto;
    margin: 1.5rem 0;
}

.entry-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* WordPress Block Styles */
.wp-block-cover {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px;
    padding: 2rem;
    background-position: center;
    background-size: cover;
}

.wp-block-cover__background {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.wp-block-cover__inner-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
    text-align: center;
}

.wp-block-cover h1,
.wp-block-cover h2,
.wp-block-cover h3,
.wp-block-cover p {
    color: white;
}

.wp-block-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.wp-block-button {
    display: inline-block;
}

.wp-block-button__link {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--ns-radius-lg);
    transition: all var(--ns-transition-fast);
    background-color: var(--ns-primary);
    color: white;
}

.wp-block-button__link:hover {
    background-color: var(--ns-primary-dark);
    color: white;
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background-color: transparent;
    border: 2px solid currentColor;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background-color: white;
    color: var(--ns-primary);
}

.wp-block-columns {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wp-block-columns {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.wp-block-column {
    padding: 1.5rem;
    background: var(--ns-gray-50);
    border-radius: var(--ns-radius-lg);
}

.wp-block-heading {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
}

.has-text-align-center {
    text-align: center;
}

.has-text-align-left {
    text-align: left;
}

.has-text-align-right {
    text-align: right;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.alignwide {
    width: calc(100% + 4rem);
    max-width: calc(100% + 4rem);
    margin-left: -2rem;
}

@media (min-width: 1024px) {
    .alignwide {
        width: calc(100% + 8rem);
        max-width: calc(100% + 8rem);
        margin-left: -4rem;
    }
}

.ns-prose pre code {
    background: none;
    padding: 0;
}

/* Author Box */
.ns-author-box {
    display: flex;
    gap: var(--ns-spacing-lg);
    background-color: var(--ns-gray-50);
    padding: var(--ns-spacing-lg);
    border-radius: var(--ns-radius-xl);
    margin-top: var(--ns-spacing-2xl);
}

.ns-author-avatar {
    flex-shrink: 0;
}

.ns-author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: var(--ns-radius-xl);
}

/* ==========================================================================
   Service Cards
   ========================================================================== */

.ns-service-card {
    background: var(--ns-white);
    border-radius: var(--ns-radius-xl);
    padding: 2rem;
    box-shadow: var(--ns-shadow);
    transition: all var(--ns-transition-normal);
    text-align: center;
    border: 1px solid var(--ns-gray-100);
}

.ns-service-card:hover {
    box-shadow: var(--ns-shadow-xl);
    transform: translateY(-8px);
    border-color: var(--ns-primary-light);
}

.ns-service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ns-primary-light), var(--ns-primary));
    border-radius: var(--ns-radius-xl);
    color: white;
}

.ns-service-icon svg {
    width: 32px;
    height: 32px;
}

.ns-service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ns-gray-900);
    margin-bottom: 0.75rem;
}

.ns-service-description {
    color: var(--ns-gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.ns-services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .ns-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ns-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   Portfolio Cards
   ========================================================================== */

.ns-portfolio-card {
    position: relative;
    border-radius: var(--ns-radius-xl);
    overflow: hidden;
    box-shadow: var(--ns-shadow);
    transition: all var(--ns-transition-normal);
}

.ns-portfolio-card:hover {
    box-shadow: var(--ns-shadow-xl);
    transform: translateY(-4px);
}

.ns-portfolio-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.ns-portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ns-transition-slow);
}

.ns-portfolio-card:hover .ns-portfolio-image img {
    transform: scale(1.08);
}

.ns-portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--ns-transition-normal);
}

.ns-portfolio-card:hover .ns-portfolio-overlay {
    opacity: 1;
}

.ns-portfolio-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.ns-portfolio-category {
    font-size: 0.875rem;
    color: var(--ns-primary-light);
}

.ns-portfolio-content {
    padding: 1.5rem;
    background: var(--ns-white);
}

.ns-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .ns-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ns-portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   Team Cards
   ========================================================================== */

.ns-team-card {
    background: var(--ns-white);
    border-radius: var(--ns-radius-xl);
    overflow: hidden;
    box-shadow: var(--ns-shadow);
    text-align: center;
    transition: all var(--ns-transition-normal);
}

.ns-team-card:hover {
    box-shadow: var(--ns-shadow-xl);
    transform: translateY(-4px);
}

.ns-team-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.ns-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ns-transition-slow);
}

.ns-team-card:hover .ns-team-image img {
    transform: scale(1.05);
}

.ns-team-content {
    padding: 1.5rem;
}

.ns-team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ns-gray-900);
    margin-bottom: 0.25rem;
}

.ns-team-position {
    font-size: 0.875rem;
    color: var(--ns-primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.ns-team-bio {
    color: var(--ns-gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ==========================================================================
   Testimonial Cards
   ========================================================================== */

.ns-testimonial-card {
    background: var(--ns-white);
    border-radius: var(--ns-radius-xl);
    padding: 2rem;
    box-shadow: var(--ns-shadow);
    position: relative;
}

.ns-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--ns-primary-light);
    opacity: 0.3;
    line-height: 1;
}

.ns-testimonial-content {
    font-size: 1.125rem;
    color: var(--ns-gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.ns-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ns-testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--ns-radius-full);
    overflow: hidden;
}

.ns-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ns-testimonial-name {
    font-weight: 700;
    color: var(--ns-gray-900);
}

.ns-testimonial-company {
    font-size: 0.875rem;
    color: var(--ns-gray-500);
}

.ns-testimonial-rating {
    display: flex;
    gap: 0.25rem;
    color: #f59e0b;
    margin-top: 0.5rem;
}

/* Related Posts */
.ns-related-posts {
    margin-top: var(--ns-spacing-3xl);
}

/* ==========================================================================
   Sidebar Styles
   ========================================================================== */

.ns-sidebar {
    position: sticky;
    top: 100px;
}

.ns-widget {
    background: var(--ns-white);
    border-radius: var(--ns-radius-xl);
    padding: var(--ns-spacing-lg);
    margin-bottom: var(--ns-spacing-lg);
    box-shadow: var(--ns-shadow);
}

.ns-widget-title {
    font-size: var(--ns-text-lg);
    margin-bottom: var(--ns-spacing-md);
    padding-bottom: var(--ns-spacing-sm);
    border-bottom: 2px solid var(--ns-primary);
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.ns-pagination {
    display: flex;
    justify-content: center;
    gap: var(--ns-spacing-sm);
    margin-top: var(--ns-spacing-2xl);
}

.ns-pagination a,
.ns-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--ns-spacing-sm);
    font-weight: 500;
    border: 1px solid var(--ns-gray-200);
    border-radius: var(--ns-radius-lg);
    transition: all var(--ns-transition-fast);
}

.ns-pagination a:hover {
    background-color: var(--ns-gray-100);
    border-color: var(--ns-gray-300);
}

.ns-pagination .current {
    background-color: var(--ns-primary);
    border-color: var(--ns-primary);
    color: var(--ns-white);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }

/* Flex Utilities */
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Aspect Ratio */
.aspect-video {
    aspect-ratio: 16 / 9;
}

.aspect-square {
    aspect-ratio: 1 / 1;
}

/* Object Fit */
.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

/* Line Clamp */
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   Animation Classes
   ========================================================================== */

.ns-fade-in {
    animation: nsFadeIn var(--ns-transition-normal) ease forwards;
}

.ns-slide-up {
    animation: nsSlideUp var(--ns-transition-normal) ease forwards;
}

.ns-scale-in {
    animation: nsScaleIn var(--ns-transition-normal) ease forwards;
}

@keyframes nsFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes nsSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nsScaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hover Animations */
.hover-lift {
    transition: transform var(--ns-transition-fast);
}

.hover-lift:hover {
    transform: translateY(-4px);
}

.hover-scale {
    transition: transform var(--ns-transition-fast);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* ==========================================================================
   Back to Top
   ========================================================================== */

.ns-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ns-primary);
    color: var(--ns-white);
    border: none;
    border-radius: var(--ns-radius-full);
    cursor: pointer;
    box-shadow: var(--ns-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--ns-transition-normal);
    z-index: var(--ns-z-fixed);
}

.ns-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ns-back-to-top:hover {
    background-color: var(--ns-primary-dark);
    transform: translateY(-2px);
}

/* ==========================================================================
   Scroll Progress
   ========================================================================== */

.ns-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background-color: var(--ns-primary);
    z-index: 9999;
    transition: width 50ms linear;
}

/* ==========================================================================
   Loading States
   ========================================================================== */

.ns-loading {
    position: relative;
    pointer-events: none;
}

.ns-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 2px solid var(--ns-gray-200);
    border-top-color: var(--ns-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Skeleton Loading */
.ns-skeleton {
    background: linear-gradient(90deg, var(--ns-gray-100) 25%, var(--ns-gray-200) 50%, var(--ns-gray-100) 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s infinite;
    border-radius: var(--ns-radius-md);
}

@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ==========================================================================
   Cookie Consent
   ========================================================================== */

.ns-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--ns-gray-900);
    color: var(--ns-white);
    padding: var(--ns-spacing-md) var(--ns-spacing-lg);
    transform: translateY(100%);
    transition: transform var(--ns-transition-normal);
    z-index: var(--ns-z-fixed);
}

.ns-cookie-consent.visible {
    transform: translateY(0);
}

.ns-cookie-consent-inner {
    display: flex;
    flex-direction: column;
    gap: var(--ns-spacing-md);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .ns-cookie-consent-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */

/* Hide on mobile */
@media (max-width: 639px) {
    .hide-mobile { display: none !important; }
}

/* Hide on tablet */
@media (min-width: 640px) and (max-width: 1023px) {
    .hide-tablet { display: none !important; }
}

/* Hide on desktop */
@media (min-width: 1024px) {
    .hide-desktop { display: none !important; }
}

/* Show on mobile only */
@media (min-width: 640px) {
    .show-mobile-only { display: none !important; }
}

/* Show on desktop only */
@media (max-width: 1023px) {
    .show-desktop-only { display: none !important; }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .ns-header,
    .ns-footer,
    .ns-sidebar,
    .ns-back-to-top,
    .ns-cookie-consent,
    .ns-share-buttons,
    .ns-navigation,
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    a[href]::after {
        content: " (" attr(href) ")";
    }
    
    .ns-container {
        max-width: 100%;
        padding: 0;
    }
}

/* ==========================================================================
   Tailwind Utility Fallbacks (in case CDN fails)
   ========================================================================== */

/* Flexbox */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.grid { display: grid; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

/* Gap */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

/* Spacing - Padding */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.pt-4 { padding-top: 1rem; }
.pb-4 { padding-bottom: 1rem; }

/* Spacing - Margin */
.m-0 { margin: 0; }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-auto { margin-left: auto; }

/* Width/Height */
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-full { width: 100%; }
.w-auto { width: auto; }

.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-auto { height: auto; }

.min-h-screen { min-height: 100vh; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

.leading-tight { line-height: 1.25; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }

.tracking-wide { letter-spacing: 0.025em; }

.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }

/* Colors */
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-gray-100 { color: #f1f5f9; }
.text-gray-200 { color: #e2e8f0; }
.text-gray-300 { color: #cbd5e1; }
.text-gray-400 { color: #94a3b8; }
.text-gray-500 { color: #64748b; }
.text-gray-600 { color: #475569; }
.text-gray-700 { color: #334155; }
.text-gray-800 { color: #1e293b; }
.text-gray-900 { color: #0f172a; }
.text-primary { color: var(--ns-primary); }
.text-primary-light { color: var(--ns-primary-light); }
.text-primary-dark { color: var(--ns-primary-dark); }
.text-blue-100 { color: #dbeafe; }
.text-blue-500 { color: #3b82f6; }
.text-blue-600 { color: #2563eb; }

.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-gray-50 { background-color: #f8fafc; }
.bg-gray-100 { background-color: #f1f5f9; }
.bg-gray-200 { background-color: #e2e8f0; }
.bg-gray-800 { background-color: #1e293b; }
.bg-gray-900 { background-color: #0f172a; }
.bg-primary { background-color: var(--ns-primary); }
.bg-primary-dark { background-color: var(--ns-primary-dark); }
.bg-accent { background-color: var(--ns-accent); }
.bg-transparent { background-color: transparent; }

/* Gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-primary { --tw-gradient-from: var(--ns-primary); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); }
.to-primary-dark { --tw-gradient-to: var(--ns-primary-dark); }

/* Borders */
.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }

.border-gray-100 { border-color: #f1f5f9; }
.border-gray-200 { border-color: #e2e8f0; }
.border-gray-300 { border-color: #cbd5e1; }
.border-white { border-color: #ffffff; }
.border-primary { border-color: var(--ns-primary); }
.border-transparent { border-color: transparent; }

.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Shadows */
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-none { box-shadow: none; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.-top-1 { top: -0.25rem; }
.-right-1 { right: -0.25rem; }

/* Z-Index */
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

/* Transitions */
.transition { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* Transform */
.transform { transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1)); }
.translate-y-full { --tw-translate-y: 100%; transform: translateY(100%); }

/* Hover states */
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-primary:hover { color: var(--ns-primary); }
.hover\:text-primary-light:hover { color: var(--ns-primary-light); }
.hover\:bg-primary:hover { background-color: var(--ns-primary); }
.hover\:bg-primary-dark:hover { background-color: var(--ns-primary-dark); }
.hover\:bg-white:hover { background-color: #ffffff; }
.hover\:bg-gray-100:hover { background-color: #f1f5f9; }
.hover\:bg-gray-900:hover { background-color: #0f172a; }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.hover\:scale-105:hover { transform: scale(1.05); }

/* Focus states */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--ns-primary-light); }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Visibility */
.invisible { visibility: hidden; }
.visible { visibility: visible; }

/* Screen reader only */
.sr-only, .ns-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Object fit */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* Cursor */
.cursor-pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }

/* Aspect ratio */
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-square { aspect-ratio: 1 / 1; }

/* List */
.list-none { list-style: none; }
.list-disc { list-style-type: disc; }

/* Invert filter for footer logo */
.brightness-0 { filter: brightness(0); }
.invert { filter: invert(1); }

/* Responsive breakpoints */
@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:text-lg { font-size: 1.125rem; }
}

@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:block { display: block; }
    .md\:inline-flex { display: inline-flex; }
    .md\:flex-row { flex-direction: row; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
    .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .md\:gap-8 { gap: 2rem; }
}

@media (min-width: 1024px) {
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
    .lg\:block { display: block; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:gap-8 { gap: 2rem; }
    .lg\:gap-12 { gap: 3rem; }
    .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

@media (min-width: 1280px) {
    .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .xl\:gap-16 { gap: 4rem; }
}

/* ==========================================================================
   Homepage Sections - CreativeON Style
   ========================================================================== */

/* Hero Section - Full Width with Gradient */
.ns-homepage-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    overflow: hidden;
}

.ns-homepage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230891b2' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.ns-homepage-hero .ns-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .ns-homepage-hero .ns-container {
        grid-template-columns: 1fr 1fr;
    }
}

.ns-hero-text {
    color: white;
}

.ns-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: #93c5fd;
    margin-bottom: 1.5rem;
}

.ns-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

@media (min-width: 768px) {
    .ns-hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .ns-hero-title {
        font-size: 4rem;
    }
}

.ns-hero-title span {
    background: linear-gradient(90deg, var(--ns-primary), var(--ns-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ns-hero-description {
    font-size: 1.125rem;
    color: var(--ns-text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .ns-hero-description {
        font-size: 1.25rem;
    }
}

.ns-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.ns-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ns-hero-btn-primary {
    background: linear-gradient(90deg, var(--ns-primary), var(--ns-primary-hover));
    color: white;
    box-shadow: 0 4px 15px rgba(var(--ns-primary-rgb), 0.4);
}

.ns-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--ns-primary-rgb), 0.5);
    color: white;
}

.ns-hero-btn-secondary {
    background: white;
    color: var(--ns-text-dark);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.ns-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.ns-hero-image {
    position: relative;
}

.ns-hero-image img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
}

.ns-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ns-hero-stat {
    text-align: center;
}

.ns-hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

@media (min-width: 768px) {
    .ns-hero-stat-number {
        font-size: 2.5rem;
    }
}

.ns-hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

/* Feature Icon Boxes */
.ns-features-section {
    padding: 5rem 0;
    background: var(--ns-gray-50);
}

.ns-features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .ns-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .ns-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .ns-features-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.ns-feature-box {
    background: white;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--ns-gray-100);
}

.ns-feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--ns-primary-light);
}

.ns-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 1rem;
}

.ns-feature-icon img,
.ns-feature-icon svg {
    width: 48px;
    height: 48px;
}

.ns-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ns-gray-900);
    margin-bottom: 0.5rem;
}

.ns-feature-description {
    font-size: 0.875rem;
    color: var(--ns-gray-600);
    line-height: 1.5;
}

/* Pricing/Service Cards */
.ns-pricing-section {
    padding: 5rem 0;
}

.ns-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.ns-section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ns-primary);
    margin-bottom: 0.75rem;
}

.ns-section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--ns-gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .ns-section-title {
        font-size: 2.75rem;
    }
}

.ns-section-description {
    font-size: 1.125rem;
    color: var(--ns-gray-600);
    line-height: 1.6;
}

.ns-pricing-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .ns-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ns-pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ns-pricing-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.ns-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ns-pricing-card.popular {
    border: 2px solid var(--ns-primary);
}

.ns-pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--ns-primary);
    color: white;
    padding: 0.25rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.ns-pricing-image {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--ns-gray-50), white);
}

.ns-pricing-image img {
    max-height: 120px;
    width: auto;
    margin: 0 auto;
}

.ns-pricing-content {
    padding: 1.5rem 2rem 2rem;
}

.ns-pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ns-gray-900);
    margin-bottom: 0.5rem;
}

.ns-pricing-tagline {
    font-size: 0.875rem;
    color: var(--ns-gray-500);
    margin-bottom: 1rem;
}

.ns-pricing-price-wrapper {
    margin-bottom: 1rem;
}

.ns-pricing-starting {
    font-size: 0.75rem;
    color: var(--ns-gray-500);
    text-transform: uppercase;
}

.ns-pricing-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ns-primary);
}

.ns-pricing-period {
    font-size: 0.875rem;
    color: var(--ns-gray-500);
}

.ns-pricing-description {
    font-size: 0.875rem;
    color: var(--ns-gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ns-pricing-btn {
    display: block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    text-align: center;
    background: var(--ns-primary);
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ns-pricing-btn:hover {
    background: var(--ns-primary-dark);
    color: white;
}

/* Client Logos Section */
.ns-clients-section {
    padding: 2rem 0;
    background: var(--ns-gray-50);
}

.ns-clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 3rem;
}

.ns-client-logo {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.ns-client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Two Column Section */
.ns-two-col-section {
    padding: 5rem 0;
}

.ns-two-col-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .ns-two-col-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.ns-two-col-content {
    max-width: 600px;
}

.ns-two-col-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ns-gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .ns-two-col-title {
        font-size: 2.5rem;
    }
}

.ns-two-col-description {
    font-size: 1.125rem;
    color: var(--ns-gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ns-two-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ns-two-col-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--ns-gray-700);
}

.ns-two-col-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: var(--ns-success);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 50%;
}

.ns-two-col-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.ns-testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
    color: var(--ns-text-dark);
}

.ns-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .ns-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ns-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ns-testimonial-card {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--ns-border);
    border-radius: 1rem;
    padding: 2rem;
}

.ns-testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.ns-testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: #fbbf24;
}

.ns-testimonial-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.ns-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ns-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.ns-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ns-testimonial-name {
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.ns-testimonial-role {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Partners Section */
.ns-partners-section {
    padding: 2rem 0;
}

.ns-partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 4rem;
}

.ns-partner-logo {
    max-height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.ns-partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA Section */
.ns-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--ns-primary) 0%, var(--ns-primary-dark) 100%);
    color: white;
    text-align: center;
}

.ns-cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

@media (min-width: 768px) {
    .ns-cta-title {
        font-size: 2.5rem;
    }
}

.ns-cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ns-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--ns-primary);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ns-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--ns-primary-dark);
}

/* Contact Info in Footer CTA */
.ns-cta-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.ns-cta-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.ns-cta-contact-item svg {
    width: 24px;
    height: 24px;
}

/* WordPress Block Enhancements for Homepage */
.front-page .wp-block-cover {
    min-height: 85vh !important;
}

.front-page .wp-block-cover__inner-container {
    max-width: 1200px;
}

.front-page .wp-block-group.has-background {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .front-page .wp-block-group.has-background {
        padding: 6rem 0;
    }
}

.front-page .wp-block-columns.is-layout-flex {
    gap: 2rem;
}

@media (min-width: 768px) {
    .front-page .wp-block-columns.is-layout-flex {
        gap: 3rem;
    }
}
/* ==========================================================================
   Corporate Header Styles (Nuwair Reference Design)
   ========================================================================== */

/* Corporate Top Bar */
.corporate-top-bar {
    background-color: #0f172a;
    color: white;
    font-size: 0.875rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid #1e293b;
}

.corporate-top-bar a {
    color: #cbd5e1;
    transition: color 0.2s ease;
}

.corporate-top-bar a:hover {
    color: #60a5fa;
}

/* Main Header - Corporate Style */
.ns-header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 50;
}

/* Welcome Bar Styles */
.welcome-bar {
    background: linear-gradient(to right, #eff6ff, #eef2ff);
    border-bottom: 1px solid #bfdbfe;
}

/* ==========================================================================
   Corporate Hero Section Styles
   ========================================================================== */

.corporate-hero {
    position: relative;
    background: linear-gradient(to bottom, #f5f7ff, white);
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
}

/* Hero Background Pattern */
.corporate-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSAxMCAwIEwgMTAgNjAgTSAwIDEwIEwgNjAgMTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzAwMDAwMCIgc3Ryb2tlLW9wYWNpdHk9IjAuMDIiIHN0cm9rZS13aWR0aD0iMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmlkKSIvPjwvc3ZnPg==");
    opacity: 0.4;
}

.corporate-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1rem 1.5rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .corporate-hero-content {
        padding: 3rem 2rem 2rem;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(var(--ns-primary-rgb), 0.1);
    border: 1px solid rgba(var(--ns-primary-rgb), 0.2);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.hero-badge svg {
    width: 1rem;
    height: 1rem;
    color: var(--ns-primary);
}

.hero-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ns-text-dark);
}

/* Hero Headlines */
.corporate-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--ns-text-dark);
}

.corporate-hero h1 .text-blue {
    color: var(--ns-primary);
}

@media (min-width: 768px) {
    .corporate-hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .corporate-hero h1 {
        font-size: 3.75rem;
    }
}

.corporate-hero .hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--ns-text-light);
    max-width: 42rem;
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    .corporate-hero .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* Hero CTA Button */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--ns-primary);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    box-shadow: 0 4px 14px 0 rgba(var(--ns-primary-rgb), 0.35);
    text-decoration: none;
    transition: all 0.2s ease;
}

.hero-cta-btn:hover {
    background: var(--ns-primary-hover);
    box-shadow: 0 6px 20px 0 rgba(var(--ns-primary-rgb), 0.45);
    color: white;
}

.hero-cta-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s ease;
}

.hero-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Hero Stats Bar */
.hero-stats-bar {
    width: 100%;
    max-width: 48rem;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding: 1rem;
}

@media (min-width: 640px) {
    .hero-stats-bar {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-stats-bar .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stats-bar .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.hero-stats-bar .stat-value.blue { color: var(--ns-primary); }
.hero-stats-bar .stat-value.purple { color: #7c3aed; }
.hero-stats-bar .stat-value.green { color: var(--ns-success); }
.hero-stats-bar .stat-value.orange { color: #ea580c; }

.hero-stats-bar .stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--ns-text-light);
    margin-top: 0.25rem;
}

/* ==========================================================================
   Services Section - Corporate Style
   ========================================================================== */

.services-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom right, white, rgba(var(--ns-primary-rgb), 0.03), rgba(var(--ns-secondary-rgb), 0.03));
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-section .section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--ns-text-dark);
    margin-bottom: 1rem;
}

.services-section .section-header p {
    font-size: 1.125rem;
    color: var(--ns-text-light);
    max-width: 36rem;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid var(--ns-border);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    border-color: rgba(var(--ns-primary-rgb), 0.3);
}

.service-card .service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-card .service-icon.blue { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.service-card .service-icon.purple { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.service-card .service-icon.orange { background: linear-gradient(135deg, #f97316, #ef4444); }
.service-card .service-icon.green { background: linear-gradient(135deg, #22c55e, #10b981); }

.service-card .service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
}

/* ==========================================================================
   Modern Glass Effects
   ========================================================================== */

.glass-card {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.glass-card-dark {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(17, 24, 39, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   Text Gradients
   ========================================================================== */

.text-gradient-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 50%, #0052cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   Modern Button Styles
   ========================================================================== */

.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-modern:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--ns-primary);
}

.btn-modern:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.btn-modern:active {
    transform: scale(0.95);
}

.btn-gradient-primary {
    background: linear-gradient(to right, var(--ns-primary), var(--ns-secondary));
    color: white;
    box-shadow: 0 10px 15px -3px rgba(var(--ns-primary-rgb), 0.25);
}

.btn-gradient-primary:hover {
    background: linear-gradient(to right, var(--ns-primary-hover), #7e22ce);
    box-shadow: 0 20px 25px -5px rgba(var(--ns-primary-rgb), 0.4);
    color: white;
}

/* ==========================================================================
   Domain Search Section
   ========================================================================== */

.domain-search-section {
    padding: 6rem 0;
    background: white;
    border-top: 1px solid var(--ns-border);
}

.domain-search-section h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--ns-text-dark);
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .domain-search-section h2 {
        font-size: 2.25rem;
    }
}

.domain-search-section .section-subtitle {
    font-size: 1.125rem;
    color: var(--ns-text-light);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Domain Search Form */
.domain-search-form {
    max-width: 36rem;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
    background: var(--ns-bg-light);
    padding: 0.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--ns-border);
}

.domain-search-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: none;
    background: transparent;
    outline: none;
}

.domain-search-form input::placeholder {
    color: #94a3b8;
}

.domain-search-form button {
    padding: 0.875rem 1.5rem;
    background: var(--ns-primary);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.domain-search-form button:hover {
    background: var(--ns-primary-hover);
}

/* TLD Cards */
.tld-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 56rem;
    margin: 2rem auto 0;
}

@media (min-width: 640px) {
    .tld-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.tld-card {
    background: white;
    border: 1px solid var(--ns-border);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.tld-card:hover {
    border-color: var(--ns-primary);
    box-shadow: 0 4px 12px rgba(var(--ns-primary-rgb), 0.1);
}

.tld-card .extension {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ns-text-dark);
}

.tld-card .price {
    font-size: 0.875rem;
    color: var(--ns-text-light);
    margin-top: 0.25rem;
}

/* TLD Icons Grid - Enhanced */
.tld-icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 72rem;
    margin: 3rem auto 0;
}

@media (min-width: 640px) {
    .tld-icons-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .tld-icons-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.tld-icon-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tld-icon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Color variants for TLD cards */
.tld-icon-card[data-color="blue"] { border-color: #3b82f6; }
.tld-icon-card[data-color="blue"]:hover { box-shadow: 0 12px 24px rgba(59, 130, 246, 0.2); }
.tld-icon-card[data-color="blue"] .tld-icon-wrapper { background: linear-gradient(135deg, #eff6ff, #dbeafe); color: #2563eb; }

.tld-icon-card[data-color="purple"] { border-color: #a855f7; }
.tld-icon-card[data-color="purple"]:hover { box-shadow: 0 12px 24px rgba(168, 85, 247, 0.2); }
.tld-icon-card[data-color="purple"] .tld-icon-wrapper { background: linear-gradient(135deg, #faf5ff, #f3e8ff); color: #9333ea; }

.tld-icon-card[data-color="green"] { border-color: #22c55e; }
.tld-icon-card[data-color="green"]:hover { box-shadow: 0 12px 24px rgba(34, 197, 94, 0.2); }
.tld-icon-card[data-color="green"] .tld-icon-wrapper { background: linear-gradient(135deg, #f0fdf4, #dcfce7); color: #16a34a; }

.tld-icon-card[data-color="red"] { border-color: #ef4444; }
.tld-icon-card[data-color="red"]:hover { box-shadow: 0 12px 24px rgba(239, 68, 68, 0.2); }
.tld-icon-card[data-color="red"] .tld-icon-wrapper { background: linear-gradient(135deg, #fef2f2, #fee2e2); color: #dc2626; }

.tld-icon-card[data-color="orange"] { border-color: #f97316; }
.tld-icon-card[data-color="orange"]:hover { box-shadow: 0 12px 24px rgba(249, 115, 22, 0.2); }
.tld-icon-card[data-color="orange"] .tld-icon-wrapper { background: linear-gradient(135deg, #fff7ed, #ffedd5); color: #ea580c; }

.tld-icon-card[data-color="cyan"] { border-color: #06b6d4; }
.tld-icon-card[data-color="cyan"]:hover { box-shadow: 0 12px 24px rgba(6, 182, 212, 0.2); }
.tld-icon-card[data-color="cyan"] .tld-icon-wrapper { background: linear-gradient(135deg, #ecfeff, #cffafe); color: #0891b2; }

.tld-icon-card[data-color="indigo"] { border-color: #6366f1; }
.tld-icon-card[data-color="indigo"]:hover { box-shadow: 0 12px 24px rgba(99, 102, 241, 0.2); }
.tld-icon-card[data-color="indigo"] .tld-icon-wrapper { background: linear-gradient(135deg, #eef2ff, #e0e7ff); color: #4f46e5; }

.tld-icon-card[data-color="teal"] { border-color: #14b8a6; }
.tld-icon-card[data-color="teal"]:hover { box-shadow: 0 12px 24px rgba(20, 184, 166, 0.2); }
.tld-icon-card[data-color="teal"] .tld-icon-wrapper { background: linear-gradient(135deg, #f0fdfa, #ccfbf1); color: #0d9488; }

.tld-icon-card[data-color="emerald"] { border-color: #10b981; }
.tld-icon-card[data-color="emerald"]:hover { box-shadow: 0 12px 24px rgba(16, 185, 129, 0.2); }
.tld-icon-card[data-color="emerald"] .tld-icon-wrapper { background: linear-gradient(135deg, #ecfdf5, #d1fae5); color: #059669; }

.tld-icon-card[data-color="pink"] { border-color: #ec4899; }
.tld-icon-card[data-color="pink"]:hover { box-shadow: 0 12px 24px rgba(236, 72, 153, 0.2); }
.tld-icon-card[data-color="pink"] .tld-icon-wrapper { background: linear-gradient(135deg, #fdf2f8, #fce7f3); color: #db2777; }

.tld-icon-wrapper {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #64748b;
    transition: transform 0.3s ease;
}

.tld-icon-card:hover .tld-icon-wrapper {
    transform: scale(1.1);
}

.tld-extension {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ns-text-dark);
    margin-bottom: 0.25rem;
}

.tld-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ns-text-light);
    margin-bottom: 1rem;
}

.tld-register-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--ns-primary), var(--ns-primary-hover));
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.tld-register-btn:hover {
    background: linear-gradient(135deg, var(--ns-primary-hover), var(--ns-secondary));
    transform: translateY(-1px);
}

.tld-popular-badge {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeInUp 0.5s ease-out forwards;
}

.animate-slide-down {
    animation: slideDown 0.3s ease-out forwards;
}

/* Animation Delays */
.animation-delay-100 { animation-delay: 0.1s; }
.animation-delay-200 { animation-delay: 0.2s; }
.animation-delay-300 { animation-delay: 0.3s; }
.animation-delay-400 { animation-delay: 0.4s; }

/* ==========================================================================
   Utility Classes (Tailwind-like)
   ========================================================================== */

/* Slate Colors */
.bg-slate-900 { background-color: #0f172a; }
.bg-slate-800 { background-color: #1e293b; }
.bg-slate-700 { background-color: #334155; }
.bg-slate-600 { background-color: #475569; }
.bg-slate-500 { background-color: #64748b; }
.bg-slate-400 { background-color: #94a3b8; }
.bg-slate-300 { background-color: #cbd5e1; }
.bg-slate-200 { background-color: #e2e8f0; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-slate-50 { background-color: #f8fafc; }

.text-slate-900 { color: #0f172a; }
.text-slate-800 { color: #1e293b; }
.text-slate-700 { color: #334155; }
.text-slate-600 { color: #475569; }
.text-slate-500 { color: #64748b; }
.text-slate-400 { color: #94a3b8; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-200 { color: #e2e8f0; }

.border-slate-800 { border-color: #1e293b; }
.border-slate-700 { border-color: #334155; }
.border-slate-600 { border-color: #475569; }
.border-slate-200 { border-color: #e2e8f0; }
.border-slate-100 { border-color: #f1f5f9; }

/* Blue Colors */
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-500 { background-color: #3b82f6; }
.bg-blue-400 { background-color: #60a5fa; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-blue-50 { background-color: #eff6ff; }

.text-blue-700 { color: #1d4ed8; }
.text-blue-600 { color: #2563eb; }
.text-blue-500 { color: #3b82f6; }
.text-blue-400 { color: #60a5fa; }

.border-blue-200 { border-color: #bfdbfe; }
.border-blue-100 { border-color: #dbeafe; }

/* Indigo Colors */
.bg-indigo-50 { background-color: #eef2ff; }
.text-indigo-600 { color: #4f46e5; }

/* Hover States */
.hover\:text-blue-400:hover { color: #60a5fa; }
.hover\:text-blue-600:hover { color: #2563eb; }
.hover\:text-blue-700:hover { color: #1d4ed8; }
.hover\:bg-blue-50:hover { background-color: #eff6ff; }
.hover\:bg-blue-100:hover { background-color: #dbeafe; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:bg-red-50:hover { background-color: #fef2f2; }
.hover\:text-red-600:hover { color: #dc2626; }

/* Spacing */
.space-x-1 > * + * { margin-left: 0.25rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }

/* Height */
.h-18 { height: 4.5rem; }

/* Padding */
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.px-1\.5 { padding-left: 0.375rem; padding-right: 0.375rem; }

/* Tracking */
.tracking-wide { letter-spacing: 0.025em; }

/* Transitions */
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

/* Group Hover */
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:opacity-80 { opacity: 0.8; }

/* ==========================================================================
   Homepage Sections (front-page.php)
   ========================================================================== */

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-icon svg {
    color: white;
}

.service-icon.blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.service-icon.green { background: linear-gradient(135deg, #10b981, #059669); }
.service-icon.purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.service-icon.orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.service-icon.pink { background: linear-gradient(135deg, #ec4899, #db2777); }
.service-icon.cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    font-weight: 500;
    margin-top: 1rem;
    transition: color 0.2s;
}

.service-link:hover {
    color: #1d4ed8;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8fafc, white);
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.services-section .section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* TLD Card Colors */
.tld-card[data-color="blue"] { border-color: #3b82f6; }
.tld-card[data-color="blue"] .extension { color: #3b82f6; }

.tld-card[data-color="green"] { border-color: #10b981; }
.tld-card[data-color="green"] .extension { color: #10b981; }

.tld-card[data-color="purple"] { border-color: #8b5cf6; }
.tld-card[data-color="purple"] .extension { color: #8b5cf6; }

.tld-card[data-color="orange"] { border-color: #f97316; }
.tld-card[data-color="orange"] .extension { color: #f97316; }

.tld-card[data-color="pink"] { border-color: #ec4899; }
.tld-card[data-color="pink"] .extension { color: #ec4899; }

.tld-card[data-color="cyan"] { border-color: #06b6d4; }
.tld-card[data-color="cyan"] .extension { color: #06b6d4; }

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section .contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-section .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Button Styles */
.ns-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.ns-btn-outline {
    background: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
}

.ns-btn-outline:hover {
    background: #3b82f6;
    color: white;
}

/* ==========================================================================
   Services Page Styles
   ========================================================================== */

.services-page-content {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.service-detail-card {
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-detail-card:hover::before {
    transform: scaleX(1);
}

.service-detail-card .line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-process-section .relative .hidden.md\:block {
    position: absolute;
    top: 50%;
    left: calc(50% + 2rem);
    width: calc(100% - 4rem);
    transform: translateY(-50%);
}

/* Technologies Section */
.technologies-section span {
    transition: all 0.2s ease;
}

/* CTA Section */
.services-cta-section {
    position: relative;
}

.services-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Why Choose Us Feature Icons */
.why-choose-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.why-choose-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

/* Pricing Section Enhancements */
.pricing-toggle {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem;
    background: #e2e8f0;
    border-radius: 9999px;
}

.pricing-toggle button {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pricing-toggle button.active {
    background: #3b82f6;
    color: white;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.pricing-card {
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border: 2px solid #8b5cf6;
    transform: scale(1.05);
}

.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    padding: 0.25rem 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg) translate(25%, -50%);
    transform-origin: top right;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .service-detail-card {
        margin-bottom: 1rem;
    }
    
    .technologies-section span {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   ENTERPRISE HERO SECTION - VIBRANT MODERN STYLE
   ========================================================================== */

.enterprise-hero {
    position: relative;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    overflow: hidden;
    min-height: 100vh;
}

.enterprise-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(6, 182, 212, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.15) 0%, transparent 60%);
    animation: heroGradientShift 15s ease-in-out infinite;
}

@keyframes heroGradientShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle 600px at 10% 90%, rgba(99, 102, 241, 0.4) 0%, transparent 50%),
        radial-gradient(circle 800px at 90% 10%, rgba(14, 165, 233, 0.35) 0%, transparent 50%),
        radial-gradient(circle 500px at 50% 50%, rgba(168, 85, 247, 0.2) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: floatOrb 20s infinite;
}

.hero-particles::before {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(6, 182, 212, 0.3));
}

.hero-particles::after {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.4), rgba(124, 58, 237, 0.3));
    animation-delay: -10s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -40px) rotate(90deg); }
    50% { transform: translate(-20px, 30px) rotate(180deg); }
    75% { transform: translate(40px, 20px) rotate(270deg); }
}

/* Animated Grid Lines */
.enterprise-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at center, black, transparent);
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    min-height: auto;
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr 1fr;
        padding: 2rem 0;
    }
}

.hero-text-content {
    color: #ffffff;
}

/* Animated Badge */
.hero-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(6, 182, 212, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.3); }
    50% { box-shadow: 0 0 40px rgba(124, 58, 237, 0.5), 0 0 60px rgba(6, 182, 212, 0.3); }
}

.live-indicator {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
    box-shadow: 0 0 10px #10b981;
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px #10b981; }
    50% { transform: scale(1.3); box-shadow: 0 0 20px #10b981, 0 0 30px #10b981; }
}

@keyframes animate-pulse-slow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.animate-pulse-slow {
    animation: animate-pulse-slow 3s infinite;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 9999px;
    color: #34d399;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

/* Hero Title with Animated Gradient */
.hero-main-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-main-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-main-title {
        font-size: 4.5rem;
    }
}

.title-line-1 {
    display: block;
    color: #ffffff;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.title-line-2,
.gradient-text {
    display: block;
    background: linear-gradient(135deg, #a855f7 0%, #06b6d4 40%, #ec4899 70%, #8b5cf6 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 6s ease infinite;
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.3));
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

/* CTA Buttons - Vibrant Style */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.25rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.4),
        0 10px 40px rgba(6, 182, 212, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #a855f7 0%, #22d3ee 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 0 30px rgba(139, 92, 246, 0.6),
        0 15px 50px rgba(6, 182, 212, 0.4);
    color: #ffffff;
}

.cta-primary:hover::before {
    opacity: 1;
}

.cta-primary span,
.cta-primary svg {
    position: relative;
    z-index: 1;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Trust Row */
.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-item svg {
    color: #34d399;
    filter: drop-shadow(0 0 8px rgba(52, 211, 153, 0.5));
}

/* Stats Dashboard - Glassmorphism Style */
.hero-visual-content {
    position: relative;
    perspective: 1000px;
}

.stats-dashboard {
    position: relative;
    transform: rotateY(-5deg) rotateX(5deg);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.stats-dashboard:hover {
    transform: rotateY(0) rotateX(0);
}

.dashboard-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dashboard-card .card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #34d399);
    animation: statusPulse 2s infinite;
}

.status-dot.online {
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.6);
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(52, 211, 153, 0.4); }
    50% { box-shadow: 0 0 25px rgba(52, 211, 153, 0.8); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    text-align: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.1));
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-box .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Floating Cards - Neon Glow Style */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.floating-card.card-tl {
    top: -1rem;
    left: -2rem;
    animation: floatCardTL 6s ease-in-out infinite;
}

.floating-card.card-tr {
    top: 2rem;
    right: -1rem;
    animation: floatCardTR 6s ease-in-out infinite;
    animation-delay: -2s;
}

.floating-card.card-br {
    bottom: 2rem;
    right: 0;
    animation: floatCardBR 6s ease-in-out infinite;
    animation-delay: -4s;
}

@keyframes floatCardTL {
    0%, 100% { transform: translate(0, 0) rotate(-2deg); }
    50% { transform: translate(10px, -15px) rotate(0deg); }
}

@keyframes floatCardTR {
    0%, 100% { transform: translate(0, 0) rotate(2deg); }
    50% { transform: translate(-10px, -12px) rotate(0deg); }
}

@keyframes floatCardBR {
    0%, 100% { transform: translate(0, 0) rotate(1deg); }
    50% { transform: translate(-8px, -10px) rotate(-1deg); }
}

@media (max-width: 1023px) {
    .floating-card {
        display: none;
    }
    
    .stats-dashboard {
        transform: none;
    }
}

.card-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
}

.card-icon.bg-green-100 {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(16, 185, 129, 0.1));
}

.card-icon.text-green-600 {
    color: #34d399;
    filter: drop-shadow(0 0 8px rgba(52, 211, 153, 0.5));
}

.card-icon.bg-blue-100 {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(59, 130, 246, 0.1));
}

.card-icon.text-blue-600 {
    color: #60a5fa;
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.5));
}

.floating-card .card-text {
    display: flex;
    flex-direction: column;
}

.floating-card .card-text strong {
    font-size: 0.875rem;
    color: #ffffff;
}

.floating-card .card-text span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.animate-float {
    animation: floatCard 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ==========================================================================
   HERO TRANSITION STYLES
   ========================================================================== */

/* Gradient Flow (Default) - Already applied in base styles */
.hero-transition-gradient-flow .hero-gradient {
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(1.1) rotate(3deg); }
}

/* Particle Float - Enhanced floating orbs */
.hero-transition-particle-float .hero-particles::before,
.hero-transition-particle-float .hero-particles::after {
    animation: particleOrbit 25s linear infinite;
}

.hero-transition-particle-float .hero-particles::after {
    animation-delay: -12.5s;
    animation-direction: reverse;
}

@keyframes particleOrbit {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(50px, -80px) rotate(90deg) scale(1.2); }
    50% { transform: translate(0, -50px) rotate(180deg) scale(0.9); }
    75% { transform: translate(-50px, -20px) rotate(270deg) scale(1.1); }
    100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}

/* Wave Motion - Smooth wave animation */
.hero-transition-wave-motion .hero-bg-animation {
    overflow: hidden;
}

.hero-transition-wave-motion .hero-gradient {
    animation: waveMotion 8s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes waveMotion {
    0%, 100% { transform: translateY(0) scaleY(1); }
    25% { transform: translateY(-20px) scaleY(1.05); }
    50% { transform: translateY(0) scaleY(0.95); }
    75% { transform: translateY(20px) scaleY(1.02); }
}

.hero-transition-wave-motion::after {
    background-image: none !important;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(255, 255, 255, 0.02) 60px,
            rgba(255, 255, 255, 0.02) 61px
        );
    animation: waveLines 3s linear infinite;
}

@keyframes waveLines {
    0% { transform: translateY(0); }
    100% { transform: translateY(60px); }
}

/* Aurora Lights - Northern lights effect */
.hero-transition-aurora-lights .hero-gradient {
    background: 
        linear-gradient(45deg, rgba(124, 58, 237, 0) 20%, rgba(124, 58, 237, 0.5) 50%, rgba(124, 58, 237, 0) 80%),
        linear-gradient(-45deg, rgba(6, 182, 212, 0) 20%, rgba(6, 182, 212, 0.4) 50%, rgba(6, 182, 212, 0) 80%),
        linear-gradient(90deg, rgba(236, 72, 153, 0) 20%, rgba(236, 72, 153, 0.3) 50%, rgba(236, 72, 153, 0) 80%);
    animation: auroraShift 12s ease-in-out infinite;
    filter: blur(80px);
}

@keyframes auroraShift {
    0%, 100% { 
        transform: translateX(-30%) translateY(-20%) rotate(-5deg);
        opacity: 0.6;
    }
    33% { 
        transform: translateX(30%) translateY(10%) rotate(5deg);
        opacity: 0.9;
    }
    66% { 
        transform: translateX(-10%) translateY(-10%) rotate(0deg);
        opacity: 0.7;
    }
}

.hero-transition-aurora-lights .hero-particles::before,
.hero-transition-aurora-lights .hero-particles::after {
    filter: blur(100px);
    animation: auroraOrb 20s ease-in-out infinite;
}

@keyframes auroraOrb {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(100px, -100px) scale(1.5); opacity: 0.8; }
}

/* Geometric Pulse - Pulsing geometric shapes */
.hero-transition-geometric-pulse::after {
    background-image: none !important;
    background: transparent;
}

.hero-transition-geometric-pulse .hero-pattern {
    background: none;
}

.hero-transition-geometric-pulse .hero-pattern::before,
.hero-transition-geometric-pulse .hero-pattern::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: geometricPulse 4s ease-in-out infinite;
}

.hero-transition-geometric-pulse .hero-pattern::before {
    width: 400px;
    height: 400px;
    top: 20%;
    left: 10%;
}

.hero-transition-geometric-pulse .hero-pattern::after {
    width: 300px;
    height: 300px;
    bottom: 20%;
    right: 10%;
    animation-delay: -2s;
}

@keyframes geometricPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

/* Minimal Fade - Clean, simple fade in/out */
.hero-transition-minimal-fade .hero-gradient,
.hero-transition-minimal-fade .hero-particles,
.hero-transition-minimal-fade .hero-pattern {
    animation: minimalFade 6s ease-in-out infinite;
}

.hero-transition-minimal-fade::before,
.hero-transition-minimal-fade::after {
    animation: none !important;
    opacity: 0.5;
}

@keyframes minimalFade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ==========================================================================
   HERO BACKGROUND STYLES
   ========================================================================== */

/* Dark Vibrant (Default) - Purple/Blue */
.hero-bg-dark-vibrant {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}

.hero-bg-dark-vibrant::before {
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(6, 182, 212, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.15) 0%, transparent 60%);
}

/* Dark Emerald - Green/Teal */
.hero-bg-dark-emerald {
    background: linear-gradient(135deg, #022c22 0%, #064e3b 50%, #0f3a2c 100%);
}

.hero-bg-dark-emerald::before {
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(16, 185, 129, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(6, 182, 212, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(52, 211, 153, 0.15) 0%, transparent 60%);
}

.hero-bg-dark-emerald .gradient-text {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 40%, #34d399 70%, #10b981 100%) !important;
    background-size: 300% 300%;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Dark Sunset - Orange/Pink */
.hero-bg-dark-sunset {
    background: linear-gradient(135deg, #1a0a0a 0%, #4a1942 50%, #2d1b1b 100%);
}

.hero-bg-dark-sunset::before {
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(249, 115, 22, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(244, 63, 94, 0.2) 0%, transparent 60%);
}

.hero-bg-dark-sunset .gradient-text {
    background: linear-gradient(135deg, #f97316 0%, #ec4899 40%, #f43f5e 70%, #f97316 100%) !important;
    background-size: 300% 300%;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Dark Ocean - Blue/Cyan */
.hero-bg-dark-ocean {
    background: linear-gradient(135deg, #0a192f 0%, #0f3460 50%, #16213e 100%);
}

.hero-bg-dark-ocean::before {
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(6, 182, 212, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(14, 165, 233, 0.2) 0%, transparent 60%);
}

.hero-bg-dark-ocean .gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 40%, #0ea5e9 70%, #3b82f6 100%) !important;
    background-size: 300% 300%;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Light Gradient - Clean light theme */
.hero-bg-light-gradient {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
}

.hero-bg-light-gradient::before {
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(8, 145, 178, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(30, 64, 175, 0.05) 0%, transparent 60%);
}

.hero-bg-light-gradient::after {
    background-image: 
        linear-gradient(rgba(8, 145, 178, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 145, 178, 0.03) 1px, transparent 1px) !important;
}

.hero-bg-light-gradient .hero-text-content {
    color: #1e293b;
}

.hero-bg-light-gradient .title-line-1 {
    color: #1e293b;
}

.hero-bg-light-gradient .hero-description {
    color: #64748b;
}

.hero-bg-light-gradient .hero-urgency-badge {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(6, 182, 212, 0.1));
    border-color: rgba(8, 145, 178, 0.2);
    color: #0891b2;
}

.hero-bg-light-gradient .cta-secondary {
    background: rgba(30, 64, 175, 0.05);
    color: #1e40af;
    border-color: rgba(30, 64, 175, 0.2);
}

.hero-bg-light-gradient .trust-item {
    color: #64748b;
}

.hero-bg-light-gradient .dashboard-card {
    background: white;
    border-color: #e2e8f0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.hero-bg-light-gradient .dashboard-card .card-header {
    color: #64748b;
}

.hero-bg-light-gradient .stat-box {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.hero-bg-light-gradient .stat-number {
    background: linear-gradient(135deg, #0891b2, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-bg-light-gradient .stat-box .stat-label {
    color: #64748b;
}

.hero-bg-light-gradient .floating-card {
    background: white;
    border-color: #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero-bg-light-gradient .floating-card .card-text strong {
    color: #1e293b;
}

.hero-bg-light-gradient .floating-card .card-text span {
    color: #64748b;
}

.hero-bg-light-gradient .scroll-indicator {
    color: #64748b;
}

/* ==========================================================================
   HERO ANIMATION SPEED VARIANTS
   ========================================================================== */

/* Slow Speed */
.hero-speed-slow .hero-gradient,
.hero-speed-slow .hero-particles::before,
.hero-speed-slow .hero-particles::after,
.hero-speed-slow .floating-card {
    animation-duration: 30s !important;
}

.hero-speed-slow .gradient-text {
    animation-duration: 12s !important;
}

.hero-speed-slow .live-indicator {
    animation-duration: 3s !important;
}

/* Normal Speed (Default) */
.hero-speed-normal .hero-gradient,
.hero-speed-normal .hero-particles::before,
.hero-speed-normal .hero-particles::after {
    animation-duration: 20s;
}

/* Fast Speed */
.hero-speed-fast .hero-gradient,
.hero-speed-fast .hero-particles::before,
.hero-speed-fast .hero-particles::after,
.hero-speed-fast .floating-card {
    animation-duration: 10s !important;
}

.hero-speed-fast .gradient-text {
    animation-duration: 3s !important;
}

.hero-speed-fast .live-indicator {
    animation-duration: 0.8s !important;
}

/* ==========================================================================
   TRUSTED BY / CLIENT LOGOS SECTION - VIBRANT STYLE
   ========================================================================== */

.trusted-by-section {
    padding: 1.5rem 0;
    background: linear-gradient(180deg, #24243e 0%, #1a1a2e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
}

.trusted-by-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
}

.trusted-header {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.trusted-header span {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.logo-carousel {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-item {
    flex-shrink: 0;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.logo-item:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.1));
    border-color: rgba(139, 92, 246, 0.3);
    color: #ffffff;
}

/* ==========================================================================
   DOMAIN SECTION - SALES OPTIMIZED
   ========================================================================== */

.domain-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--ns-bg-light) 100%);
    position: relative;
}

.domain-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.sale-badge-wrapper {
    margin-bottom: 1rem;
}

.flash-sale-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--ns-primary), var(--ns-accent));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 0.375rem;
    animation: none;
}

@keyframes pulse-scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.section-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ns-text-dark);
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .section-main-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--ns-text-light);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

/* Countdown Timer */
.sale-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #0f172a;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    min-width: 60px;
}

.time-unit span {
    font-size: 1.5rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.time-unit label {
    font-size: 0.625rem;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 0.05em;
}

.time-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

/* Domain Search Form Enhanced */
.domain-search-wrapper {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.domain-search-form-enhanced {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.search-input-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.input-icon {
    display: none;
}

@media (min-width: 768px) {
    .input-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 1.25rem;
        color: #94a3b8;
    }
}

.domain-input {
    flex: 1;
    min-width: 200px;
    padding: 1.25rem;
    border: none;
    font-size: 1.125rem;
    outline: none;
}

.domain-input:focus {
    background: #f8fafc;
}

/* Home Domain Search Input Fix */
.domain-input-field {
    flex: 1;
    min-width: 0;
    width: 100%;
    padding: 0.5rem;
    border: none !important;
    font-size: 1.125rem;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    pointer-events: auto !important;
    cursor: text !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.domain-input-field:focus {
    outline: none !important;
    box-shadow: none !important;
}

.domain-input-field::placeholder {
    color: #94a3b8;
}

.tld-selector {
    padding: 0 0.5rem;
}

.tld-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--ns-border);
    border-radius: 0.5rem;
    font-weight: 600;
    color: var(--ns-text-dark);
    background: white;
    cursor: pointer;
}

.search-submit-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--ns-primary), var(--ns-primary-hover));
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

@media (min-width: 768px) {
    .search-submit-btn {
        width: auto;
    }
}

.search-submit-btn:hover {
    background: linear-gradient(135deg, var(--ns-primary-hover), var(--ns-primary));
}

.search-suggestions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--ns-text-light);
}

.search-suggestions a {
    color: var(--ns-primary);
    text-decoration: none;
    font-weight: 500;
}

.search-suggestions a:hover {
    text-decoration: underline;
}

/* TLD Cards Enhanced */
.tld-showcase {
    margin-bottom: 3rem;
}

.tld-icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .tld-icons-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .tld-icons-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tld-card-enhanced {
    position: relative;
    background: white;
    border: 2px solid var(--ns-border);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.tld-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tld-card-enhanced.is-popular {
    border-color: var(--ns-primary);
}

.popular-ribbon {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: linear-gradient(135deg, var(--ns-primary), var(--ns-primary-hover));
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 2.5rem;
    transform: rotate(45deg);
    letter-spacing: 0.05em;
}

.savings-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: linear-gradient(135deg, var(--ns-success), #059669);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
}

.tld-icon-wrapper {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ns-bg-light), var(--ns-border));
    color: var(--ns-text-light);
    transition: all 0.3s ease;
}

.tld-card-enhanced:hover .tld-icon-wrapper {
    transform: scale(1.1);
}

.tld-extension {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ns-text-dark);
    margin-bottom: 0.5rem;
}

.tld-pricing {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ns-text-dark);
}

.original-price {
    font-size: 0.875rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.price-period {
    font-size: 0.75rem;
    color: var(--ns-text-light);
}

.tld-cta-btn {
    display: block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--ns-primary), var(--ns-primary-hover));
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tld-cta-btn:hover {
    background: linear-gradient(135deg, var(--ns-primary-hover), var(--ns-accent));
    transform: translateY(-1px);
}

/* Domain Features Bar */
.domain-features-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--ns-bg-light);
    border-radius: 1rem;
}

.domain-features-bar .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ns-text-dark);
}

/* ==========================================================================
   ENTERPRISE PRICING SECTION (HOSTING) - CLEAN WHITE DESIGN
   ========================================================================== */

.pricing-section-enterprise {
    padding: 3rem 0 4rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.pricing-section-enterprise::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    pointer-events: none;
}

.pricing-section-enterprise::after {
    display: none;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.pricing-section-enterprise .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.pricing-section-enterprise .pricing-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .pricing-section-enterprise .pricing-title {
        font-size: 2.5rem;
    }
}

.pricing-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: #f0fdf4;
    color: #16a34a;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 9999px;
    margin-bottom: 2rem;
}

.pricing-section-enterprise .pricing-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Pricing Toggle - Clean Style */
.pricing-toggle-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #f1f5f9;
    padding: 0.375rem;
    border-radius: 9999px;
}

.pricing-section-enterprise .toggle-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pricing-section-enterprise .toggle-label.active {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pricing-toggle-switch {
    position: relative;
    width: 48px;
    height: 24px;
    background: #e2e8f0;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-toggle-switch:hover {
    background: #cbd5e1;
}

.pricing-toggle-switch[data-active="annual"] {
    background: var(--ns-primary);
}

.toggle-handle {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.savings-pill {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: #16a34a;
    color: white;
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 9999px;
}

/* Pricing Cards Wrapper - Grid Layout */
.pricing-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .pricing-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .pricing-cards-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        align-items: stretch;
    }
}

/* When 4 cards - show all 4 in one row on desktop */
.pricing-cards-wrapper.has-4-cards {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
    .pricing-cards-wrapper.has-4-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-cards-wrapper.has-4-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        max-width: 1400px;
    }
}

/* Base Pricing Card - Clean White Design */
.pricing-card {
    background: #ffffff;
    border-radius: 0.75rem;
    border: 2px solid #e2e8f0;
    transition: all 0.2s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card::before {
    display: none;
}

.pricing-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Featured/Popular Card - Blue Border */
.pricing-card.is-featured {
    background: #ffffff;
    border: 2px solid #2563eb;
    box-shadow: 0 10px 40px -10px rgba(37, 99, 235, 0.3);
    transform: scale(1);
    z-index: 10;
}

.pricing-card.is-featured::after {
    display: none;
}

.pricing-card.is-featured:hover {
    box-shadow: 0 15px 50px -10px rgba(37, 99, 235, 0.4);
    transform: translateY(-4px);
}

@media (min-width: 1024px) {
    .pricing-card.is-featured {
        transform: scale(1);
    }
    
    .pricing-card.is-featured:hover {
        transform: translateY(-4px);
    }
    
    /* Same scale for 4-card layout */
    .pricing-cards-wrapper.has-4-cards .pricing-card.is-featured {
        transform: scale(1);
    }
    
    .pricing-cards-wrapper.has-4-cards .pricing-card.is-featured:hover {
        transform: translateY(-4px);
    }
}

/* Featured Banner - Blue Style */
.featured-banner {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    background: #2563eb;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-bottom-left-radius: 0.5rem;
}

.pricing-card:not(.is-featured) .featured-banner {
    background: #f59e0b;
    color: white;
}

.card-inner {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .pricing-cards-wrapper.has-4-cards .card-inner {
        padding: 1.5rem;
    }
}

.pricing-card .card-header {
    text-align: left;
    margin-bottom: 1rem;
}

.package-icon {
    display: none;
}

.pricing-card.is-featured .package-icon {
    display: none;
}

.package-info {
    flex: 1;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.pricing-card.is-featured .package-name {
    color: #0f172a;
}

.package-tagline {
    display: none;
}

.pricing-card.is-featured .package-tagline {
    display: none;
}

/* Pricing Display - Clean Style */
.pricing-display {
    text-align: left;
    padding: 0;
    margin-bottom: 1.5rem;
    background: transparent;
    border-radius: 0;
    border: none;
}

.pricing-card.is-featured .pricing-display {
    background: transparent;
    border: none;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 0;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    align-self: flex-start;
    margin-top: 0.25rem;
}

.pricing-card.is-featured .currency {
    color: #0f172a;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #0f172a;
    background-clip: unset;
    line-height: 1;
    letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
    .pricing-cards-wrapper.has-4-cards .amount {
        font-size: 2.25rem;
    }
}

.pricing-card.is-featured .amount {
    color: #0f172a;
    background: none;
    -webkit-text-fill-color: #0f172a;
}

.period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
    margin-left: 0.25rem;
}

.pricing-card.is-featured .period {
    color: #64748b;
}

.price-note {
    display: none;
}

.pricing-card.is-featured .price-note {
    display: none;
}

/* CTA Button - Clean Blue Style */
.pricing-cta-btn {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: #2563eb;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    margin-top: auto;
    border: none;
    cursor: pointer;
}

.pricing-cta-btn::before {
    display: none;
}

.pricing-cta-btn:hover::before {
    display: none;
}

.pricing-cta-btn:hover {
    background: #1d4ed8;
    transform: none;
    box-shadow: none;
}

.pricing-card.is-featured .pricing-cta-btn {
    background: #2563eb;
    color: white;
    box-shadow: none;
}

.pricing-card.is-featured .pricing-cta-btn:hover {
    background: #1d4ed8;
    color: white;
    box-shadow: none;
}

/* Add to Cart Button States */
.pricing-cta-btn.add-service-to-cart {
    cursor: pointer;
    border: none;
    position: relative;
}

.pricing-cta-btn.add-service-to-cart:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.pricing-cta-btn .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-cta-btn .btn-loading svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.pricing-cta-btn.added {
    background: #16a34a !important;
    color: white !important;
    box-shadow: none !important;
}

.pricing-cta-btn.added:hover {
    background: #15803d !important;
}

.pricing-card.is-featured .pricing-cta-btn.added {
    background: #16a34a !important;
    color: white !important;
}

/* Features Section - Clean White Theme */
.features-divider {
    display: none;
}

.features-divider::before,
.features-divider::after {
    display: none;
}

.pricing-card.is-featured .features-divider::before,
.pricing-card.is-featured .features-divider::after {
    display: none;
}

.features-divider span {
    display: none;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.pricing-card.is-featured .features-divider span {
    color: rgba(255, 255, 255, 0.6);
}

.features-list {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    flex: 1;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.375rem 0;
    font-size: 0.875rem;
    color: #334155;
    line-height: 1.5;
}

.pricing-card.is-featured .features-list li {
    color: #334155;
}

.features-list li svg,
.features-list li i {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: #2563eb !important;
    margin-top: 0.125rem;
}

.pricing-card.is-featured .features-list li svg,
.pricing-card.is-featured .features-list li i {
    color: #2563eb !important;
}

.features-list li span {
    flex: 1;
}

/* Trust Features Grid - Clean White Style */
.pricing-trust-section {
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .trust-features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.trust-feature {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.trust-feature:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.trust-feature .feature-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 0.5rem;
}

.trust-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.trust-feature p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
}

/* Payment Methods - Clean White Style */
.payment-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
}

.payment-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.payment-icon {
    padding: 0.5rem 1rem;
    background: #ffffff;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.payment-icon:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   ENTERPRISE SERVICES SECTION - LIGHT CORPORATE
   ========================================================================== */

.services-section-enterprise {
    padding: 2rem 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--ns-bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.services-section-enterprise::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230891b2' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.services-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.services-header .header-badge {
    background: rgba(var(--ns-primary-rgb), 0.1);
    color: var(--ns-primary);
    border: 1px solid rgba(var(--ns-primary-rgb), 0.2);
}

.services-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ns-text-dark);
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .services-title {
        font-size: 3rem;
    }
}

.services-subtitle {
    font-size: 1.125rem;
    color: var(--ns-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-showcase-card {
    position: relative;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid var(--ns-border);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-showcase-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--ns-primary-rgb), 0.4);
    box-shadow: 0 25px 50px rgba(var(--ns-primary-rgb), 0.1);
}

.service-card-inner {
    padding: 2rem;
}

.service-icon-wrapper {
    position: relative;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--ns-primary-rgb), 0.1), rgba(var(--ns-accent-rgb), 0.1));
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--ns-primary);
}

.service-icon-wrapper.blue { background: linear-gradient(135deg, rgba(var(--ns-primary-rgb), 0.1), rgba(var(--ns-accent-rgb), 0.1)); color: var(--ns-primary); }
.service-icon-wrapper.purple { background: linear-gradient(135deg, rgba(var(--ns-secondary-rgb), 0.1), rgba(99, 102, 241, 0.1)); color: var(--ns-secondary); }
.service-icon-wrapper.green { background: linear-gradient(135deg, rgba(var(--ns-success-rgb), 0.1), rgba(16, 185, 129, 0.1)); color: var(--ns-success); }
.service-icon-wrapper.orange { background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1)); color: #d97706; }
.service-icon-wrapper.pink { background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(219, 39, 119, 0.1)); color: #db2777; }
.service-icon-wrapper.cyan { background: linear-gradient(135deg, rgba(var(--ns-accent-rgb), 0.1), rgba(34, 211, 238, 0.1)); color: var(--ns-accent); }

.icon-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, currentColor 0%, transparent 70%);
    opacity: 0.1;
    animation: pulse 4s infinite;
}

.service-content .service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ns-text-dark);
    margin-bottom: 0.75rem;
}

.service-content .service-description {
    font-size: 0.9375rem;
    color: var(--ns-text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.from-label {
    font-size: 0.75rem;
    color: var(--ns-text-light);
}

.price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ns-primary);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ns-primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-cta:hover {
    color: var(--ns-primary-hover);
    gap: 0.75rem;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.service-showcase-card:hover .card-shine {
    left: 100%;
}

.services-footer {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--ns-primary), var(--ns-primary-hover));
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--ns-primary-rgb), 0.25);
}

.view-all-btn:hover {
    background: linear-gradient(135deg, var(--ns-primary-hover), var(--ns-primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--ns-primary-rgb), 0.35);
}

/* ==========================================================================
   WHY CHOOSE US - ENTERPRISE
   ========================================================================== */

.why-choose-enterprise {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--ns-bg-light) 0%, #ffffff 50%, var(--ns-bg-light) 100%);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-choose-content {
        grid-template-columns: 1fr 1.2fr;
    }
}

.content-left .header-badge {
    display: inline-block;
    background: rgba(var(--ns-primary-rgb), 0.1);
    color: var(--ns-primary);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    border: 1px solid rgba(var(--ns-primary-rgb), 0.2);
}

.content-left .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ns-text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.content-left .section-description {
    font-size: 1.125rem;
    color: var(--ns-text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.mini-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.mini-stat {
    text-align: center;
}

.mini-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ns-primary);
}

.mini-stat .stat-label {
    font-size: 0.875rem;
    color: var(--ns-text-light);
}

.consult-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--ns-primary), var(--ns-primary-hover));
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--ns-primary-rgb), 0.25);
}

.consult-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--ns-primary-rgb), 0.35);
    background: linear-gradient(135deg, var(--ns-primary-hover), var(--ns-primary));
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card-modern {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-modern {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #0f766e, #0891b2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
}

.feature-card-modern .feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ns-text-dark);
    margin-bottom: 0.5rem;
}

.feature-card-modern .feature-desc {
    font-size: 0.875rem;
    color: var(--ns-text-light);
    line-height: 1.5;
}

/* ==========================================================================
   SOCIAL PROOF / TESTIMONIALS SECTION
   ========================================================================== */

.social-proof-section {
    padding: 2rem 0;
    background: #ffffff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.testimonials-header .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(var(--ns-primary-rgb), 0.1);
    color: var(--ns-primary);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(var(--ns-primary-rgb), 0.2);
}

.testimonials-header .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ns-text-dark);
    margin-bottom: 0.75rem;
}

.testimonials-header .section-subtitle {
    font-size: 1.125rem;
    color: var(--ns-text-light);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.trust-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.score-stars {
    display: flex;
    gap: 0.25rem;
}

.score-text {
    font-size: 1rem;
    color: var(--ns-text-light);
}

.testimonials-showcase {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card-modern {
    position: relative;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.testimonial-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #e2e8f0;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-content {
    font-size: 1rem;
    color: #334155;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f766e, #0891b2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info .author-name {
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.author-info .author-role {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

/* Testimonials Slider */
.testimonials-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 100%;
}

.testimonials-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .testimonial-slide {
        flex: 0 0 50%;
    }
}

@media (min-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 33.333%;
    }
}

.slider-nav {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
    z-index: 10;
}

.slider-nav:hover {
    background: var(--ns-primary);
    border-color: var(--ns-primary);
    color: #ffffff;
    transform: scale(1.1);
}

.slider-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--ns-primary);
    transform: scale(1.2);
}

/* ==========================================================================
   FINAL CTA SECTION - LIGHT CORPORATE
   ========================================================================== */

.final-cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #ecfeff 100%);
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230891b2' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    text-align: center;
    color: var(--ns-text-dark);
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(var(--ns-primary-rgb), 0.1);
    border: 1px solid rgba(var(--ns-primary-rgb), 0.2);
    color: var(--ns-primary);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--ns-text-dark);
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3.5rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    color: var(--ns-text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-urgency {
    margin-bottom: 2rem;
}

.urgency-stats {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 2rem;
    background: #ffffff;
    border: 1px solid var(--ns-border);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.urgency-item {
    text-align: center;
}

.urgency-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ns-primary);
}

.urgency-label {
    font-size: 0.75rem;
    color: var(--ns-text-light);
}

.urgency-divider {
    width: 1px;
    height: 40px;
    background: var(--ns-border);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--ns-primary), var(--ns-primary-hover));
    color: #ffffff;
    font-weight: 700;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--ns-primary-rgb), 0.3);
}

.cta-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--ns-primary-rgb), 0.4);
    background: linear-gradient(135deg, var(--ns-primary-hover), var(--ns-primary));
}

.cta-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #ffffff;
    backdrop-filter: blur(10px);
    color: var(--ns-text-dark);
    font-weight: 600;
    border-radius: 0.75rem;
    border: 1px solid var(--ns-border);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cta-secondary-btn:hover {
    background: var(--ns-bg-light);
    border-color: rgba(var(--ns-primary-rgb), 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.trust-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--ns-text-light);
}

.trust-text svg {
    color: var(--ns-success);
}

/* ==========================================================================
   ADDITIONAL RESPONSIVE ADJUSTMENTS
   ========================================================================== */

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .section-main-title,
    .pricing-title,
    .services-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-features-grid {
        grid-template-columns: 1fr;
    }
    
    .mini-stats {
        justify-content: center;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .urgency-divider {
        display: none;
    }
}

/* ==========================================================================
   CONTACT SECTION - ENTERPRISE STYLES
   ========================================================================== */

.contact-section-enterprise {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(15, 118, 110, 0.1);
    border: 1px solid rgba(15, 118, 110, 0.2);
    color: #0f766e;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

/* Quick Contact Cards */
.contact-quick-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.quick-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-card:hover {
    border-color: #14b8a6;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.quick-card .card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.quick-card h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.quick-card a,
.quick-card span {
    font-size: 0.875rem;
}

.bg-teal-50 { background-color: rgba(20, 184, 166, 0.1); }
.bg-cyan-50 { background-color: rgba(6, 182, 212, 0.1); }
.bg-green-50 { background-color: rgba(34, 197, 94, 0.1); }
.bg-blue-50 { background-color: rgba(59, 130, 246, 0.1); }

.text-teal-600 { color: #0d9488; }
.text-cyan-600 { color: #0891b2; }
.text-green-600 { color: #16a34a; }
.text-blue-600 { color: #2563eb; }

/* Contact Main Grid */
.contact-main-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 2.5rem;
}

/* Info Card */
.info-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    color: #ffffff;
    height: 100%;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item .flex {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.info-item .w-10 {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item span.font-semibold {
    font-weight: 600;
    font-size: 0.95rem;
}

.info-item .pl-13 {
    padding-left: 3.25rem;
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.6;
}

.info-item .pl-13 p {
    margin-bottom: 0.25rem;
}

.info-item .text-teal-400 {
    color: #2dd4bf !important;
}

.bg-teal-500\/20 { background: rgba(20, 184, 166, 0.2); }
.bg-cyan-500\/20 { background: rgba(6, 182, 212, 0.2); }
.bg-blue-500\/20 { background: rgba(59, 130, 246, 0.2); }

.text-teal-400 { color: #2dd4bf; }
.text-cyan-400 { color: #22d3ee; }
.text-blue-400 { color: #60a5fa; }

/* Social Links */
.social-links {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links p {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.social-links .flex {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background: #334155;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #0d9488;
    transform: translateY(-2px);
}

/* Form Card */
.form-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
}

.form-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ns-text-dark);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--ns-text-light);
    font-size: 0.9rem;
}

/* Contact Form Styles */
.contact-form-default .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ns-text-light);
    margin-bottom: 0.5rem;
}

.contact-form-default input,
.contact-form-default select,
.contact-form-default textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--ns-border);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    color: var(--ns-text-dark);
    background: #ffffff;
    transition: all 0.2s ease;
}

.contact-form-default input:focus,
.contact-form-default select:focus,
.contact-form-default textarea:focus {
    outline: none;
    border-color: var(--ns-primary);
    box-shadow: 0 0 0 3px rgba(var(--ns-primary-rgb), 0.1);
}

.contact-form-default input::placeholder,
.contact-form-default textarea::placeholder {
    color: #94a3b8;
}

.contact-form-default .space-y-5 > * + * {
    margin-top: 1.25rem;
}

.contact-form-default .grid {
    display: grid;
    gap: 1.25rem;
}

.contact-form-default .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.contact-form-default button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: #ffffff;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.contact-form-default button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
}

/* Form Trust Badges */
.form-trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.form-trust-badges > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #64748b;
}

.form-trust-badges svg {
    color: #14b8a6;
}

/* Map Section */
.map-section {
    margin-top: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.map-section iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* Live Status Indicator */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-pulse {
    animation: pulse-dot 1.5s ease-in-out infinite;
}

/* Contact Section Responsive */
@media (max-width: 1024px) {
    .contact-quick-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
    
    .lg\:col-span-2,
    .lg\:col-span-3 {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .contact-section-enterprise {
        padding: 3rem 0 4rem;
    }
    
    .contact-quick-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-card {
        padding: 1.25rem;
    }
    
    .info-card,
    .form-card {
        padding: 1.5rem;
    }
    
    .contact-form-default .grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .contact-form-default button[type="submit"] {
        width: 100%;
    }
    
    .form-trust-badges {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/*--------------------------------------------------------------
# Single Service Page Styles
--------------------------------------------------------------*/
.single-service .service-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.single-service .service-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-service .feature-card {
    position: relative;
}

.single-service .feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.single-service .feature-card:hover::before {
    opacity: 1;
}

.single-service .service-sidebar .bg-gradient-to-br {
    position: relative;
    overflow: hidden;
}

.single-service .service-sidebar .bg-gradient-to-br::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.single-service .prose img {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.single-service .prose h2 {
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
}

.single-service .prose h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--ns-primary), var(--ns-primary-dark));
    border-radius: 2px;
}

.single-service .related-service-card {
    position: relative;
}

.single-service .related-service-card::after {
    content: '→';
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1.25rem;
    color: var(--ns-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.single-service .related-service-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Service Contact Form Styles */
#service-inquiry-form .form-group input:focus,
#service-inquiry-form .form-group select:focus,
#service-inquiry-form .form-group textarea:focus {
    outline: none;
    border-color: var(--ns-primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

#service-inquiry-form button[type="submit"] {
    position: relative;
    overflow: hidden;
}

#service-inquiry-form button[type="submit"]::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 ease;
}

#service-inquiry-form button[type="submit"]:hover::before {
    left: 100%;
}

/*--------------------------------------------------------------
# Landing Page Styles - Google Ads Optimized
--------------------------------------------------------------*/
.landing-page-ads {
    --landing-primary: #3b82f6;
    --landing-primary-dark: #2563eb;
    --landing-accent: #10b981;
    --landing-accent-dark: #059669;
}

.landing-page-ads .landing-header {
    transition: all 0.3s ease;
}

.landing-page-ads .landing-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Landing Hero */
.landing-page-ads .landing-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

@media (max-width: 1024px) {
    .landing-page-ads .landing-hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

/* Landing Hero Form */
.landing-page-ads .landing-hero-form .bg-white {
    position: relative;
}

.landing-page-ads .landing-hero-form .bg-white::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-accent));
    border-radius: 1.75rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.landing-page-ads .landing-hero-form:hover .bg-white::before {
    opacity: 1;
}

/* Landing Form Elements */
.landing-page-ads #landing-inquiry-form input,
.landing-page-ads #landing-inquiry-form select,
.landing-page-ads #landing-inquiry-form textarea {
    transition: all 0.3s ease;
}

.landing-page-ads #landing-inquiry-form input:focus,
.landing-page-ads #landing-inquiry-form select:focus,
.landing-page-ads #landing-inquiry-form textarea:focus {
    border-color: var(--landing-primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.landing-page-ads #landing-inquiry-form button[type="submit"] {
    position: relative;
    overflow: hidden;
}

.landing-page-ads #landing-inquiry-form button[type="submit"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Landing Benefits */
.landing-page-ads .landing-benefit-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background: #fff;
    transition: all 0.3s ease;
}

.landing-page-ads .landing-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Landing Testimonials */
.landing-page-ads .landing-testimonial-card {
    transition: all 0.3s ease;
}

.landing-page-ads .landing-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Landing Sticky CTA */
.landing-page-ads .landing-sticky-cta {
    transform: translateY(100%);
    animation: slideUpCTA 0.5s ease forwards;
    animation-delay: 2s;
}

@keyframes slideUpCTA {
    to {
        transform: translateY(0);
    }
}

/* Landing Page Responsive */
@media (max-width: 1024px) {
    .landing-page-ads .landing-hero-content {
        order: 1;
    }
    
    .landing-page-ads .landing-hero-form {
        order: 2;
    }
    
    .landing-page-ads .landing-hero h1 {
        font-size: 2.25rem;
    }
    
    .landing-page-ads .landing-benefit-card {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .landing-page-ads .landing-hero h1 {
        font-size: 1.875rem;
    }
    
    .landing-page-ads .landing-hero p {
        font-size: 1rem;
    }
    
    .landing-page-ads .landing-hero-form .bg-white {
        padding: 1.5rem;
    }
    
    .landing-page-ads .landing-final-cta h2 {
        font-size: 1.75rem;
    }
    
    .landing-page-ads #landing-inquiry-form input,
    .landing-page-ads #landing-inquiry-form select,
    .landing-page-ads #landing-inquiry-form textarea {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    /* Add padding at bottom for sticky CTA */
    .landing-page-ads .landing-footer {
        padding-bottom: 6rem;
    }
}

/* Landing Page Utility Classes */
.landing-page-ads .line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.landing-page-ads .line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Landing Page Focus States for Accessibility */
.landing-page-ads a:focus-visible,
.landing-page-ads button:focus-visible,
.landing-page-ads input:focus-visible,
.landing-page-ads select:focus-visible,
.landing-page-ads textarea:focus-visible {
    outline: 2px solid var(--landing-primary);
    outline-offset: 2px;
}

/* Landing Page Print Styles */
@media print {
    .landing-page-ads .landing-header,
    .landing-page-ads .landing-sticky-cta,
    .landing-page-ads .landing-final-cta {
        display: none !important;
    }
    
    .landing-page-ads .landing-hero {
        min-height: auto;
        padding: 2rem 0;
    }
}

/*--------------------------------------------------------------
# Services Archive Page Styles
--------------------------------------------------------------*/
.services-archive .services-archive-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.services-archive .services-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-archive .service-card {
    position: relative;
}

.services-archive .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ns-primary), var(--ns-accent, #8b5cf6));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    border-radius: 1rem 1rem 0 0;
}

.services-archive .service-card:hover::before {
    transform: scaleX(1);
}

.services-archive .service-card .line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.services-archive .services-filter {
    position: sticky;
    top: 80px;
    z-index: 40;
}

.services-archive .services-pagination a,
.services-archive .services-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.services-archive .services-pagination a:hover {
    background-color: #eff6ff;
    color: var(--ns-primary);
}

.services-archive .services-pagination .current {
    background-color: var(--ns-primary);
    color: white;
}

.services-archive .services-pagination .dots {
    cursor: default;
}

@media (max-width: 768px) {
    .services-archive .services-archive-hero {
        min-height: auto;
        padding-top: 6rem;
        padding-bottom: 4rem;
    }
    
    .services-archive .services-archive-hero h1 {
        font-size: 2rem;
    }
    
    .services-archive .services-filter {
        position: relative;
        top: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .services-archive .services-filter > .ns-container > div {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
    }
    
    .services-archive .services-filter a {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* ==========================================================================
   Hero Section - Reference Design
   ========================================================================== */

/* Hero section following element spacing reset */
section.bg-gradient-to-b + .trusted-by-section {
    margin-top: 0;
    padding-top: 0;
}

/* Utility for line-height */
.leading-\[1\.1\] {
    line-height: 1.1;
}

/* Background color from reference */
.from-\[\#f5f7ff\] {
    --tw-gradient-from: #f5f7ff var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(245 247 255 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */

.about-page .about-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.about-page .about-stats {
    position: relative;
    margin-top: -4rem;
    z-index: 10;
}

.about-page .about-stats > .ns-container {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-page .about-team .group:hover img {
    transform: scale(1.05);
}

.about-page .about-milestones .timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
}

@media (max-width: 1024px) {
    .about-page .about-milestones .timeline-line {
        left: 40px;
    }
    
    .about-page .about-milestones > .ns-container > .space-y-12 > div {
        flex-direction: column !important;
        padding-left: 5rem;
    }
    
    .about-page .about-milestones > .ns-container > .space-y-12 > div > div:first-child {
        position: absolute;
        left: 0;
    }
    
    .about-page .about-milestones > .ns-container > .space-y-12 > div > div:last-child {
        display: none;
    }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

.contact-page .contact-hero {
    min-height: 35vh;
    display: flex;
    align-items: center;
}

.contact-page .contact-info {
    position: relative;
    margin-top: -3rem;
    z-index: 10;
}

.contact-page .contact-form-wrapper input:focus,
.contact-page .contact-form-wrapper select:focus,
.contact-page .contact-form-wrapper textarea:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-page .faq-item .faq-trigger[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.contact-page .faq-item .faq-trigger[aria-expanded="true"] {
    background-color: #f8fafc;
}

/* ==========================================================================
   Page Template Common Styles
   ========================================================================== */

.page-hero {
    min-height: 35vh;
    display: flex;
    align-items: center;
}

.page-hero.gradient-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.page-content .prose {
    max-width: 65ch;
}

.page-content .prose h2 {
    color: var(--ns-text-dark);
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 1em;
}

.page-content .prose p {
    line-height: 1.75;
    margin-bottom: 1.5em;
}

.page-content .prose ul,
.page-content .prose ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.page-content .prose li {
    margin-bottom: 0.5em;
}

/* Animation utilities */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.6s ease-out forwards;
}

[data-animate] {
    opacity: 0;
}

[data-animate].is-visible {
    animation: fade-in-up 0.6s ease-out forwards;
}

/* ========================================
   Shopping Cart Drawer
   ======================================== */

/* Drawer Container */
.shopping-cart-drawer {
    pointer-events: none;
}

.shopping-cart-drawer.is-open {
    pointer-events: auto;
}

/* Backdrop */
.shopping-cart-drawer .cart-drawer-backdrop {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.shopping-cart-drawer.is-open .cart-drawer-backdrop {
    opacity: 1;
}

/* Drawer Panel */
.shopping-cart-drawer .cart-drawer-panel {
    transition: transform 0.5s ease-in-out;
    background: white;
}

.shopping-cart-drawer.is-open .cart-drawer-panel {
    transform: translateX(0) !important;
}

/* Cart Items */
.cart-items-list .cart-item {
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.cart-items-list .cart-item.removing {
    opacity: 0;
    transform: translateX(20px);
}

/* Quantity Controls */
.cart-qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: white;
    transition: all 0.2s ease;
}

.cart-qty-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.cart-qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Remove Button */
.cart-remove-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.cart-remove-item:hover {
    background: #fef2f2;
}

/* Loading State */
.cart-drawer-panel.loading {
    position: relative;
}

.cart-drawer-panel.loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Empty Cart Message */
.empty-cart svg {
    opacity: 0.5;
}

/* Cart Drawer Responsive */
@media (max-width: 640px) {
    .shopping-cart-drawer .cart-drawer-panel {
        max-width: 100%;
    }
}

/* ==========================================================================
   AI CHAT WIDGET - Support Chat
   ========================================================================== */

/* Chat Toggle Button */
.nuwair-chat-toggle {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.nuwair-chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 99, 235, 0.5);
}

.nuwair-chat-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

.nuwair-chat-toggle .chat-badge {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    width: 1rem;
    height: 1rem;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid white;
}

/* Chat Window */
.nuwair-chat-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 10000;
    width: 380px;
    max-width: calc(100vw - 2rem);
    height: 550px;
    max-height: calc(100vh - 8rem);
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.nuwair-chat-widget.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Chat Header */
.nuwair-chat-header {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-header-avatar {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-header-avatar svg {
    width: 1.5rem;
    height: 1.5rem;
}

.chat-header-avatar .status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0.75rem;
    height: 0.75rem;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid white;
}

.chat-header-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.chat-header-text p {
    font-size: 0.75rem;
    opacity: 0.9;
    margin: 0;
}

.chat-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.chat-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-close-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Header Actions */
.chat-header-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Human Support Button */
.chat-human-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.chat-human-btn:hover {
    background: rgba(16, 185, 129, 0.5);
}

.chat-human-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Connected with Staff State */
.nuwair-chat-widget.has-staff .nuwair-chat-header {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Notification Badge */
.chat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Chat Messages Container */
.nuwair-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Welcome Message */
.chat-welcome {
    text-align: center;
    padding: 2rem 1rem;
}

.chat-welcome-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.chat-welcome-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.chat-welcome h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.5rem;
}

.chat-welcome p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

/* Chat Message Bubble */
.chat-message {
    display: flex;
    gap: 0.5rem;
    max-width: 85%;
}

.chat-message.is-user {
    flex-direction: row-reverse;
    margin-left: auto;
}

.chat-message-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-message.is-ai .chat-message-avatar {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
}

.chat-message.is-ai .chat-message-avatar svg {
    width: 1rem;
    height: 1rem;
}

.chat-message.is-user .chat-message-avatar {
    background: #e2e8f0;
    color: #64748b;
}

.chat-message.is-user .chat-message-avatar svg {
    width: 1.25rem;
    height: 1.25rem;
}

.chat-message-content {
    flex: 1;
}

.chat-message-bubble {
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.chat-message.is-ai .chat-message-bubble {
    background: white;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    border-bottom-left-radius: 0.25rem;
}

.chat-message.is-user .chat-message-bubble {
    background: #2563eb;
    color: white;
    border-bottom-right-radius: 0.25rem;
}

/* Staff Messages */
.chat-message.is-staff .chat-message-avatar {
    background: linear-gradient(135deg, #10b981, #059669);
}

.chat-message.is-staff .chat-message-avatar svg {
    color: white;
}

.chat-message.is-staff .chat-message-bubble {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    border-bottom-left-radius: 0.25rem;
}

.chat-message-sender {
    font-size: 0.75rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 0.25rem;
}

.chat-message-time {
    font-size: 0.6875rem;
    color: #94a3b8;
    margin-top: 0.25rem;
    padding: 0 0.5rem;
}

.chat-message.is-user .chat-message-time {
    text-align: right;
}

/* Typing Indicator */
.chat-typing {
    display: flex;
    gap: 0.5rem;
    max-width: 85%;
}

.chat-typing-avatar {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.chat-typing-avatar svg {
    width: 1rem;
    height: 1rem;
}

.chat-typing-bubble {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    border-bottom-left-radius: 0.25rem;
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.chat-typing-bubble span {
    width: 0.5rem;
    height: 0.5rem;
    background: #94a3b8;
    border-radius: 50%;
    animation: chatTyping 1.4s infinite ease-in-out both;
}

.chat-typing-bubble span:nth-child(1) {
    animation-delay: 0s;
}

.chat-typing-bubble span:nth-child(2) {
    animation-delay: 0.16s;
}

.chat-typing-bubble span:nth-child(3) {
    animation-delay: 0.32s;
}

@keyframes chatTyping {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Chat Input Area */
.nuwair-chat-input {
    padding: 1rem;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.chat-input-field {
    flex: 1;
    padding: 0.625rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.chat-input-field:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.chat-input-field:disabled {
    background: #f1f5f9;
    cursor: not-allowed;
}

.chat-send-btn {
    width: 2.5rem;
    height: 2.5rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.chat-send-btn:hover:not(:disabled) {
    background: #1d4ed8;
}

.chat-send-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}

.chat-send-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Quick Replies */
.chat-quick-replies {
    padding: 0.75rem 1rem;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chat-quick-reply {
    padding: 0.375rem 0.75rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    font-size: 0.75rem;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
}

.chat-quick-reply:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .nuwair-chat-widget {
        width: 100%;
        height: 100%;
        max-height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
    
    .nuwair-chat-toggle {
        bottom: 1rem;
        right: 1rem;
    }
}

/* ==========================================================================
   Shopping Cart Styles
   ========================================================================== */

/* Cart Notification Animation */
@keyframes slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-slide-in {
    animation: slide-in 0.3s ease-out forwards;
}

.cart-notification {
    max-width: 380px;
}

/* Cart Page Styles */
.cart-page .domain-tab {
    transition: all 0.2s ease;
}

.cart-page .domain-tab.active {
    border-bottom-color: var(--ns-primary);
    color: var(--ns-primary);
    background-color: rgba(var(--ns-primary-rgb), 0.05);
}

.cart-page .cart-item {
    transition: all 0.2s ease;
}

.cart-page .cart-item:hover {
    background-color: #f1f5f9;
}

/* Loading Spinner */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Order Summary Sticky Positioning */
@media (min-width: 1024px) {
    .cart-page .sticky {
        position: sticky;
        top: 6rem;
    }
}

/* Cart Item Remove Button */
.remove-item-btn {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cart-item:hover .remove-item-btn {
    opacity: 1;
}

/* Mobile Cart Optimizations */
@media (max-width: 640px) {
    .cart-page .domain-tab {
        font-size: 0.75rem;
        padding: 0.75rem 0.5rem;
    }
    
    .cart-page .domain-tab svg {
        display: none;
    }
    
    .remove-item-btn {
        opacity: 1;
    }
}