/* Global Variables */
:root {
    --primary-red: #ff0000;
    --primary-red-dark: #d50000;
    --primary-red-light: #ff4d4d;
    --primary-red-transparent: rgba(255, 0, 0, 0.1);
    --primary-red-hover: #ff6b6b;
    --primary-red-glow: rgba(255, 0, 0, 0.3);
    --accent-color: #ff0000;
    --secondary-accent: #ff5e00;
    --accent-color-rgb: 255, 0, 0;
    --white: #ffffff;
    --off-white: #f9f9f9;
    --light-gray: #f1f1f1;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    --text-dark: #212121;
    --text-light: #ffffff;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition-fast: all 0.3s ease;
    --transition-medium: all 0.5s ease;
    --transition-slow: all 0.8s ease;
    --dark-blue: #1a1a2e;
    --dark-purple: #2a2a4a;
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

/* Navbar Spacer */
.navbar-spacer {
    height: 76px; /* Adjust this value to match your navbar height */
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 0 0 100px;
    overflow: hidden;
    background-color: var(--white);
}

/* Animated Gradient Background */
.hero-bg-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 240, 240, 1) 25%,
        rgba(255, 220, 220, 1) 50%,
        rgba(255, 200, 200, 1) 75%,
        rgba(255, 230, 230, 1) 100%
    );
    background-size: 400% 400%;
    opacity: 0.8;
    z-index: 0;
}

/* Clean Service Header */
.service-header {
    margin-bottom: 50px;
    text-align: left;
}

.header-content {
    display: inline-block;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    padding: 5px;
}

.service-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
}

.service-tag i {
    font-size: 18px;
}

