/* Premium Effects CSS */
.hero-section {
    position: relative;
    overflow: hidden;
}

.animate-left, .animate-right {
    transition: all 0.8s ease-out;
}

.service-card {
    transform: translateY(0);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* Contact Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    min-height: 60vh;
    padding: 6rem 0;
    position: relative;
}

/* Stats Animation */
.stat-item {
    text-align: center;
    background: rgba(246, 220, 0, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(246, 220, 0, 0.2);
}

.stat-item h3 {
    color: #f6dc00;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: white;
    margin: 0;
}

/* Contact Card */
.contact-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Premium Form Styling */
.premium-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.premium-form .form-control {
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.premium-form .form-control:focus {
    border-color: #f6dc00;
    box-shadow: 0 0 0 0.2rem rgba(246, 220, 0, 0.1);
    background: white;
}

.premium-form .form-label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    background: transparent;
    padding: 0 0.5rem;
    color: #6c757d;
    transition: all 0.3s ease;
    pointer-events: none;
}

.premium-form .form-control:focus + .form-label,
.premium-form .form-control:not(:placeholder-shown) + .form-label {
    top: 0;
    transform: translateY(-50%) scale(0.85);
    background: white;
    color: #f6dc00;
}

/* Submit Button Animation */
.premium-form .submit-btn {
    background: #f6dc00;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.premium-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(246, 220, 0, 0.3);
}

.premium-form .submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.premium-form .submit-btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Contact Information */
.contact-info {
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(246, 220, 0, 0.1) 0%, rgba(246, 220, 0, 0.2) 100%);
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
    background: rgba(255,255,255,0.2);
}

.contact-info-item i {
    font-size: 1.5rem;
    color: #f6dc00;
    margin-right: 1rem;
}

/* Blog Styles */
.blog-hero-section {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    padding: 6rem 0;
    position: relative;
    color: white;
}

/* Premium Search Form */
.premium-search-form {
    max-width: 600px;
    margin: 0 auto;
}

.premium-search-form .input-group {
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
}

.premium-search-form .form-control {
    border: none;
    background: transparent;
    color: white;
    padding: 1rem 1.5rem;
}

.premium-search-form .form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

.premium-search-form .btn-search {
    background: #f6dc00;
    color: #000;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.premium-search-form .btn-search:hover {
    background: white;
    color: #000;
    transform: translateX(3px);
}

/* Blog Categories */
.blog-categories {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.blog-categories::-webkit-scrollbar {
    display: none;
}

.category-btn {
    background: none;
    border: 2px solid #f6dc00;
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-btn:hover,
.category-btn.active {
    background: #f6dc00;
    color: #000;
    transform: translateY(-2px);
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.category-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #f6dc00;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-card-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #666;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #f6dc00;
    gap: 1rem;
}

/* Premium Pagination */
.premium-pagination .page-link {
    border: none;
    padding: 0.8rem 1.2rem;
    margin: 0 0.3rem;
    border-radius: 50px;
    color: #000;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.premium-pagination .page-item.active .page-link {
    background: #f6dc00;
    color: #000;
}

.premium-pagination .page-link:hover {
    background: rgba(246,220,0,0.1);
    transform: translateY(-2px);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.widget-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #f6dc00;
}

.popular-post-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.popular-post-item:hover {
    transform: translateX(5px);
}

.popular-post-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.post-info h5 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
}

.post-info h5 a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-info h5 a:hover {
    color: #f6dc00;
}

.post-info span {
    font-size: 0.875rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,123,255,0.05) 0%, rgba(220,53,69,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-hover-effect {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .animate-left, .animate-right {
        transform: none !important;
        opacity: 1 !important;
    }
}