/* Modern Color Variables - Brand Orange Theme */
:root {
    --primary: #F78120;
    --primary-light: #FF9A4D;
    --primary-dark: #E06A10;
    --secondary: #1a1a2e;
    --accent: #f78120;
    --accent-light: #ff9a4d;
    --success: #10b981;
    --info: #3b82f6;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f1f5f9;
    --lighter: #fafafa;
    --white: #ffffff;
    
    --gradient-primary: linear-gradient(135deg, #F78120 0%, #E06A10 100%);
    --gradient-soft: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    --gradient-warm: linear-gradient(135deg, #fff8f0 0%, #ffe8d4 100%);
    --gradient-cool: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --gradient-hero: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-soft: 0 10px 40px rgba(247, 129, 32, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--dark);
    padding-top: 80px;
    background: var(--lighter);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

/* Modern Navbar with Glassmorphism */
.navbar {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255, 255, 255, 0.85) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.navbar-brand {
    transition: all var(--transition-base);
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.nav-link {
    position: relative;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark) !important;
    padding: 0.5rem 0.75rem !important;
    transition: all var(--transition-base);
    border-radius: var(--radius-sm);
    margin: 0 0.125rem;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    transition: all var(--transition-base);
    border-radius: var(--radius-full);
}

.nav-link:hover:after {
    width: 70%;
}

/* Modern Buttons - Soft & Medium Size */
.btn {
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(247, 129, 32, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(247, 129, 32, 0.3);
    color: white;
}

.btn-primary:active {
    transform: translateY(0);
}

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

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(247, 129, 32, 0.2);
}

.btn-outline-secondary {
    border: 1.5px solid var(--gray-light);
    color: var(--gray);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: var(--gray);
    color: white;
    border-color: var(--gray);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 0.4rem 0.875rem;
    font-size: 0.8rem;
}

.btn-dark {
    background: var(--dark);
    color: white;
    border: none;
}

.btn-dark:hover {
    background: var(--dark-light);
    color: white;
    transform: translateY(-1px);
}

/* CTA Highlight Button */
.btn-cta-highlight {
    background: var(--primary) !important;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(247, 129, 32, 0.4);
    animation: pulse-glow 2s infinite;
}

.btn-cta-highlight.btn-sm {
    padding: 0.4rem 1rem;
}

.btn-cta-highlight:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 129, 32, 0.5);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(247, 129, 32, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(247, 129, 32, 0.6);
    }
}

/* Hero Section - Clean White Background */
.hero {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 4rem 0 4rem;
    margin-top: 1rem;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

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

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero .lead {
    font-size: 1.25rem;
    color: var(--gray);
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-image-scaled {
    max-width: 95%;
    max-height: 540px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 0 0 auto;
    display: block;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-slow);
}

.hero-image-scaled:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* Hero Stats Cards - Enhanced */
.hero .p-4.rounded-4 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(247, 129, 32, 0.1);
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.hero .p-4.rounded-4:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(247, 129, 32, 0.15);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(247, 129, 32, 0.2);
}

/* Modern Slider Navigation */
.hero-slider-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Side Navigation Buttons */
.hero-container-wrapper {
    position: relative;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    color: var(--primary);
    z-index: 20;
    opacity: 0.7;
    pointer-events: all;
}

.slider-nav-prev {
    left: -60px;
}

.slider-nav-next {
    right: -60px;
}

.slider-nav-btn:hover {
    opacity: 1;
}

.slider-nav-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.slider-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Modern Dots Navigation - Tüm hero section'ın altında, yatayda ortalanmış */
.slider-dots {
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
    padding: 0.4rem 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    justify-content: center;
    align-items: center;
    width: auto;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    border: none;
    background: rgba(247, 129, 32, 0.25);
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
    position: relative;
}
    
.slider-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background: var(--primary);
    transition: transform var(--transition-base);
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.slider-dot.active::before {
    transform: translate(-50%, -50%) scale(1);
}

.slider-dot:hover {
    transform: scale(1.3);
    background: var(--primary-light);
}

.slider-dot:active {
    transform: scale(1.1);
}

/* Modern Card Design */
.card {
    border: none;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    overflow: hidden;
    position: relative;
}

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

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

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

.card-body {
    padding: 2rem;
}

.card .fa-2x {
    color: var(--primary);
    margin-bottom: 1rem;
    transition: all var(--transition-base);
}

.card:hover .fa-2x {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-dark);
}

/* Features & Benefits Sections */
#features, #benefits {
    padding: 6rem 0;
    position: relative;
}

#benefits {
    background: var(--lighter);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-title.text-start {
    text-align: left;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Pricing Section */
#pricing {
    padding: 6rem 0;
    background: var(--gradient-soft);
    position: relative;
}

#pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(247, 129, 32, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(247, 129, 32, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

#pricing .card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-calculator {
    background: rgba(247, 129, 32, 0.05) !important;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(247, 129, 32, 0.1);
}

