/**
 * Homepage-specific CSS
 * Extracted from inline styles for better performance
 * Loaded deferred to reduce initial page load
 */

/* Clean Hero Section */
.hero-section-clean {
    background: #ffffff;
    padding: 50px 0 80px 0;
    min-height: 50vh;
    display: flex;
    align-items: flex-start;
}

/* Trust Badge */
.trust-badge-clean {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.trust-logo-clean {
    display: flex;
    align-items: center;
}

.trust-logo-clean i {
    width: 32px;
    height: 32px;
    background: #d97d0c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    margin-right: 8px;
}

.trust-badge-clean span {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* Hero Content */
.hero-content-clean {
    padding-right: 2rem;
    /* Prevent layout shift by reserving space */
    min-height: 400px;
}

.hero-title-clean {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    /* Prevent layout shift from font loading - reserve space for 2 lines */
    min-height: calc(3.5rem * 1.1 * 2);
}

.highlight-text {
    color: #d97d0c;
}

.hero-subtitle-clean {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #666;
    /* Prevent layout shift from font loading */
    min-height: calc(1.6em * 3); /* Reserve space for ~3 lines */
}

.marketing-promo-banner {
    background: linear-gradient(135deg, #d97d0c, #b8650a);
    color: #fff;
    padding-top: 5.5rem;
    padding-bottom: 1.0rem;
}

.promo-banner-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.promo-banner-copy h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
}

.promo-banner-copy p {
    margin: .25rem 0 0;
    font-size: 1.05rem;
}

.promo-banner-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.promo-banner-cta .btn {
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.promo-banner-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.marketing-promo-banner .btn-light {
    background-color: #fff;
    color: #d97d0c;
    border: none;
}

.marketing-promo-banner .btn-light:hover {
    background-color: #f8f9fa;
    color: #b8650a;
}

/* CTA Buttons */
.hero-cta-clean {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    /* Reserve space to prevent layout shift */
    min-height: 56px; /* Button height + gap */
}

.btn-primary-clean {
    background: #d97d0c;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-clean:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    color: white;
}

.btn-secondary-clean {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #1a1a1a;
    padding: 16px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.btn-secondary-clean:hover {
    background: #f8f8f8;
    border-color: #ccc;
    color: #1a1a1a;
}

/* Mini Pricing Table */
.hero-pricing-clean {
    margin-top: 2rem;
    /* Reserve space to prevent layout shift when pricing cards load */
    min-height: 300px;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.toggle-label {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.save-badge {
    background: linear-gradient(135deg, #d97d0c 0%, #b8650a 100%);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, #d97d0c 0%, #b8650a 100%);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.pricing-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.yearly-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

.pricing-card-clean {
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card-clean:hover {
    border-color: #d97d0c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card-featured {
    border-color: #d97d0c;
    background: linear-gradient(135deg, #fff 0%, #fef9f5 100%);
}

.pricing-badge-clean {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d97d0c 0%, #b8650a 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header-clean h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.pricing-price-clean {
    margin-bottom: 1.5rem;
}

.pricing-price-clean .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d97d0c;
    vertical-align: top;
}

.pricing-price-clean .amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0.2rem;
}

.pricing-price-clean .period {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.pricing-features-clean {
    text-align: left;
}

.feature-item-clean {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #555;
}

.feature-item-clean i {
    color: #d97d0c;
    margin-right: 0.8rem;
    font-size: 0.8rem;
    width: 12px;
}

.feature-item-clean:last-child {
    margin-bottom: 0;
}

/* Image Gallery */
.hero-visual-clean {
    padding-left: 2rem;
    max-width: 100%;
    overflow: hidden;
}

.image-gallery {
    position: relative;
}

/* Tab Buttons */
.gallery-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e5e5e5;
    border-radius: 25px;
    padding: 12px 24px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background: #e9ecef;
    border-color: #ccc;
}

.tab-button.active {
    background: #d97d0c;
    color: white;
    border-color: #d97d0c;
}

.tab-button i {
    font-size: 1.1rem;
}

/* Image Collection Layout */
.image-collection {
    height: 450px;
    position: relative;
    overflow: visible;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.stack-item {
    position: absolute;
    width: 280px;
    height: 200px;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Spread out positioning for dashboard images */
.stack-1 {
    top: 10px;
    left: 20px;
    z-index: 6;
    transform: rotate(-2deg);
}

.stack-2 {
    top: 80px;
    left: 180px;
    z-index: 5;
    transform: rotate(1deg);
}

.stack-3 {
    top: 150px;
    left: 40px;
    z-index: 4;
    transform: rotate(-1deg);
}

.stack-4 {
    top: 50px;
    left: 320px;
    z-index: 3;
    transform: rotate(2deg);
}

.stack-5 {
    top: 200px;
    left: 260px;
    z-index: 2;
    transform: rotate(-1.5deg);
}

.stack-6 {
    top: 30px;
    left: 460px;
    z-index: 1;
    transform: rotate(1.5deg);
}

/* Hover animations */
.stack-item:hover {
    transform: translateY(-20px) rotate(0deg) scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

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

/* Stack overlay */
.stack-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    color: white;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stack-item:hover .stack-overlay {
    opacity: 1;
}

.stack-overlay h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.stack-overlay p {
    margin: 0 0 0.5rem 0;
    font-size: 0.8rem;
    opacity: 0.9;
}

.stack-overlay i {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-close:hover {
    color: #d97d0c;
}

#lightboxImage {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
}

.lightbox-info {
    text-align: center;
    color: white;
    margin-top: 20px;
}

.lightbox-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.lightbox-info p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.8;
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 10002;
    padding: 0 40px;
    box-sizing: border-box;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 107, 53, 0.8);
    border: none;
    color: white;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    pointer-events: auto;
    flex-shrink: 0;
    width: auto;
    height: auto;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #d97d0c;
    transform: scale(1.1);
}

.lightbox-prev {
    margin-left: -50px;
}

.lightbox-next {
    margin-right: -50px;
}

/* Feature Tags */
.feature-tags {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    color: #666;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #f8f8f8;
    border-color: #ccc;
}

.tag i {
    font-size: 12px;
    color: #d97d0c;
}

/* Tag Cloud Section */
.tag-cloud-section {
    background: #ffffff;
    padding: 80px 0;
}

.tag-cloud-container {
    max-width: 800px;
    margin: 0 auto;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.tag-cloud .tag {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    color: #666;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
    cursor: pointer;
}

.tag-cloud .tag:hover {
    background: #d97d0c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Tag sizes */
.tag-large {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    font-weight: 600;
}

.tag-medium {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.tag-small {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    font-weight: 400;
}

/* Responsive adjustments for image collections */
@media (max-width: 768px) {
    .image-collection {
        height: 400px;
        overflow: hidden;
        position: relative;
        display: flex;
        justify-content: center;
    }
    
    .stack-item {
        width: 150px;
        height: 110px;
    }
    
    .stack-1 { top: 20px; left: calc(50% - 75px - 40px); }
    .stack-2 { top: 80px; left: calc(50% - 75px + 40px); }
    .stack-3 { top: 140px; left: calc(50% - 75px - 40px); }
    .stack-4 { top: 200px; left: calc(50% - 75px + 40px); }
    .stack-5 { top: 260px; left: calc(50% - 75px - 40px); }
    .stack-6 { top: 320px; left: calc(50% - 75px + 40px); }
    
    .gallery-tabs {
        gap: 0.5rem;
    }
    
    .tab-button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .lightbox-prev {
        margin-left: -30px;
    }
    
    .lightbox-next {
        margin-right: -30px;
    }
    
    #lightboxImage {
        max-height: 60vh;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .lightbox-content {
        padding: 10px;
        width: 95%;
        max-height: 95vh;
        overflow-y: auto;
        overflow-x: hidden;
        padding-bottom: 100px;
    }
    
    .lightbox-info {
        margin-top: 10px;
    }
    
    .lightbox-info h3 {
        font-size: 1.2rem;
    }
    
    .lightbox-info p {
        font-size: 0.9rem;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
    
    .lightbox-nav {
        position: fixed;
        top: auto;
        bottom: 20px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0 10px;
        transform: none;
        z-index: 10002;
        pointer-events: auto;
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    #lightboxImage {
        margin-bottom: 20px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title-clean {
        font-size: 2.5rem;
    }
    
    .pricing-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .billing-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .toggle-label {
        font-size: 0.9rem;
    }
    
    .hero-cta-clean {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary-clean,
    .btn-secondary-clean {
        justify-content: center;
        text-align: center;
    }
    
    .image-collection {
        height: 350px;
    }
    
    .feature-tags {
        justify-content: center;
    }
    
    .hero-content-clean {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .hero-visual-clean {
        padding-left: 0;
        max-width: 100%;
        overflow: hidden;
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        border-radius: 0.5rem;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-item {
        margin: 0.25rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 0.375rem;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: var(--primary-color);
        color: white !important;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
        display: block !important;
        visibility: visible !important;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .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='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        display: block !important;
        visibility: visible !important;
    }
}

@media (max-width: 768px) {
    .hero-title-clean {
        font-size: 2rem;
    }
    
    .hero-subtitle-clean {
        font-size: 1.1rem;
    }
    
    .dashboard-preview-clean {
        padding: 1rem;
    }
    
    .image-collection {
        height: 300px;
        overflow: hidden;
        position: relative;
        display: flex;
        justify-content: center;
    }
    
    .stack-item {
        width: 120px;
        height: 90px;
    }
    
    .stack-1 { top: 10px; left: calc(50% - 60px - 30px); }
    .stack-2 { top: 60px; left: calc(50% - 60px + 30px); }
    .stack-3 { top: 110px; left: calc(50% - 60px - 30px); }
    .stack-4 { top: 160px; left: calc(50% - 60px + 30px); }
    .stack-5 { top: 210px; left: calc(50% - 60px - 30px); }
    .stack-6 { top: 260px; left: calc(50% - 60px + 30px); }
    
    .hero-section-clean {
        padding: 100px 0 60px 0;
        padding-top: 100px;
    }
    
    .pricing-card-clean {
        padding: 1.2rem;
    }
    
    .pricing-price-clean .amount {
        font-size: 1.8rem;
    }
    
    .feature-item-clean {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    #lightboxImage {
        max-height: 50vh;
        max-width: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        margin-bottom: 20px;
    }
    
    .lightbox-content {
        padding: 5px;
        width: 98%;
        max-height: 98vh;
        overflow-y: auto;
        overflow-x: hidden;
        padding-bottom: 100px;
    }
    
    .lightbox-close {
        top: 5px;
        right: 10px;
        font-size: 24px;
    }
    
    .lightbox-info h3 {
        font-size: 1rem;
    }
    
    .lightbox-info p {
        font-size: 0.85rem;
    }
    
    .lightbox-nav {
        bottom: 10px;
        padding: 0 5px;
        display: flex;
        justify-content: center;
        gap: 15px;
        pointer-events: auto;
    }
    
    .image-collection {
        height: 280px;
        overflow: hidden;
        position: relative;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .stack-item {
        width: 100px;
        height: 75px;
    }
    
    .stack-1 { top: 10px; left: calc(50% - 50px - 25px); }
    .stack-2 { top: 50px; left: calc(50% - 50px + 25px); }
    .stack-3 { top: 90px; left: calc(50% - 50px - 25px); }
    .stack-4 { top: 130px; left: calc(50% - 50px + 25px); }
    .stack-5 { top: 170px; left: calc(50% - 50px - 25px); }
    .stack-6 { top: 210px; left: calc(50% - 50px + 25px); }
    
    .gallery-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tab-button {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* Consistent Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 0;
}

/* Features Section Styling */
.features-section {
    background: #ffffff;
    padding: 80px 0;
    min-height: 600px;
}

/* Modern Feature Cards with Images */
.feature-card-modern {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
}

.feature-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #d97d0c;
}

/* Card Sizes */
.feature-card-large {
    min-height: 400px;
}

.feature-card-medium {
    min-height: 350px;
}

.feature-card-small {
    min-height: 280px;
}

/* Image Container */
.feature-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.feature-card-small .feature-image-container {
    height: 150px;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
}

.feature-card-modern:hover .feature-image {
    transform: scale(1.1);
}

/* Image Overlay */
.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217, 125, 12, 0.8) 0%, rgba(217, 125, 12, 0.6) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-overlay {
    opacity: 1;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #d97d0c;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Content Area */
.feature-content {
    padding: 2rem;
    position: relative;
}

.feature-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card-small .feature-content h4 {
    font-size: 1.25rem;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.feature-card-small .feature-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Feature Highlights */
.feature-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-highlight .highlight-text {
    background: linear-gradient(135deg, #d97d0c 0%, #b8650a 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(217, 125, 12, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-card-large,
    .feature-card-medium,
    .feature-card-small {
        min-height: auto;
    }
    
    .feature-image-container {
        height: 180px;
    }
    
    .feature-card-small .feature-image-container {
        height: 140px;
    }
    
    .feature-content {
        padding: 1.5rem;
    }
    
    .feature-content h4 {
        font-size: 1.25rem;
    }
    
    .feature-highlight {
        justify-content: center;
    }
}

/* Fade-in animation classes for JavaScript intersection observer - DISABLED */
.feature-card.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.feature-card.fade-in.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Pricing Section Styling */
.pricing-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.pricing-slider-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.slider-label label {
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.slider-label span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d97d0c;
}

.form-range {
    height: 8px;
    background: #e5e5e5;
    border-radius: 4px;
}

.form-range::-webkit-slider-thumb {
    background: #d97d0c;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.form-range::-moz-range-thumb {
    background: #d97d0c;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.savings-display {
    text-align: center;
}

.savings-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.savings-display .currency {
    color: #d97d0c;
}

.savings-display .period {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.savings-text {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

.comparison-table-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    margin: 0;
}

.comparison-table th {
    background: #f8f9fa;
    border: none;
    padding: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.comparison-table td {
    border: none;
    padding: 1rem;
    border-bottom: 1px solid #e5e5e5;
    color: #666;
}

.pricing-cell {
    background: #d97d0c;
    color: white;
    font-weight: 700;
}

.price {
    font-size: 1.5rem;
}

/* CTA Section Styling */
.cta-section {
    background: #1a1a1a;
    color: white;
    padding: 80px 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: #d97d0c;
    border: none;
}

.cta-buttons .btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.cta-buttons .btn-outline-light {
    border: 2px solid #ccc;
    color: white;
}

.cta-buttons .btn-outline-light:hover {
    background: #ccc;
    color: #1a1a1a;
    border-color: #ccc;
}

/* Footer Styling */
.footer {
    background: #1a1a1a !important;
    color: white;
    padding: 60px 0 30px;
}

.footer-brand img {
    /* Remove the white filter - keep original logo colors */
}

.footer-text {
    color: #ccc !important;
    opacity: 1;
}

.company-details {
    line-height: 1.6;
    margin-top: 1rem;
}

.company-details div {
    margin-bottom: 0.25rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d97d0c !important;
}

.social-links a {
    color: #999;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: -1;
}

/* Facebook */
.social-links a .fa-facebook-f {
    color: #999;
    transition: all 0.3s ease;
}

.social-links a:hover .fa-facebook-f {
    color: white;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-links a:hover::before {
    background: #1877f2;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

/* X (formerly Twitter) - Custom X icon */
.social-links a.x-icon span {
    color: #999;
    font-size: 1.4rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: block;
    line-height: 1;
}

.social-links a.x-icon:hover span {
    color: white;
}

/* LinkedIn */
.social-links a .fa-linkedin-in {
    color: #999;
    transition: all 0.3s ease;
}

.social-links a:hover .fa-linkedin-in {
    color: white;
}

/* Instagram */
.social-links a .fa-instagram {
    color: #999;
    transition: all 0.3s ease;
}

.social-links a:hover .fa-instagram {
    color: white;
}

/* Specific brand colors for each icon */
.social-links a:nth-child(1):hover::before {
    background: #1877f2;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.social-links a:nth-child(2):hover::before {
    background: #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.social-links a:nth-child(3):hover::before {
    background: #0077b5;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.4);
}

.social-links a:nth-child(4):hover::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

/* Responsive adjustments for sections */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .savings-amount {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile menu improvements */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        border-radius: 0.5rem;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-item {
        margin: 0.25rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 0.375rem;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: var(--primary-color);
        color: white !important;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
        display: block !important;
        visibility: visible !important;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .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='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        display: block !important;
        visibility: visible !important;
    }
    
    .navbar-collapse {
        display: none;
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
    
    .slide-caption {
        padding: 1rem;
    }
    
    .slide-caption h5 {
        font-size: 1rem;
    }
    
    .slide-caption p {
        font-size: 0.75rem;
    }
}

/* Ensure carousel images are responsive */
.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.promo-banner-code {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    color: #fff;
}

.promo-banner-code code {
    background: rgba(255, 255, 255, 0.22);
    padding: 0.28rem 0.9rem;
    border-radius: 999px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.06em;
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.promo-code-summary {
    font-weight: 700;
    color: #ffffff;
}

.promo-code-ends {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

.promo-code-label {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 575.98px) {
    .promo-banner-code {
        justify-content: center;
        text-align: center;
    }

    .promo-banner-cta {
        width: 100%;
        justify-content: center;
        margin-top: 0.75rem;
    }

    .promo-banner-cta .btn {
        width: 100%;
    }
}

