/* Sterling Design Group - ULTRA PREMIUM Custom Styles */

:root {
    --primary-color: #0a0a0f;
    --secondary-color: #1a1a2e;
    --accent-color: #16213e;
    --accent-bright: #e94560;
    --accent-gold: #f5a623;
    --accent-purple: #8b5cf6;
    --accent-cyan: #06b6d4;
    --text-color: #0a0a0f;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-dark: #0f0f23;
    --bg-glass: rgba(255, 255, 255, 0.1);
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --border-radius: 1rem;
    --border-radius-lg: 1.5rem;
    --border-radius-xl: 2rem;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-gold: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --gradient-dark: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    --gradient-rainbow: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, hsla(228,100%,74%,1) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, hsla(189,100%,56%,1) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, hsla(355,100%,93%,1) 0px, transparent 50%),
                     radial-gradient(at 80% 50%, hsla(340,100%,76%,1) 0px, transparent 50%),
                     radial-gradient(at 0% 100%, hsla(22,100%,77%,1) 0px, transparent 50%),
                     radial-gradient(at 80% 100%, hsla(242,100%,70%,1) 0px, transparent 50%),
                     radial-gradient(at 0% 0%, hsla(343,100%,76%,1) 0px, transparent 50%);
}

/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ULTRA Premium Typography Scale */
.display-1 { 
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem; 
    line-height: 1.1; 
    font-weight: 800; 
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.display-1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
    animation: expandLine 2s ease-out 1s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes expandLine {
    to { transform: scaleX(1); }
}

.display-2 { 
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem; 
    line-height: 1.2; 
    font-weight: 700; 
    color: var(--primary-color);
    letter-spacing: -0.01em;
    position: relative;
}

.display-3 { 
    font-size: 1.75rem; 
    line-height: 1.4; 
    font-weight: 500; 
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
}

.display-4 { 
    font-size: 1.25rem; 
    line-height: 1.5; 
    font-weight: 400; 
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .display-1 { font-size: 3.5rem; }
    .display-2 { font-size: 2.5rem; }
}

/* ULTRA Premium Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    background: #ffffff;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

/* ULTRA Premium Header Styles */
.navbar {
    transition: var(--transition);
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.8) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -0.01em;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-brand:hover::before {
    width: 100%;
}

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

.nav-link {
    color: var(--text-color) !important;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 1rem 1.5rem !important;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    border-radius: var(--border-radius);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 0.1;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-bright) !important;
    transform: translateY(-2px);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-bright);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-bright);
}

/* Modern Rounded Button Styles */
.btn {
    border-radius: 50px; /* Fully rounded corners */
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
    text-transform: none;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

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

.btn-primary {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.btn-primary:hover {
    color: white;
    border-color: #8b5cf6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-outline-primary {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.btn-outline-primary:hover {
    color: white;
    border-color: #8b5cf6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Button Size Variants */
.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    min-height: 36px;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    min-height: 56px;
}

.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    min-height: 64px;
}

/* Button Color Variants */
.btn-secondary {
    color: #64748b;
    border: 2px solid #64748b;
    box-shadow: 0 4px 15px rgba(100, 116, 139, 0.2);
}

.btn-secondary::before {
    background: linear-gradient(135deg, #64748b 0%, #475569 50%, #334155 100%);
}

.btn-secondary:hover {
    color: white;
    border-color: #64748b;
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.4);
}

.btn-success {
    color: #10b981;
    border: 2px solid #10b981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.btn-success::before {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
}

.btn-success:hover {
    color: white;
    border-color: #10b981;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-danger {
    color: #ef4444;
    border: 2px solid #ef4444;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

.btn-danger::before {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
}

.btn-danger:hover {
    color: white;
    border-color: #ef4444;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

/* Special Button Styles */
.btn-premium {
    color: #f59e0b;
    border: 2px solid #f59e0b;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(245, 158, 11, 0.1) 100%);
}

.btn-premium::before {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
}

.btn-premium:hover {
    color: white;
    border-color: #f59e0b;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Button with Icon Styling */
.btn i {
    transition: transform 0.3s ease;
}

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

/* Disabled State */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn:disabled::before {
    width: 0 !important;
}

/* Focus State for Accessibility */
.btn:focus {
    outline: 2px solid #8b5cf6;
    outline-offset: 2px;
}

/* ULTRA Premium Card Styles */
.card {
    border: none;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    overflow: hidden;
    background: white;
    position: relative;
    backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-rainbow);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
    padding: 2rem;
    font-family: 'Space Grotesk', sans-serif;
}

/* ULTRA Premium Hero Section */
.hero {
    background: var(--gradient-dark);
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.1;
    animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

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

.hero-content h1 {
    color: white !important;
    -webkit-text-fill-color: white !important;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: heroTextGlow 3s ease-in-out infinite alternate;
}

@keyframes heroTextGlow {
    from { text-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); }
    to { text-shadow: 0 8px 32px rgba(102, 126, 234, 0.5); }
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-xl);
    padding: 1rem 2rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.trust-badge:hover::before {
    left: 100%;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.trust-badge i {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-right: 0.75rem;
    text-shadow: 0 0 10px var(--accent-gold);
}

/* ULTRA Premium Value Cards */
.value-card {
    text-align: center;
    padding: 4rem 3rem;
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.value-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-2xl);
}

.value-card .icon {
    width: 6rem;
    height: 6rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    transition: var(--transition);
    position: relative;
}

.value-card .icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-rainbow);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.value-card:hover .icon::before {
    opacity: 1;
}

.value-card:hover .icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.6);
}

