/**
 * Digital India Agency - Custom Styles
 * Enhanced with Modern Design Patterns
 */

:root {
    --primary-color: #0066cc;
    --primary-dark: #004a99;
    --primary-light: #3385d6;
    --secondary-color: #fbbf24;
    --secondary-dark: #d97706;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-cyan: #06b6d4;
    --dark-color: #111827;
    --light-color: #f9fafb;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --font-primary: 'Poppins', sans-serif;
    --transition-speed: 0.3s;
    --box-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --box-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --box-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5 {
    font-weight: 800;
}

/* Navbar */
.navbar {
    background-color: #1a1a1a !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 193, 7, 0.3);
    transition: all var(--transition-speed) ease;
}

.navbar.scrolled {
    background-color: #0d0d0d !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 0;
    border-bottom-color: var(--secondary-color);
}

/* Logo Styling */
.navbar-logo {
    height: 55px;
    width: auto;
    max-width: 200px;
    transition: all var(--transition-speed) ease;
    object-fit: contain;
}

.navbar.scrolled .navbar-logo {
    height: 45px;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    align-items: center;
    transition: all var(--transition-speed) ease;
}

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

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all var(--transition-speed) ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all var(--transition-speed) ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

/* Mobile Navbar */
@media (max-width: 991px) {
    .navbar-logo {
        height: 45px;
    }

    .navbar.scrolled .navbar-logo {
        height: 40px;
    }

    .navbar-collapse {
        background: rgba(26, 26, 26, 0.98);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: var(--box-shadow-lg);
    }

    .nav-link::after {
        display: none;
    }
}

/* Background Gradients */
.bg-gradient-primary {
    background: linear-gradient(135deg, #0066cc 0%, #1e40af 50%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 20%);
    pointer-events: none;
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
}

.gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-cyan {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-sunset {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.glass-dark {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-premium {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-xl);
    border-color: rgba(0, 0, 0, 0.0);
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0052a3;
    border-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.btn-warning {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #000;
}

.btn-warning:hover {
    background-color: #ffb300;
    border-color: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* Service Cards */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-xl) !important;
    border-color: var(--primary-color) !important;
    background: #ffffff;
}

.service-icon {
    color: var(--primary-color);
}

/* Floating Buttons */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    color: #fff;
}

.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.call-float:hover {
    background-color: #0052a3;
    transform: scale(1.1);
    color: #fff;
}

/* Back to Top Button */
#backToTop {
    transition: all 0.3s ease;
}

#backToTop:hover {
    transform: translateY(-5px);
}

/* Hero Section */
.hero-section {
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Page Header */
.page-header {
    padding: 80px 0 60px;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004499 100%);
}

/* Footer */
.footer {
    margin-top: 0;
    background-color: #1a1a1a !important;
    border-top: 2px solid rgba(255, 193, 7, 0.5);
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-color) !important;
}

.footer .social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-right: 10px;
}

.footer .social-links a:hover {
    background-color: var(--secondary-color);
    color: #000 !important;
    transform: translateY(-3px);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: #000 !important;
    transform: translateY(-3px);
}

/* Forms */
.form-control,
.form-select {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Testimonials */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Testimonials Slider */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-slide {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 20px;
}

.testimonial-quote {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
}

#testimonialsCarousel {
    max-width: 900px;
    margin: 0 auto 40px;
}

#testimonialsCarousel .carousel-control-prev,
#testimonialsCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
}

#testimonialsCarousel .carousel-control-prev {
    left: -25px;
}

#testimonialsCarousel .carousel-control-next {
    right: -25px;
}

#testimonialsCarousel .carousel-control-prev:hover,
#testimonialsCarousel .carousel-control-next:hover {
    opacity: 1;
    background-color: #0052a3;
}

#testimonialsCarousel .carousel-indicators {
    bottom: -50px;
}

#testimonialsCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.5;
}

#testimonialsCarousel .carousel-indicators button.active {
    opacity: 1;
}

@media (max-width: 768px) {

    #testimonialsCarousel .carousel-control-prev,
    #testimonialsCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    #testimonialsCarousel .carousel-control-prev {
        left: -20px;
    }

    #testimonialsCarousel .carousel-control-next {
        right: -20px;
    }

    .testimonial-slide {
        min-height: 350px;
        padding: 20px 10px;
    }

    .testimonial-quote .lead {
        font-size: 1.1rem;
    }
}

