/* Force slider captions to be centered for RTL Kurdish */
[dir="rtl"] .tp-parallax-wrap,
[dir="rtl"] .tp-loop-wrap,
[dir="rtl"] .tp-mask-wrap {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
}

[dir="rtl"] .tp-caption h1,
[dir="rtl"] .tp-caption h2,
[dir="rtl"] .tp-caption {
    text-align: center !important;
    direction: rtl !important;
}

/* Vision Quote Styles */
.vision-quote-start {
    position: absolute;
    right: -50px;
    top: -30px !important;
    z-index: 1;
}

.outline-quote-start {
    position: relative;
    width: 60px;
    height: 50px;
    background-image: url("../img/quote_start.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.vision-quote-end {
    position: absolute;
    left: 20px;
    bottom: 5px !important;
    z-index: 1;
}

.outline-quote-end {
    position: relative;
    width: 60px;
    height: 50px;
    background-image: url("../img/quote_end.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Desktop styles */
@media (min-width: 992px) {
    .vision-quote-start {
        right: -80px;
        top: 30px;
    }

    .outline-quote-start {
        width: 80px;
        height: 60px;
    }

    .vision-quote-end {
        left: -80px;
        bottom: 30px;
    }

    .outline-quote-end {
        width: 80px;
        height: 60px;
    }
}

/* Large Desktop styles */
@media (min-width: 1200px) {
    .vision-quote-start {
        right: -120px;
        top: 50px;
    }

    .outline-quote-start {
        width: 117px;
        height: 84px;
    }

    .vision-quote-end {
        left: -120px;
        bottom: 50px;
    }

    .outline-quote-end {
        width: 117px;
        height: 84px;
    }
}

/* Tablet styles */
@media (max-width: 991px) and (min-width: 768px) {
    .vision-quote-start {
        right: -40px;
        top: 15px;
    }

    .outline-quote-start {
        width: 50px;
        height: 40px;
    }

    .vision-quote-end {
        left: -40px;
        bottom: 15px;
    }

    .outline-quote-end {
        width: 50px;
        height: 40px;
    }
}

/* Mobile styles */
@media (max-width: 767px) {
    .vision-quote-start {
        right: -30px;
        top: 10px;
    }

    .outline-quote-start {
        width: 40px;
        height: 30px;
    }

    .vision-quote-end {
        left: -30px;
        bottom: 10px;
    }

    .outline-quote-end {
        width: 40px;
        height: 30px;
    }

    .quote blockquote {
        font-size: 16px !important;
        padding: 20px 15px !important;
        line-height: 1.4 !important;
    }
}

/* Extra small mobile styles */
@media (max-width: 480px) {
    .vision-quote-start {
        right: 20px;
        top: 5px;
    }

    .outline-quote-start {
        width: 30px;
        height: 25px;
    }

    .vision-quote-end {
        left: 20px;
        bottom: 5px;
    }

    .outline-quote-end {
        width: 30px;
        height: 25px;
    }

    .quote blockquote {
        font-size: 20px !important;
        padding: 15px 10px !important;
    }
}

/* Ensure the quote container has relative positioning for absolute children */
.quote {
    position: relative;
    padding: 40px 20px;
}

/* Services Section New Design */
.service-main-question {
    margin-bottom: 60px;
}

.service-question-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #333;
}

.service-question-subtitle {
    font-size: 20px;
    margin-bottom: 0;
    color: #666;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: stretch;
}

.services-grid .col-lg-4 {
    flex: 1;
    max-width: 300px;
    min-width: 250px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #00bcd4;
}

.service-icon {
    margin-bottom: 25px;
}

.service-emoji {
    font-size: 60px;
    display: block;
    margin-bottom: 10px;
}

.service-card-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    color: #333;
    text-align: center;
    direction: rtl;
    unicode-bidi: embed;
}

/* Mobile Responsive */
@media (min-width: 992px) {
    .services-grid {
        gap: 20px;
    }

    .services-grid .col-lg-4 {
        flex: 1;
        max-width: 320px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .services-grid {
        gap: 20px;
    }

    .services-grid .col-lg-4 {
        flex: 1;
        max-width: 280px;
        min-width: 220px;
    }

    .service-card {
        min-height: 260px;
    }
}

@media (max-width: 767px) {
    .service-question-title {
        font-size: 24px;
    }

    .service-question-subtitle {
        font-size: 16px;
    }

    .services-grid {
        flex-direction: column;
        gap: 20px;
    }

    .services-grid .col-lg-4 {
        max-width: 100%;
        min-width: 100%;
    }

    .service-card {
        padding: 30px 20px;
        min-height: 200px;
    }

    .service-emoji {
        font-size: 50px;
    }

    .service-card-title {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .service-question-title {
        font-size: 20px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-emoji {
        font-size: 45px;
    }

    .service-card-title {
        font-size: 14px;
    }
}

/* Discount Products Swiper Section */
:root {
    /* Easy-to-tweak sizes for the home page */
    --home-discount-card-max-width: 320px;   /* was 280px */
    --home-discount-image-height: 300px;     /* was 240px */
}

.swiper-container {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 10px;
}

.discount-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    height: calc(var(--home-discount-image-height) + 60px);
    cursor: pointer;
    width: 100%;
    max-width: var(--home-discount-card-max-width);
    margin: 0 auto;
}

.discount-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.discount-product-image {
    position: relative;
    height: var(--home-discount-image-height);
    overflow: hidden;
    cursor: pointer;
}

.discount-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.discount-product-card:hover .discount-product-image img {
    transform: scale(1.1);
}

.discount-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,87,34,0.8), rgba(255,152,0,0.8));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* don't block taps/clicks */
}