/* ULTRA Premium Process Strip */
.process-strip {
    background: var(--gradient-dark);
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.process-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.1;
    animation: meshMove 25s ease-in-out infinite reverse;
}

.process-strip .container {
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.process-step h4 {
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    text-shadow: 0 0 20px var(--accent-gold);
}

.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--accent-gold);
    font-weight: bold;
    text-shadow: 0 0 30px var(--accent-gold);
    animation: pulse 2s ease-in-out infinite;
}

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

@media (max-width: 768px) {
    .process-step:not(:last-child)::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -2rem;
        transform: translateX(50%);
    }
}

/* ULTRA Premium Pricing Cards */
.pricing-card {
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
    position: relative;
    backdrop-filter: blur(10px);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gradient-rainbow);
}

.pricing-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: var(--shadow-2xl);
}

.pricing-header {
    background: var(--gradient-primary);
    color: white;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
}

.pricing-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 15px solid #667eea;
}

.pricing-price {
    font-size: 4rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Space Grotesk', sans-serif;
}

.pricing-body {
    padding: 4rem 3rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
}

.pricing-features li {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-bright);
    font-weight: bold;
    font-size: 1.5rem;
    text-shadow: 0 0 10px var(--accent-bright);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* ULTRA Premium Work Grid */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin: 6rem 0;
}

.work-item {
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(10px);
}

.work-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.work-item:hover::before {
    opacity: 0.1;
}

.work-item:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: var(--shadow-2xl);
}

.work-placeholder {
    height: 300px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}

.work-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

.work-placeholder::after {
    content: 'Coming Soon';
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.work-content {
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.work-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
}

/* ULTRA Premium Form Styles */
.form-control {
    border-radius: var(--border-radius);
    border: 3px solid var(--border-color);
    padding: 1.25rem 1.5rem;
    transition: var(--transition);
    font-size: 1.1rem;
    background: white;
    font-weight: 500;
}

.form-control:focus {
    border-color: var(--accent-bright);
    box-shadow: 0 0 0 0.3rem rgba(233, 69, 96, 0.25);
    transform: translateY(-2px);
}

.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.3rem rgba(220, 53, 69, 0.25);
}

.form-control.is-valid {
    border-color: #198754;
    box-shadow: 0 0 0 0.3rem rgba(25, 135, 84, 0.25);
}

.form-label {
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-family: 'Space Grotesk', sans-serif;
}

/* ULTRA Premium Modal Styles */
.modal-content {
    border: none;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-2xl);
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border-bottom: none;
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
    padding: 2rem;
}

.modal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.modal-body {
    padding: 3rem;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 2rem 3rem;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
}

.btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ULTRA Premium Alert Styles */
.alert {
    border: none;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.alert-info {
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.1) 0%, rgba(13, 202, 240, 0.05) 100%);
    color: #0c5460;
    border-left: 4px solid #0dcaf0;
}

.alert-success {
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.1) 0%, rgba(25, 135, 84, 0.05) 100%);
    color: #0f5132;
    border-left: 4px solid #198754;
}

/* ULTRA Premium Footer */
footer {
    background: var(--gradient-dark) !important;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-rainbow);
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.05;
    z-index: 1;
}

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

footer a {
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
}

footer a:hover {
    color: var(--accent-gold) !important;
    transform: translateX(8px);
    text-shadow: 0 0 10px var(--accent-gold);
}

/* ULTRA Premium Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 1s ease forwards;
}

/* ULTRA Premium Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.text-accent { color: var(--accent-bright) !important; }
.text-gold { color: var(--accent-gold) !important; }
.text-purple { color: var(--accent-purple) !important; }
.text-cyan { color: var(--accent-cyan) !important; }
.bg-light-custom { 
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important; 
}
.shadow-custom { box-shadow: var(--shadow-xl) !important; }
.rounded-custom { border-radius: var(--border-radius) !important; }

/* ULTRA Premium Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid var(--accent-bright);
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ULTRA Premium Focus States */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 4px solid var(--accent-bright);
    outline-offset: 3px;
}