/* Accordion */
.accordion-button {
    font-weight: 600;
    background-color: #fff;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Counter Animation */
.counter {
    font-weight: 800;
}

/* Process Steps */
.process-step {
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-number .badge {
    font-weight: 700;
}

/* Industry Cards */
.industry-card {
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border: 2px solid var(--primary-color);
}

/* Tool Items */
.tool-item {
    transition: all 0.3s ease;
}

.tool-item:hover {
    transform: scale(1.1);
}

.tool-item i {
    transition: all 0.3s ease;
}

.tool-item:hover i {
    color: var(--secondary-color) !important;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    background-color: #fff;
    color: var(--text-color);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
    background-color: #fff;
    line-height: 1.8;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004499 100%);
}

.trust-item {
    padding: 20px;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Blog Cards */
.blog-card {
    transition: all 0.3s ease;
    border: none;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.blog-card .card-title a {
    transition: color 0.3s ease;
}

.blog-card:hover .card-title a {
    color: var(--primary-color) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .hero-section {
        min-height: 500px;
        padding: 60px 0;
    }

    .whatsapp-float,
    .call-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 80px;
    }

    .call-float {
        bottom: 20px;
    }

    .process-step,
    .industry-card,
    .tool-item {
        margin-bottom: 1.5rem;
    }
}

/* Loading Spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
}

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

.bg-primary {
    background-color: var(--primary-color) !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Service Detail Page */
.service-content {
    line-height: 1.8;
}

.service-content h2,
.service-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-content ul,
.service-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.service-content li {
    margin-bottom: 0.5rem;
}

/* Blog Styles */
.blog-card {
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.blog-meta {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Case Study Cards */
.case-study-card {
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

/* Sticky Sidebar */
.sticky-top {
    position: sticky;
    top: 100px;
    z-index: 10;
}

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

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #0052a3;
}

/* ============================================
   NEW SECTIONS - ENHANCED DESIGN
   ============================================ */

/* Partners/Clients Section */
.partners-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 0;
    overflow: hidden;
}

.partners-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.partner-logo {
    height: 60px;
    width: auto;
    max-width: 150px;
    opacity: 0.6;
    transition: all var(--transition-speed) ease;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Animated Statistics Counter */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004499 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 80px 0;
}

.newsletter-input {
    border-radius: 50px;
    padding: 1.2rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-btn {
    border-radius: 50px;
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    border: none;
    color: #000;
}

/* Fix Header and Footer Blending Issues */

/* Header - Add solid background and shadow */
.navbar {
    background-color: rgba(26, 26, 26, 0.98) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background-color: rgba(26, 26, 26, 1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Remove old newsletter section that's blending */
.newsletter-section.bg-primary {
    display: none;
}

/* Footer - Better separation from content */
.footer {
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
    border-top: 3px solid var(--secondary-color);
    margin-top: 0;
}

/* Add spacing before footer */
.footer::before {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
    margin-bottom: 3rem;
}

/* Footer Logo Container */
.footer .bg-white {
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
    transition: all 0.3s ease;
}

.footer .bg-white:hover {
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    transform: translateY(-2px);
}

/* Mobile Slide Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        padding: 2rem 1rem;
        margin-top: 0;
        transition: left 0.3s ease-in-out;
        z-index: 9999;
        overflow-y: auto;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.5);
    }

    .navbar-collapse.show {
        left: 0;
    }

    .navbar-collapse.collapsing {
        left: -100%;
        transition: left 0.3s ease-in-out;
    }

    /* Menu overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    /* Close button for mobile menu */
    .mobile-menu-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: transparent;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 10000;
    }

    .navbar-nav {
        margin-top: 3rem;
    }

    .nav-link {
        padding: 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* ============================================
   TIER-1 AGENCY DESIGN SYSTEM
   ============================================ */

/* Simplified Typography System - 4 Sizes Only */
:root {
    --font-hero: 3rem;
    /* 48px - Hero headlines only */
    --font-heading: 2rem;
    /* 32px - All section headings */
    --font-body: 1rem;
    /* 16px - Body text, buttons */
    --font-small: 0.875rem;
    /* 14px - Captions, labels */
}

/* Hero Size - Only for main hero headline */
h1,
.h1,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5 {
    font-size: var(--font-hero);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Heading Size - All section headings */
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-size: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

/* Body Size - Default text */
body,
p,
.lead,
li,
a,
button,
.btn {
    font-size: var(--font-body);
    line-height: 1.6;
    font-weight: 400;
}

/* Small Size - Captions and labels */
small,
.small,
.text-muted,
caption {
    font-size: var(--font-small);
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    :root {
        --font-hero: 2rem;
        /* 32px on mobile */
        --font-heading: 1.5rem;
        /* 24px on mobile */
    }
}

/* Premium Card Styles */
.card-premium {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.card-premium-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.card-premium-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-purple) 100%);
    color: white;
}

/* Enhanced Spacing System */
.spacing-xs {
    padding: 0.25rem;
}

.spacing-sm {
    padding: 0.5rem;
}

.spacing-md {
    padding: 1rem;
}

.spacing-lg {
    padding: 1.5rem;
}

.spacing-xl {
    padding: 2rem;
}

.spacing-2xl {
    padding: 3rem;
}

.spacing-3xl {
    padding: 4rem;
}

.spacing-4xl {
    padding: 6rem;
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    h1,
    .h1 {
        font-size: 2.5rem;
    }

    h2,
    .h2 {
        font-size: 2rem;
    }

    h3,
    .h3 {
        font-size: 1.5rem;
    }
}

/* Premium Buttons */
.btn-premium {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-premium-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.btn-premium-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: #000;
}

/* Sticky Conversion Bar */
.sticky-conversion-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9997;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 2px solid var(--secondary-color);
}

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

.sticky-conversion-bar .conversion-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-conversion-bar .btn {
    flex: 1;
    max-width: 300px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .sticky-conversion-bar .conversion-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .sticky-conversion-bar .btn {
        width: 100%;
        max-width: none;
    }
}

/* Override Bootstrap display classes to use consistent sizing */
.display-1,
.display-2,
.display-3 {
    font-size: var(--font-hero) !important;
}

.display-4,
.display-5,
.display-6 {
    font-size: var(--font-heading) !important;
}

/* Ensure all headings use heading size */
.card-title,
.modal-title,
.accordion-button {
    font-size: var(--font-heading) !important;
}

/* Consistent button sizing */
.btn,
.btn-lg,
.btn-sm {
    font-size: var(--font-body) !important;
    padding: 0.75rem 1.5rem;
}

/* Lead text uses body size */
.lead {
    font-size: var(--font-body) !important;
    font-weight: 500;
}