/* ============================================
   Modern Design Enhancements
   تحسينات التصميم الحديثة
   ============================================ */

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #f1f4d9 0%, #ffffff 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #79254a 0%, #5a1a35 100%);
    border-radius: 10px;
    border: 2px solid #f1f4d9;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #5a1a35 0%, #79254a 100%);
}

/* Modern Buttons with Glassmorphism */
.defaultBtn {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(121, 37, 74, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.defaultBtn::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;
}

.defaultBtn:hover::before {
    left: 100%;
}

.defaultBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(121, 37, 74, 0.3);
}

.defaultBtn:active {
    transform: translateY(0);
}

/* Modern Cards with Glassmorphism */
.Features .Feature .singleFeature .info,
.requirements .requirement,
.ourSteps .content {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(241, 244, 217, 0.5);
    box-shadow: 0 8px 32px rgba(121, 37, 74, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.Features .Feature .singleFeature .info:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(121, 37, 74, 0.15);
    border-color: rgba(121, 37, 74, 0.3);
}

/* Modern Requirements Section - Complete Redesign */
.requirements.modern-requirements-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%) !important;
    padding: 100px 0 !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    clear: both;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.requirements.modern-requirements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(121, 37, 74, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(241, 244, 217, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.requirements.modern-requirements-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    justify-content: center;
    align-items: start;
}

/* Requirement Card Modern */
.requirement-card-modern {
    background: #ffffff !important;
    border-radius: 24px;
    padding: 0 !important;
    box-shadow: 0 8px 24px rgba(121, 37, 74, 0.1);
    border: 2px solid rgba(241, 244, 217, 0.5);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden !important;
    position: relative;
    height: auto !important;
    min-height: 400px;
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    will-change: box-shadow, border-color;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.requirement-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #79254a, #f1f4d9, #79254a);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.requirement-card-modern:hover {
    box-shadow: 0 20px 48px rgba(121, 37, 74, 0.2);
    border-color: rgba(121, 37, 74, 0.4);
}

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

/* Requirement Card Header */
.requirement-card-header {
    background: linear-gradient(135deg, #79254a 0%, #5a1a35 100%) !important;
    padding: 35px 30px !important;
    display: flex !important;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: visible !important;
    z-index: 2 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.requirement-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transition: transform 0.6s ease;
}

.requirement-card-modern:hover .requirement-card-header::before {
    transform: scale(1.2);
}

.requirement-card-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: all 0.5s ease;
}

.requirement-card-icon-wrapper i {
    font-size: 32px;
    color: #ffffff;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.5s ease;
}

.requirement-card-modern:hover .requirement-card-icon-wrapper {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.requirement-card-title-section {
    flex: 1;
}

.requirement-card-number-badge {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    transition: all 0.5s ease;
}

.requirement-card-number-badge span {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.requirement-card-modern:hover .requirement-card-number-badge {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.requirement-card-title-section h3 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.requirement-card-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 24px;
    margin: 0;
}

.requirement-link {
    color: #f1f4d9;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 8px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.requirement-link:hover {
    color: #ffffff;
    border-bottom-color: #f1f4d9;
    text-decoration: none;
}

.requirement-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.requirement-link:hover i {
    transform: translateX(-4px);
}

/* Requirement Items List */
.requirement-items-list {
    padding: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px;
    position: relative;
    z-index: 2 !important;
    min-height: 200px;
    visibility: visible !important;
    opacity: 1 !important;
    background: transparent !important;
}

.requirement-item-modern {
    display: flex !important;
    align-items: center;
    gap: 18px;
    padding: 18px 20px !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    border-radius: 16px;
    border: 2px solid rgba(241, 244, 217, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1;
}

.requirement-item-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #79254a 0%, #5a1a35 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(121, 37, 74, 0.2);
    transition: all 0.4s ease;
}

.requirement-item-modern:hover .requirement-item-number {
    box-shadow: 0 4px 12px rgba(121, 37, 74, 0.3);
}

.requirement-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(121, 37, 74, 0.05), transparent);
    transition: left 0.5s ease;
}

.requirement-item-modern:hover::before {
    left: 100%;
}

.requirement-item-modern:hover {
    box-shadow: 0 8px 20px rgba(121, 37, 74, 0.15);
    border-color: rgba(121, 37, 74, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.requirement-item-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #79254a 0%, #5a1a35 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(121, 37, 74, 0.2);
    transition: all 0.4s ease;
}

.requirement-item-icon i {
    font-size: 24px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.4s ease;
}

.requirement-item-modern:hover .requirement-item-icon {
    box-shadow: 0 6px 20px rgba(121, 37, 74, 0.3);
}

.requirement-item-content {
    flex: 1;
}

.requirement-item-content p {
    font-size: 16px;
    color: #555;
    line-height: 26px;
    margin: 0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.requirement-item-modern:hover .requirement-item-content p {
    color: #79254a;
}

.requirement-item-check {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f1f4d9 0%, #ffffff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(121, 37, 74, 0.2);
    flex-shrink: 0;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0);
}

.requirement-item-modern:hover .requirement-item-check {
    opacity: 1;
    transform: scale(1);
    background: linear-gradient(135deg, #79254a 0%, #5a1a35 100%);
    border-color: #79254a;
}

.requirement-item-check i {
    font-size: 14px;
    color: #ffffff;
}

/* Requirement Card Footer */
.requirement-card-footer {
    padding: 20px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 2px solid rgba(241, 244, 217, 0.5);
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.requirement-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #79254a 0%, #5a1a35 100%);
    border-radius: 25px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(121, 37, 74, 0.2);
    transition: all 0.3s ease;
}

.requirement-count-badge i {
    font-size: 16px;
}

.requirement-card-modern:hover .requirement-count-badge {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(121, 37, 74, 0.3);
}

/* Enhanced Features Section */
.Features {
    background: linear-gradient(180deg, #f2f3f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
    clear: both;
}

.Features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(121, 37, 74, 0.2), transparent);
}

.Features .Feature .singleFeature .info {
    border-radius: 16px !important;
    padding: 35px 25px !important;
    border: 2px solid rgba(241, 244, 217, 0.6) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    overflow: hidden;
}

.Features .Feature .singleFeature .info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(121, 37, 74, 0.05) 0%, transparent 70%);
    transition: all 0.6s ease;
    opacity: 0;
}

