.max-w-sa

/* Custom Text Sizes */
.text-custom-5xl {
    font-size: 4.3rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .text-custom-5xl {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .text-custom-5xl {
        font-size: 4rem;
    }
}

/* Hero Image Responsive Positioning Fix */
.hero-image-container {
    position: absolute;
    left: 0;
    bottom: 0;
}


/* Hero Button Styles */
.hero-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Primary Button (Dark) */
.hero-btn-primary {
    background-color: #1a1a1a;
    color: white;
    padding: 16px 32px;
}

.hero-btn-primary:hover {
    background-color: #000;
    color: white;
}

/* Secondary Button (Outline) */
.hero-btn-secondary {
    color: #ffffff;
    border: 2px solid #1a1a1a;
    padding: 17px 35px 17px 24px;
}

.hero-btn-secondary:hover {
    background-color: #1a1a1a;
    color: white;
}

/* White Button */
.hero-btn-white {
    background-color: white;
    color: #1a1a1a;
    border: 2px solid white;
    padding: 14px 30px;
}

.hero-btn-white:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}


.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* ===================================
   HERO SECTION ANIMATIONS
   ================================== */

/* Define keyframe animations */
@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroSlideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroScaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation classes for hero elements */
.hero-content-animate {
    animation: heroSlideInLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-title-animate {
    opacity: 0;
    animation: heroFadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.hero-description-animate {
    opacity: 0;
    animation: heroFadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

.hero-button-animate {
    opacity: 0;
    animation: heroFadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
}

.hero-image-animate {
    opacity: 0;
    animation: heroSlideInRight 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

/* Enhanced hero image with floating effect */
.hero-image-animate .hero-image {
    animation: heroFloatIn 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}

/* Performance optimizations */
.hero-content-animate,
.hero-title-animate,
.hero-description-animate,
.hero-button-animate,
.hero-image-animate {
    will-change: transform, opacity;
}

.just-content {
    padding: 145px 0px 120px 0px;
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {

    .hero-content-animate,
    .hero-title-animate,
    .hero-description-animate,
    .hero-button-animate,
    .hero-image-animate,
    .hero-image-animate .hero-image,
    .animate-in .cta-item-animate,
    .animate-in .cta-image-animate,
    .animate-in .cta-title-animate,
    .animate-in .cta-description-animate,
    .animate-in .cta-header-animate,
    .animate-in .cta-section-title-animate,
    .animate-in .cta-section-description-animate,
    .partner-card-animate,
    .partner-container-animate,
    .partner-logo-animate {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ===================================
   CTA BUTTONS ANIMATIONS
   ================================== */

/* Define keyframe animations for CTA buttons */
@keyframes ctaFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ctaScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ctaSlideInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Grid container animation */
.cta-grid-animate {
    opacity: 0;
    animation: ctaFadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

/* Individual CTA item animations with staggered delays */
.cta-item-animate {
    opacity: 0;
    animation: ctaSlideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Staggered animation delays */
.cta-item-animate:nth-child(1) {
    animation-delay: 0.3s;
}

.cta-item-animate:nth-child(2) {
    animation-delay: 0.45s;
}

.cta-item-animate:nth-child(3) {
    animation-delay: 0.6s;
}

.cta-item-animate:nth-child(4) {
    animation-delay: 0.75s;
}

.cta-item-animate:nth-child(5) {
    animation-delay: 0.9s;
}

.cta-item-animate:nth-child(6) {
    animation-delay: 1.05s;
}

/* Image animation */
.cta-image-animate {
    opacity: 0;
    animation: ctaScaleIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}

/* Title animation */
.cta-title-animate {
    opacity: 0;
    animation: ctaFadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
}

/* Description animation */
.cta-description-animate {
    opacity: 0;
    animation: ctaFadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s forwards;
}

/* Section header animations */
.cta-header-animate {
    opacity: 0;
    animation: ctaFadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
}

.cta-section-title-animate {
    opacity: 0;
    animation: ctaSlideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.cta-section-description-animate {
    opacity: 0;
    animation: ctaFadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}

.animate-active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.cta-item-animate,
.cta-image-animate,
.cta-content-animate,
.cta-title-animate,
.cta-description-animate {
    opacity: 0;
    transform: translateY(30px);
}

/* Performance optimizations */
.cta-item-animate,
.cta-image-animate,
.cta-title-animate,
.cta-description-animate,
.cta-header-animate,
.cta-section-title-animate,
.cta-section-description-animate {
    will-change: transform, opacity;
}

/* ===================================
   PARTNER CARDS ANIMATIONS
   ================================== */

/* Define keyframe animations for partner cards */
@keyframes partnerFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes partnerSlideUp {
    from {
        transform: translateY(20px) scale(0.95);
    }

    to {
        transform: translateY(0) scale(1);
    }
}

@keyframes partnerLogoZoom {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Partner card container animation */
.partner-card-animate {
    opacity: 0;
    transition: transform 400ms ease;

    animation: partnerFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.partner-card-animate.hovered {
    transform: translatey(-10px);
}

/* Staggered animation delays for multiple cards */
.partner-card-animate:nth-child(1) {
    animation-delay: 0.1s;
}

.partner-card-animate:nth-child(2) {
    animation-delay: 0.2s;
}

.partner-card-animate:nth-child(3) {
    animation-delay: 0.3s;
}

.partner-card-animate:nth-child(4) {
    animation-delay: 0.4s;
}

.partner-card-animate:nth-child(5) {
    animation-delay: 0.5s;
}

.partner-card-animate:nth-child(6) {
    animation-delay: 0.6s;
}

.partner-card-animate:nth-child(7) {
    animation-delay: 0.7s;
}

.partner-card-animate:nth-child(8) {
    animation-delay: 0.8s;
}

.partner-card-animate:nth-child(9) {
    animation-delay: 0.9s;
}

.partner-card-animate:nth-child(10) {
    animation-delay: 1.0s;
}

/* Card container slide animation */
.partner-container-animate {
    transform: translateY(20px) scale(0.95);
    animation: partnerSlideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Logo zoom animation */
.partner-logo-animate {
    opacity: 0;
    transform: scale(0.9);
    animation: partnerLogoZoom 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

/* Performance optimizations - only when animation is active */
.animate-in .partner-card-animate,
.animate-in .partner-container-animate,
.animate-in .partner-logo-animate {
    will-change: transform, opacity;
}

.partner-card-animate.hoverd {}

.max-w-sa {
    max-width: 1320px;
}

/* Custom Background Colors */
.bg-custom-blue {
    background-color: #b8d3e9;
}

/* Body scroll prevention when mega menu is open */
body.mega-menu-open {
    overflow: hidden;
}

/* Custom Background Colors */
.bg-custom-blue {
    background-color: #b8d3e9;
}

.en .hero-image-container {
    left: 49%;
}

/* Custom Text Sizes */
.text-custom-5xl {
    font-size: 2rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .text-custom-5xl {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .text-custom-5xl {
        font-size: 3rem;
    }
}

/* Body scroll prevention when mega menu is open */
body.mega-menu-open {
    overflow: hidden;
}

/* ==============================
   WooCommerce Edit Account Form
   Theme: Black & Gray Elegant
   ============================== */

.woocommerce-EditAccountForm {
    background: #fff;
    font-family: "Poppins", "Tajawal", sans-serif;
}

.woocommerce-EditAccountForm label {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.woocommerce-EditAccountForm input[type="text"],
.woocommerce-EditAccountForm input[type="email"],
.woocommerce-EditAccountForm input[type="password"] {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #ccc;
    border-radius: 0.6rem;
    font-size: 0.95rem;
    color: #111;
    background-color: #fafafa;
    transition: all 0.2s ease-in-out;
}

.woocommerce-EditAccountForm input:focus {
    border-color: #000;
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
    outline: none;
}

.woocommerce-EditAccountForm fieldset {
    border: 1px solid #e1e1e1;
    border-radius: 0.8rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
    background: #fafafa;
}

.woocommerce-EditAccountForm legend {
    padding: 0 0.5rem;
    font-weight: 600;
    color: #222;
    font-size: 1rem;
}

.woocommerce-EditAccountForm em {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: #666;
}

.woocommerce-EditAccountForm .woocommerce-Button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 0.6rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.25s ease;
    margin-top: 1.5rem;
}

.woocommerce-EditAccountForm .woocommerce-Button:hover {
    background-color: #333;
}

.woocommerce-EditAccountForm .required {
    color: #d00;
}

/* Responsive layout */
@media (min-width: 768px) {

    .woocommerce-EditAccountForm .form-row-first,
    .woocommerce-EditAccountForm .form-row-last {
        width: 48%;
        float: right;
    }

    .woocommerce-EditAccountForm .form-row-wide {
        clear: both;
    }
}

/* Smooth page transitions */
body {
    transition: all 0.2s ease-out;
}

/* Auth tab styles */
.auth-tab.active {
    background-color: white;
    color: #111827;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.auth-tab:not(.active) {
    color: #6b7280;
}

/* ==========================================================================
   Simple & Reliable Mega Menu Styles
   ========================================================================== */

.mega-menu-item {
    position: static;
}

/* Global mega menu container that spans full width */
.mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(.98);
    z-index: 1000;
    pointer-events: none;
}

/* Show mega menu on hover */
.mega-menu-item:hover .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: all;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mega menu content wrapper */
.mega-menu-content {
    max-width: 1376px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

/* Hover effects */
.mega-menu-dropdown a {
    transition: all 0.2s ease-out;
}

/* Smooth arrow animation */
.mega-menu-arrow {
    transition: transform 0.2s ease-out;
}

.mega-menu-item:hover .mega-menu-arrow {
    transform: rotate(180deg);
}

/* Dot animations */
.mega-menu-dropdown .w-1 {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .mega-menu-container {
        position: fixed;
        top: 0 !important;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        max-height: 100vh;
        overflow-y: auto;
        border-radius: 0;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .mega-menu-container .grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .mega-menu-column::after {
        display: none;
    }
}

/* Header positioning */
.site-header {
    z-index: 100;
}

/* Site Logo Consistent Sizing */
.site-logo {
    height: 2rem !important;
    /* h-8 equivalent - 32px */
    width: auto !important;
    max-height: 2rem !important;
    object-fit: contain !important;
}

/* ==========================================================================
   Search Popover Styles (Similar to Mega Menu)
   ========================================================================== */

.search-menu-item {
    position: static;
}

/* Search dropdown container that spans full width */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(.98);
    z-index: 1000;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
}

/* Show search dropdown when active */
.search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: all;
    max-height: 600px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Service Rating & Feedback Styles
   ========================================================================== */

/* Star rating interactions */
.rating-stars .star-icon {
    cursor: pointer;
    transition: all 0.2s ease;
}

.rating-stars .star-icon:hover {
    transform: scale(1.1);
}

/* Rating selection states */
.rating-stars.rating-selected {
    background: rgba(37, 147, 95, 0.05);
    border-radius: 8px;
    padding: 4px;
    margin: -4px;
}

.rating-stars .star-icon {
    cursor: pointer;
    transition: all 0.2s ease;
}

.rating-stars .star-icon:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 2px 4px rgba(37, 147, 95, 0.3));
}

.rating-stars .star-icon:active {
    transform: scale(1.05);
}

/* Selected rating glow effect */
.rating-stars.rating-selected .star-icon.text-sa-500 {
    filter: drop-shadow(0 0 8px rgba(37, 147, 95, 0.4));
}

/* Feedback buttons */
.feedback-btn {
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    min-width: 80px;
}

.feedback-btn:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

.feedback-btn:active {
    transform: scale(0.95);
}

/* Feedback button loading state */
.feedback-btn.loading {
    position: relative;
}

.feedback-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Selected feedback button styles */
.feedback-btn.selected {
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Rate service button */
.rate-service-btn {
    transition: all 0.2s ease;
}

.rate-service-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Feedback message animation */
.feedback-message {
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

/* Service action cards hover effects */
.service-action-card:hover {
    transform: translateY(-2px);
}

.service-action-card .hgi {
    transition: transform 0.2s ease;
}

.service-action-card:hover .hgi {
    transform: scale(1.1);
}

/* ==========================================================================
   Admin Bar Language Switcher Styles
   ========================================================================== */

/* Language flag styling in admin bar */
#wp-admin-bar-teeqcore-admin-language .language-flag img {
    width: 16px !important;
    height: 12px !important;
    vertical-align: middle !important;
    margin-right: 4px !important;
    border-radius: 2px;
    object-fit: cover;
}

/* Sub-menu language flags */
#wp-admin-bar-teeqcore-admin-language .ab-submenu .language-flag img {
    width: 16px !important;
    height: 12px !important;
    vertical-align: middle !important;
    margin-right: 6px !important;
    border-radius: 2px;
    object-fit: cover;
}

/* Current language indicator */
#wp-admin-bar-teeqcore-admin-language .current-indicator {
    color: #00a32a;
    font-weight: bold;
    margin-left: 4px;
}

/* Language option hover state */
#wp-admin-bar-teeqcore-admin-language .ab-submenu .ab-item:hover {
    background-color: #0073aa;
    color: #fff;
}

/* RTL support for language switcher */
.rtl #wp-admin-bar-teeqcore-admin-language .language-flag img {
    margin-right: 0 !important;
    margin-left: 4px !important;
}

.rtl #wp-admin-bar-teeqcore-admin-language .ab-submenu .language-flag img {
    margin-right: 0 !important;
    margin-left: 6px !important;
}

.rtl #wp-admin-bar-teeqcore-admin-language .current-indicator {
    margin-left: 0;
    margin-right: 4px;
}

.bg-custom-se {
    background: #f8f7f4;
}

.cta-scroll-animate.animate-in {
    animation: ctaFadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}

.cta-scroll-animate {
    opacity: 0;
    transform: translateY(40px);
}

.rounded-custom {
    border-radius: 30px;
}

.py-custom {
    padding-block: 20px;
}

.tab-content.active {
    display: flex;
}

.tabbed-features-container {
    display: flex;
    gap: 35px;
    align-items: center;
    height: 430px;
}

.content-shape-shape_two .tabbed-features-container {
    height: 432px;
}

/* Base state - elements hidden before animation */
.section-scroll-animate:not(.animate-in-view) .section-header-animate,
.section-scroll-animate:not(.animate-in-view) .section-title-animate,
.section-scroll-animate:not(.animate-in-view) .section-description-animate,
.section-scroll-animate:not(.animate-in-view) .tab-navigation,
.section-scroll-animate:not(.animate-in-view) .tab-content-container {
    opacity: 1 !important;
    transform: translateY(0px);
}

.tab-navigation {}

.tab-content-container {
    flex: 1;
}

button.tab-button.active span {
    transition: 230ms ease;
    color: #000;
}

.b-custom-back {
    background: #e4e3df;
}

.bg-custom-pink {
    background: #ffd9eb;
}

.bg-custom-green {
    background: #deff9d;
}


/**
 * Tabbed Features Component Styles
 * Smooth animations and modern tab interface
 */

/* ===================================
   TAB NAVIGATION STYLES
   ================================== */




/* ===================================
   TAB CONTENT STYLES
   ================================== */






/* Content animations */
.tab-content.active .content-text {
    animation: contentSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

.tab-content.active .content-image {
    animation: imageSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

/* Enhanced content element animations */
.tab-content.active .content-title {
    animation: titleFadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.tab-content.active .content-description {
    animation: descriptionFadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.tab-content.active .content-background {
    animation: backgroundFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

/* Image container animation */
.tab-content.active .content-image img {
    animation: imageZoomIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

/* Reset animations for inactive content */
.tab-content:not(.active) .content-text,
.tab-content:not(.active) .content-image,
.tab-content:not(.active) .content-title,
.tab-content:not(.active) .content-description,
.tab-content:not(.active) .content-background {
    opacity: 0;
    transform: translateY(20px);
}

.tab-content:not(.active) .content-image img {
    opacity: 0;
    transform: scale(0.9);
}

/* ===================================
   SCROLL ANIMATIONS
   ================================== */



/* Animated state - smooth entrance when in view */
.section-scroll-animate.animate-in-view .section-header-animate {
    animation: sectionHeaderFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

.section-scroll-animate.animate-in-view .section-title-animate {
    animation: sectionTitleSlideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.section-scroll-animate.animate-in-view .section-description-animate {
    animation: sectionDescriptionFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.section-scroll-animate.animate-in-view .tab-navigation {
    animation: tabNavSlideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.section-scroll-animate.animate-in-view .tab-content-container {
    animation: tabContentFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

/* Staggered tab button animations */
.section-scroll-animate.animate-in-view .tab-button-animate[data-index="0"] {
    animation: tabButtonSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s both;
}

.section-scroll-animate.animate-in-view .tab-button-animate[data-index="1"] {
    animation: tabButtonSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

.section-scroll-animate.animate-in-view .tab-button-animate[data-index="2"] {
    animation: tabButtonSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s both;
}

.section-scroll-animate.animate-in-view .tab-button-animate[data-index="3"] {
    animation: tabButtonSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.0s both;
}

.section-scroll-animate.animate-in-view .tab-button-animate[data-index="4"] {
    animation: tabButtonSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.1s both;
}

.section-scroll-animate.animate-in-view .tab-button-animate[data-index="5"] {
    animation: tabButtonSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s both;
}

/* ===================================
   KEYFRAME ANIMATIONS
   ================================== */

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes imageSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes titleFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes descriptionFadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes backgroundFadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes imageZoomIn {
    from {
        opacity: 0;
        transform: scale(0.9) rotate(-2deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes sectionHeaderFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sectionTitleSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes sectionDescriptionFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tabButtonSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes tabNavSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tabContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   ================================== */

@media (max-width: 768px) {
    .tab-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .tab-content-container {
        min-height: 300px;
    }
}

/* ===================================
   ACCESSIBILITY & REDUCED MOTION
   ================================== */



/* Performance optimizations */
.tab-content,
.content-text,
.content-image,
.content-title,
.content-description,
.content-background {
    will-change: transform, opacity;
}

.tab-content {
    display: none;
}

.content-shape-shape_two .tab-content {
    display: block;
}

.tab-content.active .content-text,
.tab-content.active .content-image,
.tab-content.active .content-title,
.tab-content.active .content-description,
.tab-content.active .content-background {
    will-change: auto;
}

@media (prefers-reduced-motion: reduce) {

    .tab-button,
    .tab-content,
    .content-text,
    .content-image,
    .content-title,
    .content-description,
    .content-background,
    .section-header-animate,
    .section-title-animate,
    .section-description-animate,
    .tab-button-animate,
    .tab-content-animate {
        transition: none !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .tab-content {
        transform: none !important;
    }

    .tab-content.active {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .tab-content:not(.active) .content-text,
    .tab-content:not(.active) .content-image,
    .tab-content:not(.active) .content-title,
    .tab-content:not(.active) .content-description,
    .tab-content:not(.active) .content-background {
        opacity: 1 !important;
        transform: none !important;
    }

    /* Ensure all scroll animation elements are visible */
    .section-scroll-animate:not(.animate-in-view) .section-header-animate,
    .section-scroll-animate:not(.animate-in-view) .section-title-animate,
    .section-scroll-animate:not(.animate-in-view) .section-description-animate,
    .section-scroll-animate:not(.animate-in-view) .tab-navigation,
    .section-scroll-animate:not(.animate-in-view) .tab-content-container,
    .section-scroll-animate:not(.animate-in-view) .tab-button-animate {
        opacity: 1 !important;
        transform: none !important;
    }
}

.bg-custom-lavender {
    background: #f2edf9;
}

section.account-section>a {
    display: none;
}

nav.woocommerce-MyAccount-navigation {
    width: 100% !important;
}

@media only screen and (max-width: 1170px) {
    * {}

    .responsive-nav {
        display: none;
    }

    .moblile-responsive {
        display: block !important;
    }
}

@media only screen and (max-width: 1000px) {
    * {}

    .page-header-component>div>.shape-img {
        height: 100% !important;
    }

    .res-flex {}

    .just-content {
        padding: 80px 0px 90px 0px;
    }

    .tabbed-features-container.pt-8.tab-buttons {
        height: 100%;
        display: flex;
        flex-direction: column;
        padding-top: 0;
        gap: 15px;
    }

    .responsive-hero-image-fix {
        display: flex;
        flex-direction: column-reverse;
        height: 100% !important;
        padding-bottom: 0;
        padding-top: 60px;
    }

    .hero-image-animate {
        position: relative;
    }

    .en .hero-image-container {
        left: 0;
    }


}

@media only screen and (max-width: 750px) {
    * {}

    .tap-custom-responsive {
        min-height: 526px;
    }



}

@media only screen and (max-width: 750px) {
    * {}

    .tap-custom-responsive {
        min-height: 526px;
    }



}

@media only screen and (max-width: 650px) {
    * {}

    .tabbed-features-container {
        height: 100%;
    }

    .res-flex {
        display: flex;
        flex-direction: column-reverse;
        padding-bottom: 0;
    }

    .res-flex.relative.grid.grid-cols-1.lg\:grid-cols-5.gap-12.items-center.pt-24.lg\:pt-24.pb-32.min-h-\[500px\].shape-img {}

    .des {
        display: none;
    }

    .res {
        display: block !important;
    }

    .slider-navigation-wrapper {
        margin-bottom: 5px;
    }

    .tabbed-features-container {
        flex-direction: column;
    }

    .content-shape-shape_two .tabbed-features-container {
        height: 800px;
    }

    .slider-content-track {
        display: flex;
    }


    .responsive-des {
        font-size: 22px;
    }

    .max-w-sa .text-custom-5xl {
        font-size: 54px;
    }

}

.page-header-component>div>.shape-img {
    height: 740px;
}

.moblile-responsive {
    display: none;
}

.res {
    display: none;
}

bdi {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 7px;
    justify-content: center;
}

.col2-set {
    display: flex;
    flex-direction: column;
}

.col2-set>div {
    width: 100% !important;
}

.woocommerce form.checkout_coupon {
    padding: 0;
    border: 0;
}

.woocommerce form-row form-row-last {
    margin-bottom: 0;
}

p.form-row.form-row-last {
    width: fit-content;
    margin-bottom: 0 !important;
    height: 100%;
}

.woocommerce-orders-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-family: "Inter", "Cairo", sans-serif;
}

.woocommerce-orders-table thead {
    background: #f8fafc;
}

.woocommerce-orders-table th {
    text-align: start;
    padding: 1rem 1.2rem;
    color: #334155;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid #e2e8f0;
}

.woocommerce-orders-table td {
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
    background: #fff;
    transition: background 0.2s ease;
}

.woocommerce-orders-table tr:hover td {
    background: #f8fafc;
}

.woocommerce-orders-table__cell-order-number a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.woocommerce-orders-table__cell-order-number a:hover {
    color: #1e40af;
}

.woocommerce-orders-table__cell-order-status {
    font-weight: 500;
    color: #10b981;
    /* green for success */
}

.woocommerce-orders-table__cell-order-status:contains("قيد الإنتظار") {
    color: #f59e0b;
    /* amber */
}

.woocommerce-orders-table__cell-order-status:contains("ملغي") {
    color: #ef4444;
    /* red */
}

.woocommerce-orders-table__cell-order-actions .button.view {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #2563eb;
    color: #fff !important;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease;
}

.woocommerce-orders-table__cell-order-actions .button.view:hover {
    background: #1e40af;
}

.woocommerce-pagination {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.woocommerce-pagination .woocommerce-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff !important;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
    border: none;
}

.woocommerce-pagination .woocommerce-button:hover {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.35);
}

.woocommerce-pagination .woocommerce-button::after {
    content: "←";
    margin-left: 0;
    margin-right: 8px;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.woocommerce-pagination .woocommerce-button:hover::before {
    transform: translateX(-4px);
}


.woocommerce-pagination .woocommerce-button:hover::after {
    transform: translateX(4px);
}

/* 🎯 تنسيق قسم تفاصيل الطلب */
.woocommerce-order-details,
.woocommerce-customer-details {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    direction: rtl;
    text-align: right;
}

/* 🏷️ العناوين */
.woocommerce-order-details__title,
.woocommerce-column__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #1a1a1a;
    border-bottom: 2px solid #f3f3f3;
    padding-bottom: 8px;
}

/* 📋 الجدول */
.woocommerce-table--order-details {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
    padding: 12px 10px;
    border-bottom: 1px solid #f1f1f1;
    vertical-align: middle;
}

.woocommerce-table--order-details th {
    background-color: #fafafa;
    font-weight: 600;
    color: #333;
}

.woocommerce-table--order-details td a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
}

.woocommerce-table--order-details td a:hover {
    color: #004c99;
}

.woocommerce-Price-amount {
    font-weight: 600;
    color: #111;
}

.woocommerce-customer-details address {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 16px;
    line-height: 1.8;
    font-size: 0.95rem;
    color: #333;
}

.woocommerce-customer-details--phone,
.woocommerce-customer-details--email {
    margin-top: 8px;
    color: #555;
}

.woocommerce-notices-wrapper+p {
    background: #f6fdf9;
    border: 1px solid #c7f0d8;
    color: #0a6f35;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 500;
    margin-bottom: 20px;
}

.woocommerce-Price-currencySymbol svg {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    fill: #444;
    vertical-align: middle;
}

.en .slider-content-wrapper:after {
    left: -174% !important;
}

.en button.slider-nav-btn {
    transform: rotateY(180deg);
}

.woocommerce-checkout #payment ul.payment_methods li img {
    margin: 0 !important;
    padding: 0 !important;
}

.wc_payment_method payment_method_amwalcheckout_installments label {
    width: 49px;
}

.checkout-step span.optional {
    display: none;
}

.nsl-button.nsl-button-default.nsl-button-google {
    width: 100%;
    box-shadow: inset 0 0 0 1px #e3e3e3 !important;
    border-radius: 7px;
    transition: 180ms ease;
}

.nsl-button.nsl-button-default.nsl-button-google:hover {
    background: #f9f9f9 !important;
}

.nsl-container-buttons {
    width: 100%;
}