/* Hero Content Row */
.hero-content-row {
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

/* Hero Content */
.hero-content {
    padding-right: 30px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.hero-title-line {
    display: block;
}

.hero-title .highlight {
    color: var(--primary-red);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 8px;
    background-color: var(--primary-red-transparent);
    z-index: -1;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
    max-width: 540px;
}

/* Hero Features */
.hero-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.feature-item i {
    color: var(--primary-red);
    font-size: 18px;
}

.feature-item span {
    font-size: 16px;
    font-weight: 500;
}

/* CTA Buttons */
.cta-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background-color: var(--primary-red);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: var(--transition-medium);
}

.cta-primary:hover {
    background-color: var(--primary-red-dark);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

.cta-primary:hover::before {
    transform: translateX(100%);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: transparent;
    color: var(--primary-red);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--primary-red-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.cta-secondary i {
    transition: var(--transition-fast);
    font-size: 14px;
}

.cta-secondary:hover {
    background-color: var(--primary-red-transparent);
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.cta-secondary:hover i {
    transform: translateX(5px);
}

/* Pulse Animation for CTA */
.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Professional Image Presentation */
.professional-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-display-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Content Frame - Professional Border */
.content-frame {
    position: relative;
    border-radius: 16px;
    background-color: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: perspective(1000px);
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.5s ease;
}

/* Device Mockup */
.device-mockup {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--white);
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transform-origin: center;
    border-radius: 0;
}

/* Professional Metrics Overlay */
.metrics-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 16px;
}

.overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.platform-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.platform-indicator i {
    font-size: 18px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.post-date {
    font-size: 14px;
    color: #666;
}

.engagement-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
}

.stat-item i {
    font-size: 18px;
}

.stat-item:nth-child(1) i {
    color: #e31b23;
}

.stat-item:nth-child(3) i {
    color: #1877f2;
}

.stat-item:nth-child(5) i {
    color: #28a745;
}

.stat-separator {
    width: 1px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 0 24px;
}

/* Enhanced Professional Results Badge */
.results-badge {
    position: absolute;
    top: 30px;
    right: -30px;
    width: 180px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 10;
    transform-origin: center;
    will-change: transform, opacity, box-shadow;
    backface-visibility: hidden;
    opacity: 0; /* Start invisible for animation */
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.badge-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.badge-top::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0% {
        transform: translateX(-100%);
    }
    50%, 100% {
        transform: translateX(100%);
    }
}

.badge-top i {
    font-size: 18px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.badge-content-wrapper {
    overflow: hidden;
    background: linear-gradient(180deg, white 0%, #fafafa 100%);
}

.badge-stat {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.badge-stat::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 0, 0, 0.04);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-out;
    z-index: -1;
}

.badge-stat:hover::after {
    transform: scaleX(1);
}

.badge-stat:last-child {
    border-bottom: none;
}

.stat-value {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1.2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: left;
    position: relative;
}

.stat-value::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 0, 0, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.badge-stat:hover .stat-value::after {
    transform: scaleX(0.6);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--dark-gray);
    font-weight: 400;
    transition: transform 0.3s ease;
}

.badge-stat:hover .stat-label {
    transform: translateX(4px);
}

/* Animation Keyframes */
@keyframes highlightStat {
    0%, 100% {
        background-color: transparent;
    }
    50% {
        background-color: rgba(255, 0, 0, 0.1);
    }
}

@keyframes glowText {
    0%, 100% {
        text-shadow: none;
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .results-badge {
        right: 0;
    }
}

/* Large Tablet / Small Desktop */
@media (max-width: 992px) {
    .hero-section {
        padding: 0 0 120px;
    }

    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .content-frame {
        transform: none !important;
        max-width: 450px;
        margin: 0 auto;
    }

    .results-badge {
        top: auto;
        bottom: -60px;
        right: 10px;
        width: 160px;
    }
}

/* Medium Tablet */
@media (max-width: 768px) {
    .hero-section {
        padding: 0 0 130px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .service-header {
        margin-bottom: 30px;
    }
    
    .cta-wrapper {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .professional-image-wrapper {
        padding: 0 15px;
    }
    
    .content-frame {
        max-width: 400px;
    }
    
    .results-badge {
        bottom: -60px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .metrics-overlay {
        padding: 12px;
    }
    
    .engagement-stats {
        padding: 8px 0;
    }
    
    .stat-separator {
        margin: 0 12px;
    }
}

/* Small Tablet */
@media (max-width: 640px) {
    .hero-section {
        padding: 0 0 140px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .content-frame {
        max-width: 350px;
    }
    
    .overlay-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .post-date {
        align-self: flex-end;
        margin-top: -20px;
    }
    
    .results-badge {
        width: 150px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-section {
        padding: 0 0 150px;
    }
    
    .service-tag {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .service-tag i {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .feature-item {
        margin-bottom: 10px;
    }
    
    .feature-item span {
        font-size: 14px;
    }
    
    .cta-primary, .cta-secondary {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .professional-image-wrapper {
        margin-top: 20px;
    }
    
    .content-frame {
        max-width: 300px;
    }
    
    .platform-indicator {
        font-size: 14px;
    }
    
    .post-date {
        font-size: 12px;
    }
    
    .stat-item {
        font-size: 14px;
    }
    
    .stat-separator {
        margin: 0 8px;
    }
    
    .results-badge {
        width: 140px;
        bottom: -70px;
    }
    
    .badge-stat {
        padding: 10px 12px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-section {
        padding: 0 0 170px;
    }
    
    .service-header {
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .hero-features {
        margin-bottom: 30px;
    }
    
    .content-frame {
        max-width: 100%;
    }
    
    .metrics-overlay {
        padding: 10px;
    }
    
    .overlay-header {
        margin-bottom: 8px;
    }
    
    .platform-indicator {
        font-size: 13px;
    }
    
    .platform-indicator i {
        font-size: 16px;
    }
    
    .post-date {
        font-size: 11px;
        margin-top: -15px;
    }
    
    .engagement-stats {
        padding: 5px 0;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .stat-item {
        font-size: 13px;
        gap: 5px;
    }
    
    .stat-item i {
        font-size: 16px;
    }
    
    .stat-separator {
        display: none;
    }
    
    .results-badge {
        width: 130px;
        bottom: -85px;
    }
    
    .badge-top {
        padding: 8px 12px;
    }
    
    .badge-stat {
        padding: 8px 10px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-section {
        padding: 0 0 180px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
    }
    
    .feature-item i {
        font-size: 16px;
    }
    
    .feature-item span {
        font-size: 13px;
    }
    
    .cta-primary, .cta-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-content {
        gap: 6px;
    }
    
    .content-frame {
        border-radius: 12px;
    }
    
    .results-badge {
        width: 120px;
        bottom: -80px;
    }
    
    .stat-value {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 10px;
    }
}

/* Enhanced Features Section */
.features-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--off-white);
    overflow: hidden;
}

.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(255, 230, 230, 0.3) 0%, rgba(255, 240, 240, 0.1) 40%, rgba(255, 255, 255, 0) 80%);
    z-index: 0;
}

.section-title-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.section-tag i {
    font-size: 16px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.section-title .highlight {
    color: var(--primary-red);
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 8px;
    background-color: var(--primary-red-transparent);
    z-index: -1;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 540px;
    margin: 0 auto;
}

/* Features Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

/* Feature Card Styling */
.feature-card {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-red), var(--primary-red-dark));
    transition: height 0.4s ease;
}

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

.feature-card:hover:before {
    height: 100%;
}

/* Featured Card */
.featured-card {
    background: linear-gradient(135deg, #fff 0%, #fff8f8 100%);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.featured-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 10px;
    background-color: var(--primary-red);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* Feature Icon Styling */
.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    position: relative;
    margin-bottom: 25px;
}

.feature-icon-bg {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 0, 0, 0.02) 100%);
    border-radius: 16px;
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-bg {
    transform: rotate(0deg) scale(1.1);
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.15) 0%, rgba(255, 0, 0, 0.05) 100%);
}

.feature-lord-icon {
    width: 64px;
    height: 64px;
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 1;
}

/* Feature Content Styling */
.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: var(--primary-red);
}

.feature-description {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

/* Feature Stats */
.feature-stats {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-highlight {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* CTA Button in Features Section */
.features-cta-wrapper {
    margin-top: 30px;
}

.btn-features-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: var(--primary-red);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-features-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: all 0.5s ease;
}

.btn-features-cta:hover {
    background-color: var(--primary-red-dark);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4);
}

.btn-features-cta:hover::before {
    transform: translateX(100%);
}

.btn-features-cta i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Responsive Styles for Features Section */
@media (max-width: 1200px) {
    .features-section {
        padding: 100px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .features-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 70px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .features-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon-bg {
        width: 70px;
        height: 70px;
    }
    
    .feature-lord-icon {
        width: 56px;
        height: 56px;
        top: 7px;
        left: 7px;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .btn-features-cta {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .stat-value {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Audience Engagement Section */
.engagement-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--white);
    overflow: hidden;
}

.engagement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 245, 245, 0.4) 0%, rgba(255, 255, 255, 0) 60%);
    z-index: 0;
}

/* Content Styling */
.engagement-content-col {
    position: relative;
    z-index: 2;
}

.engagement-content {
    padding-right: 40px;
}

.content-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.content-tag i {
    font-size: 16px;
}

.engagement-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

.engagement-title .highlight {
    color: var(--primary-red);
    position: relative;
}

.engagement-title .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 8px;
    background-color: var(--primary-red-transparent);
    z-index: -1;
}

.engagement-subtitle {
    font-size: 1.25rem;
    color: var(--primary-red);
    margin-bottom: 25px;
    font-weight: 500;
}

.engagement-text {
    margin-bottom: 30px;
}

.engagement-text p {
    font-size: 1.05rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Engagement Metrics */
.engagement-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.metric-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.1);
}

.metric-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red-light) 0%, var(--primary-red) 100%);
    color: var(--white);
    border-radius: 12px;
    font-size: 20px;
}

.metric-content {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-top: 5px;
}

/* CTA Button */
.engagement-cta {
    margin-top: 30px;
}

.btn-engagement {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(to right, var(--primary-red), var(--primary-red-dark));
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-engagement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: all 0.5s ease;
    z-index: 1;
}

.btn-engagement span, 
.btn-engagement i {
    position: relative;
    z-index: 2;
}

.btn-engagement:hover {
    color: var(--white);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.3);
    transform: translateY(-3px);
}

.btn-engagement:hover::before {
    transform: translateX(100%);
}

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

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

/* Image Column Styling */
.engagement-image-col {
    position: relative;
    z-index: 2;
}

.engagement-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(255, 0, 0, 0.2);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(255, 0, 0, 0.1);
}

.deco-line {
    position: absolute;
    background-color: rgba(255, 0, 0, 0.1);
}

.line-1 {
    width: 150px;
    height: 3px;
    top: 30%;
    right: 15%;
    transform: rotate(-45deg);
}

.line-2 {
    width: 150px;
    height: 3px;
    bottom: 30%;
    left: 15%;
    transform: rotate(-45deg);
}

.engagement-image-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    z-index: 2;
}