.Features .Feature .singleFeature .info:hover::before {
    opacity: 1;
    top: -30%;
    left: -30%;
}

.Features .Feature .singleFeature .info .content .icon {
    width: 70px !important;
    height: 70px !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, #f1f4d9 0%, #ffffff 100%) !important;
    border: 2px solid rgba(121, 37, 74, 0.2) !important;
    box-shadow: 0 4px 16px rgba(121, 37, 74, 0.1) !important;
    transition: all 0.4s ease !important;
    margin-bottom: 25px !important;
}

.Features .Feature .singleFeature .info:hover .content .icon {
    transform: translateY(-5px) rotate(5deg) scale(1.1) !important;
    box-shadow: 0 8px 24px rgba(121, 37, 74, 0.2) !important;
    border-color: rgba(121, 37, 74, 0.4) !important;
}

.Features .Feature .singleFeature .info .content .icon i {
    font-size: 32px !important;
    transition: all 0.4s ease !important;
}

.Features .Feature .singleFeature .info:hover .content .icon i {
    transform: scale(1.1) !important;
}

.Features .Feature .singleFeature .info .content h3 {
    font-size: 24px !important;
    margin-bottom: 15px !important;
    color: #292929 !important;
    transition: all 0.3s ease !important;
}

.Features .Feature .singleFeature .info .content p {
    font-size: 15px !important;
    line-height: 28px !important;
    color: #666 !important;
    transition: all 0.3s ease !important;
}

.Features .Feature .singleFeature .info:hover {
    border-color: rgba(121, 37, 74, 0.4) !important;
    box-shadow: 0 20px 60px rgba(121, 37, 74, 0.15) !important;
}

/* Modern Navigation */
.mainNav {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(241, 244, 217, 0.3);
    box-shadow: 0 4px 20px rgba(121, 37, 74, 0.08);
}

.mainNav .nav-item .nav-link {
    position: relative;
    transition: all 0.3s ease;
    display: inline-flex !important;
    align-items: center !important;
    flex-direction: row !important;
}

.mainNav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #79254a, #f1f4d9);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.mainNav .nav-item .nav-link:hover::after,
.mainNav .nav-item .nav-link.active::after {
    width: 60%;
}

/* Fix dropdown arrow position - beside text not below or above */
.mainNav .nav-item.dropdown .nav-link.dropdown-toggle {
    display: inline-flex !important;
    align-items: center !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    line-height: 1.5 !important;
    padding: 20px 12px !important;
}

.mainNav .nav-item.dropdown .nav-link.dropdown-toggle::after {
    content: "\f107" !important; /* Down arrow icon */
    font-family: "Font Awesome 6 Pro" !important;
    position: static !important;
    margin: 0 !important;
    margin-right: 0 !important;
    margin-left: 8px !important;
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
    vertical-align: middle !important;
    line-height: 1 !important;
    order: 1 !important; /* After text */
    transform: none !important;
    font-size: 20px !important; /* Same size as language icon */
    font-weight: 400 !important;
    color: #79254a !important;
    opacity: 1 !important;
    top: auto !important;
    bottom: auto !important;
    float: none !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
}

html[dir="rtl"] .mainNav .nav-item.dropdown .nav-link.dropdown-toggle {
    flex-direction: row !important;
    justify-content: flex-start !important;
}

html[dir="rtl"] .mainNav .nav-item.dropdown .nav-link.dropdown-toggle::after {
    margin-right: 8px !important;
    margin-left: 0 !important;
    order: 1 !important;
    content: "\f107" !important; /* Down arrow icon */
}

.mainNav .nav-item.dropdown:hover .nav-link.dropdown-toggle::after,
.mainNav .nav-item.dropdown.show .nav-link.dropdown-toggle::after {
    transform: rotate(180deg) !important;
    opacity: 1 !important;
    color: #79254a !important;
}

.mainNav .nav-item.dropdown .nav-link.dropdown-toggle:hover::after {
    opacity: 1 !important;
    color: #79254a !important;
}

/* Modern Slider - Simple Elegant Enhancements */
.MainSlider .MainSlider-container .swiper-slide .info {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.MainSlider .MainSlider-container .swiper-slide .info:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.MainSlider .MainSlider-container .swiper-slide .info .sliderTitle {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.MainSlider .MainSlider-container .swiper-slide .info:hover .sliderTitle {
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.6);
}

/* Simple Button Enhancements */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(121, 37, 74, 0.85) !important;
    border: 2px solid rgba(241, 244, 217, 0.4) !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(121, 37, 74, 0.3) !important;
    width: 45px !important;
    height: 45px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(121, 37, 74, 1) !important;
    border-color: rgba(241, 244, 217, 0.6) !important;
    box-shadow: 0 6px 20px rgba(121, 37, 74, 0.4) !important;
    transform: scale(1.1) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: 600 !important;
}

/* Pagination Enhancements */
.MainSlider .swiper-pagination-bullet {
    background: rgba(241, 244, 217, 0.6) !important;
    border: 2px solid rgba(121, 37, 74, 0.3) !important;
    transition: all 0.3s ease !important;
    width: 12px !important;
    height: 12px !important;
}

.MainSlider .swiper-pagination-bullet-active {
    background: rgba(121, 37, 74, 0.9) !important;
    border-color: rgba(241, 244, 217, 0.8) !important;
    transform: scale(1.2) !important;
    box-shadow: 0 2px 8px rgba(121, 37, 74, 0.4) !important;
}

/* Modern Swiper Buttons - Removed to restore original */

/* Modern Pagination */
.swiper-pagination .swiper-pagination-bullet {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(241, 244, 217, 0.6);
    border: 2px solid rgba(121, 37, 74, 0.3);
    transition: all 0.3s ease;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background: rgba(121, 37, 74, 0.9);
    border-color: #f1f4d9;
    box-shadow: 0 0 20px rgba(121, 37, 74, 0.5);
    transform: scale(1.2);
}

/* Modern Headings */
.headTitle h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.headTitle h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #79254a, #f1f4d9, #79254a);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(121, 37, 74, 0.3);
}

/* Modern Icons */
.Features .Feature .singleFeature .info .content .icon,
.requirements .requirement ul li .icon {
    background: linear-gradient(135deg, #f1f4d9 0%, #ffffff 100%);
    border: 2px solid rgba(121, 37, 74, 0.2);
    box-shadow: 0 4px 16px rgba(121, 37, 74, 0.1);
    transition: all 0.3s ease;
}

.Features .Feature .singleFeature .info:hover .content .icon,
.requirements .requirement ul li:hover .icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(121, 37, 74, 0.2);
    border-color: #79254a;
}

