/* ============================================
   FRESH HERO SECTION CSS
   ============================================ */

/* Hero Section Container */
.hero-fresh {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.hero-fresh::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(242, 140, 40, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

/* Hero Background */
.hero-fresh-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-fresh > .container {
    position: relative;
    z-index: 10;
}

.hero-fresh-gradient {
    display: none; /* Removed gradient */
}

.hero-fresh-pattern {
    display: none; /* Removed pattern */
}

/* Hero Wrapper - Two Column Layout */
.hero-fresh-wrapper {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Content - Left Side */
.hero-fresh-content {
    position: relative;
    z-index: 10;
    text-align: left;
    animation: fadeInLeft 1s ease-out;
    padding-left: 2rem;
}

.hero-fresh-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    max-width: 50vw;
    max-height: 50vw;
    background-image: url('../images/astrology-bg.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    animation: rotate-circle 20s linear infinite;
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

@keyframes rotate-circle {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(180deg);
    }
    from {
        transform: translateY(-50%) rotate(0deg);
    }
}

.hero-fresh-content::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(242, 140, 40, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse-glow 3s ease-in-out infinite;
    z-index: -1;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

/* Hero Image - Right Side */
.hero-fresh-image {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-out;
}

.hero-image-wrapper {
    position: relative;
    width: 80%;
    /* max-width: 500px; */
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

/* Hero Image Slider */
.hero-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.hero-image-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(242, 140, 40, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: image-glow-pulse 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes image-glow-pulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-main-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    /* animation: float-image 6s ease-in-out infinite; */
}

/* Ensure fallback is positioned correctly in slider */
.hero-slide .hero-image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Hero Slider Navigation Arrows */
.hero-slider-arrow {
    position: absolute;
    bottom: 20px;
    z-index: 10;
    width: 45px;
    height: 45px;
    background: rgba(242, 140, 40, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-slider-arrow:hover {
    background: rgba(242, 140, 40, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(242, 140, 40, 0.5);
}

.hero-slider-arrow:active {
    transform: scale(0.95);
}

.hero-slider-prev {
    left: calc(50% - 60px);
}

.hero-slider-prev:hover {
    left: calc(50% - 60px);
    transform: scale(1.1);
}

.hero-slider-prev:active {
    left: calc(50% - 60px);
    transform: scale(0.95);
}

.hero-slider-next {
    right: calc(50% - 60px);
}

.hero-slider-next:hover {
    right: calc(50% - 60px);
    transform: scale(1.1);
}

.hero-slider-next:active {
    right: calc(50% - 60px);
    transform: scale(0.95);
}

/* Responsive adjustments for arrows */
@media (max-width: 768px) {
    .hero-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 15px;
    }
    
    .hero-slider-prev {
        left: calc(50% - 50px);
    }
    
    .hero-slider-prev:hover {
        left: calc(50% - 50px);
        transform: scale(1.1);
    }
    
    .hero-slider-prev:active {
        left: calc(50% - 50px);
        transform: scale(0.95);
    }
    
    .hero-slider-next {
        right: calc(50% - 50px);
    }
    
    .hero-slider-next:hover {
        right: calc(50% - 50px);
        transform: scale(1.1);
    }
    
    .hero-slider-next:active {
        right: calc(50% - 50px);
        transform: scale(0.95);
    }
}

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

.hero-image-fallback {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(242, 140, 40, 0.2), rgba(255, 122, 0, 0.1));
    border-radius: 20px;
    border: 2px solid rgba(242, 140, 40, 0.3);
    color: #F28C28;
}

.hero-image-fallback i {
    font-size: 8rem;
    margin-bottom: 1rem;
}

.hero-image-fallback span {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.hero-image-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 140, 40, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 140, 40, 0.3);
    border-radius: 50%;
    color: #F28C28;
    font-size: 1.5rem;
    z-index: 3;
    animation: float-decoration 4s ease-in-out infinite;
}

.hero-dec-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-dec-2 {
    bottom: 15%;
    left: 5%;
    animation-delay: 1s;
}

.hero-dec-3 {
    top: 50%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float-decoration {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

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

/* Hero Badge */
.hero-fresh-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(242, 140, 40, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 140, 40, 0.3);
    border-radius: 50px;
    color: #F28C28;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-fresh-badge i {
    font-size: 0.875rem;
}

/* Hero Title */
.hero-fresh-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.4s both;
    text-align: left;
}

/* Hero Description */
.hero-fresh-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-align: left;
}

/* Hero Stats */
.hero-fresh-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .8rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(242, 140, 40, 0.3);
    transform: translateY(-5px);
}

.hero-stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F28C28, #FF7A00);
    border-radius: 12px;
    color: white;
    font-size: .9rem;
    flex-shrink: 0;
}

.hero-stat-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Hero CTA Buttons */
.hero-fresh-cta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-btn-primary,
.hero-btn-secondary,
.hero-btn-call {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #F28C28, #FF7A00);
    color: white;
    box-shadow: 0 4px 20px rgba(242, 140, 40, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(242, 140, 40, 0.5);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.hero-btn-call {
    background: rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: white;
}

.hero-btn-call:hover {
    background: rgba(59, 130, 246, 0.3);
    transform: translateY(-3px);
}

.hero-btn-primary i,
.hero-btn-secondary i,
.hero-btn-call i {
    font-size: 1rem;
}

/* Button Ripple Effect */
.hero-btn-primary {
    position: relative;
    overflow: hidden;
}

.hero-btn-primary .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Hero Trust Badges */
.hero-fresh-trust {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    font-weight: 500;
}

.hero-trust-badge i {
    color: #F28C28;
    font-size: 1rem;
}

/* Hero Scroll Indicator */
.hero-fresh-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    z-index: 10;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.hero-scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.hero-scroll-wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Hero Services Quick List */
.hero-services-quick-list {
    position: relative;
    z-index: 10;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    animation: fadeInUp 1s ease-out 1.6s both;
}

.hero-services-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-services-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Playfair Display', serif;
}

.hero-services-title i {
    color: #F28C28;
    font-size: 1.25rem;
}

.hero-services-view-all {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(242, 140, 40, 0.2);
    border: 1px solid rgba(242, 140, 40, 0.3);
    border-radius: 12px;
    color: #F28C28;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.hero-services-view-all:hover {
    background: rgba(242, 140, 40, 0.3);
    transform: translateX(5px);
}

.hero-services-view-all i {
    transition: transform 0.3s ease;
}

.hero-services-view-all:hover i {
    transform: translateX(3px);
}

/* Hero Services Slider */
.hero-services-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-services-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.hero-services-slider-track {
    display: flex;
    gap: 1rem;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hero-services-slider-track:active {
    cursor: grabbing;
}

.hero-service-item {
    flex: 0 0 calc(20% - 0.8rem);
    min-width: 180px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Navigation buttons and dots removed */

.hero-service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-service-item:hover {
    background: rgba(242, 140, 40, 0.15);
    border-color: rgba(242, 140, 40, 0.3);
    transform: translateY(-3px);
}

.hero-service-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F28C28, #FF7A00);
    border-radius: 10px;
    color: white;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.hero-service-name {
    font-size: 0.9375rem;
    font-weight: 500;
    flex: 1;
}

/* Services Section Styles - Modern Design */
.services-images-section {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-images-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #fffaf5 25%, #fff8f0 50%, #fff5e6 75%, #fff3e0 100%);
    pointer-events: none;
    z-index: 0;
}

.services-images-section > .container {
    position: relative;
    z-index: 1;
}

.services-images-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 3rem;
}

.services-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: rgba(242, 140, 40, 0.1);
    border: 1px solid rgba(242, 140, 40, 0.2);
    border-radius: 50px;
    color: #F28C28;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Unified Section Title Style */
.services-images-title,
.about-section-title,
.awards-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Hero title keeps white color for dark background */
.hero-fresh-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-accent,
.about-title-highlight,
.awards-title-highlight,
.hero-fresh-highlight {
    background: linear-gradient(135deg, #F28C28, #FF7A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-images-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    max-width: 700px;
    margin: 0 auto;
}

.services-images-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Modern Service Card Design */
.service-card-modern {
    position: relative;
    height: auto;
    min-height: 400px;
    cursor: pointer;
}

.service-card-modern-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(229, 231, 235, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card-modern:hover .service-card-modern-inner {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(242, 140, 40, 0.15);
    border-color: rgba(242, 140, 40, 0.2);
}

/* Hidden service cards */
.service-card-modern.service-card-hidden {
    display: none;
}

.service-card-modern.service-card-hidden.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.service-card-modern-icon {
    position: relative;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    z-index: 2;
}

.service-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F28C28 0%, #FF7A00 50%, #F28C28 100%);
    background-size: 200% 100%;
    border-radius: 16px;
    box-shadow: 
        0 4px 12px rgba(242, 140, 40, 0.25),
        0 2px 4px rgba(242, 140, 40, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: icon-gradient-shift 3s ease infinite;
}

@keyframes icon-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.service-card-modern:hover .service-icon-bg {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 
        0 8px 20px rgba(242, 140, 40, 0.35),
        0 4px 8px rgba(242, 140, 40, 0.25);
    animation: none;
}

.service-card-modern-icon i {
    position: relative;
    z-index: 1;
    font-size: 1.75rem;
    color: white;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-modern:hover .service-card-modern-icon i {
    transform: scale(1.08);
}

.service-card-modern-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-card-modern-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
    letter-spacing: -0.02em;
}

.service-card-modern:hover .service-card-modern-title {
    color: #F28C28;
}

.service-card-modern-desc {
    font-size: 0.9375rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.service-card-modern-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-card-modern-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
}

.service-card-modern-features li i {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(242, 140, 40, 0.15), rgba(255, 122, 0, 0.1));
    color: #F28C28;
    border-radius: 50%;
    font-size: 0.7rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-card-modern-features li i {
    background: linear-gradient(135deg, #F28C28, #FF7A00);
    color: white;
    transform: scale(1.1);
}

.service-card-modern-footer {
    margin-top: auto;
}

.service-card-modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.9375rem 1.875rem;
    background: linear-gradient(135deg, #ffffff 0%, #fffaf5 25%, #fff8f0 50%, #fff5e6 75%, #fff3e0 100%);
    color: #F28C28;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 6px rgba(242, 140, 40, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    width: 100%;
    justify-content: center;
    border: 1.5px solid rgba(242, 140, 40, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card-modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F28C28 0%, #FF7A00 50%, #F28C28 100%);
    background-size: 200% 100%;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.service-card-modern-btn span,
.service-card-modern-btn i {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.service-card-modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(242, 140, 40, 0.3),
        0 2px 8px rgba(242, 140, 40, 0.2);
    border-color: rgba(242, 140, 40, 0.4);
}

.service-card-modern-btn:hover::before {
    left: 0;
    animation: none;
}

.service-card-modern-btn:hover span,
.service-card-modern-btn:hover i {
    color: white;
}

.service-card-modern-btn i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s ease;
    font-size: 0.875rem;
}

.service-card-modern-btn:hover i {
    transform: translateX(4px);
}


.services-images-footer {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.show-more-services-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, #F28C28, #FF7A00);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(242, 140, 40, 0.3);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.show-more-services-btn::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: left 0.5s ease;
}

.show-more-services-btn:hover::before {
    left: 100%;
}

.show-more-services-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(242, 140, 40, 0.4);
}

.show-more-services-btn i {
    transition: transform 0.3s ease;
}

.show-more-services-btn:hover i {
    transform: translateY(3px);
}

.show-more-services-btn.hidden {
    display: none;
}

.view-all-services-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, #F28C28, #FF7A00);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(242, 140, 40, 0.3);
    position: relative;
    overflow: hidden;
}

.view-all-services-btn::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: left 0.5s ease;
}

.view-all-services-btn:hover::before {
    left: 100%;
}

.view-all-services-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(242, 140, 40, 0.4);
}

.view-all-services-btn i {
    transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-fresh-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-fresh-content {
        text-align: center;
    }
    
    .hero-fresh-content::before {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 300px;
        height: 300px;
        max-width: 60vw;
        max-height: 60vw;
    }
    
    @keyframes rotate-circle {
        from {
            transform: translate(-50%, -50%) rotate(0deg);
        }
        to {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }
    
    .hero-fresh-title {
        text-align: center;
    }
    
    .hero-fresh-description {
        text-align: center;
    }
    
    .hero-fresh-cta {
        justify-content: center;
    }
    
    .hero-fresh-trust {
        justify-content: center;
    }
    
    .hero-fresh-image {
        order: -1; /* Show image first on mobile */
    }
    
    .hero-image-wrapper {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-fresh {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    
    .hero-fresh-content::before {
        width: 250px;
        height: 250px;
        max-width: 50vw;
        max-height: 50vw;
    }
    
    .hero-fresh-wrapper {
        gap: 2rem;
    }
    
    .hero-fresh-title,
    .about-section-title,
    .awards-title {
        font-size: 2.5rem;
    }
    
    .hero-fresh-description {
        font-size: 1rem;
    }
    
    .hero-fresh-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-stat-card {
        padding: 1.25rem;
    }
    
    .hero-fresh-cta {
        flex-direction: column;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary,
    .hero-btn-call {
        width: 100%;
        justify-content: center;
    }
    
    .hero-fresh-trust {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-image-wrapper {
        max-width: 300px;
    }
    
    .hero-image-decoration {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .hero-services-quick-list {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .hero-service-item {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: 150px;
        padding: 0.875rem;
    }
    
    .hero-services-slider {
        mask-image: none;
        -webkit-mask-image: none;
    }
    
    .hero-service-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .hero-service-name {
        font-size: 0.875rem;
    }
    
    .hero-slider-btn {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    
    .services-images-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-modern {
        min-height: 350px;
    }
    
    .service-card-modern-inner {
        padding: 2rem;
    }
    
    .services-images-title {
        font-size: 2rem;
    }
    
    .service-card-modern-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-card-modern-icon i {
        font-size: 1.75rem;
    }
    
    .service-card-modern-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-fresh-title,
    .about-section-title,
    .awards-title {
        font-size: 2rem;
    }
    
    .hero-stat-number {
        font-size: 1.75rem;
    }
    
    .hero-service-item {
        flex: 0 0 calc(100% - 0.5rem);
        min-width: 100%;
    }
    
    .hero-slider-btn {
        display: none;
    }
}