.pricing-calculator input,
.pricing-calculator select {
    border: 2px solid rgba(247, 129, 32, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.pricing-calculator input:focus,
.pricing-calculator select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(247, 129, 32, 0.1);
    outline: none;
}

/* Contact Section */
#contact {
    padding: 6rem 0;
    background: var(--lighter);
}

#contact .card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.form-control {
    border: 2px solid var(--light);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: all var(--transition-base);
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(247, 129, 32, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

/* Alert Styles */
.alert {
    border: none;
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    backdrop-filter: blur(10px);
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info);
    border-left: 4px solid var(--info);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
    border-left: 4px solid var(--warning);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-left: 4px solid var(--success);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border-left: 4px solid var(--danger);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: var(--light);
    padding: 4rem 0 2rem;
}

footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer .text-secondary {
    color: var(--gray-light) !important;
    transition: all var(--transition-base);
}

footer a.text-secondary:hover {
    color: white !important;
    transform: translateX(5px);
}

/* Logo & Branding */
.logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    overflow: hidden;
    background: transparent;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
  }
  
  .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

.logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
  }
  
  .app-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
  }
  
  .app-subtitle {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 0.3px;
    font-family: 'Poppins', sans-serif;
  }
  
  .track-text {
    color: #F78120;
    font-weight: 800;
  }

/* Footer'da PassQR yazısı için özel renk */
footer .track-text {
    color: #F78120 !important;
  }

  .footer-text {
    font-size: 0.95rem;
    color: var(--gray-light);
    font-weight: 400;
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif;
}

/* App Badges Inline (in slides) */
.app-badges-inline {
    align-items: center;
}

.app-badge-card-sm {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.875rem;
    background: #1a1a2e;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--transition-base);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid transparent;
}

.app-badge-card-sm:hover {
    background: #2d2d44;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.app-badge-card-sm i {
    font-size: 1.1rem;
}