/* Modern Form Inputs */
.form-control {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(241, 244, 217, 0.5);
    transition: all 0.3s ease;
    border-radius: 12px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 1);
    border-color: #79254a;
    box-shadow: 0 0 0 4px rgba(121, 37, 74, 0.1);
    transform: translateY(-2px);
}

/* Modern Footer */
.footer {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: linear-gradient(135deg, rgba(121, 37, 74, 0.95) 0%, rgba(90, 26, 53, 0.95) 100%);
    border-top: 1px solid rgba(241, 244, 217, 0.2);
}

/* Modern Services Section - Slider Design */
.services.modern-services-slider {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 50%, #ffffff 100%) !important;
    padding: 80px 0 100px !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Ensure proper spacing between sections */
.services.modern-services-slider + section,
.services.modern-services-slider + .ourSteps,
.services.modern-services-slider + section.ourSteps {
    margin-top: 0 !important;
    padding-top: 80px !important;
}

/* Modern Steps Section - Enhanced Original Design */
section.ourSteps.modern-steps-enhanced {
    margin-top: 0 !important;
    padding: 100px 0 !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%) !important;
    background-image: url('../img/pattern-1.webp') !important;
    background-size: contain !important;
    background-position: bottom right !important;
    background-repeat: no-repeat !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    clear: both;
}

section.ourSteps.modern-steps-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(121, 37, 74, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(241, 244, 217, 0.04) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

section.ourSteps.modern-steps-enhanced .container {
    position: relative;
    z-index: 1;
}

/* Modern Steps Content */
.modern-steps-content {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.98) !important;
    border: 2px solid rgba(241, 244, 217, 0.6) !important;
    box-shadow: 0 12px 40px rgba(121, 37, 74, 0.12) !important;
    border-radius: 24px !important;
    padding: 50px 40px !important;
    transition: all 0.4s ease;
}

.modern-steps-content:hover {
    box-shadow: 0 16px 48px rgba(121, 37, 74, 0.15) !important;
    border-color: rgba(121, 37, 74, 0.3) !important;
}

/* Modern Steps Nav */
.modern-steps-nav {
    display: block !important;
    text-align: start !important;
    border-radius: 16px !important;
    padding: 15px !important;
    width: 100% !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    border: 2px solid rgba(241, 244, 217, 0.5) !important;
}

.modern-step-link {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    color: #79254a !important;
    cursor: pointer !important;
    padding: 15px 18px !important;
    margin-bottom: 10px !important;
    border-radius: 12px !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    overflow: hidden !important;
    border: 2px solid transparent !important;
    background: #ffffff !important;
}

.modern-step-link:last-child {
    margin-bottom: 0 !important;
}

.modern-step-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(121, 37, 74, 0.08), transparent);
    transition: left 0.5s ease;
}

.modern-step-link:hover::before {
    left: 100%;
}

.modern-step-link:hover {
    transform: translateX(-5px) !important;
    box-shadow: 0 4px 16px rgba(121, 37, 74, 0.15) !important;
    border-color: rgba(121, 37, 74, 0.2) !important;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%) !important;
}

.modern-step-link.active {
    background: linear-gradient(135deg, #79254a 0%, #5a1a35 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(121, 37, 74, 0.3) !important;
    border-color: #79254a !important;
    transform: translateX(-8px) !important;
}

.step-link-number {
    width: 35px;
    height: 35px;
    background: rgba(121, 37, 74, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #79254a;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.modern-step-link.active .step-link-number {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.1);
}

.step-link-text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

/* Modern Steps Tabs */
.modern-steps-tabs {
    text-align: start !important;
    padding-left: 30px !important;
}

.step-tab-content {
    padding: 20px 0;
}

.step-description-list {
    list-style: none !important;
    margin: 0 0 30px 0 !important;
    padding: 0 !important;
}

.step-description-list li {
    margin-bottom: 20px !important;
    color: #555 !important;
    font-size: 16px !important;
    line-height: 28px !important;
    padding-right: 25px !important;
    position: relative !important;
}

.step-description-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 5px;
    color: #79254a;
    font-size: 14px;
}

/* Modern Payment Images */
.modern-payment-images {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    margin-bottom: 30px !important;
    padding: 20px !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    border-radius: 16px !important;
    border: 2px solid rgba(241, 244, 217, 0.5) !important;
}

.payment-image-wrapper {
    width: 100px !important;
    height: 70px !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 8px !important;
    box-shadow: 0 2px 10px rgba(121, 37, 74, 0.08) !important;
    border: 2px solid rgba(241, 244, 217, 0.5) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
}

.payment-image-wrapper:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 16px rgba(121, 37, 74, 0.15) !important;
    border-color: rgba(121, 37, 74, 0.3) !important;
}

.payment-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    transition: transform 0.3s ease !important;
}

.payment-image-wrapper:hover img {
    transform: scale(1.1) !important;
}

