/* ============================================
   COMPLETE REDESIGN - MODERN & BOLD
   ============================================ */

/* New Color Palette - Completely Different */
:root {
    --primary-dark: #0a1628;
    --primary-accent: #ff6b35;
    --secondary-accent: #00d4aa;
    --tertiary-accent: #7b2cbf;
    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-secondary: linear-gradient(135deg, #00d4aa 0%, #00a8cc 100%);
    --gradient-dark: linear-gradient(135deg, #0a1628 0%, #1a1a2e 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* Global Typography Override */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    color: var(--text-primary) !important;
    background-color: var(--bg-light) !important;
    line-height: 1.7 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    color: var(--text-primary) !important;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem) !important;
    line-height: 1.3 !important;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem) !important;
}

p {
    font-size: 1.125rem !important;
    line-height: 1.8 !important;
    color: var(--text-secondary) !important;
}

/* Navigation - Complete Redesign */
.navigation-wrapper {
    background: var(--bg-white) !important;
    box-shadow: var(--shadow-md) !important;
    border-radius: 0 0 24px 24px !important;
    top: 0 !important;
    padding: 1rem 0 !important;
}

.navigation-inner {
    background: transparent !important;
    padding: 1rem 0 !important;
}

.navigation-menu .parent > li > a > span {
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    transition: all 0.3s ease !important;
}

.navigation-menu .parent > li > a:hover > span {
    color: var(--primary-accent) !important;
}

.navigation-menu .parent > li > a > span::before {
    background-color: var(--primary-accent) !important;
    height: 3px !important;
}

/* Hero Section - Bold New Design */
.hero-1 {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    padding: 8rem 0 6rem !important;
    position: relative;
    overflow: hidden;
}

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

.hero-content h1 {
    color: var(--text-primary) !important;
    font-weight: 800 !important;
    margin-bottom: 2rem !important;
}

.hero-content p.large {
    font-size: 1.25rem !important;
    color: var(--text-secondary) !important;
    margin-bottom: 3rem !important;
}

.hero-price {
    background: var(--gradient-primary) !important;
    color: white !important;
    border: none !important;
    font-weight: 700 !important;
    box-shadow: var(--shadow-lg) !important;
    transform: translateY(0);
    transition: transform 0.3s ease !important;
}

.hero-price:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl) !important;
}

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

.hero-image img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15)) !important;
    transform: scale(1);
    transition: transform 0.3s ease !important;
}

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

/* Button Redesign */
.my-btn {
    transition: all 0.3s ease !important;
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.3)) !important;
}

.my-btn:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 8px 20px rgba(255, 107, 53, 0.4)) !important;
}

/* App Feature Section - Cards Redesign */
.app-feature-1 {
    background: var(--bg-white) !important;
    padding: 6rem 0 !important;
}

.app-feature-single {
    background: var(--bg-white) !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
    overflow: hidden;
    position: relative;
}

.app-feature-single::before,
.app-feature-single::after {
    display: none !important;
}

.app-feature-single:hover {
    border-color: var(--primary-accent) !important;
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-xl) !important;
}

.app-feature-single-wrapper {
    padding: 2.5rem !important;
    background: transparent !important;
}

.app-feature-single h3 {
    color: var(--text-primary) !important;
    margin-bottom: 1rem !important;
    font-size: 1.75rem !important;
}

.app-feature-single p {
    color: var(--text-secondary) !important;
    font-size: 1rem !important;
}

.card-img {
    border-radius: 16px !important;
    margin-bottom: 1.5rem !important;
    transition: transform 0.3s ease !important;
}

.app-feature-single:hover .card-img {
    transform: scale(1.05);
}

/* Feature Section Redesign */
.feature-section {
    padding: 6rem 0 !important;
    background: var(--bg-light) !important;
}

.feature-section-0 {
    background: var(--bg-white) !important;
}

.feature-section-1 {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%) !important;
}

.feature-section-content h1 {
    color: var(--text-primary) !important;
    margin-bottom: 2rem !important;
}

.feature-section-content p {
    color: var(--text-secondary) !important;
    font-size: 1.125rem !important;
    line-height: 1.9 !important;
}

.feature-section-image img {
    border-radius: 24px !important;
    box-shadow: var(--shadow-lg) !important;
}

/* Pricing Section - How to Use */
.pricing-section {
    background: var(--gradient-dark) !important;
    color: white !important;
    padding: 6rem 0 !important;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 170, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-section .section-heading h1 {
    color: white !important;
}

.pricing-single {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    padding: 3rem 2rem !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

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

.pricing-single:hover::before {
    transform: scaleX(1);
}

.pricing-single:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3) !important;
}

.pricing-single .plan {
    color: white !important;
    font-size: 3rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.5rem !important;
}

.pricing-single p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.125rem !important;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--bg-white) !important;
    padding: 6rem 0 !important;
}

.contact-form {
    background: var(--bg-white) !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 24px !important;
    padding: 3rem !important;
    box-shadow: var(--shadow-md) !important;
}

.contact-form-wrapper {
    background: transparent !important;
    padding: 0 !important;
}