.discount-product-card:hover .discount-overlay {
    opacity: 1;
}

.discount-badge {
    background: rgba(255,255,255,0.95);
    padding: 10px 20px;
    border-radius: 25px;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.discount-product-card:hover .discount-badge {
    transform: translateY(0);
}

.discount-badge span {
    color: #ff5722;
    font-weight: 700;
    font-size: 14px;
}

.discount-product-info {
    padding: 15px 20px;
    text-align: center;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.discount-product-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    direction: rtl;
    unicode-bidi: embed;
    line-height: 1.3;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #ff5722;
    font-weight: bold;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
}

.swiper-pagination-bullet {
    background: #ff5722;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* View All Discounts Button */
.btn-view-all-discounts {
    background: linear-gradient(45deg, #ff5722, #ff9800);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
    direction: rtl;
    unicode-bidi: embed;
}

.btn-view-all-discounts:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.4);
    text-decoration: none;
    color: white;
}

.btn-view-all-discounts:active {
    transform: translateY(-1px);
}

/* Mobile Responsive for Discount Section */
@media (max-width: 768px) {
    .swiper-container {
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .btn-view-all-discounts {
        font-size: 14px;
        padding: 10px 25px;
    }

    .discount-product-card {
        height: 280px; /* 220 image + 60 info */
        max-width: 100%;
        width: 100%;
    }

    .discount-product-image {
        height: 220px; /* match products mobile height */
        background: #fff;
    }

    .discount-product-image img {
        object-fit: contain; /* show entire image on mobile */
    }

    .discount-product-name {
        font-size: 14px;
    }

    .swiper-slide {
        width: 100% !important;
        padding: 0 10px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    /* Title section on mobile */
    .testimonial {
        text-align: center !important;
        margin-bottom: 30px;
        float: none !important;
    }

    .testimonial h2 {
        text-align: center;
        margin-bottom: 20px;
    }

    /* Mobile specific improvements */
    .swiper-container {
        margin: 0 auto !important;
        width: 100% !important;
    }

    .swiper-slide {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .discount-product-card {
        margin: 0 auto !important;
        max-width: 85% !important;
    }

    /* Column layout for mobile */
    .col-md-4, .col-md-8 {
        width: 100% !important;
        float: none !important;
        margin-bottom: 20px;
    }

    .swiper-pagination {
        text-align: center !important;
        position: relative !important;
        bottom: auto !important;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .discount-product-card {
        height: 260px; /* 200 image + 60 info */
    }

    .discount-product-image {
        height: 200px;
        background: #fff;
    }

    .discount-product-image img {
        object-fit: contain;
    }

    .discount-product-name {
        font-size: 13px;
    }

    .discount-badge {
        padding: 8px 16px;
    }

    .discount-badge span {
        font-size: 12px;
    }

    .swiper-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Enhanced Discount Photo Styles */
.discount-product-card-enhanced {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    height: calc(var(--home-discount-image-height) + 80px);
    cursor: pointer;
    width: 100%;
    max-width: var(--home-discount-card-max-width);
    margin: 0 auto;
    border: 2px solid transparent;
}

.discount-product-card-enhanced:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: rgba(255, 87, 34, 0.3);
}

.discount-image-container {
    position: relative;
    height: var(--home-discount-image-height);
    overflow: hidden;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.discount-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.discount-image-enhanced {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: brightness(1.05) contrast(1.1);
}

.discount-product-card-enhanced:hover .discount-image-enhanced {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.2) contrast(1.2) saturate(1.3);
}

.discount-overlay-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,87,34,0.85), rgba(238,90,36,0.85));
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discount-product-card-enhanced:hover .discount-overlay-enhanced {
    opacity: 1;
}

.discount-actions {
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.discount-product-card-enhanced:hover .discount-actions {
    transform: translateY(0);
}

.btn-discount-view {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #ff5722;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-discount-view:hover {
    background: #fff;
    transform: scale(1.1) rotate(360deg);
    color: #ff5722;
    text-decoration: none;
}

.discount-badge-enhanced {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
    transform: translateX(10px) rotate(-5deg);
    opacity: 0;
    transition: all 0.4s ease;
}

.discount-product-card-enhanced:hover .discount-badge-enhanced {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
}

.discount-percentage {
    font-size: 18px;
    font-weight: 900;
    margin-top: 3px;
    text-align: center;
}

.discount-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.discount-product-card-enhanced:hover .discount-shine {
    top: 100%;
    left: 100%;
    opacity: 1;
}

.discount-info-enhanced {
    padding: 18px 20px;
    text-align: center;
    background: #fff;
}

.discount-title-enhanced {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    direction: rtl;
    unicode-bidi: embed;
    line-height: 1.3;
    font-family: 'Rabar_021', sans-serif;
}

.discount-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    direction: ltr;
}

.old-price {
    font-size: 14px;
    color: #95a5a6;
    text-decoration: line-through;
}

.new-price {
    font-size: 18px;
    font-weight: 700;
    color: #ff5722;
}

/* Mobile Responsive for Enhanced Discount Images */
@media (max-width: 768px) {
    .discount-product-card-enhanced {
        height: 300px;
    }

    .discount-image-container {
        height: 220px;
    }

    .btn-discount-view {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .discount-product-card-enhanced {
        height: 280px;
    }

    .discount-image-container {
        height: 200px;
    }

    .discount-badge-enhanced {
        padding: 6px 12px;
        font-size: 11px;
    }

    .discount-percentage {
        font-size: 16px;
    }
}

/* Blog Slider Enhancements */
#blog-slider {
    margin-top: 30px;
    position: relative;
}

#blog-slider .owl-item {
    opacity: 1 !important;
    visibility: visible !important;
}

.blog-slide-item {
    width: 100%;
    display: block;
}

.blog-text-setting {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 10px 0;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.blog-written-data {
    padding: 30px;
    direction: rtl;
    text-align: right;
    width: 100%;
}

.blog-written-data h2 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Droid Arabic Kufi', sans-serif;
    direction: rtl;
}

.blog-date {
    color: #99ae3b;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
    direction: rtl;
}

.blog-written-data p {
    line-height: 1.8;
    margin-bottom: 20px;
    direction: rtl;
    text-align: right;
}

/* Enhanced Activity Image Styles */
.activity-image-container {
    margin: 10px 0;
    position: relative;
}

.activity-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.activity-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.activity-image-enhanced {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
    display: block;
    filter: brightness(1.02) contrast(1.05);
}

.activity-image-wrapper:hover .activity-image-enhanced {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.15) saturate(1.1);
}

.activity-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(153, 174, 59, 0.85);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-image-wrapper:hover .activity-image-overlay {
    opacity: 1;
}

.activity-play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #99ae3b;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.activity-image-wrapper:hover .activity-play-button {
    transform: scale(1);
}