.engagement-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Floating Engagement Elements */
.floating-engagement {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background-color: var(--white);
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 600;
    z-index: 3;
}

.like-bubble {
    top: 20%;
    right: -20px;
    color: #e31b23;
}

.comment-bubble {
    bottom: 30%;
    left: -20px;
    color: #1877f2;
}

.share-bubble {
    bottom: 10%;
    right: 30px;
    color: #28a745;
}

.floating-engagement i {
    font-size: 16px;
}

.count {
    font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .engagement-section {
        padding: 100px 0;
    }
    
    .engagement-title {
        font-size: 2.5rem;
    }
    
    .engagement-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .circle-1 {
        width: 250px;
        height: 250px;
    }
    
    .circle-2 {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 992px) {
    .engagement-section {
        padding: 80px 0;
    }
    
    .engagement-content {
        padding-right: 0;
        margin-bottom: 60px;
    }
    
    .engagement-title {
        font-size: 2.3rem;
    }
    
    .engagement-subtitle {
        font-size: 1.1rem;
    }
    
    .engagement-text p {
        font-size: 1rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .engagement-image-container {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .engagement-section {
        padding: 70px 0;
    }
    
    .engagement-title {
        font-size: 2rem;
    }
    
    .engagement-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .content-tag {
        font-size: 13px;
        padding: 7px 14px;
    }
    
    .engagement-image-container {
        max-width: 300px;
    }
    
    .floating-engagement {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .floating-engagement i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .engagement-section {
        padding: 60px 0;
    }
    
    .engagement-title {
        font-size: 1.8rem;
    }
    
    .engagement-subtitle {
        font-size: 1rem;
    }
    
    .engagement-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .metric-item {
        padding: 12px;
    }
    
    .metric-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .metric-value {
        font-size: 1.4rem;
    }
    
    .btn-engagement {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .engagement-image-container {
        max-width: 270px;
    }
    
    .like-bubble {
        top: 15%;
        right: -10px;
    }
    
    .comment-bubble {
        bottom: 25%;
        left: -10px;
    }
    
    .share-bubble {
        bottom: 10%;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .engagement-title {
        font-size: 1.6rem;
    }
    
    .engagement-text p {
        font-size: 0.9rem;
    }
    
    .deco-circle, .deco-line {
        display: none;
    }
    
    .engagement-image-container {
        max-width: 240px;
    }
}

/* Services Section */
.services-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--off-white);
    overflow: hidden;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(255, 230, 230, 0.4) 0%, rgba(255, 245, 245, 0.1) 50%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

/* Service Card Styling */
.service-card {
    position: relative;
    height: 100%;
    perspective: 1000px;
}

.service-card-inner {
    position: relative;
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px 20px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

.service-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-red), var(--primary-red-dark));
    transition: height 0.4s ease;
    z-index: -1;
}

.service-card:hover .service-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-card-inner::before {
    height: 100%;
}

/* Featured Service */
.featured-service .service-card-inner {
    border: 1px solid rgba(255, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #fff8f8 100%);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.08);
}

.featured-label {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 10px;
    background-color: var(--primary-red);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

/* Service Icon */
.service-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 0, 0, 0.05) 100%);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.15) 0%, rgba(255, 0, 0, 0.08) 100%);
}