/* Modern Step Button - Override defaultBtn styles */
.modern-step-btn {
    background: linear-gradient(135deg, #79254a 0%, #5a1a35 100%) !important;
    color: #ffffff !important;
    border: 2px solid transparent !important;
    box-shadow: 0 4px 16px rgba(121, 37, 74, 0.3) !important;
    transition: all 0.3s ease !important;
    padding: 14px 32px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin-top: 10px !important;
    position: relative !important;
    overflow: visible !important;
    z-index: 1 !important;
}

.modern-step-btn::before {
    display: none !important;
}

.modern-step-btn span {
    display: inline-block !important;
    position: relative !important;
    z-index: 2 !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    transform: none !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    border-radius: 0 !important;
}

.modern-step-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 24px rgba(121, 37, 74, 0.4) !important;
    background: linear-gradient(135deg, #5a1a35 0%, #79254a 100%) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-color: transparent !important;
}

.modern-step-btn:hover span {
    width: auto !important;
    height: auto !important;
    background: transparent !important;
}

.modern-step-btn:active {
    transform: translateY(0) !important;
}

.modern-step-btn:focus {
    outline: none !important;
    box-shadow: 0 4px 16px rgba(121, 37, 74, 0.3), 0 0 0 4px rgba(121, 37, 74, 0.2) !important;
}

/* Override negative margin */
.services.modern-services-slider + section.ourSteps.modern-steps-enhanced {
    margin-top: 0 !important;
}

.services.modern-services-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(121, 37, 74, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(241, 244, 217, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.services.modern-services-slider .container {
    position: relative;
    z-index: 1;
}

.services.modern-services-slider .services-slider-wrapper {
    position: relative;
    padding: 0 60px;
    overflow: hidden;
}

.services.modern-services-slider .servicesSlider {
    padding: 20px 0 60px;
    overflow: hidden;
    width: 100%;
}

.services.modern-services-slider .servicesSlider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.services.modern-services-slider .servicesSlider .swiper-slide {
    height: auto;
    display: flex;
    width: 100%;
}

.services.modern-services-slider .servicesSlider .swiper-slide .service-card-modern-v2 {
    width: 100%;
    height: 100%;
}

/* Modern Service Card - Vertical Design */
.service-card-modern-v2 {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(121, 37, 74, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: 2px solid rgba(241, 244, 217, 0.5);
    position: relative;
    height: 100%;
}

.service-card-modern-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #79254a, #f1f4d9, #79254a);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    z-index: 3;
}

.service-card-modern-v2:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 48px rgba(121, 37, 74, 0.2);
    border-color: rgba(121, 37, 74, 0.4);
    text-decoration: none;
}

.service-card-modern-v2:hover::before {
    transform: scaleX(1);
}

/* Service Card Image Wrapper */
.service-card-modern-v2 .service-card-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card-modern-v2 .service-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card-modern-v2:hover .service-card-image {
    transform: scale(1.15);
}

.service-card-modern-v2 .service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(121, 37, 74, 0.4) 0%, rgba(90, 26, 53, 0.6) 100%);
    transition: opacity 0.5s ease;
}

.service-card-modern-v2:hover .service-card-overlay {
    opacity: 0.8;
}

/* Service Card Icon */
.service-card-modern-v2 .service-card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
    transition: all 0.5s ease;
}

.service-card-modern-v2 .service-card-icon i {
    font-size: 32px;
    color: #ffffff;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.5s ease;
}

.service-card-modern-v2:hover .service-card-icon {
    transform: scale(1.15) rotate(10deg);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.service-card-modern-v2:hover .service-card-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

/* Service Card Number */
.service-card-modern-v2 .service-card-number {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #79254a 0%, #5a1a35 100%);
    color: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(121, 37, 74, 0.4);
    transition: all 0.5s ease;
}

.service-card-modern-v2:hover .service-card-number {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(121, 37, 74, 0.5);
}

/* Service Card Body */
.service-card-modern-v2 .service-card-body {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-modern-v2 .service-card-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: #79254a;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.service-card-modern-v2:hover .service-card-body h3 {
    color: #5a1a35;
}

.service-card-modern-v2 .service-card-body p {
    font-size: 15px;
    color: #666;
    line-height: 26px;
    margin-bottom: 20px;
    flex: 1;
    transition: all 0.3s ease;
}

.service-card-modern-v2:hover .service-card-body p {
    color: #555;
}

/* Service Card Link */
.service-card-modern-v2 .service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #79254a;
    margin-top: auto;
    transition: all 0.3s ease;
}

.service-card-modern-v2 .service-card-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.service-card-modern-v2:hover .service-card-link {
    color: #5a1a35;
}

.service-card-modern-v2:hover .service-card-link i {
    transform: translateX(-5px);
}

/* Swiper Navigation Buttons for Services */
.services.modern-services-slider .servicesSliderNext,
.services.modern-services-slider .servicesSliderPrev {
    width: 50px !important;
    height: 50px !important;
    background: rgba(121, 37, 74, 0.9) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(241, 244, 217, 0.5) !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 16px rgba(121, 37, 74, 0.3);
    transition: all 0.3s ease;
}

.services.modern-services-slider .servicesSliderNext::after,
.services.modern-services-slider .servicesSliderPrev::after {
    font-size: 18px !important;
    color: #ffffff !important;
    font-weight: 700;
}

.services.modern-services-slider .servicesSliderNext:hover,
.services.modern-services-slider .servicesSliderPrev:hover {
    background: rgba(121, 37, 74, 1) !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(121, 37, 74, 0.4);
}

.services.modern-services-slider .servicesSliderNext {
    right: 0 !important;
}

.services.modern-services-slider .servicesSliderPrev {
    left: 0 !important;
}

/* RTL Support for Navigation */
html[dir="rtl"] .services.modern-services-slider .servicesSliderNext {
    left: 0 !important;
    right: auto !important;
}

html[dir="rtl"] .services.modern-services-slider .servicesSliderPrev {
    right: 0 !important;
    left: auto !important;
}

html[dir="rtl"] .services.modern-services-slider .servicesSliderPrev::after {
    content: "\f178" !important;
}

html[dir="rtl"] .services.modern-services-slider .servicesSliderNext::after {
    content: "\f177" !important;
}

/* Swiper Pagination */
.services.modern-services-slider .servicesSlidePagination {
    bottom: 10px !important;
}

.services.modern-services-slider .servicesSlidePagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: rgba(121, 37, 74, 0.3) !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.services.modern-services-slider .servicesSlidePagination .swiper-pagination-bullet-active {
    background: #79254a !important;
    width: 30px !important;
    border-radius: 6px !important;
}