.activity-image-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0,0,0,0.4));
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.activity-image-wrapper:hover .activity-image-gradient {
    opacity: 0;
}

/* Hide Owl Carousel Navigation */
#blog-slider .owl-nav {
    display: none !important;
}

/* Hide Owl Carousel Dots */
#blog-slider .owl-dots {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-text-setting {
        min-height: auto;
        margin-top: 20px;
    }

    .blog-written-data {
        padding: 20px;
    }

    .blog-written-data h2 {
        font-size: 20px;
    }

    .image hover-effect img {
        height: 250px;
    }

    /* Hide navigation on mobile to match discount section */
    #blog-slider .owl-nav {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .blog-written-data h2 {
        font-size: 18px;
    }

    .image hover-effect img {
        height: 200px;
    }

    #blog-slider .owl-nav {
        display: none !important;
    }
}

/* Contact List Modern Styles */
.contact-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Rabar_022', sans-serif;
    font-size: 17px;
    color: #222;
    margin-bottom: 14px;
    direction: rtl;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    background: linear-gradient(135deg, #99ae3b, #8cbb28);
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(153, 174, 59, 0.12);
    flex-shrink: 0;
}

.contact-text {
    flex: 1;
    font-family: 'Rabar_022', sans-serif;
    color: #222;
    word-break: break-word;
}