/* ULTRA Premium Print Styles */
@media print {
    .navbar,
    .btn,
    footer {
        display: none !important;
    }
    
    .hero {
        background: none !important;
        padding: 2rem 0 !important;
        color: black !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* ULTRA Premium Responsive Design */
@media (max-width: 1200px) {
    .work-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0;
        min-height: 80vh;
    }
    
    .value-card {
        padding: 3rem 2rem;
    }
    
    .pricing-header {
        padding: 3rem 2rem;
    }
    
    .pricing-body {
        padding: 3rem 2rem;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .trust-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ULTRA Premium Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ULTRA Premium Compliance Strip */
.compliance-strip {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
}

.compliance-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

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

.compliance-item strong {
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(var(--bs-primary-rgb), 0.3);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-2xl);
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin: 1rem 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

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

.service-features li:last-child {
    border-bottom: none;
}

/* Pricing Cards */
.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(var(--bs-primary-rgb), 0.3);
}

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

.pricing-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-body {
    padding: 1rem 2rem 2rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin: 1rem 0;
}

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

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

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

.pricing-features li:last-child {
    border-bottom: none;
}

/* ULTRA Premium Legal Pages */
.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
}

.legal-tldr {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-left: 8px solid var(--accent-bright);
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 0 var(--border-radius-xl) var(--border-radius-xl) 0;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

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

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: var(--text-muted);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== ENHANCED MODERN DESIGN ELEMENTS ===== */

/* Premium Glassmorphism Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced Hero Section */
.hero-enhanced {
    position: relative;
    overflow: hidden;
    background: var(--gradient-mesh);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

/* Floating Animation Elements */
.floating-element {
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    animation-delay: -2s;
}

.floating-element:nth-child(3) {
    animation-delay: -4s;
}

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

/* Premium Button Enhancements */
.btn-premium {
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

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

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

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

/* Enhanced Service Cards */
.service-card-enhanced {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.service-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(99, 102, 241, 0.3);
}

/* Premium Pricing Cards */
.pricing-card-enhanced {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.pricing-card-enhanced.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-2xl);
}

.pricing-card-enhanced.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: 1;
}

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

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

.text-glow {
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

/* Premium Form Elements */
.form-control-enhanced {
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.form-control-enhanced:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: white;
}

/* Animated Background Elements */
.bg-animated {
    position: relative;
    overflow: hidden;
}

.bg-animated::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-rainbow);
    opacity: 0.1;
    animation: rotate 20s linear infinite;
    z-index: 0;
}

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

/* Premium Modal Enhancements */
.modal-enhanced .modal-content {
    border: none;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-2xl);
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
}

.modal-enhanced .modal-header {
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
}

/* Enhanced Navigation */
.navbar-enhanced {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    transition: var(--transition);
}

.navbar-enhanced.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

/* Premium Footer */
.footer-enhanced {
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .hero-enhanced {
        min-height: 80vh;
    }
    
    .service-card-enhanced {
        padding: 2rem 1.5rem;
    }
    
    .pricing-card-enhanced.featured {
        transform: none;
        margin-bottom: 2rem;
    }
}

/* Loading Animations */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

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

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Hover Effects */
.hover-lift {
    transition: var(--transition);
}

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

.hover-glow {
    transition: var(--transition);
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

/* ===== ENHANCED ICON STYLING ===== */

/* Enhanced Icon Styling */
.bi {
    display: inline-block;
    vertical-align: -0.125em;
    line-height: 1;
}

/* Icon Size Consistency */
.icon-sm { font-size: 0.875rem; }
.icon-md { font-size: 1rem; }
.icon-lg { font-size: 1.25rem; }
.icon-xl { font-size: 1.5rem; }
.icon-2xl { font-size: 2rem; }
.icon-3xl { font-size: 3rem; }

/* Icon Color Utilities */
.icon-primary { color: var(--primary-color) !important; }
.icon-accent { color: var(--accent-bright) !important; }
.icon-gold { color: var(--accent-gold) !important; }
.icon-purple { color: var(--accent-purple) !important; }
.icon-cyan { color: var(--accent-cyan) !important; }
.icon-white { color: white !important; }
.icon-muted { color: var(--text-muted) !important; }

/* Icon Hover Effects */
.icon-hover:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.icon-glow {
    text-shadow: 0 0 10px currentColor;
}

.icon-pulse {
    animation: iconPulse 2s ease-in-out infinite;
}

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

/* Icon Loading States */
.icon-loading {
    animation: iconSpin 1s linear infinite;
}

@keyframes iconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Icon Accessibility */
.icon-fallback {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Enhanced Button Icons */
.btn i {
    transition: transform 0.2s ease;
}

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

/* Enhanced Navigation Icons */
.nav-link i {
    transition: all 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.1);
}

/* Enhanced Service Card Icons */
.service-icon i {
    transition: all 0.4s ease;
}

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

/* Enhanced Footer Icons */
footer i {
    transition: all 0.3s ease;
}

footer a:hover i {
    transform: scale(1.1);
    color: var(--accent-gold) !important;
}

/* Icon Loading Fallback */
.icon-loading-fallback {
    display: inline-block;
    width: 1em;
    height: 1em;
    background: currentColor;
    border-radius: 50%;
    animation: iconPulse 1.5s ease-in-out infinite;
}

/* Icon Error State */
.icon-error {
    color: #dc3545;
    position: relative;
}

.icon-error::after {
    content: '!';
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}