.service-lord-icon {
    width: 50px;
    height: 50px;
}

/* Service Content */
.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-red);
}

.service-description {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

/* Service Benefits */
.service-benefits {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

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

.benefit-item i {
    color: var(--primary-red);
    font-size: 12px;
}

.benefit-item span {
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Services CTA Button */
.services-cta-wrapper {
    margin-top: 30px;
}

.btn-services-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: var(--primary-red);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: all 0.5s ease;
}

.btn-services-cta:hover {
    background-color: var(--primary-red-dark);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4);
}

.btn-services-cta:hover::before {
    transform: translateX(100%);
}

.btn-services-cta i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-services-cta:hover i {
    transform: translateX(5px);
}

/* Responsive Styles for Services Section */
@media (max-width: 1200px) {
    .services-section {
        padding: 100px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card-inner {
        padding: 25px 20px;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .service-lord-icon {
        width: 45px;
        height: 45px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 70px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-card-inner {
        padding: 20px 15px;
    }
    
    .service-title {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .benefit-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card-inner {
        padding: 25px 20px;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .btn-services-cta {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .service-description {
        font-size: 0.85rem;
    }
    
    .benefit-item {
        gap: 8px;
    }
    
    .benefit-item i {
        font-size: 10px;
    }
    
    .benefit-item span {
        font-size: 0.75rem;
    }
}

/* Enhanced Modern Pricing Section */
.pricing-container {
    background: linear-gradient(135deg, #ffffff, #fff0f0);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.pricing-container::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.04);
    top: -150px;
    right: -150px;
    z-index: 0;
}

.pricing-container::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.05);
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-content h2 {
    text-align: center;
    color: var(--primary-red);
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.pricing-content p {
    text-align: center;
    color: var(--dark-gray);
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 35px 30px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.2);
}

.pricing-card.premium {
    border-top: 4px solid var(--primary-red);
    background: linear-gradient(to bottom, rgba(255, 240, 240, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
}

.pricing-card.premium:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15), 0 0 30px rgba(255, 0, 0, 0.1);
}

.pricing-card.enterprise {
    border-top: 4px solid #3498db;
}

.pricing-card.enterprise:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15), 0 0 30px rgba(52, 152, 219, 0.1);
}

.popular-tag, .best-deal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-red);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.best-deal {
    background: linear-gradient(to right, #FFD700, #FFA500);
    color: #333;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.pricing-card h3 {
    font-size: 24px;
    color: var(--primary-red);
    margin: 0 0 20px;
    font-weight: 600;
}

.pricing-amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-red);
    margin: 0 0 5px;
    display: block;
    line-height: 1.2;
}

.pricing-card.premium .pricing-amount {
    color: var(--primary-red);
}

.pricing-card.enterprise .pricing-amount {
    color: #3498db;
}

.pricing-amount span {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-gray);
}

.pricing-description {
    color: var(--dark-gray);
    font-size: 15px;
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}

.pricing-features li {
    color: var(--dark-gray);
    margin-bottom: 15px;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
}

.pricing-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-red);
    font-weight: bold;
}