.contact-form .section-heading h1 {
    color: var(--text-primary) !important;
    margin-bottom: 2rem !important;
}

.form-floating .input {
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 1.25rem 1rem !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    background: var(--bg-light) !important;
}

.form-floating .input:focus {
    border-color: var(--primary-accent) !important;
    background: white !important;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1) !important;
}

.form-floating label {
    color: var(--text-secondary) !important;
    font-size: 1rem !important;
}

/* Footer Redesign */
.footer {
    background: var(--text-primary) !important;
    color: white !important;
    padding: 4rem 0 2rem !important;
}

.footer-wrapper {
    padding: 0 !important;
}

.footer-detail p,
.footer-detail a {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease !important;
}

.footer-list a:hover {
    color: var(--primary-accent) !important;
}

.footer-list a span::before {
    background-color: var(--primary-accent) !important;
}

/* Section Headings */
.section-heading h1 {
    position: relative;
    padding-bottom: 1.5rem;
}

.section-heading.center h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-heading h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Background Patterns - Remove/Override */
.background-pattern,
.background-pattern-img,
.background-pattern-gradient {
    display: none !important;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero-1 {
        padding: 4rem 0 3rem !important;
    }
    
    .app-feature-1,
    .feature-section,
    .pricing-section,
    .contact-form-section {
        padding: 4rem 0 !important;
    }
    
    .navigation-menu .parent > li > a > span {
        font-size: 1.125rem !important;
    }
}

/* Additional Modern Touches */
.atext {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 0.75rem 0 !important;
    text-align: center !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    letter-spacing: 0.05em !important;
}

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

/* Remove old gradient styles */
.c-dark {
    color: var(--text-primary) !important;
}

.c-grey {
    color: var(--text-secondary) !important;
}

.c-white {
    color: white !important;
}

/* Links */
a {
    transition: all 0.3s ease !important;
}

.link-underline > span::before {
    height: 2px !important;
    background-color: var(--primary-accent) !important;
}

/* Additional Modern Enhancements */
.main-wrapper {
    overflow-x: hidden;
}

/* Container improvements */
.container {
    max-width: 1200px !important;
}

/* Navigation bar mobile */
.navigation-bar div {
    background-color: var(--text-primary) !important;
}

.navigation.scrolled .navigation-bar div {
    background-color: var(--text-primary) !important;
}

/* Remove old purple/blue gradients */
.navigation-menu .parent > li .child {
    background: var(--bg-white) !important;
    border: 2px solid #e2e8f0 !important;
    box-shadow: var(--shadow-lg) !important;
}

/* Contact form image section */
.contact-form-1 {
    background: var(--bg-light) !important;
    border-radius: 24px !important;
    overflow: hidden;
}

.contact-form-1 img {
    border-radius: 20px !important;
    box-shadow: var(--shadow-md) !important;
}

/* Docs pages styling */
.docs {
    background: var(--bg-white) !important;
    border-radius: 24px !important;
    padding: 4rem 3rem !important;
    margin: 2rem 0 !important;
    box-shadow: var(--shadow-sm) !important;
}

.docs h1 {
    color: var(--text-primary) !important;
    border-bottom: 3px solid var(--primary-accent) !important;
    padding-bottom: 1rem !important;
    margin-bottom: 2rem !important;
}

.docs h2 {
    color: var(--text-primary) !important;
    margin-top: 2.5rem !important;
    margin-bottom: 1rem !important;
    font-size: 1.75rem !important;
}

.docs p {
    color: var(--text-secondary) !important;
    margin-bottom: 1.5rem !important;
}

/* Footer links styling */
.links-docs a {
    color: var(--primary-accent) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.links-docs a:hover {
    color: var(--secondary-accent) !important;
    text-decoration: underline !important;
}

/* Hero absolute image adjustments */
.hero-absolute-image {
    opacity: 0.6 !important;
    filter: blur(40px) !important;
}

/* Remove old pattern backgrounds completely */
.background-pattern-bottom,
.contact-form-section-pattern {
    display: none !important;
}

/* Price tag styling */
.hero-price-block {
    margin-top: 2rem !important;
}

.footer-price-position {
    background: var(--gradient-primary) !important;
    color: white !important;
    border: none !important;
}

/* Form button styling */
.form-btn {
    transition: all 0.3s ease !important;
}

.form-btn:hover {
    transform: translateY(-2px);
}

/* Section spacing improvements */
.app-feature-wrapper,
.feature-section-wrapper,
.pricing-section-wrapper,
.contact-form-section-wrapper {
    position: relative;
    z-index: 1;
}

/* Mobile menu improvements */
@media (max-width: 991px) {
    .navigation-menu {
        background: var(--bg-white) !important;
        box-shadow: var(--shadow-xl) !important;
    }
    
    .navigation-menu .parent > li > a > span {
        color: var(--text-primary) !important;
    }
    
    .docs {
        padding: 2rem 1.5rem !important;
        margin: 1rem 0 !important;
    }
}

/* Animation improvements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-feature-single,
.pricing-single,
.contact-form {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-accent);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}