@media (max-width: 480px) {
    .contact-item {
        font-size: 15px;
        gap: 8px;
    }

    .contact-icon {
        width: 28px;
        height: 28px;
        font-size: 15px;
    }
}

/* Product Gallery Section Background */
:root {
    /* Home products gallery sizing */
    --home-product-image-height: 360px; /* legacy var: used in older styles */
    /* Match products page sizing */
    --product-card-min-width: 340px;
    --product-image-height: 360px;
}

.products-gallery-bg {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    position: relative;
}

.products-gallery-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
    pointer-events: none;
}

/* Match products page card/grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--product-card-min-width), 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    height: var(--product-image-height);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 10px;
    text-align: center;
}

.product-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

/* Modern Product Gallery Styles - Kayfi Store Inspired */
.modern-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.modern-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(153, 174, 59, 0.2);
}

/* Legacy styles retained for other sections (safe to keep) */
.product-card-image {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    height: var(--home-product-image-height);
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.modern-product-card:hover .product-card-img {
    transform: scale(1.08);
}

/* Modern Overlay with Actions */
.product-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-product-card:hover .product-overlay-modern {
    opacity: 1;
}

.product-actions {
    display: flex;
    gap: 12px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modern-product-card:hover .product-actions {
    transform: translateY(0);
}

.btn-quick-view,
.btn-add-cart {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-quick-view:hover,
.btn-add-cart:hover {
    background: #99ae3b;
    color: #fff;
    transform: scale(1.1);
}

/* Product Card Content */
.product-card-content {
    padding: 5px;
    text-align: center;
    direction: rtl;
}

.product-category {
    font-size: 12px;
    color: #99ae3b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
    line-height: 1.3;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-desc {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.5;
    margin: 0 0 15px 0;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #eee;
    direction: ltr;
}

.product-rating {
    display: flex;
    gap: 2px;
}

.product-rating i {
    color: #ffc107;
    font-size: 14px;
}

.product-rating i.fa-star-o {
    color: #ddd;
}

/* Section Header Modern Style */
.section-header {
    margin-bottom: 60px;
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    color: #2c3e50;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #99ae3b, #8cbb28);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    color: #7f8c8d;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .modern-product-card {
        margin-bottom: 25px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 20px;
    }

    .product-card-image {
        height: calc(var(--home-product-image-height) - 100px);
    }
}

@media (max-width: 992px) {
    .product-card-image {
        height: calc(var(--home-product-image-height) - 120px);
    }

    .section-title {
        font-size: 36px;
    }

    .product-card-content {
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .product-overlay-modern {
        opacity: 0 !important;
        pointer-events: none;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .product-card-image {
        height: calc(var(--home-product-image-height) - 140px);
    }

    .section-title {
        font-size: 30px;
    }

    .modern-product-card:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .product-card-title {
        font-size: 16px;
        min-height: auto;
    }

    .product-card-desc {
        font-size: 13px;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-card-image {
        height: calc(var(--home-product-image-height) - 160px);
    }

    .section-title {
        font-size: 26px;
    }

    .product-card-content {
        padding: 14px;
    }

    .modern-product-card {
        margin-bottom: 20px;
    }
}

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

.wow.fadeIn {
    animation: fadeInUp 0.6s ease forwards;
}

/* Enhanced Photo Designs */

/* Product Gallery Enhanced Styles */
.product-card-enhanced {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
    position: relative;
    margin-bottom: 30px;
}

.product-card-enhanced:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: rgba(153, 174, 59, 0.3);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.product-image-wrapper {
    position: relative;
    height: 360px;
    overflow: hidden;
}

.product-image-enhanced {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: brightness(1.02) contrast(1.05);
}

.product-card-enhanced:hover .product-image-enhanced {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.product-overlay-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(153, 174, 59, 0.85), rgba(140, 187, 40, 0.85));
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-enhanced:hover .product-overlay-effects {
    opacity: 1;
}

.product-hover-actions {
    display: flex;
    gap: 15px;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.product-card-enhanced:hover .product-hover-actions {
    transform: translateY(0);
}

.btn-quick-view-enhanced,
.btn-wishlist-enhanced {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-quick-view-enhanced:hover,
.btn-wishlist-enhanced:hover {
    background: #fff;
    transform: scale(1.1);
    color: #99ae3b;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.product-badge-new {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.product-card-enhanced:hover .product-badge-new {
    transform: translateY(0);
    opacity: 1;
}

.product-info-enhanced {
    padding: 20px;
    text-align: center;
}

.product-title-enhanced {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.4;
    direction: rtl;
    font-family: 'Rabar_021', sans-serif;
}

.product-rating-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-top: 8px;
}

.product-rating-stars i {
    color: #ffc107;
    font-size: 14px;
}

.product-rating-stars i.fa-star-o {
    color: #e0e0e0;
}

/* About Section Enhanced Image Styles */
.about-image-container {
    position: relative;
    padding: 40px 20px;
}

.about-image-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.about-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
    transition: all 0.4s ease;
}

.about-image-frame:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.about-image-enhanced {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: all 0.4s ease;
    filter: brightness(1.05) contrast(1.1);
}

.about-image-decoration {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid rgba(153, 174, 59, 0.3);
    border-radius: 25px;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.about-image-frame:hover .about-image-decoration {
    opacity: 1;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
}

.about-image-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.2), transparent);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.about-image-frame:hover + .about-image-shadow {
    width: 90%;
    background: radial-gradient(ellipse, rgba(0,0,0,0.3), transparent);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .product-image-wrapper {
        height: 280px;
    }

    .product-hover-actions {
        gap: 10px;
    }

    .btn-quick-view-enhanced,
    .btn-wishlist-enhanced {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .about-image-frame {
        transform: rotate(-1deg);
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .product-image-wrapper {
        height: 250px;
    }

    .about-image-container {
        padding: 20px 10px;
    }
}


   .contact-list-modern {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Rabar_022', sans-serif;
            font-size: 17px;
            color: #222;
            margin-bottom: 14px;
            direction: rtl;
        }
        .contact-item:last-child {
            margin-bottom: 0;
        }
        .contact-icon {
            background: linear-gradient(135deg, #99ae3b, #8cbb28);
            color: #fff;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            box-shadow: 0 2px 8px rgba(153, 174, 59, 0.12);
            flex-shrink: 0;
        }
        .contact-text {
            flex: 1;
            font-family: 'Rabar_022', sans-serif;
            color: #222;
            word-break: break-word;
        }
        @media (max-width: 480px) {
            .contact-item {
                font-size: 15px;
                gap: 8px;
            }
            .contact-icon {
                width: 28px;
                height: 28px;
                font-size: 15px;
            }
        }


    /* <!-- Product Gallery Styles --> */

    /* Product Gallery Section Background */
    :root {
        /* Home products gallery sizing */
        --home-product-image-height: 360px; /* legacy var: used in older styles */
        /* Match products page sizing */
        --product-card-min-width: 340px;
        --product-image-height: 360px;
    }
    .products-gallery-bg {
        /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
        position: relative;
    }

    .products-gallery-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
        pointer-events: none;
    }

    /* Match products page card/grid */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(var(--product-card-min-width), 1fr));
        gap: 30px;
        margin-bottom: 20px;
    }

    .product-card {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        transition: all 0.4s ease;
        position: relative;
    }

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .product-image {
        position: relative;
        overflow: hidden;
        background: #f8f9fa;
        height: var(--product-image-height);
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.4s ease;
    }

    .product-card:hover .product-image img {
        transform: scale(1.08);
    }

    .product-info {
        padding: 10px;
        text-align: center;
    }

    .product-title {
        font-size: 2rem;
        font-weight: bold;
        color: #333;
        margin: 0 0 10px 0;
        line-height: 1.4;
    }

    /* Modern Product Gallery Styles - Kayfi Store Inspired */
    .modern-product-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        margin-bottom: 30px;
        border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .modern-product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-color: rgba(153, 174, 59, 0.2);
    }

    /* Legacy styles retained for other sections (safe to keep) */
    .product-card-image {
        position: relative;
        overflow: hidden;
        background: #f8f9fa;
        height: var(--home-product-image-height);
    }

    .product-card-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.4s ease;
    }

    .modern-product-card:hover .product-card-img {
        transform: scale(1.08);
    }

    /* Modern Overlay with Actions */
    .product-overlay-modern {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        opacity: 0;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modern-product-card:hover .product-overlay-modern {
        opacity: 1;
    }

    .product-actions {
        display: flex;
        gap: 12px;
        transform: translateY(20px);
        transition: transform 0.3s ease;
    }

    .modern-product-card:hover .product-actions {
        transform: translateY(0);
    }

    .btn-quick-view,
    .btn-add-cart {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #fff;
        border: none;
        color: #333;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .btn-quick-view:hover,
    .btn-add-cart:hover {
        background: #99ae3b;
        color: #fff;
        transform: scale(1.1);
    }

    /* Product Card Content */
    .product-card-content {
        padding: 5px;
        text-align: center;
        direction: rtl;
    }

    .product-category {
        font-size: 12px;
        color: #99ae3b;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
    }

    .product-card-title {
        font-size: 18px;
        font-weight: 600;
        color: #2c3e50;
        margin: 0 0 8px 0;
        line-height: 1.3;
        min-height: 48px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-card-desc {
        font-size: 14px;
        color: #7f8c8d;
        line-height: 1.5;
        margin: 0 0 15px 0;
        min-height: 42px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 12px;
        border-top: 1px solid #eee;
        direction: ltr;
    }

    .product-rating {
        display: flex;
        gap: 2px;
    }

    .product-rating i {
        color: #ffc107;
        font-size: 14px;
    }

    .product-rating i.fa-star-o {
        color: #ddd;
    }

    /* Section Header Modern Style */
    .section-header {
        margin-bottom: 60px;
        position: relative;
    }

    .section-title {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        color: #2c3e50;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        right: 50%;
        transform: translateX(50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(135deg, #99ae3b, #8cbb28);
        border-radius: 2px;
    }

    .section-subtitle {
        font-size: 18px;
        line-height: 1.6;
        max-width: 600px;
        margin: 0 auto;
        color: #7f8c8d;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .modern-product-card {
            margin-bottom: 25px;
        }

        .products-grid {
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 20px;
        }
        .product-card-image {
            height: calc(var(--home-product-image-height) - 100px);
        }
    }

    @media (max-width: 992px) {
        .product-card-image {
            height: calc(var(--home-product-image-height) - 120px);
        }

        .section-title {
            font-size: 36px;
        }

        .product-card-content {
            padding: 16px;
        }
    }

    @media (max-width: 768px) {
        .product-overlay-modern {
            opacity: 0 !important;
            pointer-events: none;
        }

        .products-grid {
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        }
        .product-card-image {
            height: calc(var(--home-product-image-height) - 140px);
        }

        .section-title {
            font-size: 30px;
        }

        .modern-product-card:hover {
            transform: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .product-card-title {
            font-size: 16px;
            min-height: auto;
        }

        .product-card-desc {
            font-size: 13px;
            min-height: auto;
        }
    }

    @media (max-width: 480px) {
        .products-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        .product-card-image {
            height: calc(var(--home-product-image-height) - 160px);
        }

        .section-title {
            font-size: 26px;
        }

        .product-card-content {
            padding: 14px;
        }

        .modern-product-card {
            margin-bottom: 20px;
        }
    }

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

    .wow.fadeIn {
        animation: fadeInUp 0.6s ease forwards;
    }

    /* Enhanced Photo Designs */

    /* Product Gallery Enhanced Styles */
    .product-card-enhanced {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        border: 2px solid transparent;
        position: relative;
        margin-bottom: 30px;
    }

    .product-card-enhanced:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        border-color: rgba(153, 174, 59, 0.3);
    }

    .product-image-container {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    }

    .product-image-wrapper {
        position: relative;
        height: 360px;
        overflow: hidden;
    }

    .product-image-enhanced {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        filter: brightness(1.02) contrast(1.05);
    }

    .product-card-enhanced:hover .product-image-enhanced {
        transform: scale(1.1);
        filter: brightness(1.1) contrast(1.1) saturate(1.2);
    }

    .product-overlay-effects {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(153, 174, 59, 0.85), rgba(140, 187, 40, 0.85));
        opacity: 0;
        transition: all 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-card-enhanced:hover .product-overlay-effects {
        opacity: 1;
    }

    .product-hover-actions {
        display: flex;
        gap: 15px;
        transform: translateY(30px);
        transition: transform 0.4s ease;
    }

    .product-card-enhanced:hover .product-hover-actions {
        transform: translateY(0);
    }

    .btn-quick-view-enhanced,
    .btn-wishlist-enhanced {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.95);
        border: none;
        color: #333;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .btn-quick-view-enhanced:hover,
    .btn-wishlist-enhanced:hover {
        background: #fff;
        transform: scale(1.1);
        color: #99ae3b;
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
        text-decoration: none;
    }

    .product-badge-new {
        position: absolute;
        top: 15px;
        right: 15px;
        background: linear-gradient(135deg, #ff6b6b, #ee5a24);
        color: #fff;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.4s ease;
    }

    .product-card-enhanced:hover .product-badge-new {
        transform: translateY(0);
        opacity: 1;
    }

    .product-info-enhanced {
        padding: 20px;
        text-align: center;
    }

    .product-title-enhanced {
        font-size: 18px;
        font-weight: 600;
        color: #2c3e50;
        margin: 0 0 10px 0;
        line-height: 1.4;
        direction: rtl;
        font-family: 'Rabar_021', sans-serif;
    }

    .product-rating-stars {
        display: flex;
        justify-content: center;
        gap: 3px;
        margin-top: 8px;
    }

    .product-rating-stars i {
        color: #ffc107;
        font-size: 14px;
    }

    .product-rating-stars i.fa-star-o {
        color: #e0e0e0;
    }

    /* About Section Enhanced Image Styles */
    .about-image-container {
        position: relative;
        padding: 40px 20px;
    }

    .about-image-wrapper {
        position: relative;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-image-frame {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        padding: 15px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        transform: rotate(-2deg);
        transition: all 0.4s ease;
    }

    .about-image-frame:hover {
        transform: rotate(0deg) scale(1.02);
        box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    }

    .about-image-enhanced {
        width: 100%;
        height: auto;
        border-radius: 12px;
        transition: all 0.4s ease;
        filter: brightness(1.05) contrast(1.1);
    }

    .about-image-decoration {
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border: 3px solid rgba(153, 174, 59, 0.3);
        border-radius: 25px;
        opacity: 0;
        transition: all 0.4s ease;
        pointer-events: none;
    }

    .about-image-frame:hover .about-image-decoration {
        opacity: 1;
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
    }

    .about-image-shadow {
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 20px;
        background: radial-gradient(ellipse, rgba(0,0,0,0.2), transparent);
        border-radius: 50%;
        transition: all 0.4s ease;
    }

    .about-image-frame:hover + .about-image-shadow {
        width: 90%;
        background: radial-gradient(ellipse, rgba(0,0,0,0.3), transparent);
    }

    /* Responsive Enhancements */
    @media (max-width: 768px) {
        .product-image-wrapper {
            height: 280px;
        }

        .product-hover-actions {
            gap: 10px;
        }

        .btn-quick-view-enhanced,
        .btn-wishlist-enhanced {
            width: 45px;
            height: 45px;
            font-size: 16px;
        }

        .about-image-frame {
            transform: rotate(-1deg);
            padding: 10px;
        }
    }

    @media (max-width: 480px) {
        .product-image-wrapper {
            height: 250px;
        }

        .about-image-container {
            padding: 20px 10px;
        }
    }


/* Team Contact Button */
.btn-team-contact {
    display: inline-block;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Rabar_021', sans-serif;
    color: #fff;
    background: linear-gradient(135deg, #2c5f8d 0%, #1e4a6f 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-team-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e4a6f 0%, #153954 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-team-contact:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 95, 141, 0.4);
}

.btn-team-contact:hover::before {
    left: 0;
}

.btn-team-contact:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
}

.btn-team-contact i {
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-team-contact:hover i {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .btn-team-contact {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .btn-team-contact {
        padding: 10px 25px;
        font-size: 13px;
    }
}

/* Activities Modern Card Styles */
.activity-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(153, 174, 59, 0.25);
}

.activity-card-modern:hover .activity-image-wrapper img {
    transform: scale(1.1);
}

.activity-card-modern:hover .activity-overlay {
    opacity: 1;
}

.activity-card-modern:hover .btn-view-activity {
    transform: translateY(0);
}

.read-more-link:hover {
    color: #7a8c2f !important;
}

.read-more-link:hover i {
    transform: translateX(-5px);
}

[dir="rtl"] .read-more-link:hover i {
    transform: translateX(5px);
}

/* Activities View All Button */
.btn-activities-view-all {
    display: inline-block;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Rabar_021', sans-serif;
    color: #fff;
    background: linear-gradient(135deg, #99ae3b 0%, #7a8c2f 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(153, 174, 59, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-activities-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7a8c2f 0%, #5d6b24 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-activities-view-all:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(153, 174, 59, 0.4);
}

.btn-activities-view-all:hover::before {
    left: 0;
}

.btn-activities-view-all:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(153, 174, 59, 0.3);
}

.btn-activities-view-all i {
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* RTL Support for Kurdish */
[dir="rtl"] .btn-activities-view-all:hover i {
    transform: translateX(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .btn-activities-view-all {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .btn-activities-view-all {
        padding: 10px 25px;
        font-size: 13px;
    }
}