.pricing-card.premium .pricing-features li:before {
    color: var(--primary-red);
}

.pricing-features li.special {
    color: var(--text-dark);
}

.pricing-features li strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.sub-list-style {
    list-style: none;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.sub-list-style:before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(0, 0, 0, 0.4);
}

.pricing-footer {
    margin-top: auto;
}

.btn-started {
    display: block;
    width: 100%;
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.btn-started:hover, .btn-started.active {
    background: #d50000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.pricing-card.premium .btn-started {
    background: var(--primary-red);
    color: white;
}

.pricing-card.premium .btn-started:hover, 
.pricing-card.premium .btn-started.active {
    background: #d50000;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.pricing-card.enterprise .btn-started {
    background: #3498db;
    color: white;
}

.pricing-card.enterprise .btn-started:hover,
.pricing-card.enterprise .btn-started.active {
    background: #2980b9;
    color: white;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

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

.modal-content {
    background: white;
    margin: 10vh auto;
    padding: 40px;
    width: 90%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: modalOpen 0.4s ease-out;
}

@keyframes modalOpen {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--dark-gray);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
}

.close:hover {
    color: white;
    background: var(--primary-red);
    transform: rotate(90deg);
}

.modal-title {
    color: var(--primary-red);
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
}

.modal p {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-size: 16px;
}

.addon-options {
    margin-bottom: 35px;
}

.addon-options h4 {
    color: var(--text-dark);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

#addOnForm {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.addon-option, #addOnForm label {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.addon-option:hover, #addOnForm label:hover {
    background: rgba(255, 0, 0, 0.03);
    border-color: rgba(255, 0, 0, 0.1);
    transform: translateY(-2px);
}

.addon-option input[type="checkbox"], #addOnForm input[type="checkbox"] {
    margin-right: 15px;
    margin-top: 2px;
    accent-color: var(--primary-red);
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.addon-option input[type="checkbox"]:checked + label, #addOnForm input[type="checkbox"]:checked + span {
    color: var(--primary-red);
    font-weight: 600;
}

