/* Marketing Services Page Styles */

/* Simple Hover Effects for Service Cards */
.service-card-hover {
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.service-card-hover:hover {
    min-height: 330px;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #FF8E6C !important;
}

.service-card-hover:hover .hover-image {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .service-card-hover:hover {
        min-height: 280px;
    }
    .hover-image img {
        max-width: 150px !important;
    }
}

@media (max-width: 480px) {
    .service-card-hover:hover {
        min-height: 250px;
    }
    .hover-image img {
        max-width: 120px !important;
    }
}

/* SMM Service Cards for Social Media Marketing page */
.smm-service-card {
    background: #FFF !important;
    border: 1px solid #F0F0F0 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    padding: 20px !important;
    text-align: left !important;
}

.smm-service-card:hover {
    background: #FFF !important;
    border: 1px solid #FF8E6C !important;
    filter: drop-shadow(0 2.767px 2.214px rgba(0, 0, 0, 0.03)) 
            drop-shadow(0 6.65px 5.32px rgba(0, 0, 0, 0.04)) 
            drop-shadow(0 12.522px 10.017px rgba(0, 0, 0, 0.05)) 
            drop-shadow(0 22.336px 17.869px rgba(0, 0, 0, 0.06)) 
            drop-shadow(0 41.778px 33.422px rgba(0, 0, 0, 0.07)) 
            drop-shadow(0 100px 80px rgba(0, 0, 0, 0.10)) !important;
    transform: translateY(-2px) !important;
}

.smm-service-card img {
    width: 100% !important;
}

/* SMM Benefit Cards - Same style as Why Choose Us cards */
.smm-benefit-card {
    background: #FFF !important;
    border: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    text-align: left !important;
}

.smm-benefit-card:hover {
    background: #FFF !important;
    border: none !important;
    filter: drop-shadow(0 2.767px 2.214px rgba(0, 0, 0, 0.03)) 
            drop-shadow(0 6.65px 5.32px rgba(0, 0, 0, 0.04)) 
            drop-shadow(0 12.522px 10.017px rgba(0, 0, 0, 0.05)) 
            drop-shadow(0 22.336px 17.869px rgba(0, 0, 0, 0.06)) 
            drop-shadow(0 41.778px 33.422px rgba(0, 0, 0, 0.07)) 
            drop-shadow(0 100px 80px rgba(0, 0, 0, 0.10)) !important;
    transform: translateY(-2px) !important;
}

/* Our Marketing Services Section */
.our-marketing-services-section {
    padding: 80px 0;
    background: #FEF7F4;
}

.marketing-services-main-heading {
    color: #292929;
    font-family: Outfit, sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 50px;
}

.marketing-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Duplicate .marketing-service-card definition removed - using the one defined at the top */

/* Duplicate hover definition removed - using the one defined at the top */

.service-collapsed {
    display: block;
}

.service-expanded {
    display: none;
}

.marketing-service-card:hover .service-collapsed {
    display: none;
}

.marketing-service-card:hover .service-expanded {
    display: block;
}

.service-number {
    color: #FF8E6C;
    font-family: Outfit, sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.service-name {
    color: #292929;
    font-family: Outfit, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 15px;
}

.service-brief, .service-description {
    color: #666;
    font-family: Outfit, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 20px;
}

.service-image {
    margin: 15px 0;
    width: 100%;
}

.service-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
}

.explore-btn {
    background: transparent;
    border: 1px solid #FF8E6C;
    color: #FF8E6C;
    padding: 8px 16px;
    border-radius: 25px;
    font-family: Outfit, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.explore-btn.filled,
.marketing-service-card:hover .explore-btn {
    background: #FF8E6C;
    color: white;
}

.explore-btn svg {
    width: 14px;
    height: 14px;
    transition: all 0.3s ease;
}

.explore-btn.filled svg path,
.marketing-service-card:hover .explore-btn svg path {
    stroke: white;
}

/* Breadcrumb Active State */
.breadcrumb-item.active-orange {
    color: #FF8E6C !important;
}

/* Spacer */
.page-spacer {
    height: 100px;
    width: 100%;
}

/* Row styling */
.marketing-services-row {
    margin: 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .marketing-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .marketing-services-main-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .our-marketing-services-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .marketing-services-main-heading {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
    
    .marketing-service-card {
        padding: 20px;
        height: 8rem;
    }
    
    .marketing-service-card:hover {
        height: 18rem;
    }
    
    .service-name {
        font-size: 1.125rem;
    }
    
    .service-brief,
    .service-description {
        font-size: 0.8125rem;
    }
    
    .service-image img {
        height: 100px;
    }
    
    .explore-btn {
        padding: 6px 12px;
        font-size: 0.8125rem;
    }
} 