/* Social Media Marketing Page Styles */

/* Hero Section */
.social-media-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.social-media-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.social-media-hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    margin-bottom: 3rem;
}

.hero-actions .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Social Dashboard */
.hero-visual {
    position: relative;
    padding: 2rem 0;
}

.social-dashboard {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    transition: transform 0.3s ease;
}

.social-dashboard:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: #333;
}

.dashboard-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.dashboard-header i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.dashboard-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.metric .label {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Floating Social Icons */
.floating-social-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.floating-icon:nth-child(odd) {
    animation-delay: -1.5s;
}

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

/* Section Headers */
.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #dc3545, #6366f1);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Platform Cards */
.platform-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f8f9fa;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.platform-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.facebook .platform-icon {
    background: #1877f2;
}

.instagram .platform-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.linkedin .platform-icon {
    background: #0077b5;
}

.twitter .platform-icon {
    background: #1da1f2;
}

.youtube .platform-icon {
    background: #ff0000;
}

.tiktok .platform-icon {
    background: #000000;
}

.platform-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.platform-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.platform-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.platform-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #495057;
}

.platform-features i {
    color: #28a745;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #dc3545, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Result Cards */
.result-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

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

.result-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.result-header i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.result-header h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.result-metrics {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.metric-item {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #dc3545, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.metric-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.result-description {
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions .btn {
    margin-bottom: 1rem;
}

/* Responsive Design */

/* Large Screens and Tablets */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .service-card {
        padding: 1.75rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .floating-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .dashboard-metrics,
    .result-metrics {
        gap: 1.5rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Make floating elements responsive */
    .floating-social-icons {
        position: relative;
        display: none;
    }
    
    .dashboard-metrics,
    .result-metrics {
        gap: 1.25rem;
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
    .social-hero {
        min-height: 70vh;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .cta-title {
        font-size: 1.875rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-actions {
        text-align: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto 0.75rem auto;
        touch-action: manipulation;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        flex: 0 0 auto;
        margin-bottom: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .social-dashboard {
        transform: none;
        margin-top: 2rem;
        padding: 1rem;
    }
    
    .dashboard-metrics,
    .result-metrics {
        gap: 1rem;
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
        touch-action: manipulation;
    }
    
    .service-card:active {
        transform: scale(0.98);
    }
    
    .social-post,
    .story-highlight {
        touch-action: manipulation;
    }
    
    .social-post:active,
    .story-highlight:active {
        transform: scale(0.98);
    }
    
    /* Prevent zoom on inputs */
    input, textarea, select, button {
        font-size: 16px;
    }
    
    /* Better touch targets */
    .btn {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    /* Improve text readability */
    .service-card p {
        line-height: 1.6;
        font-size: 0.95rem;
    }
    
    /* Platform icons grid */
    .platform-icons {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    /* Content calendar */
    .calendar-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Social proof metrics */
    .social-proof-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .social-hero {
        min-height: 60vh;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.1;
    }
    
    .cta-title {
        font-size: 1.75rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .service-card {
        padding: 1.25rem 0.75rem;
    }
    
    .social-dashboard {
        padding: 0.75rem;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .platform-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .social-post {
        padding: 1rem 0.75rem;
    }
    
    .story-highlight {
        min-width: 80px;
        height: 80px;
    }
    
    .section-spacing {
        padding: 3rem 0;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1rem 0.5rem;
    }
    
    .social-dashboard {
        padding: 0.5rem;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .hero-badge,
    .section-badge {
        padding: 4px 12px;
        font-size: 0.7rem;
    }
    
    .platform-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .story-highlight {
        min-width: 70px;
        height: 70px;
        font-size: 0.8rem;
    }
}

/* Touch Improvements */
@media (max-width: 768px) {
    .btn:active {
        transform: scale(0.95);
    }
    
    .btn:focus {
        outline: 3px solid rgba(99, 102, 241, 0.5);
        outline-offset: 2px;
    }
    
    .service-card:focus,
    .social-post:focus,
    .story-highlight:focus {
        outline: 2px solid rgba(99, 102, 241, 0.5);
        outline-offset: 2px;
    }
    
    /* Better scrolling for social feeds */
    .social-feed {
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .stories-container {
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .social-avatar,
    .brand-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .floating-icon {
        animation: none !important;
    }
    
    .social-dashboard {
        transform: none;
    }
    
    .social-dashboard:hover {
        transform: none;
    }
    
    .service-card:hover,
    .social-post:hover {
        transform: none;
    }
    
    .story-highlight {
        animation: none;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .social-hero {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .section-spacing {
        padding: 2rem 0;
    }
}

/* Print Styles */
@media print {
    .floating-social-icons,
    .floating-icon {
        display: none;
    }
    
    .social-hero,
    .cta-section {
        background: white !important;
        color: black !important;
    }
    
    .service-card,
    .social-post {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
    
    .btn {
        background: transparent !important;
        color: black !important;
        border: 1px solid black !important;
    }
    
    .story-highlight {
        display: none;
    }
}

/* ========================================
   Enhanced Feature Boxes
   ======================================== */

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

.feature-box-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.feature-box-icon i {
    font-size: 28px;
    color: #ffffff;
}

.feature-box-icon.green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.feature-box-icon.purple {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

.feature-box-icon.orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.feature-box:hover .feature-box-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-box-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.feature-box-content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   Enhanced Pricing Cards
   ======================================== */

.packages-section .pricing-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.packages-section .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
}

.packages-section .pricing-card.featured {
    border-color: #667eea;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.packages-section .pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.packages-section .pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.packages-section .pricing-header {
    margin-bottom: 1.5rem;
}

.packages-section .pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.packages-section .pricing-header p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.packages-section .pricing-price {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.packages-section .price-label {
    display: block;
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.packages-section .price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
}

.packages-section .price-period {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 400;
}

.packages-section .pricing-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.packages-section .pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.packages-section .pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #4a4a4a;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

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

.packages-section .pricing-features li i {
    color: #22c55e;
    font-size: 0.875rem;
    margin-top: 3px;
}

.packages-section .pricing-btn {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.packages-section .pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: #ffffff;
}

/* ========================================
   Responsive Adjustments
   ======================================== */

@media (max-width: 768px) {
    .feature-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .feature-box-icon {
        margin: 0 auto;
    }
    
    .packages-section .pricing-card {
        padding: 2rem;
    }
    
    .packages-section .pricing-badge {
        right: -35px;
        font-size: 0.7rem;
    }
    
    .packages-section .price-amount {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .feature-box {
        padding: 1.25rem;
    }
    
    .feature-box-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    
    .feature-box-icon i {
        font-size: 24px;
    }
    
    .packages-section .pricing-card {
        padding: 1.5rem;
    }
}

/* ========================================
   Value Proposition Section
   ======================================== */

.value-proposition-section {
    background: #ffffff;
    overflow: hidden;
}

.value-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.value-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.floating-stats-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #ffffff;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

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

.floating-stats-card .stats-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-stats-card .stats-icon i {
    color: #ffffff;
    font-size: 1.25rem;
}

.floating-stats-card .stats-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.floating-stats-card .stats-label {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
}

.value-content .section-badge {
    display: inline-block;
}

.value-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.value-description {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.value-subdescription {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.services-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.25rem;
}

.services-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checklist-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checklist-icon i {
    color: #ffffff;
    font-size: 0.75rem;
}

.checklist-item span {
    font-size: 0.95rem;
    color: #4a4a4a;
    font-weight: 500;
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-get-started:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: #ffffff;
}

.btn-get-started i {
    transition: transform 0.3s ease;
}

.btn-get-started:hover i {
    transform: translateX(5px);
}

/* Value Section Responsive */
@media (max-width: 991px) {
    .floating-stats-card {
        right: 20px;
        bottom: 20px;
    }
    
    .value-title {
        font-size: 2rem;
    }
    
    .services-checklist {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .floating-stats-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 1rem;
        justify-content: center;
    }
    
    .value-title {
        font-size: 1.75rem;
    }
}