#addOnForm label {
    cursor: pointer;
    color: var(--text-dark);
    font-weight: 500;
}

.addon-option label span, #addOnForm label span.addon-price {
    display: block;
    font-size: 14px;
    color: var(--dark-gray);
    margin-top: 5px;
    font-weight: normal;
}

#whatsappBtn, .whatsapp-button {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 16px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#whatsappBtn:before, .whatsapp-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #128C7E, #25D366);
    z-index: -1;
    transition: all 0.4s ease;
}

#whatsappBtn:hover, .whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

#whatsappBtn:hover:before, .whatsapp-button:hover:before {
    background: linear-gradient(45deg, #0a7368, #1fb655);
}

#whatsappBtn i, .whatsapp-button i {
    font-size: 20px;
    margin-right: 5px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .pricing-container {
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    .pricing-content h2 {
        font-size: 36px;
    }
    
    .pricing-content p {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .pricing-amount {
        font-size: 36px;
    }
    
    .modal-content {
        width: 95%;
        padding: 25px;
        margin: 5vh auto;
    }
}

@media (max-width: 480px) {
    .pricing-container {
        padding: 60px 15px;
    }
    
    .pricing-content h2 {
        font-size: 30px;
    }
    
    .pricing-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .pricing-amount {
        font-size: 32px;
    }
    
    .pricing-features li {
        font-size: 14px;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .addon-option {
        padding: 12px;
    }
}

/* Agency Excellence Section */
.agency-excellence-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    overflow: hidden;
}

.agency-excellence-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.03);
    top: -300px;
    right: -300px;
    z-index: 0;
}

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

.agency-content .content-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 0, 0, 0.1);
    color: var(--primary-red);
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.agency-content .content-tag i {
    margin-right: 8px;
    font-size: 12px;
}

.agency-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.agency-title .highlight {
    position: relative;
    color: var(--primary-red);
    z-index: 1;
}

.agency-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 0, 0, 0.2);
    z-index: -1;
}

.agency-subtitle {
    font-size: 20px;
    color: var(--primary-red);
    margin-bottom: 25px;
    font-weight: 600;
}

.agency-text {
    margin-bottom: 30px;
}

.agency-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.agency-metrics {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

.agency-metrics .metric-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.agency-metrics .metric-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 0, 0, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 18px;
}

.metric-content {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.metric-label {
    font-size: 14px;
    color: var(--dark-gray);
}

.agency-cta {
    margin-top: 35px;
}

.btn-agency {
    display: inline-flex;
    align-items: center;
    background: var(--primary-red);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.2);
}

.btn-agency:hover {
    background: #d50000;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 0, 0, 0.3);
}

.btn-agency i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

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

.agency-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.floating-decor {
    position: absolute;
    background: var(--primary-red);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.1;
}

.decor-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 0;
    animation: floatAnimation 6s ease-in-out infinite;
}

.decor-2 {
    width: 40px;
    height: 40px;
    top: 70%;
    right: 10%;
    animation: floatAnimation 8s ease-in-out infinite 1s;
}

.decor-3 {
    width: 30px;
    height: 30px;
    bottom: 10%;
    left: 20%;
    animation: floatAnimation 7s ease-in-out infinite 2s;
}

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

.agency-image-container {
    position: relative;
    width: 90%;
    margin: 0 auto;
    z-index: 2;
}