/* Responsive Design - Mobile First */
/* Responsive Design for Modern Steps Enhanced */
@media (max-width: 768px) {
    section.ourSteps.modern-steps-enhanced {
        padding: 60px 0 !important;
    }
    
    .modern-steps-content {
        padding: 30px 20px !important;
        border-radius: 20px !important;
    }
    
    .modern-steps-row {
        flex-direction: column;
    }
    
    .modern-steps-nav {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        padding: 12px !important;
        margin-bottom: 25px !important;
    }
    
    .modern-step-link {
        flex: 1;
        min-width: calc(50% - 5px);
        margin-bottom: 0 !important;
        padding: 12px 15px !important;
        flex-direction: column !important;
        gap: 8px !important;
        text-align: center !important;
    }
    
    .step-link-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .step-link-text {
        font-size: 13px;
    }
    
    .modern-steps-tabs {
        padding-left: 0 !important;
    }
    
    .step-tab-content {
        padding: 15px 0;
    }
    
    .step-description-list li {
        font-size: 15px !important;
        line-height: 26px !important;
        padding-right: 20px !important;
    }
    
    .modern-payment-images {
        padding: 15px !important;
        gap: 12px !important;
    }
    
    .payment-image-wrapper {
        width: 85px !important;
        height: 60px !important;
    }
    
    .services.modern-services-slider {
        padding: 50px 0 !important;
    }
    
    .services.modern-services-slider .services-slider-wrapper {
        padding: 0 50px;
    }
    
    .services.modern-services-slider .servicesSlider {
        padding: 15px 0 50px;
    }
    
    .service-card-modern-v2 {
        border-radius: 20px;
    }
    
    .service-card-modern-v2 .service-card-image-wrapper {
        height: 200px;
    }
    
    .service-card-modern-v2 .service-card-icon {
        width: 60px;
        height: 60px;
        top: 15px;
        right: 15px;
        border-radius: 14px;
    }
    
    .service-card-modern-v2 .service-card-icon i {
        font-size: 28px;
    }
    
    .service-card-modern-v2 .service-card-number {
        width: 45px;
        height: 45px;
        bottom: 15px;
        left: 15px;
        font-size: 20px;
        border-radius: 12px;
    }
    
    .service-card-modern-v2 .service-card-body {
        padding: 25px 20px;
    }
    
    .service-card-modern-v2 .service-card-body h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .service-card-modern-v2 .service-card-body p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 18px;
    }
    
    .service-card-modern-v2 .service-card-link {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    section.ourSteps.modern-steps-enhanced {
        padding: 50px 0 !important;
    }
    
    .modern-steps-content {
        padding: 25px 15px !important;
        border-radius: 18px !important;
    }
    
    .modern-steps-nav {
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .modern-step-link {
        min-width: 100% !important;
        padding: 12px !important;
    }
    
    .step-link-number {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    
    .step-link-text {
        font-size: 12px;
    }
    
    .step-description-list li {
        font-size: 14px !important;
        line-height: 24px !important;
        padding-right: 18px !important;
    }
    
    .modern-payment-images {
        padding: 12px !important;
        gap: 10px !important;
    }
    
    .payment-image-wrapper {
        width: 75px !important;
        height: 55px !important;
    }
    
    .services.modern-services-slider {
        padding: 40px 0 !important;
    }
    
    .services.modern-services-slider .services-slider-wrapper {
        padding: 0 40px;
    }
    
    .services.modern-services-slider .servicesSliderNext,
    .services.modern-services-slider .servicesSliderPrev {
        width: 40px !important;
        height: 40px !important;
    }
    
    .services.modern-services-slider .servicesSliderNext::after,
    .services.modern-services-slider .servicesSliderPrev::after {
        font-size: 14px !important;
    }
    
    .service-card-modern-v2 {
        border-radius: 18px;
    }
    
    .service-card-modern-v2 .service-card-image-wrapper {
        height: 180px;
    }
    
    .service-card-modern-v2 .service-card-icon {
        width: 55px;
        height: 55px;
        top: 12px;
        right: 12px;
        border-radius: 12px;
    }
    
    .service-card-modern-v2 .service-card-icon i {
        font-size: 24px;
    }
    
    .service-card-modern-v2 .service-card-number {
        width: 40px;
        height: 40px;
        bottom: 12px;
        left: 12px;
        font-size: 18px;
        border-radius: 10px;
    }
    
    .service-card-modern-v2 .service-card-body {
        padding: 20px 15px;
    }
    
    .service-card-modern-v2 .service-card-body h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .service-card-modern-v2 .service-card-body p {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 15px;
    }
    
    .service-card-modern-v2 .service-card-link {
        font-size: 13px;
    }
}

@media (min-width: 992px) {
    .services.modern-services-slider .services-slider-wrapper {
        padding: 0 70px;
    }
    
    .service-card-modern-v2 .service-card-image-wrapper {
        height: 240px;
    }
    
    .service-card-modern-v2 .service-card-icon {
        width: 75px;
        height: 75px;
        border-radius: 20px;
    }
    
    .service-card-modern-v2 .service-card-icon i {
        font-size: 36px;
    }
    
    .service-card-modern-v2 .service-card-number {
        width: 55px;
        height: 55px;
        font-size: 26px;
        border-radius: 16px;
    }
    
    .service-card-modern-v2 .service-card-body {
        padding: 35px 30px;
    }
    
    .service-card-modern-v2 .service-card-body h3 {
        font-size: 26px;
    }
    
    .service-card-modern-v2 .service-card-body p {
        font-size: 16px;
        line-height: 28px;
    }
}

@media (min-width: 1200px) {
    .services.modern-services-slider .services-slider-wrapper {
        padding: 0 80px;
    }
    
    .service-card-modern-v2 .service-card-image-wrapper {
        height: 260px;
    }
}

/* Modern Steps Section */
.ourSteps .content {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(241, 244, 217, 0.5);
}

.ourSteps .content .steps .nav .nav-link {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ourSteps .content .steps .nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(121, 37, 74, 0.1), transparent);
    transition: left 0.5s;
}

.ourSteps .content .steps .nav .nav-link:hover::before {
    left: 100%;
}

.ourSteps .content .steps .nav .nav-link.active {
    background: linear-gradient(135deg, #79254a 0%, #5a1a35 100%);
    box-shadow: 0 4px 16px rgba(121, 37, 74, 0.3);
    transform: translateX(-5px);
}

/* Modern Family Section - Enhanced Design */
.family {
    background: #fafbfc !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    clear: both;
}

.family::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(121, 37, 74, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(241, 244, 217, 0.07) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.family .container {
    position: relative;
    z-index: 1;
}

@keyframes backgroundMove {
    0% {
        background-position: 0 0, 100px 100px;
    }
    100% {
        background-position: 200px 200px, 300px 300px;
    }
}

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

.family .container {
    position: relative;
    z-index: 1;
}

.family .single {
    margin-bottom: 80px !important;
    gap: 50px !important;
    align-items: center !important;
}

.family .single:last-child {
    margin-bottom: 0 !important;
}

.family .single .image {
    position: relative;
    overflow: hidden;
    border-radius: 24px !important;
    box-shadow: 0 12px 40px rgba(121, 37, 74, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    background: linear-gradient(135deg, #f1f4d9 0%, #ffffff 100%);
    padding: 8px;
}

.family .single .image::before {
    width: 120px !important;
    height: 120px !important;
    opacity: 0.6;
    z-index: 1;
}

.family .single .image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(121, 37, 74, 0.05) 0%, rgba(241, 244, 217, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    border-radius: 20px;
}

.family .single:hover .image {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(121, 37, 74, 0.2) !important;
}

.family .single:hover .image::after {
    opacity: 1;
}

.family .single .image img {
    border-radius: 20px !important;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    height: 450px !important;
    object-fit: cover;
}

.family .single:hover .image img {
    transform: scale(1.08);
}

.family .single .info {
    padding: 30px !important;
    position: relative;
}

.family .single .info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, #79254a 0%, #f1f4d9 100%);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.family .single:hover .info::before {
    opacity: 1;
}

.family .single .info h3 {
    font-size: 42px !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    color: #79254a !important;
    line-height: 1.3 !important;
    position: relative;
    padding-right: 20px;
    transition: all 0.3s ease;
}

.family .single .info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #79254a, #f1f4d9);
    border-radius: 2px;
    opacity: 0.3;
    transition: width 0.3s ease;
}

.family .single:hover .info h3::after {
    width: 120px;
    opacity: 0.6;
}

.family .single .info h5 {
    font-size: 22px !important;
    color: #666 !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    transition: all 0.3s ease;
}

.family .single:hover .info h5 {
    color: #555 !important;
}

.family .single:nth-child(even) .info::before {
    right: auto;
    left: 0;
}

.family .single:nth-child(even) .info h3 {
    padding-right: 0;
    padding-left: 20px;
}

.family .single:nth-child(even) .info h3::after {
    right: auto;
    left: 0;
}

@media (max-width: 768px) {
    .family .single {
        margin-bottom: 50px !important;
        gap: 30px !important;
    }
    
    .family .single .image {
        padding: 4px;
    }
    
    .family .single .image img {
        height: 250px !important;
        border-radius: 16px !important;
    }
    
    .family .single .info {
        padding: 20px !important;
    }
    
    .family .single .info h3 {
        font-size: 28px !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    
    .family .single .info h5 {
        font-size: 18px !important;
    }
}

/* Modern References Section */
.references {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.references .referenceLogo {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(241, 244, 217, 0.5);
}

.references .referenceLogo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(121, 37, 74, 0.2);
}

/* Modern Contact Form */
/* Modern Contact Section */
.contactForm.modern-contact-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%) !important;
    padding: 100px 0 !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    clear: both;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.contactForm.modern-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(121, 37, 74, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(241, 244, 217, 0.04) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.contactForm.modern-contact-section .container {
    position: relative;
    z-index: 1;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(121, 37, 74, 0.1);
    border: 2px solid rgba(241, 244, 217, 0.5);
    transition: all 0.4s ease;
    height: 100%;
}

.contact-form-wrapper:hover {
    box-shadow: 0 16px 48px rgba(121, 37, 74, 0.15);
    border-color: rgba(121, 37, 74, 0.3);
}

/* Modern Contact Form */
.modern-contact-form {
    margin-top: 30px;
}

.form-group-modern {
    margin-bottom: 25px;
    position: relative;
}

.form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #79254a;
    margin-bottom: 10px;
}

.form-label-modern i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #79254a 0%, #5a1a35 100%);
    color: #ffffff;
    border-radius: 6px;
    font-size: 12px;
    flex-shrink: 0;
}

.required-star {
    color: #dc3545;
    margin-right: 3px;
}

/* Input Wrapper Modern */
.input-wrapper-modern,
.textarea-wrapper-modern,
.select-wrapper-modern {
    position: relative;
}

.form-control-modern {
    width: 100%;
    padding: 14px 18px;
    padding-right: 45px;
    border: 2px solid rgba(241, 244, 217, 0.5);
    border-radius: 12px;
    font-size: 15px;
    color: #333;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

.form-control-modern:focus {
    border-color: #79254a;
    box-shadow: 0 0 0 4px rgba(121, 37, 74, 0.1);
    background: #ffffff;
}

.form-control-modern::placeholder {
    color: #999;
}

.input-icon-bg {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #f1f4d9 0%, #ffffff 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.form-control-modern:focus ~ .input-icon-bg {
    opacity: 0.3;
}

/* Select Wrapper */
.select-wrapper-modern {
    position: relative;
}

.select-wrapper-modern select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #79254a;
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
}

/* Textarea */
textarea.form-control-modern {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button Modern */
.form-submit-wrapper {
    margin-top: 30px;
    text-align: center;
}

.modern-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #79254a 0%, #5a1a35 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(121, 37, 74, 0.3);
    position: relative;
    overflow: hidden;
}

.modern-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.modern-submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.modern-submit-btn span,
.modern-submit-btn i {
    position: relative;
    z-index: 1;
}

.modern-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(121, 37, 74, 0.4);
    background: linear-gradient(135deg, #5a1a35 0%, #79254a 100%);
}

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

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

/* Map Wrapper Modern */
.map-wrapper-modern {
    background: #ffffff;
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(121, 37, 74, 0.1);
    border: 2px solid rgba(241, 244, 217, 0.5);
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
}

.map-wrapper-modern:hover {
    box-shadow: 0 16px 48px rgba(121, 37, 74, 0.15);
    border-color: rgba(121, 37, 74, 0.3);
}

.modern-google-map {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 16px;
    overflow: hidden;
}

.modern-google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

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

.Features .Feature .singleFeature .info .content .icon i {
    animation: float 3s ease-in-out infinite;
}

/* Modern Loading States */
.defaultBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Modern Shadows */
.Features .Feature .singleFeature .info,
.requirements .requirement,
.ourSteps .content,
.services .service {
    filter: drop-shadow(0 4px 6px rgba(121, 37, 74, 0.1));
}

/* Modern Transitions */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive Design for Modern Requirements */
@media (max-width: 768px) {
    .requirements.modern-requirements-section {
        padding: 60px 0 !important;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px 15px;
        justify-content: center;
        width: 100%;
    }
    
    .requirement-card-header {
        padding: 30px 25px;
        flex-direction: column;
        text-align: center;
    }
    
    .requirement-card-icon-wrapper {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .requirement-card-icon-wrapper i {
        font-size: 28px;
    }
    
    .requirement-card-title-section h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .requirement-card-subtitle {
        font-size: 14px;
        line-height: 22px;
    }
    
    .requirement-items-list {
        padding: 25px 20px;
        gap: 12px;
    }
    
    .requirement-item-modern {
        padding: 15px 18px;
        gap: 15px;
    }
    
    .requirement-item-icon {
        width: 50px;
        height: 50px;
    }
    
    .requirement-item-icon i {
        font-size: 22px;
    }
    
    .requirement-item-content p {
        font-size: 15px;
        line-height: 24px;
    }
    
    .requirement-item-check {
        width: 28px;
        height: 28px;
    }
    
    .requirement-item-check i {
        font-size: 12px;
    }
    
    .MainSlider .MainSlider-container .swiper-slide .info {
        padding: 25px;
        margin-right: 20px;
    }
    
    .Features .Feature .singleFeature .info {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .requirements.modern-requirements-section {
        padding: 50px 0 !important;
    }
    
    .requirements-grid {
        gap: 20px;
        padding: 15px 10px;
        justify-content: center;
        width: 100%;
    }
    
    .requirement-card-header {
        padding: 25px 20px;
    }
    
    .requirement-card-icon-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .requirement-card-icon-wrapper i {
        font-size: 24px;
    }
    
    .requirement-card-title-section h3 {
        font-size: 20px;
    }
    
    .requirement-card-subtitle {
        font-size: 13px;
    }
    
    .requirement-items-list {
        padding: 20px 15px;
        gap: 10px;
    }
    
    .requirement-item-modern {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .requirement-item-icon {
        width: 45px;
        height: 45px;
    }
    
    .requirement-item-icon i {
        font-size: 20px;
    }
    
    .requirement-item-content p {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (min-width: 992px) {
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Modern Gradient Text */
.headTitle h2,
.family .single .info h3 {
    background: linear-gradient(135deg, #79254a 0%, #5a1a35 50%, #79254a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient 3s linear infinite;
}

@keyframes gradient {
    to {
        background-position: 200% center;
    }
}

/* Modern Hover Effects */
.Features .Feature .singleFeature,
.requirements .requirement,
.services .service {
    position: relative;
    overflow: hidden;
}

.Features .Feature .singleFeature::before,
.requirements .requirement::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(121, 37, 74, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.Features .Feature .singleFeature:hover::before,
.requirements .requirement:hover::before {
    width: 300px;
    height: 300px;
}

/* Modern Focus States */
.defaultBtn:focus,
.form-control:focus,
.select2-container--default .select2-selection--single:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(121, 37, 74, 0.2);
}

/* Modern Selection */
::selection {
    background: rgba(121, 37, 74, 0.3);
    color: #fff;
}

::-moz-selection {
    background: rgba(121, 37, 74, 0.3);
    color: #fff;
}

/* Modern Customer Service Section - Fully Responsive */
.contactCustomerService.modern-customer-service {
    padding: 80px 0 !important;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 25%, #fafbfc 50%, #ffffff 75%, #fefefe 100%) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    clear: both;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Override the grey background from reqruitment-request-steps */
.reqruitment-request-steps {
    background: transparent !important;
}

.reqruitment-request-steps .col-12 {
    background: transparent !important;
}

.contactCustomerService.modern-customer-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(121, 37, 74, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 90% 80%, rgba(241, 244, 217, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.contactCustomerService.modern-customer-service .container {
    position: relative;
    z-index: 1;
}

.contactCustomerService.modern-customer-service .headTitle {
    margin-bottom: 60px !important;
}

.contactCustomerService.modern-customer-service .headTitle h2 {
    font-size: 38px !important;
    margin-bottom: 15px !important;
}

.contactCustomerService.modern-customer-service .headTitle p {
    font-size: 18px !important;
    color: #666;
}

/* Customer Service Card - Modern Design */
.customer-service-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 50%, #ffffff 100%);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(121, 37, 74, 0.12), 0 2px 8px rgba(121, 37, 74, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(121, 37, 74, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.customer-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #79254a, #f1f4d9, #79254a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.customer-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(121, 37, 74, 0.2), 0 5px 15px rgba(121, 37, 74, 0.1);
    border-color: rgba(121, 37, 74, 0.25);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f9 50%, #ffffff 100%);
}

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

/* Avatar Section */
.customer-service-card .card-avatar {
    position: relative;
    margin-bottom: 20px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-service-card .card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f1f4d9;
    box-shadow: 0 4px 16px rgba(121, 37, 74, 0.1);
    transition: all 0.4s ease;
}

.customer-service-card:hover .card-avatar img {
    transform: scale(1.05);
    border-color: #79254a;
    box-shadow: 0 6px 24px rgba(121, 37, 74, 0.2);
}

.customer-service-card .card-avatar .avatar-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: #25d366;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Card Content */
.customer-service-card .card-content {
    flex: 1;
    margin-bottom: 25px;
    width: 100%;
}

.customer-service-card .card-content h3 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #79254a !important;
    margin-bottom: 8px !important;
    line-height: 1.4 !important;
}

.customer-service-card .card-content .card-role {
    font-size: 14px;
    color: #888;
    margin: 0;
    font-weight: 400;
}

/* Action Buttons */
.customer-service-card .card-actions {
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.customer-service-card .card-actions .action-btn {
    flex: 1;
    min-width: 120px;
    max-width: 150px;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.customer-service-card .card-actions .action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.customer-service-card .card-actions .action-btn:hover::before {
    width: 300px;
    height: 300px;
}

.customer-service-card .card-actions .action-btn i {
    font-size: 18px;
    z-index: 1;
    position: relative;
}

.customer-service-card .card-actions .action-btn span {
    z-index: 1;
    position: relative;
}

.customer-service-card .card-actions .whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.customer-service-card .card-actions .whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    border-color: #20ba5a;
}

.customer-service-card .card-actions .call-btn {
    background: linear-gradient(135deg, #79254a 0%, #5a1a35 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(121, 37, 74, 0.3);
}

.customer-service-card .card-actions .call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(121, 37, 74, 0.4);
    border-color: #5a1a35;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .contactCustomerService.modern-customer-service {
        padding: 50px 0 !important;
    }
    
    .contactCustomerService.modern-customer-service .headTitle {
        margin-bottom: 40px !important;
        text-align: center !important;
    }
    
    .contactCustomerService.modern-customer-service .headTitle h2 {
        font-size: 28px !important;
    }
    
    .contactCustomerService.modern-customer-service .headTitle p {
        font-size: 16px !important;
    }
    
    .contactCustomerService.modern-customer-service .row {
        margin: 0 -8px;
    }
    
    .contactCustomerService.modern-customer-service .row > [class*="col-"] {
        padding: 0 8px;
        margin-bottom: 20px;
    }
    
    .customer-service-card {
        padding: 30px 20px;
        border-radius: 20px;
        margin-bottom: 0;
    }
    
    .customer-service-card .card-avatar {
        width: 100px;
        height: 100px;
        margin-bottom: 18px;
    }
    
    .customer-service-card .card-content h3 {
        font-size: 20px !important;
    }
    
    .customer-service-card .card-content .card-role {
        font-size: 13px;
    }
    
    .customer-service-card .card-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .customer-service-card .card-actions .action-btn {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        padding: 14px 20px;
    }
}

@media (max-width: 576px) {
    .contactCustomerService.modern-customer-service {
        padding: 40px 0 !important;
    }
    
    .contactCustomerService.modern-customer-service .headTitle h2 {
        font-size: 24px !important;
    }
    
    .customer-service-card {
        padding: 25px 15px;
        border-radius: 16px;
    }
    
    .customer-service-card .card-avatar {
        width: 90px;
        height: 90px;
    }
    
    .customer-service-card .card-content h3 {
        font-size: 18px !important;
    }
    
    .customer-service-card .card-actions .action-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .customer-service-card .card-actions .action-btn i {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .customer-service-card {
        padding: 40px 30px;
    }
    
    .customer-service-card .card-avatar {
        width: 140px;
        height: 140px;
    }
    
    .customer-service-card .card-content h3 {
        font-size: 24px !important;
    }
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contactForm.modern-contact-section {
        padding: 60px 0 !important;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .form-row-modern {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .modern-google-map {
        min-height: 400px;
    }
    
    .modern-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contactForm.modern-contact-section {
        padding: 50px 0 !important;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
        border-radius: 16px;
    }
    
    .form-label-modern {
        font-size: 14px;
    }
    
    .form-label-modern i {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    .form-control-modern {
        padding: 12px 15px;
        padding-right: 40px;
        font-size: 14px;
    }
    
    .modern-google-map {
        min-height: 350px;
    }
    
    .modern-submit-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
}

/* Modern Footer */
.footer.modern-footer {
    background: linear-gradient(180deg, #79254a 0%, #5a1a35 100%) !important;
    padding: 40px 0 15px !important;
    position: relative;
    overflow: hidden;
}

.footer.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(241, 244, 217, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.footer.modern-footer .container {
    position: relative;
    z-index: 1;
}

.footer.modern-footer .row {
    margin: 0;
}

.footer.modern-footer .row > [class*="col-"] {
    padding: 15px 10px !important;
}

/* Footer Brand Section */
.footer-brand-section {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.footer-logo-wrapper {
    margin-bottom: 12px;
}

.footer-logo {
    max-width: 100%;
    height: auto;
    max-height: 50px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(241, 244, 217, 0.3));
}

.footer-info {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

/* Footer Social Icons Modern */
.footer-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-icon-modern {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-icon-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(241, 244, 217, 0.5);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #f1f4d9;
}

/* Footer Column Modern */
.footer-column-modern {
    height: 100%;
}

.footer-head-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(241, 244, 217, 0.3);
    position: relative;
}

.footer-head-modern::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #f1f4d9, transparent);
}

.footer-head-modern i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 7px;
    font-size: 14px;
    color: #f1f4d9;
}

.footer-head-modern span {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Footer Links Modern */
.footer-links-modern ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-modern ul li {
    margin-bottom: 6px;
}

.footer-links-modern ul li a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    padding: 4px 0;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links-modern ul li a i {
    font-size: 10px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-links-modern ul li a span {
    flex: 1;
}

.footer-links-modern ul li a strong {
    color: #f1f4d9;
    font-weight: 600;
}

.footer-links-modern ul li a::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f1f4d9, transparent);
    transition: width 0.3s ease;
}

.footer-links-modern ul li a:hover {
    color: #ffffff;
    padding-right: 10px;
}

.footer-links-modern ul li a:hover i {
    opacity: 1;
    transform: translateX(-5px);
}

.footer-links-modern ul li a:hover::before {
    width: 100%;
}

/* Footer Contact Modern */
.footer-contact-modern {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.contact-item-modern:hover {
    transform: translateX(-5px);
}

.contact-icon-wrapper {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 7px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item-modern:hover .contact-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(241, 244, 217, 0.5);
    transform: scale(1.1) rotate(5deg);
}

.contact-icon-wrapper i {
    color: #f1f4d9;
    font-size: 12px;
}

.contact-content {
    flex: 1;
}

.contact-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    margin: 0 0 2px 0;
    font-weight: 500;
}

.contact-value {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-value:hover {
    color: #f1f4d9;
    text-decoration: none;
}

/* Footer Certifications Modern */
.footer-certifications-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-badge-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cert-badge-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(241, 244, 217, 0.5);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cert-badge-modern img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Footer Copyright Modern */
.footer-copyright-modern {
    margin-top: 25px;
    padding-top: 15px;
    text-align: center;
}

.copyright-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin-bottom: 12px;
}

.footer-copyright-modern p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.footer-copyright-modern a {
    color: #f1f4d9;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-copyright-modern a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer.modern-footer {
        padding: 40px 0 20px !important;
    }
    
    .footer-logo {
        max-height: 50px;
    }
    
    .footer-head-modern {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .footer-head-modern i {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    
    .social-icon-modern {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .contact-icon-wrapper {
        width: 32px;
        height: 32px;
    }
    
    .contact-icon-wrapper i {
        font-size: 13px;
    }
    
    .cert-badge-modern {
        width: 38px;
        height: 38px;
    }
    
    .footer-copyright-modern {
        margin-top: 25px;
        padding-top: 15px;
    }
}

@media (max-width: 576px) {
    .footer.modern-footer {
        padding: 35px 0 15px !important;
    }
    
    .footer-logo {
        max-height: 45px;
    }
    
    .footer-info {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .footer-head-modern {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .footer-links-modern ul li a,
    .contact-value {
        font-size: 13px;
    }
    
    .contact-label {
        font-size: 11px;
    }
    
    .footer-copyright-modern {
        margin-top: 20px;
        padding-top: 12px;
    }
    
    .footer-copyright-modern p {
        font-size: 12px;
    }
}