@media (max-width: 767.98px) {
    .app-badges-inline {
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .app-badge-card-sm {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        flex: 1;
        justify-content: center;
    }
    
    .app-badge-card-sm i {
        font-size: 1rem;
    }
    
    /* Mobile slide buttons full width */
    .hero-slider .slide .d-flex.flex-column.flex-sm-row {
        width: 100%;
    }
    
    .hero-slider .slide .btn-cta-highlight {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.card {
    animation: fadeInUp 0.6s ease-out;
}

.slide {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    width: 100%;
    pointer-events: none;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    position: relative;
    animation: fadeIn 0.6s ease-out;
    pointer-events: auto;
    visibility: visible;
}

/* Hero slider - Fixed height for consistency */
.hero-slider {
    position: relative;
    height: 540px;
    width: 100%;
}

.hero-slider .slide {
    height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 0;
}

.hero-slider .slide.active {
    display: flex;
}

/* Slide content areas */
.hero-slider .slide .slide-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-slider .slide .slide-buttons {
    flex-shrink: 0;
    padding-top: 1rem;
}

/* Image slider */
.hero-slider-wrapper {
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.hero-slider-wrapper .hero-slider {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-wrapper .hero-slider .slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-wrapper .hero-slider .slide.active {
    display: flex;
}

/* Ensure all slide stat cards have consistent height */
.hero .slide .p-4.rounded-4 {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero .slide .p-4.rounded-4 .display-6 {
    line-height: 1.2;
}

.hero .slide .p-4.rounded-4 .fa-2x {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

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

/* Selection */
::selection {
    background: var(--primary);
    color: white;
}

::-moz-selection {
    background: var(--primary);
    color: white;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero {
        text-align: center;
        min-height: auto;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.1rem;
    }
    
    .hero .row {
        flex-direction: column-reverse;
    }
    
    .hero .col-lg-6:first-child {
        margin-top: 0.2rem;
    }
    
    .hero .col-lg-6:last-child {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .hero-slider-wrapper {
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .hero-image-scaled {
        width: auto !important;
        max-width: 100% !important;
        max-height: 320px !important;
        height: auto !important;
        margin: 0 0 !important;
        display: block;
        border-radius: var(--radius-md);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Tablet - nav buttons inside */
    .slider-nav-prev {
        left: 0;
    }
    
    .slider-nav-next {
        right: 0;
    }
    
    /* Tablet slider heights */
    .hero-slider {
        height: 380px;
    }
    
    .hero-slider .slide {
        height: 380px;
    }
    
    .hero-slider-wrapper {
        height: 320px;
    }
    
    .hero-image-scaled {
        max-height: 300px;
    }
    
    /* ========== MOBILE NAVBAR REDESIGN ========== */
    .navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        max-height: none !important;
        background: #ffffff;
        padding: 70px 1rem 0 1rem !important;
        z-index: 1040;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        display: block !important;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    
    .navbar-collapse.show {
        transform: translateX(0);
    }
    
    .navbar-collapse.collapsing {
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        display: block !important;
    }
    
    .navbar-collapse .navbar-nav {
        gap: 0;
        flex: 0 0 auto;
    }
    
    .navbar-collapse .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    .navbar-collapse .nav-item:last-child {
        border-bottom: none;
    }
    
    .navbar-collapse .nav-link {
        font-size: 1rem;
        font-weight: 600;
        padding: 0.875rem 0.25rem !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 !important;
    }
    
    .navbar-collapse .nav-link:hover {
        background: transparent;
        color: var(--primary) !important;
    }
    
    /* Mobile Dropdown - Always open */
    .navbar-collapse .dropdown-menu {
        position: static !important;
        transform: none !important;
        border: none;
        box-shadow: none;
        background: rgba(247, 129, 32, 0.05);
        border-radius: var(--radius-sm);
        padding: 0.5rem;
        margin: 0 0 0.5rem 0 !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .navbar-collapse .dropdown-toggle::after {
        display: none;
    }
    
    .navbar-collapse .dropdown-menu .dropdown-item {
        padding: 0.75rem 0.875rem;
        border-radius: var(--radius-sm);
        color: var(--dark);
        font-weight: 500;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: all var(--transition-base);
    }
    
    .navbar-collapse .dropdown-menu .dropdown-item i {
        width: 18px;
        text-align: center;
        color: var(--primary);
        font-size: 0.9rem;
    }
    
    .navbar-collapse .dropdown-menu .dropdown-item:hover,
    .navbar-collapse .dropdown-menu .dropdown-item:focus {
        background: rgba(247, 129, 32, 0.12);
        color: var(--primary);
    }
    
    .navbar-collapse .dropdown-divider {
        margin: 0.25rem 0.5rem;
        border-color: rgba(247, 129, 32, 0.1);
    }
    
    .navbar-collapse .dropdown-toggle::after {
        transition: transform var(--transition-base);
    }
    
    .navbar-collapse .dropdown.show .dropdown-toggle::after {
        transform: rotate(180deg);
    }
    
    /* Mobile CTA Buttons */
    .navbar-collapse .d-flex.gap-2 {
        flex-direction: column !important;
        gap: 0.5rem !important;
        margin-top: 1rem !important;
        padding-top: 1rem;
        padding-bottom: 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        flex-shrink: 0;
    }
    
    .navbar-collapse .d-flex.gap-2 .btn {
        width: 100%;
        padding: 0.6rem 1rem;
        font-size: 0.875rem;
        justify-content: center;
        display: flex !important;
    }
    
    /* Hamburger to X animation */
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
        z-index: 1060 !important;
        position: relative;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-toggler-icon {
        width: 28px;
        height: 28px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23333' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        transition: all var(--transition-base);
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F78120' stroke-linecap='round' stroke-width='2' d='M7 7l16 16M7 23L23 7'/%3e%3c/svg%3e");
    }
    
    /* Navbar stays on top */
    .navbar {
        z-index: 1055 !important;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 70px;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .hero {
        padding: 2rem 0 2.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .lead {
        font-size: 1rem;
    }
    
    .hero .row.g-4 {
        display: none;
    }
    
    /* Mobile slider heights */
    .hero-slider {
        height: auto;
        min-height: 360px;
    }
    
    .hero-slider .slide {
        height: auto;
        min-height: 360px;
    }
    
    .hero-slider-wrapper {
        height: 280px;
    }
    
    .slider-nav-btn {
        width: 36px;
        height: 36px;
        opacity: 0.9;
        pointer-events: all;
    }
    
    .slider-nav-prev {
        left: 0;
    }
    
    .slider-nav-next {
        right: 0;
    }
    
    .slider-dots {
        bottom: -2rem;
        padding: 0.35rem 0.6rem;
        left: 50%;
        transform: translateX(-50%);
        gap: 0.4rem;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .card-body {
        padding: 1.5rem !important;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    #features, #benefits, #pricing, #contact {
        padding: 4rem 0;
    }
    
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .navbar .btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero .slide .p-4.rounded-4 {
        min-height: 85px;
        padding: 0.75rem !important;
    }
    
    /* Small mobile slider heights */
    .hero-slider {
        min-height: 340px;
    }
    
    .hero-slider .slide {
        min-height: 340px;
    }
    
    .hero-slider-wrapper {
        height: 220px;
    }
    
    .app-title {
    font-size: 1rem;
    }
    
    .app-subtitle {
        font-size: 0.65rem;
    }
    
    .logo {
        width: 40px;
        height: 40px;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary) !important;
}

.text-gradient {
    color: var(--primary);
}

.bg-gradient-soft {
    background: var(--gradient-soft);
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.spinner-border {
    width: 1rem;
    height: 1rem;
    border-width: 2px;
}

/* Form Validation */
.was-validated .form-control:valid {
    border-color: var(--success);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2310b981' d='m2.3 6.73.98-.98 1.4 1.4 3.14-3.14.98.98-4.12 4.12z'/%3e%3c/svg%3e");
}

.was-validated .form-control:invalid {
    border-color: var(--danger);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ef4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6.4.4.4-.4m0 4.8-.4-.4-.4.4'/%3e%3c/svg%3e");
}

.invalid-feedback {
    color: var(--danger);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
  