.agency-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.agency-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.floating-social {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.like-icon {
    top: 15%;
    right: -15px;
    color: #ff4757;
    animation: pulseAnimation 2s infinite;
}

.comment-icon {
    bottom: 20%;
    right: -10px;
    color: #2e86de;
    animation: pulseAnimation 2s infinite 0.4s;
}

.share-icon {
    bottom: 30%;
    left: -15px;
    color: #20bf6b;
    animation: pulseAnimation 2s infinite 0.8s;
}

@keyframes pulseAnimation {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .agency-excellence-section {
        padding: 100px 0;
    }
    
    .agency-title {
        font-size: 38px;
    }
    
    .agency-metrics {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .agency-excellence-section {
        padding: 80px 0;
    }
    
    .agency-title {
        font-size: 34px;
    }
    
    .agency-subtitle {
        font-size: 18px;
    }
    
    .agency-image-wrapper {
        margin-top: 50px;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .agency-excellence-section {
        padding: 60px 0;
    }
    
    .agency-title {
        font-size: 30px;
    }
    
    .agency-metrics {
        flex-direction: column;
        gap: 15px;
    }
    
    .agency-image-container {
        width: 80%;
    }
    
    .floating-social {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .agency-title {
        font-size: 26px;
    }
    
    .agency-subtitle {
        font-size: 16px;
    }
    
    .agency-text p {
        font-size: 15px;
    }
    
    .btn-agency {
        padding: 12px 25px;
        font-size: 15px;
    }
}

/* Go Viral Section */
.go-viral-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--primary-red);
    overflow: hidden;
}

.go-viral-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
}

.viral-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.viral-highlight {
    color: white;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.viral-highlight::after {
    content: '';
    position: absolute;
    left: -10px;
    right: -10px;
    bottom: 5px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: -1;
    transform: rotate(-2deg);
}

.viral-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.viral-card-row {
    justify-content: center;
}

.viral-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.viral-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
    transition: all 0.4s ease;
}

.viral-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.viral-card:hover::before {
    opacity: 0.5;
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.viral-card:hover .card-icon-wrapper {
    background-color: white;
    transform: scale(1.1);
}

.viral-lord-icon {
    width: 60px !important;
    height: 60px !important;
    position: relative;
    z-index: 2;
}

.viral-card:hover .viral-lord-icon {
    transform: scale(1.1);
}

.card-title {
    font-size: 22px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

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

.card-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    flex-grow: 1;
}

.card-hover-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
    z-index: 1;
}

.viral-card:hover .card-hover-indicator {
    opacity: 1;
    transform: translateX(0);
}

.btn-viral-cta {
    display: inline-flex;
    align-items: center;
    background-color: white;
    color: var(--primary-red);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-viral-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-viral-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    color: var(--primary-red);
}

.btn-viral-cta:hover::before {
    left: 100%;
}

.btn-viral-cta i {
    margin-left: 12px;
    transition: all 0.3s ease;
}

.btn-viral-cta:hover i {
    transform: translateX(5px);
}

/* Responsive Styles for Go Viral Section */
@media (max-width: 1200px) {
    .viral-title {
        font-size: 42px;
    }
    
    .viral-card {
        padding: 25px;
    }
}

@media (max-width: 992px) {
    .go-viral-section {
        padding: 80px 0;
    }
    
    .viral-title {
        font-size: 38px;
    }
    
    .viral-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .card-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .go-viral-section {
        padding: 60px 0;
    }
    
    .viral-title {
        font-size: 32px;
    }
    
    .viral-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .card-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .viral-lord-icon {
        width: 50px !important;
        height: 50px !important;
    }
}

@media (max-width: 576px) {
    .viral-title {
        font-size: 28px;
    }
    
    .viral-highlight::after {
        height: 10px;
        bottom: 3px;
    }
    
    .viral-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    .card-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .viral-lord-icon {
        width: 45px !important;
        height: 45px !important;
    }
    
    .btn-viral-cta {
        padding: 14px 30px;
        font-size: 15px;
    }
}

/* Process Section Styles */
.process-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.03);
    top: -100px;
    left: -150px;
    z-index: 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 0, 0, 0.1);
    color: var(--primary-red);
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.section-tag i {
    margin-right: 8px;
    font-size: 12px;
}

.process-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.process-title .highlight {
    color: var(--primary-red);
    position: relative;
    z-index: 1;
}

.process-title .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    height: 8px;
    background-color: rgba(255, 0, 0, 0.1);
    z-index: -1;
}

.process-subtitle {
    font-size: 16px;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Timeline Process Steps */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 20px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: rgba(255, 0, 0, 0.1);
    top: 0;
    bottom: 0;
    left: 34px;
    margin-left: -2px;
    border-radius: 4px;
}

.process-step {
    position: relative;
    margin-bottom: 50px;
    padding-left: 70px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
    z-index: 2;
}

.step-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.1);
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-red);
    font-size: 20px;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1);
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    transition: all 0.3s ease;
}

.process-step:hover .step-title {
    color: var(--primary-red);
}

.step-description {
    color: var(--dark-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.step-indicator {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-red);
    border-radius: 50%;
    left: -60px;
    top: 25px;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 1;
}

.process-step:hover .step-indicator {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.btn-process-cta {
    display: inline-flex;
    align-items: center;
    background: var(--primary-red);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}

.btn-process-cta:hover {
    background: #d50000;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
    color: white;
}

.btn-process-cta i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-process-cta:hover i {
    transform: translateX(5px);
}

/* Responsive Styles for Process Section */
@media (max-width: 1200px) {
    .process-section {
        padding: 100px 0;
    }
    
    .process-title {
        font-size: 38px;
    }
}

@media (max-width: 992px) {
    .process-section {
        padding: 80px 0;
    }
    
    .process-title {
        font-size: 34px;
    }
    
    .process-timeline {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-title {
        font-size: 30px;
    }
    
    .step-content {
        padding: 25px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .process-step {
        padding-left: 60px;
    }
    
    .process-timeline::before {
        left: 29px;
    }
    
    .step-indicator {
        left: -50px;
    }
}

@media (max-width: 576px) {
    .process-title {
        font-size: 26px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .process-step {
        padding-left: 50px;
        margin-bottom: 40px;
    }
    
    .process-timeline::before {
        left: 24px;
    }
    
    .step-indicator {
        left: -40px;
        top: 15px;
    }
    
    .btn-process-cta {
        padding: 14px 25px;
        font-size: 15px;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 120px 0;
    background-color: var(--primary-red);
    position: relative;
    overflow: hidden;
}

.testimonials-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
}

.testimonials-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.testimonials-title .highlight {
    position: relative;
    z-index: 1;
}

.testimonials-title .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: -1;
}

.testimonials-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.testimonials-section .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.testimonials-slider {
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.testimonial-card.featured {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 250, 250, 1) 100%);
}

.testimonial-card.featured::before {
    transform: scaleX(1);
    background: linear-gradient(to right, var(--primary-red), #ff5252);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-red);
    color: white;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 28px;
    color: rgba(255, 0, 0, 0.1);
    z-index: 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-red), #ff5252);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder {
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 5px;
}

.author-position {
    font-size: 13px;
    color: var(--primary-red);
    margin: 0;
    font-style: italic;
}

.rating {
    color: #FFD700;
    font-size: 14px;
}

.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: white;
    color: var(--primary-red);
    transform: translateY(-3px);
}

.testimonial-dots {
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.5);
}

.btn-testimonials-cta {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--primary-red);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-testimonials-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    color: var(--primary-red);
}

.btn-testimonials-cta i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-testimonials-cta:hover i {
    transform: translateX(5px);
}

/* Responsive Styles for Testimonials Section */
@media (max-width: 1200px) {
    .testimonials-section {
        padding: 100px 0;
    }
    
    .testimonials-title {
        font-size: 38px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
}

@media (max-width: 992px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-title {
        font-size: 34px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 30px;
    }
    
    .testimonial-card {
        margin-bottom: 30px;
    }
    
    .testimonial-navigation {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .testimonials-title {
        font-size: 26px;
    }
    
    .testimonials-subtitle {
        font-size: 15px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
    
    .avatar-placeholder {
        font-size: 16px;
    }
    
    .author-name {
        font-size: 15px;
    }
    
    .author-position {
        font-size: 12px;
    }
    
    .btn-testimonials-cta {
        padding: 14px 25px;
        font-size: 15px;
    }
}

/* Footer Section */
.footer-section {
  background: #0a0a0a;
  color: #fff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.footer-section h4 {
  color: #ff4b4b;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  font-size: 1rem;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  text-decoration: none;
  color: #ddd;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #ff4b4b;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #ff4b4b;
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.footer-bottom ul li a {
  text-decoration: none;
  color: #ddd;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom ul li a:hover {
  color: #ff4b4b;
}

.footer-logo img {
  padding-bottom: 15px;
  width: 180px; /* Adjust width as needed */
  height: auto; /* Maintains aspect ratio */
  max-width: 100%; /* Ensures responsiveness */
  display: block;
  margin: 0 auto; /* Centers the logo */
}

@media (max-width: 768px) {
  .footer-logo img {
    width: 140px; /* Smaller size for mobile */
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .footer-section .row {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom ul {
    flex-direction: column;
    gap: 10px;
  }
}
